@media (max-width: 768px) {
    .offcanvas-sidebar {
        max-width: 80%;
    }
}
.offcanvas-sidebar::-webkit-scrollbar {
    display: none;  /* Chrome, Safari and Opera */
}
.offcanvas-body {
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}
.offcanvas-body::-webkit-scrollbar {
    display: none;  /* Chrome, Safari and Opera */
}
#offcanvas-filters-sidebar::-webkit-scrollbar {
    display: none;  /* Chrome, Safari and Opera */
}
#offcanvas-filters-sidebar{
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}
/* Category page styling */
.accordion-button .acc-chevron {
    transition: transform 0.2s ease-in-out;
}
.accordion-button:not(.collapsed) .acc-chevron {
    transform: rotate(-180deg);
}
.product-card-link {
    text-decoration: none;
    color: var(--dark-gray);
}
.product-card-link:hover {
    color: var(--dark-yellow);
}
.product-card {
    width: 300px;
    margin: 0 auto 20px;
    position: relative;
    border-radius: 10px;
}
.category-carousel-inner {
    width: 100%;
    height: 353px;
}
@media (width < 992px) {
    .product-card {
        width: 180px;
    }
    .category-carousel-inner {
        height: 203px;
    }
}
.product-card:hover {
    background-color: rgb(228, 228, 228);
    box-shadow: 0 3px 5px rgb(0 0 0 / 0.2);
}
.product-image {
    background-color: rgb(248, 248, 248);
    border-radius: 10px;
}

.color-options, .size-options {
    overflow: hidden;
}
.color-options {
    width: 115px;
}
.size-options {
    width: 120px;
}
@media(width < 992px) {
    .color-options {
        width: 60px;
    }
    .size-options {
        width: 85px;
    }
}
/* Color & size carousel */
.next-btn, .prev-btn, .prev-btn-size, .next-btn-size {
    color: dark;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3;
}
@media(width < 992px) {
    .next-btn svg, .prev-btn svg, .prev-btn-size svg, .next-btn-size svg {
        width: 15px;
        height: 15px;
    }
}
.color-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: absolute;
    box-shadow: 0px 0px 2.5px #bbb;
}
.color-circle.active {
    width: 25px;
    height: 25px;
    z-index: 2;
    border: 2px solid black;
}

@media (width < 992px) {
    .color-circle.active {
        width: 20px;
        height: 20px;
        z-index: 2;
    }
}
.color-circle.left, .color-circle.right {
    width: 20px;
    height: 20px;
    opacity: 0.75;
    z-index: 1;
}
.color-circle.hidden {
    opacity: 0;
    z-index: 0;
}
.color-carousel-container {
    display: flex;
    align-items: center;
    position: relative;
    height: 50px;
    width: 100%;
}
.size-carousel-container {
    display: flex;
    align-items: center;
    position: relative;
    height: 50px;
    width: 100%;
}
.size-rect {
    width: 100%;
    /* height: 30px;
    border: 1px solid #ccc;
    border-radius: 5px; */
    transition: all 0.3s ease;
    position: absolute;
    text-align: center;
    transition: all 0.3s ease;
    position: absolute;
}
@media(width < 992px) {
    .size-rect {
        font-size: 14px;
    }
    .circle-btn svg {
        height: 15px;
        width: 15px;
    }
}
/* Product details */
.product-title {
    font-size: 1.0rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-price {
    color: rgb(93, 93, 93);
}
#product-price{
    font-size: 1.8rem;
    font-weight: 600;
}
#product-price.product-original-price {
    font-size: 1.4rem;
    font-weight: 400;
    text-decoration: line-through;
}
#product-discount-price {
    font-size: 1.6rem;
    font-weight: 600;
}
/* Badges and buttons */
.circle-btn {
    position: absolute;
    background: white; 
    padding: 0px;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: -2px 2px 6px #ccc;
    z-index: 3;
}
.fav-btn {
    top: 15px;
    right: 15px;
    
}
.cart-btn {
    bottom: 120px;
    right: 15px;
}
@media (width < 992px) {
    .fav-btn {
        top: 10px;
        right: 10px;
        
    }
    .cart-btn {
        bottom: 112.5px;
        right: 10px;
    }
}
/* Filters sidebar */
@media (min-width: 769px) {
    #offcanvas-filters-sidebar {
        min-width: 225px;
        height: 100vh;
        position: sticky;
        top: 66px;
        overflow-y: auto;
    }
}

@media (max-width: 768px) {
    #offcanvas-filters-sidebar {
        height: 500px;
    }
}
.sidebar-option a {
    color: #6c6c6c;
    text-decoration: none;
}
.checked-option {
    position: relative;
}
.checked-option-x {
    content: "×";
    margin-left: 15px;
    font-size: 1.3em;
    color: #dc3545;  
}
.sidebar-option.checked-option a {
    color: #274a58;
    text-decoration: none;
    font-weight: 500;
    
}
.sidebar-option.checked-option {
    background: linear-gradient(to right, transparent 5%, rgb(238, 238, 175) 10%, rgb(238, 238, 175) 90%, transparent 100%);
}
@media (max-width: 768px) {
    .sidebar-option.checked-option {
        background: linear-gradient(to right, transparent 0%, rgb(238, 238, 175) 10%, rgb(238, 238, 175) 65%, transparent 100%);
    }
}
.color-link-container {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.color-link {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s;
    flex-shrink: 0;  /* Prevents circle from squishing */
    z-index: 1;
    opacity: 0.85;
    box-shadow: 0px 0px 2px #bbb;
}
.color-link:hover {
    transform: scale(1.15);
    opacity: 1;
    z-index: 2;
}

/* .color-link.active {
    border: 2px solid black;
    width: 20px;
    height: 20px;
    opacity: 1;
} */
.color-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #fff;
    opacity: 0;
    transition: opacity 0.2s;
}
.color-link::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid #000;
    opacity: 0;
    transition: opacity 0.2s;
}
.color-link.active::before,
.color-link.active::after {
    opacity: 1;
}
.color-link.active {
    border: none;
}
.size-pill {
    border: 1.5px solid #ccc;
    border-radius: 5px;
    padding: 3px 5px;
    text-decoration: none;
    color: #274a58;
    font-size: 14px;
}
.size-pill.active {
    background-color: #274a58;
    color: white;
}

