/* ============================================
   MONICKA FASHIONS - Enterprise Premium UI
   ============================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
    --mf-accent: #c8956c;
    --mf-accent-light: #e8c9a8;
    --mf-accent-dark: #9e6e42;
    --mf-gold: #c5a47e;
    --mf-gold-light: #e8d5be;
    --mf-rose: #d4a0a0;
    --mf-rose-light: #f5e6e6;
    --mf-charcoal: #2c2c2c;
    --mf-dark: #1a1a1a;
    --mf-text: #3a3a3a;
    --mf-text-light: #6e6e6e;
    --mf-bg-cream: #faf8f5;
    --mf-bg-warm: #f5f0eb;
    --mf-border: #e8e2db;
    --mf-heading: 'Playfair Display', Georgia, serif;
    --mf-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --mf-accent-font: 'Cormorant Garamond', Georgia, serif;
    --mf-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --mf-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --mf-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    --mf-radius: 8px;
    --mf-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ======== GLOBAL BASE ======== */
body {
    font-family: var(--mf-body) !important;
    color: var(--mf-text);
    background-color: var(--mf-bg-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--mf-heading) !important;
    color: var(--mf-charcoal);
    font-weight: 500;
}

a {
    transition: var(--mf-transition);
}

/* ======== HEADER ======== */
.header-desk {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: none;
}

header.header_sticky.header_sticky-active {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
}

.navigation__link {
    font-family: var(--mf-body) !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: var(--mf-charcoal) !important;
    position: relative;
}

.navigation__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--mf-accent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navigation__link:hover::after,
.navigation__link.active::after {
    width: 100%;
}

.navigation__link:hover {
    color: var(--mf-accent) !important;
}

.header-tools__item {
    transition: var(--mf-transition);
}

.header-tools__item:hover {
    color: var(--mf-accent) !important;
    transform: translateY(-1px);
}

/* ======== HERO BANNER ======== */
.modern-hero-section {
    font-family: var(--mf-heading) !important;
}

.hero-title {
    font-family: var(--mf-heading) !important;
    font-weight: 600 !important;
}

.hero-subtitle {
    font-family: var(--mf-body) !important;
    letter-spacing: 3px !important;
}

.hero-description {
    font-family: var(--mf-body) !important;
}

