.text-grey {
    color: #9e8e80;
}

.header__menu--items:hover .header__menu--link {
    color: var(--primary-color) !important;
}

.header__account--btn:hover {
    color: var(--text-white-color);
}

.main__header {
    background-color: #9e8e80;
}

.header__topbar {
    background: var(--primary-color);
}

.header__sticky.sticky {
    background-color: #9e8e80;
}

.header__mega--menu__wrapper {
    width: auto;
    left: auto;
}

.header__mega--menu__li {
    width: 100%;
}

.header__menu--link {
    color: var(--text-white-color) !important;
}

.header__menu--link.active {
    color: var(--active-color) !important;
}

.items__count {
    background-color: var(--active-color);
    line-height: 1.6rem;
}

.header__menu--wrapper {
    gap: 5rem;
}

.header__account--btn {
    color: var(--text-white-color);
}
.header__account--btn:hover {
    color: var(--primary-color);
}

.header__sticky.sticky .header__menu--items:hover .header__menu--link {
    color: var(--primary-color) !important;
}

.header__sticky.sticky .offcanvas__header--menu__open--btn,
.offcanvas__header--menu__open--btn {
    color: var(--text-white-color) !important;
}

.offcanvas__header--menu__open--btn:hover {
    color: var(--primary-color);
}
.header__topbar--inner div {
    scrollbar-width: none;
}

/* mobile nav */

.offcanvas__header.open {
    background-color: var(--secondary-color);
}

.offcanvas__logo img {
    max-width: 100%;
}
.offcanvas__header.open .offcanvas__menu_item {
    color: var(--text-white-color);
}

.offcanvas__sub_menu_toggle {
    color: var(--text-white-color);
}

.offcanvas__sub_menu_li a,
.offcanvas__sub_menu_li p {
    color: var(--text-white-color);
}

.offcanvas__account--items__btn {
    color: var(--text-white-color);
}

.offcanvas__sub_menu_toggle::before,
.offcanvas__sub_menu_toggle::after {
    background-color: var(--text-white-color);
}

.offcanvas__close--btn::before,
.offcanvas__close--btn::after {
    background-color: var(--text-white-color);
}

/* offer modal */

#offerModal .btn-close {
    top: -20px;
    position: absolute;
    right: -22px;
}

#offerModal .modal-dialog {
    padding: 0px 30px;
}

.common-button {
    background-color: var(--button-secondary-color);
    color: var(--text-white-color);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.common-button:hover {
    background-color: var(--button-primary-color);
    color: var(--text-white-color);
}
/* banner */

.hero__slider--layer {
    top: 0;
    right: 0;
}
.swiper-slide-active .slider__layer--img {
    height: 100%;
    object-fit: cover;
}

.primary__btn.slider__btn {
    margin-bottom: 15px;
}

.product__card {
    height: 100%;
}

.offcanvas__sub_menu {
    background-color: #b4b0a5;
}

/* .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  background-color: var(--primary-color);
  color: var(--text-white-color);
  border-radius: 99px;
  line-height: normal;
  border: 1px solid var(--secondary-color);
}

.nav-pills .nav-link {
  border-radius: 99px;
  color: var(--primary-color);
  font-weight: 500;
  border: 1px solid var(--secondary-color);
  line-height: normal;
  padding: 4px 16px;
}

.nav-pills .nav-link:hover {
  background-color: var(--primary-color);
  color: var(--text-white-color);
} */

/* Custom Nav Pills Styling */

.nav-pills-custom-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px 0px;
}

.nav-pills-custom {
    background-color: var(--secondary-color);
    padding: 4px;
    border-radius: 50px;
    display: inline-flex;
    gap: 4px;
}