/* Custom cart modal */
:root {
    --dark-yellow: #908862;
    --soft-yellow: #fffa5f;
    --yellow: #ffdd33;
    --subtle-yellow: #faf0bd;
    --dark-gray: #2c2c2c;
    --medium-gray: #3a3a3a;
    --light-gray: #e0e0e0;
    /* --error-red: #f4753e; */
    --error-red: #d8532e;
    --success-green: #3dc83d;
    --modal-width-sm: 350px;
    --dark-navbar: rgb(21,21,35);
}
.blacksheep-modal .modal-content {
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blacksheep-modal .modal-header {
    background: var(--dark-gray);
    border: none;
    border-radius: 12px 12px 0 0;
    padding: 1rem 1.5rem;
}

.blacksheep-modal .modal-title {
    color: var(--subtle-yellow);
    font-weight: 500;
    font-size: 1.1rem;
}

.blacksheep-modal .btn-close {
    filter: invert(1) opacity(0.7);
}

.blacksheep-modal .btn-close:hover {
    filter: invert(1) opacity(0.9);
}

.blacksheep-modal .modal-body {
    padding: 1.5rem;
    background: white;
}

.blacksheep-modal .modal-footer {
    background: #fafafa;
    border-top: 1px solid #eee;
    border-radius: 0 0 12px 12px;
    padding: 1rem 1.5rem;
}
.btn-link {
    color: var(--dark-gray);
    text-decoration: underline;
}
.btn-link:hover {
    color: var(--dark-yellow);
    text-decoration: underline;
}
.btn-yellow {
    background: var(--yellow);
    color: var(--dark-gray);
    border: none;
    /* padding: 0.5rem 1.2rem; */
    font-weight: 500;
    transition: all 0.2s ease;
}
.btn-yellow:hover {
    background: var(--dark-yellow);
    color: var(--subtle-yellow);
}
.btn-primary {
    background: var(--dark-gray);
    color: var(--subtle-yellow);
    border: none;
    /* padding: 0.5rem 1.2rem; */
    font-weight: 500;
    transition: all 0.2s ease;
}
.btn-primary:disabled {
    background: var(--medium-gray);
    color: var(--soft-yellow);
}

.btn-outline-primary {
    background: transparent;
    border: 1px solid var(--dark-gray);
    color: var(--dark-gray);
}

.btn-outline-primary:hover {
    background: var(--dark-gray);
    border: 1px solid var(--dark-gray);
    color: var(--soft-yellow);
}
.btn-outline-primary:active,
.btn-primary:active,
.btn-primary:active:focus {
    background: var(--soft-yellow) !important;
    color: var(--dark-gray) !important;
}

.btn-primary:hover {
    background: var(--medium-gray);
    transform: translateY(-1px);
    color: var(--soft-yellow);
}

.btn-secondary {
    background: transparent;
    border: 1px solid #ddd;
    color: var(--dark-gray);
    /* padding: 0.5rem 1.2rem; */
}

.btn-secondary:hover {
    background: #f8f8f8;
    border-color: #ccc;
    color: var(--dark-gray);
}

.details-container .label {
    font-weight: 300;
    width: 80px;
    display: inline-block;
}

label.btn-checkout {
    border: 1px solid var(--dark-gray);
}
label.btn-checkout:hover {
    border: 1px solid var(--dark-yellow);
}
label.btn-checkout.active {
    border: 1px solid var(--dark-yellow);
}

/* Mini modal */
.mini-modal {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    z-index: 1060;
    animation: slideUp 2.5s ease-in-out;
    min-width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: white;
    border: 2px solid var(--dark-gray);
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translate(-50%, 100%);
    }
    15% { 
        opacity: 1; 
        transform: translate(-50%, 0);     /* Slide to final position */
    }
    85% { 
        opacity: 1; 
        transform: translate(-50%, 0);     /* Stay in position */
    }
    100% { 
        opacity: 0; 
        transform: translate(-50%, 20px);  /* Slide down slightly */
    }
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, -40%); }
    15% { opacity: 1; transform: translate(-50%, -50%); }
    85% { opacity: 1; transform: translate(-50%, -50%); }
    100% { opacity: 0; transform: translate(-50%, -60%); }
}

.icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    position: relative;
}

.icon-bg {
    width: 80px;
    height: 80px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-bg.error {
    background: var(--error-red);
}

.cart-icon,
.result-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    stroke: var(--dark-gray);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.cart-icon {
    opacity: 1;
    animation: fadeOutCart 0.8s ease forwards 0.4s;
}

.result-icon path,
.result-icon circle {
    stroke-dasharray: 100;      
    stroke-dashoffset: 100;
    animation: drawLine 0.5s ease forwards 0.8s;
}

@keyframes fadeOutCart {
    to {
        opacity: 0;
    }
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.mini-modal h5 {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.mini-modal p {
    color: #666;
    font-size: 0.9rem;
}

/* Login / register modal */
.modal-dialog.modal-sm {
    max-width: var(--modal-width-sm);
    width: 95%;
    margin: 1.75rem auto;
}
#login-form-container {
    width: 300px;
    height: 320px;
    position: relative;
    text-align: center;
    margin: auto;
}
#login-form-container span {
    font-weight: bold;
    padding: 0 10px;
    color: #555;
    cursor: pointer;
    width: 125px;
    display: inline-block;
}
#login-form-container .form-btn-container {
    display: inline-block;
}

#login-form-container form {
    width: 300px;
    padding: 0 20px;
    position: absolute;
    top: 75px;
    transition: transform 0.5s ease;
}
#login-form {
    transform: translateX(0);
}
#register-form {
    transform: translateX(400px);
}
#forgot-password-form {
    transform: translateX(-400px);
}
#login-form a {
    color: var(--dark-gray);
    /* text-decoration: none; */
}
#login-form-container form input {
    width: 100%;
    height: 35px;
    margin: 10px 0;
    padding: 0 10px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 0.9rem;
}
#login-form-container form input.is-invalid {
    border: 1px solid var(--error-red);
}
#login-error-message {
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    min-height: 35px;
}
#login-error-message.show {
    opacity: 1;
}
#login-form-container form button {
    width: 100%;
    border: none;
    cursor: pointer;
    margin: 10px 0;
}
#login-form button[type="submit"] {
    margin-top: 25px;
}
#register-form button[type="submit"] {
    margin-top: 25px;
}

#form-indicator {
    width: 100px;
    border: none;
    background: var(--dark-gray);
    height: 3px;
    margin: 10px auto;
    transform: translateX(-65px);
    transition: transform 0.5s ease, opacity 0.3s ease;
}

#login-form-container form .form-floater label{
    position: absolute;
    transition: all 0.3s ease;
    color: #bbb;
    cursor: text;
    margin: 12px 5px;
    padding: 0;
    padding-top: 3px;
    left: 20px;
    width: fit-content;
}

#login-form-container form .form-floater input:focus ~ label,
#login-form-container form .form-floater input:not(:placeholder-shown) ~ label,
#register-form-container form .form-floater input:focus ~ label,
#register-form-container form .form-floater input:not(:placeholder-shown) ~ label {
    transform: scale(0.85) translateY(-1.225rem) translateX(calc(-0.6rem - 8%));
    background: white;
    padding: 0px 3px;
    margin-left: 10px;
}

/* Filter button */
.filter-btn {
    transition: all 0.3s ease;
}

.filter-btn.floating {
    position: fixed;
    right: 30px;
    transform: translateY(-75px);
    z-index: 1000;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    background: white;
}
.filter-btn:hover {
    background: var(--dark-gray);
    color: var(--subtle-yellow);
}

.filter-btn.floating .filter-text {
    display: none;
}

@media (min-width: 768px) {
    .filter-btn.floating {
        display: none;
    }
}

#filters-sidebar-content {
    width: 100%;
}
.clear-filter-btn {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--dark-gray);
    text-decoration: none;
    padding: 3px 5px;
    border-radius: 5px;
    border: 1px solid var(--dark-gray);
    background: transparent;
    margin-left: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.clear-filter-btn:hover {
    background: var(--dark-gray);
    color: var(--subtle-yellow);
}

.product-thumbnails {
    width: 100%;
    overflow-x: auto;
}

.product-thumbnails .thumbnail {
    width: 80px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.product-thumbnails .thumbnail:hover {
    border-color: #0d6efd;
}

/* Product page color circles */
.product-color-circle, .product-stamp-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    box-shadow: 0px 0px 2.5px #bbb;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.product-color-circle:hover, .product-stamp-circle:hover {
    transform: scale(1.1);
}

.product-color-circle.active, .product-stamp-circle.active {
    border: 2px solid black;
    box-shadow: 0 0 0 1px white inset;
}

.notification-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
}

.notification-banner.show {
    transform: translateY(0);
}

.notification-banner.success {
    background-color: #198754;
    color: white;
}

