/* Reset styles for consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



@font-face {
    font-family: 'Bebas Neue';
    src: url('https://cdn-sb.erply.com/files/108597/BebasNeue-Regular.woff') format('woff2'),
         url('https://cdn-sb.erply.com/files/108597/BebasNeue-Regular-2.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --container-width: 1190px;
    --primary-color: #E6427A;
    --primary-color: #d81b60;
    --secondary-color: #222;
    --border-color: #e1e1e1;
    --text-color: #222;
    --muted-color: #B0B0B0;
    --background-color: #f9f9f9; 
    --dark-purple: #870F54;
    --body-font: arial;   
}

body {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    font-weight: bold;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container{
    width: var(--container-width);
    max-width: 100%;
    margin: 0 auto;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: #fff;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
    z-index: 10;
}

header .logo-container {
    display: flex;
    align-items: center;
}

header .logo-container img {
    max-height: 40px;
}

header nav {
    flex-grow: 1;
    margin-left: 20px;
}

header nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;    
}

header nav ul li {
    font-size: 20px;
    text-transform: uppercase;
    white-space: nowrap;
}

header nav ul li a {
    text-decoration: none;
    color: #000;
    padding: 0 10px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #d81b60; /* Pink hover effect */
}

header .cart-container {
    position: relative;
}

header .cart-container .cart-icon {
    position: relative;
    display: inline-block;
    min-width: 43px;
}

header .cart-container .cart-icon svg {
    width: 100%;
    height: 100%;
    transition: fill 0.3s ease;
}

header .cart-container .cart-icon .cart-count {
    position: absolute;
    top: -10px;
    left: -10px;
    background-color: #d81b60;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 4px;
    background-color: #000;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
    z-index: 1001;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
}

.mobile-menu ul li a:hover {
    color: #d81b60;
}

.mobile-menu .close-btn {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #d81b60;
    margin-bottom: 20px;
}

.mobile-menu.active {
    right: 0;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}


.category-section {
    margin: 40px 0;
    text-align: center;
}

.category-section h2 {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    position: relative;
    font-family: var(--body-font);
    display: flex;
    margin: 0px 20px;
    align-items: center;
    justify-content: space-around;
    white-space: nowrap;
    margin-bottom: 40px;
    gap: 40px;
}

.zoomedWindow {
    position: absolute;
    display: none;
    width: 300px; /* Adjust as needed */
    height: auto;
    border: 2px solid #eee;
    background-color: white;
    z-index: 1000;
    pointer-events: none;
}

.zoomedWindow img {
    width: 100%;
    height: auto;
}

.category-section h2.robin-title-lines::before{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    margin-right: 20px;
}

.category-section h2.robin-title-lines::after{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    margin-left: 20px;
}



.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.category-item {
    text-align: center;
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.robin-category-img-box {
    height: 250px;
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-item img {
    position: absolute;
    top: 0px;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    margin: 0 auto; 
}

.category-item p {
    font-size: 20px;
    font-weight: normal;
    color: var(--text-color);
    margin: 0;
    text-transform: uppercase;
    margin-top: 20px;
}

.category-item p a {
    font-size: 20px;
    font-weight: normal;
    color: var(--text-color);
    text-transform: uppercase;
    text-decoration: none;
}

.category-item:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
}

.category-item:hover p {
    color: var(--primary-color);
}



.products-section .section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.products-section h2 {
    font-size: 17px;
    color: var(--muted-color);
    font-weight: normal;
    text-transform: uppercase;
    font-family: var(--body-font);
}

.section-line {
    border: none;
    border-top: 2px solid var(--primary-color);
    margin: 10px 0 20px;
}

.add-all-button {
    background-color: #EDEDED;
    color: #4C4C4C;
    border: none;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    border-radius: 5px;
    cursor: pointer;
    font-family: var(--body-font);
    box-shadow: 0px 5px 6px 1px #22222236;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-between;
}

.category-header .category-image {
    max-width: 130px;
    margin-right: 10px;
}

.products-section-category-thumbnail{
    display: flex;
    align-items: center;
}

.category-header h3 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-row {
    display: grid;
    grid-template-columns: .5fr 1fr 5fr 1.5fr 2fr 1.5fr 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border: 0;
    border-radius: 3px;
    transition: background-color 0.3s ease;
    align-items: center;
}

.product-row-detail-attribute-name{
    font-size: 11px;
    font-family: var(--body-font);
    font-weight: normal;
    color: var(--primary-color);
    margin-bottom: 5px;    
}

.product-row-detail-attribute-value{
    font-size: 20px;
    font-family: var(--body-font);
    font-weight: normal;
    white-space: nowrap;
}

.product-row:hover {
    background-color: #fce4ec;
}

.product-checkbox {
    cursor: pointer;
    width: 24px;
    height: 24px;
}

.product-image {
    max-width: 50px;
    border-radius: 5px;
    object-fit: cover;
}

.product-info {
    color: var(--text-color);
    font-size: 14px;
}

.product-info .product-title {
    font-weight: normal;
    font-family: var(--body-font);
    font-size: 20px;
}

.product-info .product-details {
    color: var(--muted-color);
    font-size: 12px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quantity-controls button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 0;
    cursor: pointer;
    font-size: 20px;
    text-align: center;
    line-height: 30px;
    font-family: var(--body-font);
}

.quantity-controls .quantity-input {
    width: 40px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 14px;
    outline: none;
}

/* For Chrome, Edge, and Safari */
.quantity-controls input[type="number"]::-webkit-inner-spin-button,
.quantity-controls input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
.quantity-controls input[type="number"] {
    -moz-appearance: textfield;
}

.add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 0;
    background: no-repeat;
}