.hero-btn.primary {
    background: linear-gradient(135deg, var(--mf-accent), var(--mf-accent-dark)) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.hero-btn.primary:hover {
    box-shadow: 0 15px 40px rgba(200, 149, 108, 0.5) !important;
    background: linear-gradient(135deg, var(--mf-accent-dark), var(--mf-accent)) !important;
}

/* ======== SECTION TITLES ======== */
.section-title h2,
h2.section-title,
.categories-title h2 {
    font-family: var(--mf-heading) !important;
    font-size: 32px !important;
    font-weight: 500 !important;
    color: var(--mf-charcoal) !important;
    letter-spacing: 0.02em;
}

/* ======== PRODUCT CARDS ======== */
.pc__img-wrapper {
    overflow: hidden;
    background: var(--mf-bg-warm);
}

.pc__img-wrapper img {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.pc:hover .pc__img-wrapper img {
    transform: scale(1.06);
}

.pc__info h6,
.pc__info .pc__title {
    font-family: var(--mf-heading) !important;
    font-size: 15px !important;
    font-weight: 500;
    color: var(--mf-charcoal);
    transition: color 0.3s ease;
}

.pc:hover .pc__info h6 {
    color: var(--mf-accent);
}

.pc__info .pc__price {
    font-family: var(--mf-body) !important;
    font-weight: 600;
}

.pc__atc {
    background: var(--mf-charcoal) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    font-family: var(--mf-body) !important;
    font-weight: 500;
    font-size: 12px !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--mf-transition);
}

.pc__atc:hover {
    background: var(--mf-accent) !important;
    transform: translateY(-2px);
}

.pc__badge,
.product-label {
    background: var(--mf-accent) !important;
    font-family: var(--mf-body) !important;
    font-weight: 600;
    font-size: 11px !important;
    letter-spacing: 0.08em;
}

.products-grid .pc:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

/* ======== SHOP PAGE ======== */
.shop-sidebar .accordion-button {
    font-family: var(--mf-heading) !important;
    font-size: 16px;
    font-weight: 500;
    color: var(--mf-charcoal);
}

.shop-sidebar .list-item {
    font-size: 14px;
    padding: 6px 0;
    transition: color 0.3s;
}

.shop-sidebar .list-item:hover {
    color: var(--mf-accent);
}

.shop-acs__select {
    font-family: var(--mf-body) !important;
    border-radius: var(--mf-radius);
}

/* Pagination */
.page-link {
    font-family: var(--mf-body) !important;
    color: var(--mf-charcoal);
    border: 1px solid var(--mf-border);
    border-radius: var(--mf-radius) !important;
    margin: 0 3px;
    font-weight: 500;
    transition: var(--mf-transition);
}

.page-link:hover {
    background: var(--mf-accent) !important;
    border-color: var(--mf-accent) !important;
    color: #fff !important;
}

.page-item.active .page-link {
    background: var(--mf-charcoal) !important;
    border-color: var(--mf-charcoal) !important;
}

/* ======== PRODUCT DETAIL ======== */
.product-single__title {
    font-family: var(--mf-heading) !important;
    font-size: 28px !important;
    font-weight: 500 !important;
    color: var(--mf-charcoal);
}

.product-single__price {
    font-family: var(--mf-body) !important;
    font-size: 26px !important;
    font-weight: 700;
}

.swatch__item,
.attribute-button {
    border: 1.5px solid var(--mf-border) !important;
    border-radius: var(--mf-radius) !important;
    padding: 8px 18px !important;
    font-family: var(--mf-body) !important;
    font-size: 13px !important;
    font-weight: 500;
    background: #fff !important;
    transition: var(--mf-transition);
}

.swatch__item:hover,
.attribute-button:hover {
    border-color: var(--mf-accent) !important;
    color: var(--mf-accent) !important;
}

.swatch__item.selected,
.attribute-button.selected {
    background: var(--mf-charcoal) !important;
    border-color: var(--mf-charcoal) !important;
    color: #fff !important;
}

#add-to-cart-btn {
    background: var(--mf-charcoal) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 16px 48px !important;
    font-family: var(--mf-body) !important;
    font-weight: 600;
    font-size: 14px !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--mf-transition);
}

#add-to-cart-btn:hover:not(:disabled) {
    background: var(--mf-accent) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 149, 108, 0.35);
}

/* ======================================================
   AUTH PAGES (LOGIN / REGISTER) - Full Luxury Redesign
   ====================================================== */

.auth-page {
    padding: 0 !important;
    margin: 0 !important;
}

.auth-page .pt-90 {
    padding-top: 0 !important;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    width: 100%;
}

/* -- Left Hero Panel -- */
.auth-hero {
    position: relative;
    background: linear-gradient(145deg, #2c2c2c 0%, #1a1a1a 40%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px;
}

.auth-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(200, 149, 108, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.auth-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(200, 149, 108, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.auth-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8956c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.auth-hero__content {
    position: relative;
    z-index: 2;
    max-width: 440px;
}

.auth-hero__logo {
    margin-bottom: 48px;
}

.auth-hero__logo-img {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.auth-hero__title {
    font-family: var(--mf-heading) !important;
    font-size: 38px !important;
    font-weight: 500 !important;
    color: #fff !important;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.auth-hero__subtitle {
    font-family: var(--mf-body) !important;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 48px;
}

.auth-hero__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-hero__feature {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--mf-body);
    font-size: 14px;
}

.auth-hero__feature i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 149, 108, 0.15);
    border-radius: 10px;
    color: var(--mf-accent);
    font-size: 16px;
    flex-shrink: 0;
}

/* -- Right Form Panel -- */
.auth-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: #fff;
    overflow-y: auto;
}

.auth-form-wrapper {
    width: 100%;
    max-width: 440px;
}

.auth-form-header {
    margin-bottom: 36px;
}