.notification-banner.error {
    background-color: #dc3545;
    color: white;
}

.notification-banner .notification-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    font-size: 16px;
}

.notification-banner svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .notification-banner .notification-content {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .notification-banner svg {
        width: 24px;
        height: 24px;
    }
}

/* Checkout validation alert */
/* .validation-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
    min-width: 300px;
    max-width: 450px;
    background-color: #fff;
    border-left: 5px solid #dc3545;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
}

.validation-alert.show {
    opacity: 1;
    transform: translateX(0);
}

.validation-alert .alert-content {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.validation-alert .alert-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #dc3545;
}

.validation-alert .alert-message {
    flex-grow: 1;
    margin: 0;
    color: #333;
    font-size: 0.95rem;
}

.validation-alert .close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.validation-alert .close-btn:hover {
    color: #333;
} */

/* Checkout shipping method buttons */
.shipping-method-group .btn-check + .btn-outline-dark {
    background-color: white;
    border: 1px solid var(--dark-gray);
    color: var(--dark-gray);
    /* padding: 0.75rem 1rem; */
    transition: all 0.2s ease;
}

.shipping-method-group .btn-check:checked + .btn-outline-dark {
    background-color: var(--dark-gray);
    border-color: var(--dark-gray);
    color: var(--subtle-yellow);
}

.shipping-method-group .btn-check + .btn-outline-dark:hover {
    background-color: var(--dark-gray);
    border-color: var(--dark-gray);
    color: var(--subtle-yellow);
}

/* Add responsive adjustments */
/* @media (max-width: 768px) {
    .shipping-method-group {
        flex-direction: column;
    }
    
    .shipping-method-group .btn-check + .btn-outline-dark {
        border-radius: 0.375rem !important;
        margin-bottom: 0.5rem;
    }
} */

/* Store address animations */
#store-address, #password-fields, #invoice-fields {
    opacity: 0;
    transform: translateY(-40px);
    transition: all 0.3s ease-out;
    display: none;
}

#store-address.show, #password-fields.show, #invoice-fields.show {
    opacity: 1;
    transform: translateY(0);
}

/* Checkout grid container */
.checkout-grid-container {
    display: grid;
    gap: 1rem;
}

/* Mobile layout */
@media (max-width: 767px) {
    .checkout-grid-container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "red"
            "blue"
            "green"
            "yellow";
    }
}

/* Desktop layout */
@media (min-width: 768px) {
    .checkout-grid-container {
        grid-template-columns: 3fr 2fr;
        grid-template-areas:
            "blue red"
            "blue green"
            "blue yellow";
    }
}

#checkout-form label:not(.btn) {
    margin-bottom: 0.25rem;
}

.customer-info-container {
    grid-area: blue;
}

.order-summary-container {
    grid-area: red;
}

.payment-info-container {
    grid-area: green;
}

/* .notes-container {
    grid-area: purple;
} */

.accept-terms-container {
    grid-area: yellow;
}

/* Payment method styling */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-method-item {
    margin: 0;
    padding: 0;
}

.payment-method-item .form-check-input {
    display: none;
}

.payment-method-item .form-check-label {
    padding: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.payment-method-item .form-check-input:checked + .form-check-label {
    border-color: var(--dark-gray);
    background: var(--subtle-yellow);
}

.payment-method-item .form-check-label:hover {
    border-color: var(--dark-gray);
}

.payment-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 8px;
}

.payment-icon-wrapper i {
    font-size: 1.5rem;
}

.form-check.custom-address-radio {
    padding-left: 0;
}

.payment-method-item .form-check-input:checked + .form-check-label .payment-icon-wrapper {
    background: white;
}

.custom-address-radio .form-check-input {
    display: none;
}

.custom-address-radio .form-check-label {
    cursor: pointer;
}

.custom-address-radio .form-check-input:checked + .form-check-label .border {
    border-color: var(--dark-gray) !important;
    background-color: var(--subtle-yellow) !important;
}

.custom-address-radio .form-check-input:checked + .form-check-label .badge {
    background-color: white !important;
    color: var(--dark-gray) !important;
}

.custom-address-radio .form-check-label:hover .border {
    border-color: var(--dark-gray) !important;
}

.discount-pill {
    position: absolute;
    top: 18px;
    left: 15px;
    background-color: var(--yellow);
    color: black;
    padding: 2px 12px;
    border-radius: 16px;
    /* border: 1.5px solid black; */
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 2;
}

@media (max-width: 768px) {
    .discount-pill {
        top: 12px;
        left: 10px;
        font-size: 0.6rem;
        padding: 2px 8px;
    }
}

.product-discount-price {
    /* text-decoration: line-through; */
    color: var(--dark-gray);
    font-weight: 450;
}
.product-original-price {
    color: gray;
    font-weight: 400;
    text-decoration: line-through;
}

.carousel-item-skeleton-placeholder {
    width: 100%;
    padding-bottom: 125%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
}   

.product-carousel-container {
    position: relative;
    width: 100%;
    padding-top: 125%; /* 16:9 Aspect Ratio */
    /* background-image: url('/assets/images/placeholders/error-tshirt.png'); */
}

#productCarousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#productCarousel .carousel-item {
    height: 100%;
}
#productCarousel .carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-img-loading {
    opacity: 0.5;
    filter: blur(2px); 
    transition: all 0.25s ease;
}

/* Carousel custom left/right arrows */
.custom-prev-icon, .custom-next-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #000;
    border-radius: 50%;
    position: relative;
}

.custom-prev-icon::before, .custom-next-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-style: solid;
    border-width: 2px 2px 0 0;
    border-color: #fff;
}

.custom-prev-icon::before {
    left: 55%;
    transform: translate(-50%, -50%) rotate(-135deg);
}

.custom-next-icon::before {
    right: 45%;
    transform: translate(50%, -50%) rotate(45deg);
}

.bg-dark-yellow {
    background-color: var(--dark-yellow);
    color: var(--dark-gray);
}
.text-yellow {
    color: var(--yellow);
}
/* #productCarousel .carousel-control-prev {
    opacity: 0.8;
    transition: all 0.25s ease;
}
#productCarousel .carousel-control-prev:hover {
    opacity: 1;
}
#productCarousel .carousel-control-next {
    opacity: 0.8;
    transition: all 0.25s ease;
}
#productCarousel .carousel-control-next:hover {
    opacity: 1;
}
#productCarousel .carousel-control-prev span {
    border-radius: 50%;
}
#productCarousel .carousel-control-next span {
    border-radius: 50%;
} */

/* Dark colors */
.dark-color {
    background-color: var(--dark-navbar);
}
.menu-icon {
    transition: all 0.25s ease;
    border-radius: 4px;
    /* width: 60px;  */
    width: auto;
    padding: 0 8px;
    height: 60px;
}
.menu-icon:hover {
    background-color: var(--dark-gray);
}
.menu-icon:hover .fw-bold {
    color: var(--subtle-yellow);
}
.more-info-button {
    height: 50px;
    margin-top: 12px;
}
.all-designs-button-text {
    font-size: 0.7rem;
    max-width: 75px;
    border-radius: 10px;
    border: 2px solid var(--yellow);
    padding: 0 15px;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.all-designs-button-text:hover {
    background-color: var(--yellow);
    color: var(--dark-gray);
}
.menu-icons-selection {
    display: none;
}
.icon-bar-container {
    overflow-y: hidden;
    justify-content: center;
}
@media (max-width: 600px) {
    .icon-bar-container {
        justify-content: flex-start;
    }
}
@media (max-width: 1120px) {
    .menu-icons-selection {
        display: flex;
    }
    .apparel-icons-separator {
        display: none;
    }
    .hide-container {
        display: none;
    }
}
.menu-icons-selection div {
    padding-bottom: 3px;
    margin-bottom: 10px;
    margin-right: 10px;
    margin-left: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    background-color: transparent;
    color: var(--light-gray);
    border-bottom: 2px solid transparent;
}
.menu-icons-selection div:hover {
    border-bottom: 2px solid white;
    cursor: pointer;
}
.menu-icons-selection div.active {
    border-bottom: 2px solid var(--yellow);
}
/* .all-designs-button-text {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
} */
#search-form {
    max-width: 500px;
}
@media (width < 768px) {
    #search-form {
        max-width: 100%;
        min-width: 75%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Search input placeholder transitions */
#search-input {
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0;
    border-top-left-radius: var(--bs-border-radius);
    border-bottom-left-radius: var(--bs-border-radius);
}