.recent-orders {
    max-width: var(--container-width);
    margin: 20px auto;
    padding: 0 20px;
    font-family: arial;
}

.recent-orders-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.recent-orders h2 {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 20px;
}

.orders-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 85%;
    flex-basis: 85%;    
}

.order-card {
    flex: 1 1 calc(50% - 10px); /* Two cards per row */
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-date {
    font-size: 12px;
    color: var(--muted-color);
    font-weight: normal;
}

.order-details {
    display: grid;
    grid-template-columns: 1fr 5fr 1fr;
    gap: 15px;
    justify-items: stretch;
    align-items: center;
}

.order-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
    border: 0;
}

.order-info {
    flex: 1;
}

.order-number {
    font-size: 15px;
    font-weight: bold;
    color: var(--dark-purple);
    margin-bottom: 5px;
}

.order-description {
    font-size: 12px;
    color: var(--text-color);
    margin-bottom: 5px;
    font-weight: normal;
}

.order-price {
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-color);
}


.order-action {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 5px;
}

.order-action svg {
    transition: fill 0.3s ease;
}

.order-action:hover svg {
    fill: var(--primary-color);
}

.view-more {
    display: inline-block;
    margin-top: 20px;
    font-size: 14px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.view-more:hover {
    text-decoration: underline;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.breadcrumbs {
    color: #d81b60;
    display: flex;
    gap: 10px;
    margin: 20px 0px;
    font-size: 20px;
}

.breadcrumbs a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: normal;
    font-family: var(--body-font);
}

.breadcrumbs span {
    color: #757575;
}

h1.robin-main-title {
    font-size: 30px;
    font-weight: bold;
    color: var(--text-color);
    margin: 0;
    font-family: var(--body-font);
}

.clear-cart {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    color: #000;
    font-size: 25px;
    cursor: pointer;
    position: relative;
    font-family: var(--body-font);
    font-weight: 500;
}

.clear-cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid #000;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    line-height: 1;
}


.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr 150px 150px 50px;
    align-items: center;
    background-color: #fde4ec;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    gap: 15px;
    position: relative;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    background-color: #fff;
    padding: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-item-details h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    color: #000;
    font-family: var(--body-font);
}

.cart-item-details p {
    font-size: 14px;
    margin: 5px 0;
    color: #222;
}

.cart-item-details .product-code {
    font-size: 12px;
    color: #757575;
}

.cart-page-items-details {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    font-family: var(--body-font);
    font-weight: normal;
    margin: 10px 0px;
}