.nav-pills-custom .nav-link {
    color: var(--text-white-color);
    background-color: transparent;
    border-radius: 50px;
    /* padding: 8px 24px; */
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.nav-pills-custom .nav-link:hover {
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow:
        -1px 0px 7px 2px rgb(35 31 31 / 75%),
        0 -3px 10px 1px rgba(255, 255, 255, 0.4);
}

.nav-pills-custom .nav-link.active {
    color: #ffffff;
    background-color: var(--primary-color);
    box-shadow:
        -1px 0px 7px 2px rgb(35 31 31 / 75%),
        0 -3px 10px 1px rgba(255, 255, 255, 0.4);
}

.footer__logo--img {
    width: 100px;
}

.header__topbar--inner {
    scrollbar-width: none; /* Hide scrollbar on Firefox */
    -ms-overflow-style: none; /* Hide scrollbar on IE/Edge */
}

.header__topbar--inner::-webkit-scrollbar {
    display: none !important; /* Hide scrollbar on Chrome/Safari */
}

/* Container must have a fixed height for the math to work */
.header__topbar--inner {
    height: 40px;
    line-height: 40px;
    position: relative;
}

.slide-item {
    font-size: 12px;
}

/* On Desktop/Tablet: Show all 3 in a row */
@media (min-width: 768px) {
    .topbar-slider {
        display: flex !important;
        justify-content: space-between;
        animation: none !important;
        transform: none !important;
    }
    /* Hide the duplicate on Tablet/Desktop */
    .slide-item:last-child {
        display: none;
    }
}

/* On Mobile: Slide up */
@media (max-width: 767px) {
    .topbar-slider {
        display: block;
        /* 9 seconds total: 3 items x 3 seconds each */
        animation: slideUpSmooth 9s infinite ease-in-out;
    }

    .slide-item {
        text-align: center;
        height: 40px;
        display: block;
    }
}

@keyframes slideUpSmooth {
    /* 0-30% = Stay on Item 1 */
    0%,
    30% {
        transform: translateY(0);
    }
    /* 33-63% = Stay on Item 2 */
    33%,
    63% {
        transform: translateY(-40px);
    }
    /* 66-96% = Stay on Item 3 */
    66%,
    96% {
        transform: translateY(-80px);
    }
    /* 100% = Jump to Duplicate (which looks like Item 1) */
    100% {
        transform: translateY(-120px);
    }
}

/* OUR COLLECTION TAB SLIDER */
@media (max-width: 767px) {
    .mobile-scroll-tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        /* padding-left: 15px;
        padding-right: 15px; */
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory; /* Makes swiping feel smooth */
        scrollbar-width: none; /* Hides scrollbar on Firefox */
    }

    .mobile-scroll-tabs::-webkit-scrollbar {
        display: none; /* Hides scrollbar on Chrome/Safari */
    }

    .nav-item {
        flex: 0 0 auto; /* Prevents buttons from squishing */
        /* scroll-snap-align: start; */
    }

    .nav-link {
        white-space: nowrap; /* Keeps text on one line */
        /* padding: 8px 20px; */
        border-radius: 50px; /* Gives that modern "pill" look */
    }
}

/* footer */

.footer__bg {
    background-color: var(--secondary-color);
}

.footer__logo--img {
    width: 50%;
}

.footer__widget--menu__text:hover {
    color: var(--primary-color) !important;
}

.newsletter__subscribe--button {
    background-color: var(--primary-color);
}

#scroll__top {
    background-color: var(--primary-color);
}
#scroll__top:hover {
    background-color: var(--secondary-color);
}

.account__social a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.account__social img {
    width: 50px;
}

/* login page */