#search-input::placeholder {
    transition: all 0.3s ease;
}

/* Suggestion animation container */
.search-suggestion-container {
    position: relative;
    overflow: hidden;
}

.search-suggestion-text {
    position: absolute;
    left: 0;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    transform: translateY(100%);
    opacity: 0;
}

.search-suggestion-text.active {
    transform: translateY(0);
    opacity: 1;
}

.search-suggestion-text.exit {
    transform: translateY(-100%);
    opacity: 0;
}

/* Search suggestions overlay */
.search-suggestions-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.5;
    background: transparent;
    border: none;
    z-index: 1;
}

.search-suggestions-overlay .search-suggestion-text {
    position: absolute;
    left: 0;
    right: 0;
    padding: 0.375rem 0.75rem;
    margin: 0;
    background: transparent;
    border: none;
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.5;
    pointer-events: none;
}
/* Sidebar Accordion */
.sidebar-accordion {
    max-width: 800px;
    margin: 30px 0px;
}

.sidebar-accordion-button {
    width: 100%;
    /*border: 2px solid white;  /* #ffd700; */
    border-radius: 10px;
    border: none;
    background-color: transparent;
    color: #fff;
    padding: 1.25rem 0.25rem;
    cursor: pointer;
    margin-bottom: 0;
    text-align: left;
    position: relative;
}

.sidebar-accordion-button:hover {
    /* background-color: rgba(255, 215, 0, 0.1); */
    color: var(--yellow);
}

.sidebar-accordion-title {
    font-size: 1.5rem;
    margin: 0;
}

.sidebar-accordion-description {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0.5rem 0 0 0;
}

.sidebar-accordion-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.sidebar-accordion-button[aria-expanded="true"] .sidebar-accordion-icon {
    color: var(--yellow);
    transform: translateY(-50%) rotate(90deg);
}

.sidebar-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.5rem;
    /* border-bottom: 2px solid #ffd700; */
    border-top: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    /* margin-bottom: 1rem; */
    opacity: 0;
}

.sidebar-accordion-button[aria-expanded="true"] {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
    color: var(--yellow);
    /* background-color: black; */
}

.sidebar-accordion-content.active {
    max-height: 1000px;
    padding: 1.5rem;
    opacity: 1;
    /* background-color: black; */
}
@media (max-width: 768px) {
    .sidebar-accordion-content.active {
        padding: 0.5rem;
    }
}

.sidebar-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0.25rem 0;
}

.sidebar-image-item {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border: 2px solid var(--dark-gray);
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.25s ease;
    overflow: hidden;
    box-shadow: 0 0 0 0 var(--yellow);
}
.sidebar-image-item:hover {
    background-color: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 0 2px var(--yellow);
}

.sidebar-image-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.sidebar-image-item span {
    font-size: 0.75rem;
    color: #ccc;
}
.sidebar-image-item a {
    text-decoration: none;
}
.sidebar-image-item.tilted {
    flex-direction: row-reverse;
}
.sidebar-image-item.tilted img {
    transform: rotate(-20deg) translateX(8px) translateY(3px);
    scale: 1.85;
}
.sidebar-image-item.tilted:hover {
    background-color: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 0 2px var(--yellow);
}
.tag-container, .contact-sidebar-container, .more-info-container {
    padding: 1.25rem 0;
    /* background-color: var(--dark-gray); */
    border-radius: 10px;
}
.tag-container h3, .contact-sidebar-container h3, .more-info-container h3 {
    font-size: 1.25rem;
    color: #fff;
    margin: 0;
    margin-top: 0.5rem;

}
.more-info-container .text-row {
    margin: 0.5rem 0;
}
.more-info-container .text-row:hover {
    color: var(--yellow);
}
.more-info-container .text-row a {
    text-decoration: none;
    margin-left: 0.3rem;
    color: #fff;    
}
.more-info-container .text-row a:hover {
    color: var(--yellow);
}
.tag-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1.25rem;
}
.tag-pill {
    /* background-color: var(--dark-gray); */
    color: #ccc;
    padding: 0.75rem;
    padding-bottom: 0.4rem;
    padding-top: 0.3rem;
    border-radius: 100px;
    border: 2px solid var(--yellow);
    font-weight: 450;
    text-decoration: none;
    transition: all 0.25s ease;
    /* font-family: 'Poppins', sans-serif; */
    font-weight: 600;
    font-size: 0.95rem;
    min-width: 65px;
    text-align: center;
}
.tag-pill.small {
    font-size: 0.85rem;
    min-width: 50px;
    padding: 0.4rem 0.3rem;
    color: var(--dark-gray);
}
.tag-pill.selected {
    background-color: var(--dark-gray);
    color: var(--yellow);
    border: 2.5px solid var(--yellow);
}
.tag-pill:hover {
    background-color: var(--yellow);
    color: var(--dark-gray);
}

#product-name {
    font-size: 1.75rem;
    font-weight: 600;
}

/* Collection page */
.collection-container {
    flex: 1;
    overflow-x: hidden;
}
.categories-scroll {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    gap: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-padding: 0 0.5rem;
}

.categories-scroll::before,
.categories-scroll::after {
    content: '';
    flex: 0 0 0.05rem;
}

.category-item:first-child {
    margin-left: 0.05rem;
}

.category-item:last-child {
    margin-right: 0.05rem;
}

@media (max-width: 768px) {
    .categories-scroll {
        gap: 0.75rem;
        justify-content: flex-start;
    }
}

.category-item {
    flex: 0 0 100px; /* Increased from 100px */
}

.category-card {
    width: 100px; /* Increased from 100px */
    height: 100px; /* Increased from 100px */
}

.category-card {
    /* background-color: #fff; */
    background-color: white;
    border-radius: 16px;
    padding: 0.25rem;
    text-align: center;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 3px 12px rgba(0,0,0,0.30);
    border: 3px solid transparent;
}

.category-card:hover,
.category-card.active {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    background-color: var(--yellow);
    border: 3px solid var(--dark-navbar);
}