.auth-form-title {
    font-family: var(--mf-heading) !important;
    font-size: 32px !important;
    font-weight: 500 !important;
    color: var(--mf-charcoal) !important;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.auth-form-desc {
    font-family: var(--mf-body);
    font-size: 15px;
    color: var(--mf-text-light);
    margin: 0;
}

/* Form Fields */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-fields-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.auth-label {
    font-family: var(--mf-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--mf-text-light);
    letter-spacing: 0.03em;
}

.auth-label i {
    color: var(--mf-accent);
    margin-right: 4px;
    font-size: 12px;
}

.auth-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--mf-border);
    border-radius: var(--mf-radius);
    font-family: var(--mf-body);
    font-size: 14px;
    color: var(--mf-charcoal);
    background: var(--mf-bg-cream);
    transition: var(--mf-transition);
    outline: none;
}

.auth-input::placeholder {
    color: #bbb;
    font-weight: 300;
}

.auth-input:focus {
    border-color: var(--mf-accent);
    box-shadow: 0 0 0 4px rgba(200, 149, 108, 0.1);
    background: #fff;
}

.auth-input.is-invalid {
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.08);
}

.auth-error {
    font-size: 12px;
    color: #e74c3c;
    font-family: var(--mf-body);
}

/* Submit Button */
.auth-submit {
    width: 100%;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    background: var(--mf-charcoal);
    color: #fff;
    font-family: var(--mf-body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--mf-transition);
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-submit:hover {
    background: var(--mf-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 149, 108, 0.3);
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 28px 0;
    gap: 16px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--mf-border);
}

.auth-divider span {
    font-size: 12px;
    color: var(--mf-text-light);
    font-family: var(--mf-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

/* Social Buttons */
.auth-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.auth-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border: 1.5px solid var(--mf-border);
    border-radius: 50px;
    font-family: var(--mf-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--mf-charcoal);
    text-decoration: none;
    transition: var(--mf-transition);
    background: #fff;
}

.auth-social-btn:hover {
    border-color: var(--mf-accent);
    box-shadow: var(--mf-shadow-sm);
    transform: translateY(-1px);
    color: var(--mf-charcoal);
    text-decoration: none;
}

.auth-social-btn i {
    font-size: 16px;
}

.auth-social-phone i {
    color: var(--mf-charcoal);
}

.auth-social-google i {
    color: #4285f4;
}

/* Footer Link */
.auth-footer {
    text-align: center;
    margin-top: 28px;
    font-family: var(--mf-body);
    font-size: 14px;
    color: var(--mf-text-light);
}

.auth-link {
    color: var(--mf-accent) !important;
    font-weight: 600;
    text-decoration: none !important;
    margin-left: 6px;
    transition: color 0.3s;
}

.auth-link:hover {
    color: var(--mf-accent-dark) !important;
}

/* Auth Pages Responsive */
@media (max-width: 992px) {
    .auth-container {
        grid-template-columns: 1fr;
    }

    .auth-hero {
        display: none;
    }

    .auth-form-side {
        min-height: 100vh;
        padding: 80px 24px 40px;
    }
}

@media (max-width: 576px) {
    .auth-fields-row {
        grid-template-columns: 1fr;
    }

    .auth-form-title {
        font-size: 26px !important;
    }
}


/* ======== FOOTER ======== */
.footer.footer_type_2 {
    background-color: var(--mf-dark) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    padding-top: 0 !important;
}

.footer.footer_type_2 .footer-middle {
    padding-top: 60px;
    padding-bottom: 40px;
    background: transparent !important;
}

.footer.footer_type_2 .footer-middle.container,
.footer.footer_type_2 .container {
    background: transparent !important;
}

.footer.footer_type_2 .footer-column p,
.footer.footer_type_2 .footer-column .icon,
.footer.footer_type_2 .footer-column .fw-medium,
.footer.footer_type_2 .footer-column strong,
.footer.footer_type_2 .footer-store-info p,
.footer.footer_type_2 .footer-store-info a,
.footer.footer_type_2 .footer-store-info .icon {
    color: rgba(255, 255, 255, 0.6) !important;
}

.footer.footer_type_2 h5,
.footer.footer_type_2 h6,
.footer.footer_type_2 .footer-title,
.footer.footer_type_2 .sub-menu__title {
    font-family: var(--mf-heading) !important;
    color: #ffffff !important;
    font-weight: 500;
    font-size: 16px !important;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.05em;
}

.footer.footer_type_2 h5::after,
.footer.footer_type_2 h6::after,
.footer.footer_type_2 .footer-title::after,
.footer.footer_type_2 .sub-menu__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--mf-accent);
}