.cart-item-price {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    color: #000;
    font-family: var(--body-font);
    white-space: nowrap;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.remove-item {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
}

.remove-item span{
    background: var(--primary-color);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.cart-summary {
    background: #fff;
}

.promocode-container {
    text-align: center;
    margin: 40px 0px;
}

.promocode-input {
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    width: 250px;
    outline: none;
    font-size: 20px;
    box-sizing: border-box;
}

.promocode-container button {
    margin-left: 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 25px;
    border: 0;
    background:none;
}

.summary-box {
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}




.summary-details {
    color: var(--primary-color);
    margin-bottom: 15px;
    background: #fbd9e4;
    padding: 20px 40px;
    font-size: 20px;
    font-family: var(--body-font);
    position: relative;
}

.summary-box .summary-details::before{
    content: '';
    height: 6px;
    width: 100%;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    background: url('https://cdn-sb.erply.com/files/108597/cart-pattern-summary.svg');
    background-repeat: repeat-x;
    background-size: 2%;
    transform: scaleY(-1);
}

.summary-box .summary-details::after{
    content: '';
    height: 6px;
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: url(https://cdn-sb.erply.com/files/108597/cart-pattern-summary.svg);
    background-repeat: repeat-x;
    background-size: 2%;
}


.summary-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px dotted #fff;
    padding: 10px 0;
    font-weight: normal;
}

.summary-box  .summary-row:last-child {
    border: 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #d81b60;
    color: #fff;
    padding: 10px 40px;
    border-radius: 0 0 20px 20px;
    font-weight: bold;
    font-size: 30px;
    font-family: var(--body-font);
}


.cart-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.terms-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0px;
}

.terms-container .term {
    display: flex;
    align-items: center;
    font-family: var(--body-font);
    font-size: 20px;
    line-height: 1.4;
    color: #000;
}

.terms-container .term input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    accent-color: #d81b60; /* Pink checkbox */
}

.terms-container .term label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.terms-container .term label a.highlight-link {
    color: #1976d2; /* Blue color for links */
    text-decoration: none;
    font-weight: bold;
}

.terms-container .term label a.highlight-link:hover {
    text-decoration: underline;
}

.terms-container .term label span {
    color: #d81b60; /* Pink color for required indicator */
    font-weight: bold;
}