/* Scoped styles for auth page only */
.auth-page-wrapper {
    --auth-primary-color: var(--primary-color);
    --auth-primary-dark: #1e40af;
    --auth-primary-light: #3b82f6;
    --auth-secondary-color: #64748b;
    --auth-success-color: #10b981;
    --auth-danger-color: #ef4444;
    --auth-text-dark: #1e293b;
    --auth-text-light: #64748b;
    --auth-border-color: #e2e8f0;
    --auth-bg-light: #f8fafc;
    --auth-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --auth-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --auth-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --auth-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* Auth Tabs Navigation */
.login__section--inner {
    text-align: center;
}
.auth-page-wrapper .auth-tabs-container {
    animation: authSlideDown 0.5s ease-out;
}

.auth-page-wrapper .nav-pills-auth {
    background-color: #9e8e80;
    padding: 5px 4px;
    border-radius: 50px;
    display: inline-flex;
    gap: 6px;
    box-shadow: var(--auth-shadow-md);
}

.auth-page-wrapper .nav-pills-auth .nav-link {
    color: var(--text-white-color);
    background-color: transparent;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.auth-page-wrapper .nav-pills-auth .nav-link:hover {
    color: #495057;
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.auth-page-wrapper .nav-pills-auth .nav-link.active {
    color: #ffffff;
    background-color: var(--auth-primary-color);
    box-shadow:
        -1px 0px 7px 2px rgb(35 31 31 / 75%),
        0 -3px 10px 1px rgba(255, 255, 255, 0.4);
    position: relative;
}

.auth-page-wrapper .nav-pills-auth .nav-link i {
    font-size: 16px;
}

/* Auth Card */
.auth-page-wrapper .auth-card {
    background: white;
    border-radius: 24px;
    padding: 14px 40px;
    box-shadow: var(--auth-shadow-xl);
    animation: authFadeInUp 0.6s ease-out;
    border: 1px solid var(--auth-border-color);
}

.auth-page-wrapper .auth-card-header {
    text-align: center;
    margin-bottom: 6px;
}

.auth-page-wrapper .auth-title {
    font-size: 26px;
    font-weight: 400;
    color: var(--auth-text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.auth-page-wrapper .auth-subtitle {
    color: var(--auth-text-light);
    font-size: 12px;
    margin: 0;
}

/* Modern Form Elements */
.auth-page-wrapper .form-group-modern {
    position: relative;
}

.auth-page-wrapper .form-label-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 300;
    color: var(--auth-text-dark);
    margin-bottom: 10px;
}

.auth-page-wrapper .form-label-modern i {
    color: var(--auth-primary-color);
    font-size: 16px;
}

.form-input-modern {
    width: 100%;
    padding: 6px 18px;
    font-size: 15px;
    border: 2px solid var(--auth-border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
    color: var(--auth-text-dark);
}

.form-input-modern:focus {
    outline: none;
    border-color: var(--auth-primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

.auth-page-wrapper .form-input-modern::placeholder {
    color: #94a3b8;
}

/* Password Toggle */
.auth-page-wrapper .password-input-wrapper {
    position: relative;
}

.auth-page-wrapper .password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--auth-text-light);
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s ease;
}

.auth-page-wrapper .password-toggle:hover {
    color: var(--auth-primary-color);
}

.auth-page-wrapper .password-toggle.active i:before {
    content: "\f070"; /* fa-eye-slash */
}

/* Form Options */
.auth-page-wrapper .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Custom Checkbox */
.auth-page-wrapper .custom-checkbox {
    position: relative;
}

.auth-page-wrapper .checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.auth-page-wrapper .checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.auth-page-wrapper .forgot-link {
    background: none;
    border: none;
    color: var(--auth-primary-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.auth-page-wrapper .forgot-link:hover {
    color: var(--auth-primary-dark);
    text-decoration: underline;
}

.auth-page-wrapper .terms-link {
    color: var(--auth-primary-color);
    font-weight: 600;
    text-decoration: none;
}

.auth-page-wrapper .terms-link:hover {
    text-decoration: underline;
}

/* Modern Button */
.auth-page-wrapper .login-btn {
    background-color: var(--button-secondary-color);
    color: var(--text-white-color);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Divider */
.auth-page-wrapper .divider-modern {
    position: relative;
    text-align: center;
    margin: 28px 0;
}

.auth-page-wrapper .divider-modern::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--auth-border-color);
}

.auth-page-wrapper .divider-modern span {
    position: relative;
    background: white;
    padding: 0 16px;
    font-size: 13px;
    color: var(--auth-text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Google Button */
.auth-page-wrapper .btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 28px;
    background: white;
    border: 2px solid var(--auth-border-color);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 400;
    color: var(--auth-text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-page-wrapper .btn-google:hover {
    border-color: var(--auth-primary-color);
    background: var(--auth-bg-light);
    transform: translateY(-2px);
    box-shadow: var(--auth-shadow-md);
    color: var(--auth-text-dark);
}

.auth-page-wrapper .google-icon {
    width: 20px;
    height: 20px;
}

/* Alert Styles */
.auth-page-wrapper .alert-modern {
    border-radius: 12px;
    border: none;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    animation: authSlideDown 0.3s ease-out;
}

.auth-page-wrapper .alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border-left: 4px solid #10b981;
}

.auth-page-wrapper .alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-left: 4px solid #ef4444;
}

/* Modal Styling */
.auth-page-wrapper .modal-modern {
    border-radius: 24px;
    border: none;
    overflow: hidden;
}

/* Animations */
@keyframes authFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes authSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Error Text */
.auth-page-wrapper .text-danger {
    font-size: 13px;
    margin-top: 6px;
    display: block;
    text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-page-wrapper .auth-card {
        padding: 32px 24px;
    }

    .auth-page-wrapper .auth-title {
        font-size: 18px;
    }

    .auth-page-wrapper .nav-pills-auth .nav-link {
        font-size: 12px;
    }
}

/* ========================================
   Forgot Password Modal Styles
======================================== */

.modal-modern {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.modal-modern .modal-header {
    padding: 1.5rem 1.5rem 0;
    position: relative;
}

.btn-close-modern {
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 10;
    transition: all 0.3s ease;
    cursor: pointer;
    color: #6c757d;
}

.btn-close-modern:hover {
    background: #f8f9fa;
    color: #000;
    transform: rotate(90deg);
}

.btn-close-modern i {
    font-size: 1.2rem;
}

/* Icon Header */
.forgot-password-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    animation: iconPulse 2s ease-in-out infinite;
}

.forgot-password-icon i {
    font-size: 2rem;
    color: #fff;
}

@keyframes iconPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    }
}

.modal-title-modern {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.modal-subtitle-modern {
    font-size: 0.95rem;
    color: #718096;
    margin: 0;
    line-height: 1.5;
}

/* Alert Messages */
.alert-modern {
    border: none;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 12px;
    display: flex;
    align-items: center;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-modern.alert-danger {
    background: #fee;
    color: #c53030;
}

.alert-modern.alert-success {
    background: #e6fffa;
    color: #047857;
}

.alert-modern i {
    font-size: 1.1rem;
}

/* Primary Button */
.btn-modern-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #fff;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-modern-primary:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-modern-primary:hover:before {
    left: 100%;
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-modern-primary:active {
    transform: translateY(0);
}

.btn-modern-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-modern-primary .btn-text,
.btn-modern-primary .btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Back to Login Link */
.back-to-login {
    color: var(--active-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    margin-left: 5px;
    font-size: 12px;
}

.back-to-login:hover {
    color: #764ba2;
    transform: translateX(-3px);
}

.back-to-login i {
    transition: transform 0.3s ease;
}

.back-to-login:hover i {
    transform: translateX(-3px);
}

/* Modal Animation */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}

/* Responsive */
@media (max-width: 576px) {
    .modal-modern {
        margin: 1rem;
    }

    .forgot-password-icon {
        width: 70px;
        height: 70px;
    }

    .forgot-password-icon i {
        font-size: 1.75rem;
    }

    .modal-title-modern {
        font-size: 1.5rem;
    }

    .modal-subtitle-modern {
        font-size: 0.875rem;
    }
}

.product__card {
    border-radius: 12px;
}
.product__card--thumbnail {
    border-radius: 12px 12px 0px 0px;
}

.current__price {
    color: var(--active-color);
}

.product__card--title {
    font-weight: 400;
}

/* product Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Base */
.card {
    height: 100%;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

/* Card Image Wrapper */
.card-image {
    position: relative;
    aspect-ratio: 1 / 1.3;
    overflow: hidden;
    background: #f0ede8;
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        opacity 0.5s ease,
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Primary & Hover Image Swap */
.card-image .img-primary {
    position: absolute;
    inset: 0;
    opacity: 1;
}

.card-image .img-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.08);
}

.card:hover .img-primary {
    opacity: 0;
    transform: scale(1.08);
}

.card:hover .img-hover {
    opacity: 1;
    transform: scale(1);
}

/* Badge (New / Bestseller / Limited) */
.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #c9a84c;
    color: #fff;
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    font-weight: 500;
    z-index: 2;
}

/* Card Body */
.card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 12px 10px;
    border-top: 1px solid #f0ede8;
    text-align: center;
}

.card-name {
    font-size: 16px;
    color: var(--active-color);
    line-height: 1.3;
    margin-bottom: 5px;
}

.card-price {
    font-size: 13px;
    color: var(--active-color);
    letter-spacing: 0.05em;
    margin-bottom: 2px;
    line-height: 1.3;
    margin-top: auto;
    margin-bottom: 10px;
}

/* Actions Row */
.card-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
}

/* Add to Cart Button */
.btn-cart {
    flex: 1;
    padding: 7px 0;
    border: 1.5px solid var(--active-color);
    background: transparent;
    color: var(--active-color);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

@media (max-width: 463px) {
    .btn-cart {
        font-size: 10px;
    }
}

.btn-cart::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--active-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.btn-cart span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-cart:hover::after {
    transform: scaleX(1);
}
.btn-cart:hover span {
    color: #ffffff;
}

.btn-cart.disabled {
    pointer-events: none;
    opacity: 0.6;
    border-color: #999;
    cursor: not-allowed;
}

.btn-cart.disabled span {
    color: #999;
}

/* Loading State */
.btn-cart.loading {
    pointer-events: none;
    border-color: var(--active-color);
}

.btn-cart.loading span {
    visibility: hidden; /* hide text but keep button width */
}

.btn-cart.loading::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--active-color);
    border-radius: 50%;
    animation: btn-spin 0.7s linear infinite;
    z-index: 2;
}

.btn-cart.loading::after,
.btn-cart.loading.disabled::after {
    display: none; /* ✅ covers both cases */
}

@keyframes btn-spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Favourite / Wishlist Button */
.btn-fav {
    width: 42px;
    height: 41px;
    flex-shrink: 0;
    border: 1.5px solid var(--active-color);
    background: transparent;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.3s ease,
        border-color 0.3s ease;
    border-radius: 8px;
}

.btn-fav svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--active-color);
    stroke-width: 1.8;
    transition:
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        fill 0.3s ease,
        stroke 0.3s ease;
}

.btn-fav:hover {
    background: #fff0f0;
    border-color: #e05c5c;
}

.btn-fav:hover svg {
    stroke: #e05c5c;
    transform: scale(1.2);
}

/* Active / Wishlisted State */
.btn-fav.active {
    background: #fff0f0;
    border-color: #e05c5c;
}

.btn-fav.active svg {
    fill: #e05c5c;
    stroke: #e05c5c;
    transform: scale(1.15);
}

.text-end {
    font-size: 12px;
}

.footer__widget--title {
    font-weight: 300;
}

.footer__widget--menu__list {
    text-transform: uppercase;
}

.custom-main-title {
    /* font-family: 'Cormorant Garamond', serif; */
    /* font-size: clamp(36px, 5vw, 56px); */
    font-weight: 300;
    /* font-style: italic; */
    color: var(--active-color);
    line-height: 1.1;
    text-transform: uppercase;
}

.divider {
    width: 40px;
    height: 1px;
    background: var(--active-color);
    margin: 1px auto 0;
}

.footer__account--buttons {
    margin-bottom: 24px;
}

.footer__account--btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 3px;
    text-decoration: none;
    border: 1.5px solid #fff;
    background: #fff;
    color: #2a2218;
    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.footer__account--btn:hover {
    background: transparent;
    color: #fff;
}

.breadcrumb__bg {
    background-color: transparent;
}
.shop__header {
    background-color: transparent;
}
.shop__collection--title {
    font-weight: 300;
    text-transform: uppercase;
    color: var(--active-color);
}

.product__view--label {
    font-weight: 300;
    text-transform: uppercase;
    color: var(--active-color);
}
.product__showing--count {
    font-weight: 300;
    text-transform: uppercase;
    color: var(--active-color);
}

.breadcrumb__content--menu__items a,
.breadcrumb__content--menu__items span {
    color: var(--active-color);
    text-transform: uppercase;
}

.breadcrumb__content--menu__items a:hover,
.breadcrumb__content--menu__items span:hover {
    color: var(--primary-color);
}

.contact__info--content__title {
    font-weight: 300;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--active-color);
}