.category-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.25rem;
    transition: transform 0.25s ease;
    
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.category-card:hover .category-icon,
.category-card.active .category-icon {
    transform: scale(1.15);
    background-color: rgba(255, 255, 255, 0.8);
}
.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-name {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 1.3;
    max-height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Related products */
/* Option 1: Hide scrollbar while keeping scroll functionality */
.related-products, .related-stamps {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
}

.related-products::-webkit-scrollbar, .related-stamps::-webkit-scrollbar {
    display: none;            /* Chrome, Safari and Opera */
}

/* Option 2: If you want to prevent scrolling completely */
.related-products, .related-stamps {
    overflow: hidden;
}

/* Paypal button */
#paypal-button-container {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

/* Home page */
/* Horizontal scrolling container */
.scroll-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.scroll-items {
    display: flex;
    padding-bottom: 10px;
}

.scroll-item {
    flex: 0 0 auto;
    height: 250px;
    padding-right: 20px;
    width: auto;
    border-radius: 15px;
    overflow: hidden;
}

.scroll-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 15px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.scroll-container::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scroll-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.tag-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
@media (max-width: 768px) {
    .tag-pill.small, .tag-pill.selected {
        min-width: auto;
        text-wrap: nowrap;
    }
    .tag-pills-container {
        flex-wrap: nowrap;
        gap: 0.6rem;
        margin: 20px 0;
        overflow-x: auto;
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
    
    .tag-pills-container::-webkit-scrollbar {
        display: none;  /* Chrome, Safari and Opera */
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.carousel-control-next-icon, 
.carousel-control-prev-icon {
    width: 20px;
    height: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 1);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev {
    left: 15px;
}

.carousel-control-next {
    right: 15px;
}

.carousel-control-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #333;
    font-weight: bold;
}

.carousel-control-btn svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Optional: Hide buttons on mobile for better UX */
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 25px;
        height: 25px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }

    .carousel-control-next-icon, 
    .carousel-control-prev-icon {
        width: 16px;
        height: 16px;
    }
}

/* Responsive button sizing for product options */
/* @media (max-width: 1200px) { */
    .category-option-button {
        flex: 1;
        /* min-width: 120px; */
        /* max-width: 200px; */
    }
    
    .size-option-button {
        flex: 1;
        min-width: 60px;
        max-width: 100px;
    }
/* } */

@media (max-width: 576px) {
    .category-option-button {
        min-width: 90px;
        max-width: 150px;
    }
    
    .size-option-button {
        min-width: 50px;
        max-width: 80px;
    }
}

/* Size buttons - 3 per row */
.size-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
}

.size-option-button {
    width: 100% !important;
    min-width: unset !important;
    max-width: unset !important;
}

/* Responsive adjustments */
/* @media (max-width: 576px) { */
    .size-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    
    .size-option-button {
        font-size: 0.9rem;
        padding: 0.375rem 0.5rem;
    }
/* } */

@media (max-width: 768px) {
    .size-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cart-button-product {
    width: 100%;
    background-color: rgb(35, 211, 0);
    color: var(--dark-gray);
    height: 55px; 
    /* min-width: 270px;  */
    flex: 1;
    font-size: 1.4rem;
    font-weight: 650;
}

.cart-button-product:hover {
    background-color: rgb(40, 233, 30);
}
@media (max-width: 768px) {
    .cart-button-product {
        font-size: 1.2rem;
    }
}

/* Search Dropdown Styles */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-height: 500px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 2px;
}

.search-loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

.search-loading-indicator {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.search-error {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 4px;
    margin: 10px;
}

.search-results-section {
    padding: 12px 10px 12px 10px;
    border-bottom: 1px solid #eee;
}

.search-results-section:last-child {
    border-bottom: none;
}

.search-section-title {
    font-size: 14px;
    font-weight: bold;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tags */
.search-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-tag-pill {
    background: #e9ecef;
    color: #495057;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.search-tag-pill:hover {
    background: var(--yellow);
    color: var(--dark-gray);
    transform: translateY(-1px);
}

/* Categories */
.search-categories-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-category-pill {
    background: #d1ecf1;
    color: #0c5460;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 30px;
}

.search-category-pill:hover {
    background: #17a2b8;
    color: white;
    transform: translateY(-1px);
}

.search-category-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.search-category-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

/* Options */
.search-options-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.search-option-card {
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 5px;
    cursor: pointer;
    transition: all 0.2s;
    background: #fafafa;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.search-option-card:hover {
    border-color: var(--dark-yellow);
    background-color: rgba(74, 70, 45, 0.1);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.search-option-image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 10px;
    flex-shrink: 0;
}

.search-option-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.search-option-details {
    flex: 1;
    min-width: 0;
}

.search-option-name {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 1.3;
    color: #333;
}

.search-option-parent {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

/* Products */
.search-products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.search-product-card {
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 5px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.search-product-card:hover {
    border-color: var(--dark-yellow);
    background-color: rgba(74, 70, 45, 0.1);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.search-product-image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 10px;
    flex-shrink: 0;
}

.search-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.search-product-details {
    flex: 1;
    min-width: 0;
}

.search-product-name {
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 4px;
    color: #333;
    line-height: 1.3;
}

.search-product-price {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 4px;
}

.search-original-price {
    color: #909090;
    text-decoration: line-through;
    margin-right: 8px;
    font-weight: 300;
}

.search-discount-price {
    color: var(--dark-yellow);
}

.search-product-price:not(:has(.search-original-price + .search-discount-price)) .search-original-price {
    color: var(--dark-yellow);
    text-decoration: none;
}

.search-product-code {
    font-size: 11px;
    color: #666;
    margin-bottom: 4px;
    font-style: italic;
}

/* Responsive */
@media (max-width: 600px) {
    .search-options-container,
    .search-products-container {
        grid-template-columns: 1fr;
    }
    .search-results-dropdown {
        max-height: 400px;
    }
}

/* No Results */
.search-no-results {
    text-align: center;
    padding: 10px 20px;
    color: #666;
}

.search-no-results-icon {
    margin-bottom: 8px;
    color: #ccc;
}

.search-no-results-icon svg {
    width: 48px;
    height: 48px;
}

.search-no-results-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.search-no-results-message {
    font-size: 14px;
    line-height: 1.4;
    color: #666;
}

/* Search More */
.search-more {
    padding: 0;
}

.search-more-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 8px;
    text-decoration: none;
    color: #495057;
    transition: all 0.2s ease;
    margin: 0 10px 10px 10px;
}

.search-more-link:hover {
    background: linear-gradient(135deg, var(--yellow) 0%, #ffed4e 100%);
    border-color: var(--dark-yellow);
    color: var(--dark-gray);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    text-decoration: none;
}

.search-more-icon {
    flex-shrink: 0;
    color: #6c757d;
}

.search-more-link:hover .search-more-icon {
    color: var(--dark-gray);
}

.search-more-text {
    flex: 1;
    min-width: 0;
}

.search-more-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
    color: inherit;
}

.search-more-subtitle {
    font-size: 12px;
    color: #6c757d;
    font-style: italic;
}

.search-more-link:hover .search-more-subtitle {
    color: var(--dark-gray);
}

.search-more-arrow {
    flex-shrink: 0;
    color: #6c757d;
    transition: transform 0.2s ease;
}

.search-more-link:hover .search-more-arrow {
    color: var(--dark-gray);
    transform: translateX(3px);
}

/* Search Page Styles */
.search-page-header {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.search-page-header h1 {
    color: var(--yellow);
    font-weight: 600;
}

.search-results-card {
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
}

.search-results-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--dark-yellow);
}

.search-results-card .card-img-top {
    transition: transform 0.2s ease;
}

.search-results-card:hover .card-img-top {
    transform: scale(1.05);
}

.search-similarity-badge {
    background: var(--yellow);
    color: var(--dark-gray);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.search-suggestions {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.search-suggestions .btn {
    transition: all 0.2s ease;
}

.search-suggestions .btn:hover {
    background: var(--yellow);
    border-color: var(--dark-yellow);
    color: var(--dark-gray);
    transform: translateY(-1px);
}

/* Responsive adjustments for search page */
@media (max-width: 768px) {
    .search-page-header {
        padding: 1.5rem 0;
    }
    
    .search-page-header h1 {
        font-size: 1.5rem;
    }
    
    .search-results-card {
        margin-bottom: 1rem;
    }
}

/* Loading animation for search page */
.search-loading-spinner {
    color: var(--dark-yellow);
}

/* No results styling */
.search-no-results-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
}

.search-no-results-page svg {
    color: var(--dark-yellow);
}

/* Price styling for search results */
.search-price-original {
    color: #6c757d;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.search-price-discount {
    color: #dc3545;
    font-weight: 600;
    font-size: 1.1rem;
}

.search-price-normal {
    color: var(--dark-yellow);
    font-weight: 600;
    font-size: 1.1rem;
}

.categories-hero {
    background: linear-gradient(120deg, var(--dark-navbar) 60%, #908862 100%);
    border-radius: 0 0 32px 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    margin-bottom: 2rem;
    border-top: 1px solid rgb(87,82,58);
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: #fff;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
}
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffc107;
    display: block;
}
.stat-label {
    font-size: 1rem;
    color: #fff;
    opacity: 0.8;
}
.stat-divider {
    width: 2px;
    height: 32px;
    background: #fff;
    opacity: 0.2;
    border-radius: 1px;
}
@media (max-width: 768px) {
    .hero-title { font-size: 1.5rem; }
    .hero-stats { gap: 1rem; }
    .stat-number { font-size: 1.2rem; }
    .stat-divider { height: 20px; }
}

/* Category Card Styles */
.category-card-2 {
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 60%, rgba(255,221,51,0.08) 100%);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    padding: 1.5rem 1rem;
    display: flex;
    align-items: stretch;
    /* min-height: 240px; */
    position: relative;
    overflow: hidden;
}
.category-card-2:hover {
    background: linear-gradient(135deg, #ffc107 0%, #908862 100%);
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(255,221,51,0.15);
    text-decoration: none;
}
.category-card-inner-2 {
    width: 100%;
}
.category-icon-2 img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: transform 0.2s;
}
.category-card-2:hover .category-icon-2 img {
    transform: scale(1.08) rotate(-8deg);
    box-shadow: 0 4px 16px rgba(255,221,51,0.15);
}
.category-title-2 {
    font-weight: 600;
    color: #625200;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    letter-spacing: -0.5px;
    transition: color 0.2s;
}
.category-card-2:hover .category-title-2, .category-card-2:hover .category-description-2 {
    color: #23233b;
}
.category-description-2 {
    color: #948b6f;
    opacity: 0.8;
    font-size: 0.95rem;
    margin-top: 0.25rem;
}
@media (max-width: 768px) {
    .category-card-2 {
        min-height: 180px;
        padding: 1rem 0.5rem;
    }
    .category-icon-2 img {
        width: 56px;
        height: 56px;
    }
}
.product-card-simple {
    border-radius: 10px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s;
    max-width: 100%;
}
.product-card-simple:hover {
    background-color: rgb(228, 228, 228);
    box-shadow: 0 3px 5px rgb(0 0 0 / 0.2);
    color: var(--dark-gray);
    transform: translateY(-3px);
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}
.product-card-simple .all-categories-product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-top: 5px;
}
.product-card-simple .all-categories-product-name p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}
.all-categories-product-image {
    background-color: rgb(248, 248, 248);
    border-radius: 10px;
}
.product-card-simple .all-categories-product-image {
    background-color: transparent;
}
.product-card-simple:hover .all-categories-product-image {
    background-color: white;
}
.product-card-simple.product-price {
    font-size: 0.8rem;
}
.btn-dark-navbar {
    background-color: var(--dark-navbar);
    color: var(--subtle-yellow);
    padding: 5px 10px;
    border: 2px solid var(--dark-navbar);
    border-radius: 8px;
}
.btn-dark-navbar:hover {
    background-color: var(--yellow);
    color: var(--dark-navbar);
    border: 2px solid var(--dark-navbar);
}