.cart-footer .cart-button {
    width: auto;
    background-color: #d81b60;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 25px;
    font-weight: bold;
    padding: 12px 80px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.cart-footer .cart-button:hover {
    background-color: #c2185b; /* Darker pink on hover */
}


.checkout-my-recent-orders{
    font-family: var(--body-font);
    font-size: 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: normal;    
}

.checkout-login-buttons{
    margin: 10px 0px;
    display: flex;
    gap: 10px;
}

.checkout-not-logged p{
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: normal;    
}

.checkout-login-buttons a{
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    display: inline-block;
    color: var(--text-color);
    font-family: var(--body-font);
    font-size: 18px;
    border-radius: 3px;
    text-decoration: none;

}

.checkout-login-buttons a.register-account{
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.robin-checkout-wrapper {
    background: #F9CFDD;
    border-radius: 3px;
    border: 1px solid #fff;
    display: block;
    margin: 20px 0px;
}

.checkout-block-title {
    margin: 20px 0px;
    background: var(--primary-color);
    padding: 10px 40px;
    color: #fff;
    font-size: 20px;
    font-family: var(--body-font);
    font-weight: 500;
}

.subsection-checkout-block {
    padding: 10px 40px;
}

.subsection-checkout-title{
    font-family: var(--body-font);
    font-size: 16px;
    color: var(--primary-color);   
}

.checkout-robin-fields-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0px;
}

.checkout-robin-fields-wrapper .fullwidth-grid-exception {
    grid-column: 1 / -1;
}

.checkout-robin-field input, .checkout-robin-field select{
    width: 100%;
    padding: 10px 10px;
    font-size: 14px;
    border: 0;
    border-radius: 3px;
    outline: none;    
}

.send-same-address label{
    font-family: var(--body-font);
    font-weight: normal;
    font-size: 18px;    
}

.send-same-address {
    display: flex;
    align-items: center;
    gap: 10px;
}

.client-type-container {
    margin: 20px 0px;
    margin-bottom: 0;
    display: flex;
    gap: 20px;
    font-size: 16px;
    font-family: var(--body-font);
    font-weight: normal;
}

.robin_zip_city {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.transport-type-container label.transport-type {
    display: flex;
    gap: 10px;
    font-weight: normal;
    border-bottom: 1px solid var(--primary-color);
    padding: 10px 0px;
}

.transport-type-label {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.transport-type-container .transport-type:last-child{
    border: 0;
}


.transport-type-container{
    margin-bottom: 10px;
}

.invoice_business {
    font-size: 16px;
    display: flex;
    gap: 10px;
    margin: 10px 0px;
    border-top: 1px solid var(--dark-purple);
    padding-top: 10px;
    justify-content: flex-end;
    font-family: var(--body-font);
    font-weight: normal;
}

.robin-login-component-form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0px;
}

.robin-login-component-form-fields .robin-submit-login{
    background: var(--primary-color);
    border: 0;
    color: #fff;
    border-radius: 3px;
    font-weight: bold;
    font-family: 'Bebas Neue';
    font-size: 20px;
}

.or-separator {
    font-size: 14px;
    color: var(--muted-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0px;
}

.or-separator::before, .or-separator::after {
    content: '';
    height: 1px;
    width: 100%;
    display: block;
    background: var(--muted-color);
    opacity: .4;
}

.robin-login-account-partial {
    margin: 40px 0px;
    border: 1px solid var(--background-color);
    padding: 20px;
}

.robin-my-account-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0px;
}

.robin-my-account-dashboard > div {
    border: 1px solid var(--border-color);
    border-radius: 3px;    
}

.robin-account-block-title {
    font-size: 24px;
    padding: 10px 20px;
    border-bottom: 1px solid var(--border-color);
}

.robin-account-block-content{
    padding: 20px 20px;    
}

.robin-input-and-button-myaccount {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0px;
}

.robin-input-and-button-myaccount input {
    padding: 10px 10px;
    border: 1px solid var(--background-color);
    background: var(--background-color);
    border-radius: 3px;
    outline: none;
}

.robin-input-and-button-myaccount input.disabled {
    opacity: .4;
}

.robin-secondary-btn {
    padding: 10px 20px;
    border: 2px solid var(--dark-purple);
    color: var(--dark-purple);
    font-weight: bold;
    border-radius: 3px;
    background: none;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
}

.password-recovery-button {
    text-align: right;
    width: 100%;
    display: block;
    font-size: 16px;
    color: var(--muted-color);
    font-weight: normal;
    border-top: 1px solid #b0b0b042;
    padding-top: 10px;
}

.robin-login-header .robin-login-component-title{
    margin-bottom: 10px;
}

.robin-login-component-paragprah {
    font-size: 16px;
    color: var(--dark-purple);
    font-family: var(--body-font);
}

.robin-empty-cart {
    font-size: 20px;
    font-family: var(--body-font);
    font-weight: normal;
    color: var(--muted-color);
}

.cms-page-wrapper {
    margin: 40px 0px;
}

.cms-page-title h1 {
    font-weight: normal;
    font-size: 30px;
    margin: 20px 0px;
}

.cms-page-content ul {
    margin: 10px 0px;
    margin-left: 15px;
    list-style-type: disclosure-closed;
}

.cms-page-content p{
     margin: 10px 0px;   
}

.cms-page-heading h3{
    margin: 20px 0px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: normal;
    border-bottom: 1px solid var(--border-color);
    padding: 5px 0px;    
}

.cms-page-content {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: normal;
    margin: 5px 0px;
}

.long-list-robin-ul li{
      margin: 10px 0px;  
}

.products-section {
    padding: 10px 0px;
}

p.no-products-in-list {
    font-family: var(--body-font);
    font-weight: normal;
    color: var(--muted-color);
    font-size: 14px;
    padding: 5px 0px;
}

.products-section.no-products {
    opacity: 0.5;
    filter: grayscale(100%);
}

.section-line-minimalistic{
    text-align: center;
    font-family: var(--body-font);
    font-size: 30px;
    color: var(--border-color);
    letter-spacing: 20px;   
    margin: 20px 0px;
}
/* */ 
#cart-modal {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #ffffffd9;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    z-index: 99;
    display: none;
}

.cart-modal-content {
    background: #fff;
    width: 320px;
    min-height: 200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 3px;
    border: 4px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.cart-modal-content p{
    flex-basis: 100%;
    text-align: center;
    font-size: 24px;    
}

.cart-modal-content .button-container{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;    
}

.cart-modal-content .cart-modal-button{
    width: 100%;
    text-align: center;
    background: 0;
    border: 2px solid var(--secondary-color);
    font-size: 14px;
    font-family: var(--body-font);
    padding: 10px 20px;
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: normal;
}

.cart-modal-content .cart-modal-button.go-to-cart{
    background: var(--secondary-color);
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.add-to-cart-btn{
    border: 0;
    background: no-repeat; 
    cursor: pointer;  
}

.account-register-wrapper{

}

.account-register-wrapper .checkout-robin-field input{
    background: var(--background-color);   
}

.account-register-wrapper .checkout-robin-fields-wrapper{
    margin-bottom: 10px;
}



.robin-account-block-content {
    border-top: 1px solid var(--border-color);
}

.robin-change-password-block > .robin-account-block-content:first-of-type {
  border-top: 0;
}

.robin-change-password-block > :nth-child(2) {
  border-top: 0;
}

.account-register-wrapper button {
    width: 100%;
    border-radius: 3px;
    padding: 10px;
    background: var(--dark-purple);
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    border: 0;
}

.terms-checkbox-wrapper {
    margin: 20px 0px;
    display: flex;
    margin-bottom: 10px;
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: normal;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.buttons-account-creation-another {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-direction: column;

}

.buttons-account-creation-another .robin-button {
    border: 2px solid var(--secondary-color);
    padding: 8px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-radius: 3px;
}

.robin-notification {
    margin: 20px 0px;
    font-size: 14px;
    font-family: var(--body-font);
    font-weight: normal;
}

.robin-notification > div {
    padding: 10px 20px;
    border-radius: 3px;
}

.robin-notification .success {
    background: #d4edda;
    color: #576a5b;
    border: 1px solid #b9d6c0;
}

.robin-notification .error {
    background: #f8d7da;
    color: #9e6e72;
    border: 1px solid #d8acb0;
}

.add-all-button{
    transition: all .3s;
}

.add-all-button.disabled{
    opacity: 0.3;
    filter: saturate(1);
    cursor: default;    
}

.robin-input-and-button-myaccount.robin-forgot-pwd-page-container{
    grid-template-columns: 1fr 1fr 1fr;
}

.robin-overview-of-last-orders {
    overflow-y: auto;
    max-height: 400px;
    border-radius: 3px;
}



footer {
    background-color: #F0F0F0;
    padding: 40px 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 80px;
    font-family: var(--body-font);
}

footer h3.footer-line-title{

}

footer .footer-section .footer-line-title{
    
}

footer .footer-section .footer-line-title::after{
    content: '';
    display: block;
    border: 1px solid var(--primary-color);
    width: 70px;
    margin-top: 10px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 15px;
    margin-bottom: 20px;
    color: #000;
    text-transform: none;
    font-family: arial;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: #222;
    line-height: 1.6;
    text-decoration: none;
    font-weight: normal;
}

.footer-section a:hover {
    color: #d81b60;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

footer svg {
    transition: fill 0.3s ease;
}

footer svg:hover {
    fill: #d81b60;
}

.footer-section p.footer-text-with-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    line-height: 120%;
    margin-bottom: 10px;
}

.footer-section p .text-footer{
    font-weight: normal;
}

footer .company-description{
    line-height: 120%;
    margin-bottom: 30px;    
}

.robin-thank-you-order {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.robin-thank-you-order img{
    max-width: 100%;
    height: auto;
}

.robin-confirmation-title-order h1{
    font-size: 70px;
    color: var(--primary-color);
    font-weight: normal;
    line-height: 100%;    
}

.sub-order-confirmation-order {
    font-size: 23px;
    margin: 20px 0px;
    font-family: var(--body-font);
}

.sub-order-confirmation-content {
    font-size: 20px;
    font-family: var(--body-font);
    font-weight: normal;
}

.sub-order-confirmation-content a{
    color: #0085FF;
    text-decoration: none;
    font-weight: 600;
}

#logout-form button {
    width: 100%;
    padding: 10px 20px;
    background: #222;
    border-radius: 3px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.robin-language-switcher {
    display: flex;
    gap: 5px;
    margin-left: 5px;
}

.robin-language-switcher a{
    font-weight: normal;
    font-size: 18px;
    text-decoration: none;
    border: 1px solid #eee;
    padding: 10px 15px;
    border-radius: 3px;
    color: #333;
    position: relative;
    bottom: 3px;
}

.robin-language-switcher a.active{
    font-weight: bold;
    border-color: #871054;
    color: #871054;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-section {
        margin-bottom: 20px;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    header nav {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-left: 16px;
        border: 1px solid #eee;
        width: 43px;
        height: 43px;
        align-items: center;
        justify-content: center;
        margin-top: -5px;
        border-radius: 3px;
    }

    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        background: #fff;
        border-bottom: 2px solid #d81b60;
        position: relative;
        z-index: 10;
        padding-bottom: 10px;
    }    

    .cart-container {
        margin-left: auto;
    }

    .order-card {
        flex: 1 1 100%; /* Full width on smaller screens */
    }

   .recent-orders-wrapper {
    display: flex;
    flex-direction: column; 
    }

   .orders-container {
        width: 100%;
        flex-basis: 100%;
    } 

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }    

    .product-row {
        display: flex;
        gap: 10px;
        padding: 10px;
        border: 0;
        transition: background-color 0.3s ease;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between;
        border-bottom: 1px solid var(--border-color);
        border-radius: 0;
        text-align: center;
    }

    .product-row-detail-attribute{
        text-align: left;
    }

     .category-header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        justify-content: space-between;
        flex-direction: column;
        padding: 0px 20px;
        gap: 20px;
    }   

    .add-all-button{
        text-align: left;
    }

    .products-section .section-header {
        padding: 0px 20px;
        text-align: center;
    }    

.cart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .breadcrumbs {
        font-size: 16px;
        gap: 5px;
        flex-wrap: wrap;
    }

    .breadcrumbs a {
        font-size: 14px;
    }

    h1.robin-main-title {
        font-size: 24px;
    }

    .clear-cart {
        font-size: 18px;
    }

    .clear-cart-icon {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }

    .cart-item {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto auto;
        gap: 10px;
        padding: 10px;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }

    .cart-item-details h2 {
        font-size: 16px;
    }

    .cart-item-details .cart-page-items-details {
        flex-direction: column;
        font-size: 12px;
    }

    .cart-item-price {
        font-size: 20px;
    }

    .cart-item-quantity {
        gap: 3px;
    }

    .cart-item-quantity .quantity-controls {
        display: flex;
        gap: 3px;
    }

    .cart-item-quantity input[type="number"] {
        width: 50px;
        font-size: 14px;
    }

    .remove-item {
        top: 0px;
        right: -12px;
        font-size: 14px;
    }

    .remove-item span {
        width: 20px;
        height: 20px;
        font-size: 20px;
    }

    .cart-summary {
        margin-top: 20px;
    }

    .promocode-container {
        flex-direction: column;
        gap: 10px;
    }

    .promocode-input {
        width: 100%;
        font-size: 16px;
    }

    .promocode-container a {
        font-size: 20px;
        margin: 10px 0px;
        display: block;
        background: var(--primary-color);
        padding: 10px;
        color: #fff;
        border-radius: 3px;
    }

    .summary-box .summary-details {
        font-size: 14px;
        padding: 15px;
    }

    .summary-box .summary-row {
        padding: 5px 0;
    }

    .summary-box .summary-total {
        font-size: 20px;
        padding: 10px 20px;
    }

    .cart-footer {
        margin-top: 20px;
    }

    .terms-container .term {
        font-size: 14px;
    }

    .terms-container .term input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }

    .terms-container .term label {
        gap: 3px;
    }

    .cart-footer .cart-button {
        font-size: 18px;
        padding: 10px 40px;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }    

    .container {
        padding: 0px 20px;
    }

    .summary-box .summary-details::before, .summary-box .summary-details::after {
        height: 5px;
        background-size: 20px;
    }

    .robin-my-account-dashboard {
        display: grid;
        grid-template-columns: 1fr;
    }

    .robin-input-and-button-myaccount {
        display: grid;
        grid-template-columns: 1fr;
    }    

.robin-login-component-form-fields {
    grid-template-columns: 1fr;
    gap: 10px;
}  

.robin-thank-you-order {
    grid-template-columns: 1fr;
    gap: 40px;
}

}