.footer.footer_type_2 a,
.footer.footer_type_2 .menu-link,
.footer.footer_type_2 .menu-link_us-s {
    color: rgba(255, 255, 255, 0.55) !important;
    font-family: var(--mf-body) !important;
    font-size: 14px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer.footer_type_2 a:hover,
.footer.footer_type_2 .menu-link:hover,
.footer.footer_type_2 .menu-link_us-s:hover {
    color: var(--mf-accent) !important;
    padding-left: 4px;
}

.footer.footer_type_2 .footer__social-link {
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer.footer_type_2 .footer__social-link svg {
    fill: rgba(255, 255, 255, 0.5) !important;
}

.footer.footer_type_2 .footer__social-link:hover {
    color: var(--mf-accent) !important;
    padding-left: 0;
}

.footer.footer_type_2 .footer__social-link:hover svg {
    fill: var(--mf-accent) !important;
}

.footer.footer_type_2 .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 20px 0;
    margin-top: 0;
}

.footer.footer_type_2 .footer-bottom a {
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 13px;
}

.footer.footer_type_2 .footer-bottom a:hover {
    color: var(--mf-accent) !important;
    padding-left: 0;
}

.footer.footer_type_2 .footer-copyright {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 13px;
}

/* Footer Newsletter styling for dark theme */
.footer.footer_type_2 .newsletter-input {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 50px !important;
    color: #fff !important;
    padding: 14px 20px;
}

.footer.footer_type_2 .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.footer.footer_type_2 .newsletter-input:focus {
    border-color: var(--mf-accent) !important;
    box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.15) !important;
}

.footer.footer_type_2 .newsletter-btn {
    border-radius: 50px !important;
    background: var(--mf-accent) !important;
    border: none !important;
}

.footer.footer_type_2 .newsletter-btn:hover {
    background: var(--mf-accent-dark) !important;
}

.footer.footer_type_2 .text-muted {
    color: rgba(255, 255, 255, 0.35) !important;
}

.footer.footer_type_2 .footer-newsletter p {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Footer Logo - make white on dark bg */
.footer.footer_type_2 .logo__image {
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

/* ======== HIDE PWA INSTALL BUTTON ======== */
.pwa-install-button,
#pwa-install-btn {
    display: none !important;
}

/* ======== GLOBAL BUTTONS ======== */
.btn-primary {
    background: var(--mf-accent) !important;
    border-color: var(--mf-accent) !important;
    border-radius: 50px !important;
    font-family: var(--mf-body) !important;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: var(--mf-transition);
}

.btn-primary:hover {
    background: var(--mf-accent-dark) !important;
    border-color: var(--mf-accent-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 149, 108, 0.3);
}

/* ======== FORMS GLOBAL ======== */
.form-control,
.form-select {
    font-family: var(--mf-body) !important;
    border-radius: var(--mf-radius) !important;
}

.form-control:focus {
    border-color: var(--mf-accent) !important;
    box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.12) !important;
}

/* ======== MODAL ======== */
.modal-content {
    border-radius: 16px !important;
    border: none !important;
    box-shadow: var(--mf-shadow-lg) !important;
}

.modal-header .modal-title {
    font-family: var(--mf-heading) !important;
}

/* ======== CART ======== */
.cart-table th {
    font-family: var(--mf-body) !important;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mf-text-light);
    border-bottom: 2px solid var(--mf-charcoal);
}

.cart-totals {
    background: var(--mf-bg-warm);
    border-radius: var(--mf-radius);
    padding: 28px;
    border: 1px solid var(--mf-border);
}