.all-categories-icon {
    border-radius: 10px;
    height: 50px;
    object-fit: contain;
    width: 50px;
}

.bg-light-gray-1 {
    background-color: #f0f0f0;
}
.bg-light-gray-2 {
    background-color: #e0e0e0;
}
.bg-light-gray-3 {
    background-color: #d0d0d0;
}
.bg-light-gray-4 {
    background-color: #c0c0c0;
}

.btn-dark-navbar .svg-move-right {
    transition: transform 0.2s ease;
    /* display: inline-block; */
}
.btn-dark-navbar:hover .svg-move-right {
    transform: translateX(4px);
}
.all-categories-row {
    padding: 20px;
}
@media (max-width: 768px) {
    .product-card-simple .all-categories-product-name {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 5px;
    }
    .product-card-simple .all-categories-product-name p {
        margin-bottom: 5px;
    }
    .product-card-simple .product-price {
        font-size: 0.65rem;
    }

    .all-categories-row {
        padding-right: 10px;
        padding-left: 10px;
    }
    .all-categories-row .btn-dark-navbar {
        padding: 5px 5px;
        font-size: 0.65rem;
    }
    .all-categories-row svg {
        height: 15px;
        width: 15px;
    }
    .all-categories-row .all-categories-name {
        font-size: 1.0rem;
    }
    .all-categories-row .all-categories-icon {
        height: 40px;
        width: 40px;
    }
}

/* Enhanced Categories Page Styles */
.category-section {
    margin-bottom: 4rem;
}

.category-header-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.category-header-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.category-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--dark-yellow) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(255,221,51,0.3);
    transition: all 0.3s ease;
}

.category-header-card:hover .category-icon-wrapper {
    transform: scale(1.05) rotate(-3deg);
    box-shadow: 0 6px 24px rgba(255,221,51,0.4);
}

.category-icon-modern {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.category-title-modern {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
    letter-spacing: -0.5px;
}

.category-subtitle {
    color: #6c757d;
    font-size: 1rem;
    font-weight: 400;
}

.btn-category-explore {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    color: var(--yellow);
    border: none;
    padding: 12px 24px;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(44,44,44,0.2);
}

.btn-category-explore:hover {
    background: linear-gradient(135deg, var(--yellow) 0%, #ffed4e 100%);
    color: var(--dark-gray);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255,221,51,0.3);
}

.btn-category-explore .svg-move-right {
    transition: transform 0.3s ease;
}

.btn-category-explore:hover .svg-move-right {
    transform: translateX(6px);
}

/* Modern Product Cards */
.products-showcase {
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(248,249,250,0.05) 100%);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(5px);
}

.product-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    height: 100%;
}