.contact__info--icon {
    padding: 0;
}

.contact__form--title {
    font-weight: 300;
    text-transform: uppercase;
    color: var(--active-color);
}

.predictive__search--title {
    font-weight: 300;
    text-transform: uppercase;
    color: var(--active-color);
}

.product__details--info__title {
    font-weight: 300;
    color: var(--active-color);
}

.modal-content.quickview__main__content {
    max-height: 95vh;
}

.quickview__variant--list {
    gap: 10px;
}

.quickview__social--title {
    font-weight: 400;
}

.swal-cart-toast {
    font-family: "Roboto", sans-serif !important;
    font-size: 12px !important;
}

.swal-cart-toast .swal2-title {
    font-family: "Roboto", sans-serif !important;
    font-size: 12px !important;
}

/* Remove Button Base */
.cart__remove--btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    transition: opacity 0.3s ease;
}

/* Icon */
.remove-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

/* Spinner — hidden by default */
.remove-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-top-color: currentColor;
    border-radius: 50%;
    animation: remove-spin 0.7s linear infinite;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Removing State */
.cart__remove--btn.removing {
    pointer-events: none;
    opacity: 0.7;
}

.cart__remove--btn.removing .remove-icon {
    opacity: 0;
    transform: scale(0.5);
}

.cart__remove--btn.removing .remove-spinner {
    opacity: 1;
}