/* ======== ALERTS ======== */
.alert {
    border-radius: var(--mf-radius);
    font-family: var(--mf-body);
    border: none;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

/* ======== BREADCRUMBS ======== */
.breadcrumb {
    font-family: var(--mf-body) !important;
    font-size: 13px;
}

/* ======== SCROLLBAR ======== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--mf-bg-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--mf-accent-light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--mf-accent);
}

/* ======== CART & CHECKOUT ======== */
.page-title {
    font-family: var(--mf-heading) !important;
    font-size: 30px !important;
    font-weight: 500 !important;
    color: var(--mf-charcoal);
    text-align: center;
    margin-bottom: 24px;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.checkout-steps__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    text-decoration: none !important;
    color: var(--mf-text-light);
    border-bottom: 2px solid var(--mf-border);
    transition: var(--mf-transition);
}

.checkout-steps__item.active {
    color: var(--mf-charcoal);
    border-bottom-color: var(--mf-accent);
}

.checkout-steps__item-number {
    font-family: var(--mf-heading) !important;
    font-size: 20px;
    font-weight: 600;
    color: var(--mf-accent-light);
}

.checkout-steps__item.active .checkout-steps__item-number {
    color: var(--mf-accent);
}

.checkout-steps__item-title span {
    font-family: var(--mf-body) !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    display: block;
}

.checkout-steps__item-title em {
    font-style: normal;
    font-size: 12px;
    color: var(--mf-text-light);
}

.cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.cart-table th {
    font-family: var(--mf-body) !important;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mf-text-light);
    border-bottom: 2px solid var(--mf-charcoal);
    padding: 12px 16px;
}

.cart-table td {
    padding: 20px 16px;
    vertical-align: middle;
    border-bottom: 1px solid var(--mf-border);
}

.shopping-cart__product-item img {
    border-radius: var(--mf-radius);
    box-shadow: var(--mf-shadow-sm);
}

.shopping-cart__product-item__detail h4 {
    font-family: var(--mf-heading) !important;
    font-size: 16px !important;
    font-weight: 500;
    color: var(--mf-charcoal);
}

.shopping-cart__product-price,
.shopping-cart__subtotal {
    font-family: var(--mf-body) !important;
    font-weight: 600;
    color: var(--mf-charcoal);
}

.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--mf-border);
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
}

.qty-control__number {
    border: none !important;
    font-family: var(--mf-body) !important;
    font-weight: 600;
    width: 50px;
}

.qty-control__reduce,
.qty-control__increase {
    cursor: pointer;
    padding: 8px 14px;
    transition: var(--mf-transition);
    font-weight: 600;
    color: var(--mf-text-light);
}

.qty-control__reduce:hover,
.qty-control__increase:hover {
    background: var(--mf-bg-warm);
    color: var(--mf-accent);
}

.shopping-cart__totals {
    background: var(--mf-bg-warm);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--mf-border);
}

.shopping-cart__totals h3 {
    font-family: var(--mf-heading) !important;
    font-size: 22px !important;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--mf-charcoal);
}

.cart-totals th {
    font-family: var(--mf-body) !important;
    font-weight: 500;
    font-size: 14px;
    color: var(--mf-text-light);
    padding: 12px 0;
}

.cart-totals td {
    font-family: var(--mf-body) !important;
    font-weight: 600;
    text-align: right;
    padding: 12px 0;
}

.btn-checkout {
    background: var(--mf-charcoal) !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 16px 40px !important;
    font-family: var(--mf-body) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 0.1em !important;
    transition: var(--mf-transition) !important;
    display: block;
    text-align: center;
    margin-top: 20px;
}

.btn-checkout:hover {
    background: var(--mf-accent) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 149, 108, 0.35);
}

.cart-table-footer {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.cart-table-footer .form-control {
    border: 1.5px solid var(--mf-border);
    border-radius: 50px !important;
    padding: 12px 20px;
}

/* ======== ABOUT PAGE ======== */
.about-card h2,
.about-card h3,
.about-card h4,
.about-card h5,
.about-card h6 {
    font-family: var(--mf-heading) !important;
}

.about-card {
    border: 1px solid var(--mf-border);
    border-radius: 16px;
}

.stats-section .stat-number {
    font-family: var(--mf-heading) !important;
    color: var(--mf-accent);
}

.timeline-item {
    border-left-color: var(--mf-accent) !important;
}

.timeline-item::before {
    background: var(--mf-accent) !important;
}

/* ======== CONTACT PAGE ======== */
.contact-icon {
    background: linear-gradient(135deg, var(--mf-accent) 0%, var(--mf-accent-dark) 100%) !important;
    border-radius: 16px !important;
}

.contact-info-card h5 {
    font-family: var(--mf-heading) !important;
}

.contact-form-section h2 {
    font-family: var(--mf-heading) !important;
}

/* ======== WISHLIST ======== */
.wishlist-table th {
    font-family: var(--mf-body) !important;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mf-text-light);
    border-bottom: 2px solid var(--mf-charcoal);
    padding: 12px 16px;
}