.product-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: var(--yellow);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-image-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.product-card-modern:hover .product-image-modern {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.product-overlay-content {
    color: white;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card-modern:hover .product-overlay-content {
    transform: translateY(0);
}

.product-info-modern {
    padding: 1.25rem;
    text-align: center;
}

.product-name-modern {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-price-modern {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-yellow);
    margin: 0;
}

/* Decorative Separator */
.category-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
}

.separator-line {
    height: 2px;
    width: 100px;
    background: linear-gradient(90deg, transparent 0%, var(--yellow) 50%, transparent 100%);
}

.separator-dot {
    width: 12px;
    height: 12px;
    background: var(--yellow);
    border-radius: 50%;
    margin: 0 1rem;
    box-shadow: 0 0 20px rgba(255,221,51,0.4);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .category-header-card .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .category-icon-wrapper {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .category-icon-modern {
        width: 35px;
        height: 35px;
    }
    
    .category-title-modern {
        font-size: 1.5rem;
    }
    
    .products-showcase {
        padding: 1rem;
    }
    
    .btn-category-explore {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .separator-line {
        width: 60px;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .category-title-modern {
        font-size: 1.25rem;
    }
    
    .product-name-modern {
        font-size: 0.9rem;
    }
    
    .product-price-modern {
        font-size: 1rem;
    }
}

/* New Homepage Styles */
#homepage-container {
    background-color: var(--dark-navbar);
}

.custom-grid-row1 {
    display: grid;
    grid-template-columns: 1.29fr 1.29fr 1fr;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.custom-grid-row2 {
    display: grid;
    grid-template-columns: 0.75fr 0.85fr 0.95fr 1fr;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.subgrid-row1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.custom-grid-row3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.home-grid-item {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.home-grid-item img {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.home-grid-item img:hover {
    transform: scale(1.02);
}
.home-grid-item:hover {
    filter: brightness(1.05) contrast(1.05);
}

@media (max-width: 767px) {
    .custom-grid-row1 {
        grid-template-columns: 1fr 1fr;
    }
    .subgrid-row1 {
        grid-template-columns: 1.35fr 1fr;
        grid-column: span 2;
    }
    .custom-grid-row2 {
        grid-template-columns: 1fr 1fr;
    }
    .custom-grid-row3 {
        grid-template-columns: 1fr;
    }
}

.homepage-best-sellers .product-card,
.homepage-birthdays .product-card {
    background-color: white;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.homepage-best-sellers .product-card:hover,
.homepage-birthdays .product-card:hover {
    background-color: rgb(149, 149, 149);
    
    box-shadow: 0 3px 5px rgb(0 0 0 / 0.2);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    #newsletter-registration {
        flex-direction: column;
        align-items: center;
    }
    #newsletter-registration h2 {
        font-size: 1.5rem;
    }
    #newsletter-registration input {
        width: 100%;
    }
    #newsletter-registration button {
        width: 100%;
    }
}

.homepage-icons {
    background-color: #68A2BC;
    color: white;
    height: 100px;
    padding: 1rem;
}
.icon-text {
    line-height: 1.2;
    font-size: 1.2rem;
    font-weight: 600;
}
.icon-text-small {
    font-size: 0.8rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .homepage-icons {
        height: 55px;
        padding: 0.5rem;
    }

    .icon-text {
        font-size: 0.8rem;
    }

    .icon-text-small {
        font-size: 0.6rem;
    }
    .icon-text-small-screen {
        font-size: 0.6rem;
    }

    .homepage-icons img {
        max-height: 30px;
    }

}

/* New product color thumbnails */
.product-color-thumbnail {
    /* overflow: hidden; */
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    display: inline-block;
    padding-bottom: 5px;
    width: 70px;
    box-sizing: border-box;
}
.product-color-thumbnail.active {
    /* outline: 2.5px solid black; 
    outline-offset: -2.5px; */
    box-shadow: 
        inset 0 0 0 2.5px black,
        inset 0 0 0 5px white;
}
.product-color-thumbnail.active .product-color-thumbnail-title {
    font-weight: 600;
    color: black;
}
.product-color-thumbnail:hover {
    border-color: var(--yellow);
    cursor: pointer;
}
.product-color-thumbnail-image-container {
    position: relative; 
    overflow: hidden; 
    border-radius: 10px 10px 0 0;
    z-index: -1;
}
.product-color-thumbnail-image {
    width: 70px; 
    height: 70px; 
    object-fit: cover; 
    transition: transform 0.3s ease; 
    transform: scale(1.5) translateY(10px);
}
.product-color-thumbnail:hover .product-color-thumbnail-image {
    transform: scale(1.3) translateY(10px);
}
.product-color-thumbnail-title {
    font-size: 0.6rem; 
    color: #666; 
    font-weight: 400; 
    padding: 4px 4px 0 4px; 
    width: 100%; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: nowrap;
    text-align: center;
}

/* Color Thumbnails Scrollable Container */
.option-color-thumbnails {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    gap: 8px;
    padding: 5px 40px; /* Space for navigation buttons */
    position: relative;
    align-items: center;
}

.option-color-thumbnails::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.color-thumbnail-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.color-thumbnail-nav-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.color-thumbnail-nav-btn.prev {
    left: 0;
}

.color-thumbnail-nav-btn.next {
    right: 0;
}

.color-thumbnail-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.color-thumbnail-nav-btn:disabled:hover {
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
}

/* --- Footer Styles --- */
.dark-color a.footer-link {
    transition: color 0.2s ease-in-out;
}
.dark-color a.footer-link:hover {
    color: var(--yellow) !important;
}

.footer-social .btn-floating {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease-in-out;
}

.footer-social .btn-floating:hover {
    background-color: var(--yellow) !important;
    border-color: var(--yellow) !important;
    color: var(--dark-gray) !important;
}

.payment-icons i {
    transition: color 0.2s ease-in-out;
}

.payment-icons i:hover {
    color: var(--yellow);
    cursor: pointer;
}

/* About Page Styles */
.about-bg {
    background: linear-gradient(135deg, var(--dark-navbar) 0%, #2c2c54 50%, #40407a 100%);
    min-height: 100vh;
    padding-bottom: 40px;
}
.about-section {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 221, 51, 0.2);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}
.about-section:last-child {
    border-bottom: none;
}
.about-badge {
    background: linear-gradient(90deg, var(--dark-gray) 0%, #1a1a2e 100%);
    color: var(--yellow);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(26, 26, 46, 0.3);
    letter-spacing: 1px;
    border: 2px solid var(--dark-gray);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1rem;
}
.about-title {
    color: #1a1a2e;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}
.about-icon {
    filter: drop-shadow(0 3px 8px rgba(26, 26, 46, 0.4));
}
.about-highlight {
    color: #1a1a2e;
    font-weight: 700;
    /* border-bottom: 2px solid var(--dark-gray); */
    /* padding-bottom: 1px; */
}
.about-link {
    color: #1a1a2e;
    text-decoration: underline;
    font-weight: 600;
    background: linear-gradient(90deg, var(--yellow) 0%, #ffd700 100%);
    padding: 0.1em 0.3em;
    border-radius: 4px;
}
.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}
.about-quote {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #2c2c54 100%);
    border-radius: 12px;
    border-left: 4px solid var(--yellow);
    box-shadow: 0 6px 24px rgba(26, 26, 46, 0.4);
}

/* FAQ Page Styles */
.faq-bg {
    background: linear-gradient(135deg, var(--dark-navbar) 0%, #2c2c54 50%, #40407a 100%);
    min-height: 100vh;
    padding-bottom: 40px;
}
.faq-section {
    margin-bottom: 2rem;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 221, 51, 0.2);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}
.faq-section:last-child {
    border-bottom: none;
}
.faq-question {
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.faq-number {
    background: linear-gradient(135deg, #1a1a2e 0%, #2c2c54 100%);
    color: var(--yellow);
    font-weight: 700;
    border-radius: 50%;
    border: 2px solid #1a1a2e;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(26, 26, 46, 0.3);
}
.faq-answer {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-left: 3.5rem;
}
.faq-highlight {
    color: #1a1a2e;
    font-weight: 700;
    /* border-bottom: 2px solid var(--dark-gray); */
    /* padding-bottom: 1px; */
}
.faq-contact {
    color: #1a1a2e;
    font-weight: 700;
    background: linear-gradient(90deg, var(--yellow) 0%, #ffd700 100%);
    padding: 0.1em 0.4em;
    border-radius: 4px;
}
.faq-title {
    color: #fff;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.faq-subsection {
    margin: 1.5rem 0;
    padding: 1.5rem;
    border-left: 4px solid #1a1a2e;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.08) 0%, rgba(44, 44, 84, 0.05) 100%);
    border-radius: 12px;
    box-shadow: inset 0 2px 4px rgba(26, 26, 46, 0.1);
}
.faq-subsection-title {
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}
.faq-list {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}
.faq-list li {
    margin-bottom: 0.5rem;
    color: #444;
}
.faq-contact-info {
    background: linear-gradient(135deg, #1a1a2e 0%, #2c2c54 100%);
    border-radius: 16px;
    padding: 2rem;
    border-left: 4px solid var(--yellow);
    margin: 1.5rem 0;
    text-align: center;
    color: #fff;
    box-shadow: 0 8px 32px rgba(26, 26, 46, 0.4);
}
.faq-contact-info .faq-contact {
    color: var(--yellow);
    background: none;
    padding: 0;
    font-weight: 600;
}
.faq-emoji {
    font-size: 1.3rem;
    margin-right: 0.6rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Apparel Care Page Styles */
.care-bg {
    background: linear-gradient(135deg, var(--dark-navbar) 0%, #2c2c54 50%, #40407a 100%);
    min-height: 100vh;
    padding-bottom: 40px;
}
.care-section {
    margin-bottom: 2rem;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 221, 51, 0.2);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}
.care-section:last-child {
    border-bottom: none;
}
.care-title {
    color: #fff;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.care-header {
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.care-tip {
    margin: 1rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid #28a745;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.08) 0%, rgba(40, 167, 69, 0.05) 100%);
    border-radius: 8px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
}
.care-subsection {
    margin: 1.5rem 0;
    padding: 1.5rem;
    border-left: 4px solid #1a1a2e;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.08) 0%, rgba(44, 44, 84, 0.05) 100%);
    border-radius: 12px;
    box-shadow: inset 0 2px 4px rgba(26, 26, 46, 0.1);
}
.care-subsection-title {
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}
.care-highlight {
    color: #1a1a2e;
    font-weight: 700;
    /* border-bottom: 2px solid var(--dark-gray);
    padding-bottom: 1px; */
}
.care-emoji {
    font-size: 1.3rem;
    margin-right: 0.6rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.care-contact-info {
    background: linear-gradient(135deg, #1a1a2e 0%, #2c2c54 100%);
    border-radius: 16px;
    padding: 2rem;
    border-left: 4px solid var(--yellow);
    margin: 1.5rem 0;
    text-align: center;
    color: #fff;
    box-shadow: 0 8px 32px rgba(26, 26, 46, 0.4);
}
.care-contact {
    color: var(--yellow);
    font-weight: 600;
}
.care-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
}
.care-final-tip {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.08) 0%, rgba(44, 44, 84, 0.05) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #ffc107;
    margin: 1.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
}

@media (max-width: 768px) {
    .type-option-select, .side-option-select {
        font-size: 0.8rem;
    }
}

/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    display: none;
}

.cookie-consent-banner.show {
    display: block;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.cookie-consent-btn.accept {
    background-color: #27ae60;
    color: white;
}

.cookie-consent-btn.accept:hover {
    background-color: #219a52;
}

.cookie-consent-btn.decline {
    background-color: #e74c3c;
    color: white;
}

.cookie-consent-btn.decline:hover {
    background-color: #c0392b;
}

.cookie-consent-btn.settings {
    background-color: #95a5a6;
    color: white;
}

.cookie-consent-btn.settings:hover {
    background-color: #7f8c8d;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        justify-content: center;
    }
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    overflow-y: auto;
}

.cookie-settings-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-settings-content {
    background: white;
    border-radius: 8px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-settings-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ecf0f1;
}

.cookie-settings-header h3 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 24px;
}

.cookie-settings-header p {
    margin: 0;
    color: #7f8c8d;
    font-size: 14px;
}

.cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid #ecf0f1;
    border-radius: 6px;
    background: #f8f9fa;
}

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

.cookie-category-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.cookie-category-description {
    color: #7f8c8d;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    cursor: pointer;
}

.cookie-toggle input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 1;
}

.cookie-toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
    pointer-events: none;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #27ae60;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(26px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: #bdc3c7;
    cursor: not-allowed;
}

.cookie-toggle input:disabled {
    cursor: not-allowed;
}

.cookie-toggle:hover .cookie-toggle-slider:not(.cookie-toggle input:disabled + .cookie-toggle-slider) {
    box-shadow: 0 0 1px #27ae60;
}

.cookie-toggle-disabled-text {
    color: #95a5a6;
    font-style: italic;
    font-size: 12px;
}

.cookie-settings-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ecf0f1;
}

.cookie-settings-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.cookie-settings-btn.save {
    background-color: #27ae60;
    color: white;
}

.cookie-settings-btn.save:hover {
    background-color: #219a52;
}

.cookie-settings-btn.cancel {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.cookie-settings-btn.cancel:hover {
    background-color: #d5dbdb;
}

@media (max-width: 768px) {
    .cookie-settings-content {
        padding: 20px;
    }
    
    .cookie-settings-buttons {
        flex-direction: column;
    }
}

/* Terms and Conditions Styling */
.terms-conditions-container {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 0;
}

.terms-checkbox {
    /* max-width: 500px; */
    /* text-align: right; */
    /* padding: 1rem 0; */
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
    transition: all 0.3s ease;
    /* position: relative;
    overflow: hidden; */
}

.terms-checkbox.form-check {
    padding-left: 0.2rem;
}

.terms-checkbox .form-check-input {
    margin-right: 0;
    margin-left: 0.75rem;
    transform: scale(1.1);
    border-color: var(--dark-gray);
}

.terms-checkbox .form-check-input:checked {
    background-color: var(--dark-yellow);
    border-color: var(--dark-yellow);
}

.terms-checkbox .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(144, 136, 98, 0.25);
}

.terms-checkbox .form-check-label {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--dark-gray);
    margin: 0;
}

.terms-text {
    margin-left: 0.75rem;
    /* text-align: right; */
}

.terms-link {
    color: var(--dark-yellow);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.terms-checkbox .form-check-input.is-invalid ~ .form-check-label .terms-link,
.terms-checkbox .form-check-label .form-check-input.is-invalid ~ .terms-link {
    color: rgb(79, 5, 5);
}

.terms-link:hover {
    color: var(--dark-gray);
    border-bottom-color: var(--dark-gray);
    text-decoration: none;
}

/* Mobile responsiveness for terms */
@media (max-width: 768px) {
    .terms-conditions-container {
        justify-content: center;
    }
    
    .terms-checkbox {
        max-width: 100%;
        text-align: center;
        padding: 1rem;
    }
    
    .terms-checkbox .form-check-label {
        justify-content: center;
        text-align: center;
    }
    
    .terms-text {
        text-align: center;
    }
}

/* Beautiful Minimal Breadcrumbs */
.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    border: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: #6c757d;
    transition: color 0.2s ease;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0.75rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    float: left;
    padding-right: 0.75rem;
    color: #adb5bd;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item a:hover {
    color: var(--dark-yellow);
}

.breadcrumb-item.active {
    color: #495057;
    font-weight: 500;
}

.breadcrumb-item svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .breadcrumb-item + .breadcrumb-item {
        padding-left: 0.5rem;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        padding-right: 0.5rem;
        font-size: 1rem;
    }
    
    .breadcrumb-item a {
        gap: 0.25rem;
    }
    
    .breadcrumb-item svg {
        width: 12px;
        height: 12px;
    }
}


@media (max-width: 600px) {
    .discount-bar-p {
        font-size: 0.6rem;
    }
}