@keyframes remove-spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.product__media--preview__items--img {
    aspect-ratio: 1/1;
    object-fit: cover;
}

.product__variant--title {
    color: var(--active-color);
    font-weight: 300;
}

.product__variant--list {
    gap: 10px;
}

.product__variant--list .btn-cart {
    max-width: 130px;
}
.product__details--summary__title {
    color: var(--active-color);
    font-weight: 300;
}

.feature__content--title {
    font-weight: 300;
    text-transform: uppercase;
    color: var(--active-color);
}

.feature__content--desc {
    font-weight: 300;
    color: var(--active-color);
}

.quantity__box {
    color: var(--active-color);
    font-weight: 300;
}

.quantity__number {
    color: var(--active-color);
    font-weight: 300;
}

.checkout__header--title {
    font-weight: 300;
}

.checkout__order--summary__title {
    font-weight: 300;
    color: var(--active-color);
}
.product__description--name {
    font-weight: 300;
    color: var(--active-color);
}

.previous__link--content:hover {
    color: var(--primary-color);
}

.checkout__total--footer__amount {
    font-weight: 300;
    color: var(--active-color);
}

.payment__history--title {
    font-weight: 300;
    color: var(--active-color);
}

.order-complete-section {
    text-align: center;
}

/* ── Payment Section ──────────────────────────────────────── */
.payment__history {
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.payment__history--title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 14px;
}