.wishlist-table td {
    padding: 20px 16px;
    vertical-align: middle;
    border-bottom: 1px solid var(--mf-border);
}

/* ======== PRODUCT DETAIL ENHANCEMENTS ======== */
.product-single__addtocart .qty-control {
    border-radius: 50px;
}

.product-single__description p {
    font-family: var(--mf-body) !important;
    line-height: 1.8;
    color: var(--mf-text);
}

.product-single .nav-tabs .nav-link {
    font-family: var(--mf-body) !important;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mf-text-light);
    border: none;
    padding: 12px 24px;
    position: relative;
}

.product-single .nav-tabs .nav-link.active {
    color: var(--mf-charcoal);
    background: transparent;
}

.product-single .nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--mf-accent);
}

.product-single .nav-tabs {
    border-bottom: 1px solid var(--mf-border);
}

.variation-item {
    border-color: var(--mf-border) !important;
    border-radius: 12px !important;
    background: var(--mf-bg-cream) !important;
}

.variation-item:hover {
    border-color: var(--mf-accent) !important;
    box-shadow: 0 2px 12px rgba(200, 149, 108, 0.15) !important;
}

/* ======== BREADCRUMBS ENHANCED ======== */
.breadcrumb {
    font-family: var(--mf-body) !important;
    font-size: 13px;
    padding: 12px 0;
}

.breadcrumb-item a {
    color: var(--mf-text-light) !important;
}

.breadcrumb-item a:hover {
    color: var(--mf-accent) !important;
}

.breadcrumb-item.active {
    color: var(--mf-charcoal) !important;
    font-weight: 500;
}

/* ======== TABLES GLOBAL ======== */
.table thead th {
    font-family: var(--mf-body) !important;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mf-text-light);
    border-bottom: 2px solid var(--mf-charcoal);
}

/* ======== BADGES ======== */
.badge {
    font-family: var(--mf-body) !important;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 50px;
}

/* ======== DROP SHADOW CARDS ======== */
.card {
    border: 1px solid var(--mf-border);
    border-radius: 16px;
    box-shadow: var(--mf-shadow-sm);
}

.card-header {
    font-family: var(--mf-heading) !important;
    background: transparent;
    border-bottom: 1px solid var(--mf-border);
    padding: 20px 24px;
}

/* ======== NEWSLETTER / SUBSCRIBE ======== */
.footer-newsletter .form-control {
    border-radius: 50px !important;
    padding: 14px 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.footer-newsletter .btn {
    border-radius: 50px !important;
    background: var(--mf-accent) !important;
    border: none !important;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.footer-newsletter .btn:hover {
    background: var(--mf-accent-dark) !important;
    transform: translateY(-1px);
}

/* ======== INSTALL APP BUTTON ======== */
.pwa-install-btn,
[class*="install-app"] {
    background: linear-gradient(135deg, var(--mf-accent) 0%, var(--mf-accent-dark) 100%) !important;
    border-radius: 50px !important;
    font-family: var(--mf-body) !important;
    font-weight: 600;
    border: none !important;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 28px !important;
    }

    .section-title h2 {
        font-size: 24px !important;
    }

    .product-single__title {
        font-size: 22px !important;
    }

    .page-title {
        font-size: 24px !important;
    }

    .checkout-steps {
        flex-direction: column;
        gap: 0;
    }

    .checkout-steps__item {
        padding: 12px 20px;
    }

    .shopping-cart__totals {
        padding: 20px;
        border-radius: 12px;
    }
}

/* ======== PRINT ======== */
@media print {

    .header-desk,
    .footer,
    .pwa-install-btn {
        display: none !important;
    }
}