.payment__history--inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment__history--list {
    width: 100%;
}

.payment-option {
    display: block;
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    transition:
        border-color 0.2s,
        box-shadow 0.2s,
        background 0.2s;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
    border-radius: 10px 0 0 10px;
    transition: background 0.2s;
}

.payment-option input:checked + .payment-card {
    border-color: #111;
    background: #f5f5f5;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.payment-option input:checked + .payment-card::before {
    background: #111;
}

.payment-card:hover {
    border-color: #bbb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.payment-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.payment-option input:checked + .payment-card .payment-icon-wrap {
    background: #111;
}

.payment-icon-wrap i {
    font-size: 17px;
    color: #666;
    transition: color 0.2s;
}

.payment-option input:checked + .payment-card .payment-icon-wrap i {
    color: #fff;
}

.payment-card-info {
    flex: 1;
}

.payment-card-label {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    display: block;
    line-height: 1.3;
}

.payment-card-sub {
    font-size: 11px;
    color: #aaa;
    margin-top: 2px;
    display: block;
}

.payment-card-badges {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.card-badge {
    height: 19px;
    padding: 0 7px;
    background: #ececec;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #666;
    display: flex;
    align-items: center;
}

.payment-card-radio {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s;
}

.payment-option input:checked + .payment-card .payment-card-radio {
    border-color: #111;
}

.payment-card-radio::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #111;
    opacity: 0;
    transform: scale(0);
    transition:
        opacity 0.2s,
        transform 0.2s;
}

.payment-option input:checked + .payment-card .payment-card-radio::after {
    opacity: 1;
    transform: scale(1);
}

/* Error state */
.payment__history--inner.has-error .payment-card {
    border-color: #e53935;
    background: #fff5f5;
}

/* MINI CART */

/* .offCanvas__minicart {
    position: relative;
} */

.minicart__overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.minicart__overlay--spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e0e0e0;
    border-top-color: #333;
    border-radius: 50%;
    animation: minicart-spin 0.7s linear infinite;
}

@keyframes minicart-spin {
    to {
        transform: rotate(360deg);
    }
}

.image__width--text__section{
    color: var(--active-color);
}

.banner__fullwidth--section{
    color: var(--active-color);
}

.account__content--title{
    color: var(--active-color);
    font-weight: 400;
}

.account__menu--list {
    font-weight: 300;
}
@keyframes border-pulse {
    0%, 100% { border-color: rgba(46,125,50,0.8); }
    50%       { border-color: rgba(46,125,50,0.2); }
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 4px 12px;
    border-radius: 3px;
    background: transparent;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1.5px solid;
    white-space: nowrap;
    line-height: 1.4;
}

.stock-badge.in-stock {
    color: #2e7d32;
    border-color: #2e7d32;
    animation: border-pulse 2s ease-in-out infinite;
}

.stock-badge.out-of-stock {
    color: #c62828;
    border-color: #c62828;
    animation: border-pulse-red 2s ease-in-out infinite;
}

@keyframes border-pulse-red {
    0%, 100% { border-color: rgba(198,40,40,0.8); }
    50%       { border-color: rgba(198,40,40,0.2); }
}

.stock-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: blink 1.4s ease-in-out infinite;
}

.stock-badge.in-stock::before {
    background: #2e7d32;
}

.stock-badge.out-of-stock::before {
    background: #c62828;
}

.price-with-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.limited-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px 4px 10px;
    background: #2d5a1b;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
    line-height: 1.2;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
}

.limited-offer-badge svg {
    fill: #fff;
    flex-shrink: 0;
}


.quickview__info{
    color: var(--active-color);
}
.product__details--info__desc{
    color: var(--active-color);
}

/* ===================== SEARCH RESULTS ===================== */
@keyframes search-shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

.search-skeleton-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 400px 100%;
    animation: search-shimmer 1.2s ease-in-out infinite;
    border-radius: 4px 4px 0 0;
}

.search-skeleton-line {
    height: 12px;
    border-radius: 4px;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 400px 100%;
    animation: search-shimmer 1.2s ease-in-out infinite;
    width: 100%;
}

.search-skeleton-line.short { width: 65%; }
.search-skeleton-line.price { width: 40%; height: 14px; margin-bottom: 14px; }

.search-skeleton-btn {
    flex: 1;
    height: 36px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 400px 100%;
    animation: search-shimmer 1.2s ease-in-out infinite;
}

.search-skeleton-fav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 400px 100%;
    animation: search-shimmer 1.2s ease-in-out infinite;
}

#searchLoadMoreWrap { margin-top: 24px; }

#searchLoadMore:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===================== SEARCH RESULTS SCROLL ===================== */
#searchResultsArea {
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 6px;
    margin-top: 20px;
}

/* Scrollbar styling */
#searchResultsArea::-webkit-scrollbar {
    width: 4px;
}

#searchResultsArea::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 4px;
}

#searchResultsArea::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

#searchResultsArea::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}


/* ================== CMS CONTENT ======================== */


.cms-content-render ol li{
  list-style: inherit;
  line-height: inherit;
}

.cms-content-render ul{
  padding-left: 20px; 
}

.cms-content-render ul li{
  list-style: inherit;
  line-height: inherit;
}