/* ==========================================================================
   Luxury Women's Couture Header & Footer (Royal Wine & Gold Aesthetic)
   Brand: Asha Devi Mittal (ashadevimittal.in)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Announcement Top Bar (Deep Wine / Gold Accents)
   -------------------------------------------------------------------------- */
.top-announcement-bar {
    background: linear-gradient(90deg, #1f0b12 0%, #3b0d1e 50%, #1f0b12 100%);
    color: #fdf2f4;
    font-size: 12px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(197, 155, 39, 0.25);
    letter-spacing: 0.3px;
}
.top-announcement-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.badge-pill {
    background: linear-gradient(135deg, #c59b27, #eab308);
    color: #1a0910;
    font-size: 9px;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 999px;
    margin-right: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.top-support-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.top-link {
    color: #fce7eb;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 11.5px;
}
.top-link:hover {
    color: #fef08a;
}
.top-sep {
    color: #9f1239;
    font-weight: bold;
}

/* --------------------------------------------------------------------------
   2. Main Header (Desktop Base)
   -------------------------------------------------------------------------- */
.site-main-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color, #f1e6e9);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(136, 19, 55, 0.04);
}
.main-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 80px;
}

/* Brand Logo (Serif Luxury Look) */
.brand-identity .brand-logo-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.brand-logo-text {
    font-family: "Georgia", serif, var(--font-stack);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color, #881337);
    letter-spacing: -0.2px;
    line-height: 1.1;
    text-transform: capitalize;
}
.brand-tagline {
    font-size: 9px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #c59b27;
    margin-top: 3px;
    text-transform: uppercase;
}

/* Search Bar (Curved & Gold Focus Ring) */
.header-search-wrapper {
    flex: 1;
    max-width: 540px;
}
.search-form-pro {
    display: flex;
    align-items: center;
    background-color: #fdf8f9;
    border: 1.5px solid #f3d7df;
    border-radius: 999px;
    padding: 3px 5px 3px 18px;
    transition: all 0.25s ease;
}
.search-form-pro:focus-within {
    background-color: #ffffff;
    border-color: var(--primary-color, #881337);
    box-shadow: 0 0 0 3px rgba(136, 19, 55, 0.12);
}
.search-input-field {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 13.5px;
    color: #1f2937;
    outline: none;
}
.search-input-field::placeholder {
    color: #9ca3af;
    font-size: 13px;
}
.search-submit-btn {
    background: linear-gradient(135deg, var(--primary-color, #881337), var(--primary-hover, #9f1239));
    color: #ffffff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    flex-shrink: 0;
}
.search-submit-btn:hover {
    transform: scale(1.04);
}

/* Header Utility Actions */
.header-utility-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.utility-cta-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    background-color: #fdf8f9;
    border: 1px solid #f3d7df;
    border-radius: 8px;
    color: #1f2937;
    text-decoration: none;
    transition: all 0.2s;
}
.utility-cta-box:hover {
    border-color: var(--primary-color, #881337);
    background-color: #ffffff;
}
.utility-cta-icon {
    color: var(--primary-color, #881337);
}
.utility-cta-text {
    display: flex;
    flex-direction: column;
}
.cta-sub {
    font-size: 10px;
    color: #881337;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}
.cta-main {
    font-size: 13px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.3;
}

/* Account Pill */
.header-account-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fdf8f9;
    border: 1px solid #f3d7df;
    padding: 7px 16px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}
.header-account-pill:hover {
    background: #ffffff;
    border-color: var(--primary-color, #881337);
    box-shadow: 0 4px 14px rgba(136, 19, 55, 0.08);
}
.account-pill-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #f3d7df;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #881337);
    transition: all 0.2s ease;
}
.header-account-pill:hover .account-pill-icon-wrap {
    background: var(--primary-color, #881337);
    color: #ffffff;
    border-color: var(--primary-color, #881337);
}
.account-pill-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.account-pill-sub {
    font-size: 10px;
    color: #6b7280;
    font-weight: 600;
    line-height: 1.2;
}
.account-pill-main {
    font-size: 13px;
    color: #1f2937;
    font-weight: 800;
    line-height: 1.2;
}

/* Luxury Cart Pill */
.header-cart-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1f0b12 0%, var(--primary-color, #881337) 100%);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(136, 19, 55, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.header-cart-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(136, 19, 55, 0.35);
}
.cart-pill-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: linear-gradient(135deg, #c59b27, #eab308);
    color: #1a0910;
    font-size: 10px;
    font-weight: 900;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}
.cart-pill-text {
    display: flex;
    flex-direction: column;
}
.cart-pill-sub {
    font-size: 9px;
    color: #fce7eb;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.cart-pill-main {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   3. Desktop Category Ribbon (Ethnic Categories)
   -------------------------------------------------------------------------- */
.desktop-category-bar {
    background-color: #fdfbf7;
    border-top: 1px solid #f8ebeb;
    border-bottom: 1px solid var(--border-color, #f1e6e9);
}
.category-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 46px;
}
.category-menu-list {
    display: flex;
    list-style: none;
    gap: 24px;
    margin: 0;
    padding: 0;
}
.category-menu-list a {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    padding: 4px 0;
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.2px;
}
.category-menu-list a:hover {
    color: var(--primary-color, #881337);
}
.menu-deal-item a {
    color: var(--primary-color, #881337) !important;
    font-weight: 800;
}
.category-support-chip {
    font-size: 11px;
    font-weight: 700;
    color: #881337;
    background: #fdf2f4;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid #fbcfe8;
    letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   4. Mobile Drawer (Slide-in)
   -------------------------------------------------------------------------- */
.mobile-menu-trigger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 10;
}
.mobile-menu-trigger .h-line {
    width: 22px;
    height: 2.5px;
    background-color: var(--primary-color, #881337);
    border-radius: 2px;
}

.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 11, 18, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-drawer-overlay.is-active {
    opacity: 1;
    visibility: visible;
}
.mobile-app-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: #ffffff;
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.25);
}
.mobile-app-drawer.is-active {
    left: 0;
}
.mobile-drawer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #f3d7df;
    background: #fdf8f9;
}
.drawer-brand strong {
    font-family: "Georgia", serif;
    font-size: 18px;
    display: block;
    color: var(--primary-color, #881337);
}
.drawer-brand small {
    font-size: 10px;
    color: #c59b27;
    font-weight: 700;
    letter-spacing: 1px;
}
.drawer-close-btn {
    font-size: 30px;
    background: transparent;
    border: none;
    color: #881337;
    cursor: pointer;
    line-height: 1;
}

.drawer-user-card {
    background: #fdfbf7;
    border: 1px solid #f3d7df;
    border-radius: 12px;
    padding: 12px 16px;
    margin: 14px 18px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.drawer-user-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary-color, #881337);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.drawer-user-details strong {
    display: block;
    font-size: 13px;
    color: #1f2937;
}
.drawer-user-details a {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color, #881337);
    text-decoration: none;
}

.mobile-drawer-search {
    padding: 14px 18px;
    border-bottom: 1px solid #f1e6e9;
}
.mobile-drawer-links {
    flex: 1;
    overflow-y: auto;
    padding: 16px 18px;
}
.drawer-section-title {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #9f1239;
    display: block;
    margin-bottom: 10px;
}
.mobile-nav-stack {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mobile-nav-stack a {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
    display: block;
    padding: 4px 0;
}
.secondary-nav a {
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
}
.drawer-logout-item a {
    color: #dc2626 !important;
}

.mobile-drawer-footer {
    padding: 16px 18px;
    background: #fdf8f9;
    border-top: 1px solid #f3d7df;
}
.drawer-help-title {
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 6px 0;
}
.drawer-call-btn {
    display: block;
    background: var(--primary-color, #881337);
    color: #ffffff;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   5. Mobile Bottom App Bar (Nykaa Luxe 5-Tab Bar)
   -------------------------------------------------------------------------- */
.mobile-bottom-app-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #ffffff;
    border-top: 1px solid #f1e6e9;
    box-shadow: 0 -4px 14px rgba(136, 19, 55, 0.08);
    z-index: 1000;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
}
.bottom-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    padding: 6px 2px;
    transition: color 0.2s;
}
.bottom-bar-item svg {
    margin-bottom: 2px;
}
.bottom-bar-item:hover,
.bottom-bar-item.call-action {
    color: var(--primary-color, #881337);
}
.bottom-cart-rel {
    position: relative;
    display: flex;
}
.bottom-cart-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #881337;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --------------------------------------------------------------------------
   6. Luxury Ethnic Footer Styles
   -------------------------------------------------------------------------- */
.site-main-footer {
    background: linear-gradient(180deg, #18080e 0%, #0e0408 100%);
    color: #e5d8db;
    margin-top: 70px;
    border-top: 2px solid rgba(197, 155, 39, 0.35);
}

/* Trust Badges Strip */
.footer-trust-strip {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 34px 0;
}
.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.trust-icon-box {
    background: rgba(197, 155, 39, 0.12);
    color: #eab308;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(197, 155, 39, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-details strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 2px;
}
.trust-details span {
    font-size: 12px;
    color: #c9b4b9;
}

/* VIP Newsletter Banner */
.footer-newsletter-banner {
    padding: 45px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.newsletter-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.royal-micro-badge {
    color: #eab308;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 6px;
}
.newsletter-text h3 {
    font-family: "Georgia", serif;
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 6px;
}
.newsletter-text p {
    font-size: 14px;
    color: #c9b4b9;
}
.newsletter-inline-form {
    display: flex;
    gap: 10px;
    min-width: 390px;
}
.newsletter-inline-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 12px 18px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
}
.newsletter-inline-form input:focus {
    border-color: #c59b27;
}
.newsletter-inline-form button {
    background: linear-gradient(135deg, #c59b27 0%, #b45309 100%);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 13.5px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}
.newsletter-inline-form button:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

/* 4-Column Directory Layout */
.footer-main-columns {
    padding: 55px 0;
}
.main-columns-grid {
    display: grid;
    grid-template-columns: 1.4fr 1.1fr 1.1fr 1.3fr;
    gap: 40px;
}
.col-title {
    color: #ffffff;
    font-family: "Georgia", serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.footer-brand-title {
    font-family: "Georgia", serif;
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    display: block;
    margin-bottom: 4px;
}
.footer-verified-badge {
    color: #eab308;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 14px;
}
.footer-bio {
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 20px;
    color: #c9b4b9;
}
.direct-label {
    display: block;
    font-size: 11px;
    color: #eab308;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.direct-phone-pill {
    display: inline-block;
    background: var(--primary-color, #881337);
    color: #ffffff;
    padding: 9px 20px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 13.5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.2s;
}
.direct-phone-pill:hover {
    background: #9f1239;
}

.footer-menu-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-menu-links a {
    color: #e5d8db;
    font-size: 13.5px;
    text-decoration: none;
    transition: all 0.2s;
}
.footer-menu-links a:hover {
    color: #eab308;
    padding-left: 6px;
}

/* Registered Address Card */
.address-box-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
    padding: 22px;
    border-radius: 12px;
}
.address-line {
    margin-bottom: 14px;
}
.address-line strong {
    display: block;
    color: #eab308;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
}
.address-line p, .address-line a {
    color: #c9b4b9;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}
.address-line a:hover {
    color: #ffffff;
}

/* Sub-Bar & Payment Badges */
.footer-sub-bar {
    background-color: #0b0205;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 0 38px;
}
.sub-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: #a78f96;
}
.copyright-info strong {
    color: #ffffff;
}
.payment-method-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pay-chip {
    background: rgba(255, 255, 255, 0.05);
    color: #e5d8db;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --------------------------------------------------------------------------
   7. Mobile & Tablet Responsive Engine
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .trust-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .main-columns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .newsletter-flex {
        flex-direction: column;
        text-align: center;
    }
    .newsletter-inline-form {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
    .show-on-mobile-only {
        display: grid !important;
    }

    body {
        padding-bottom: 65px;
    }

    /* 2-Row Clean Header */
    .main-header-inner {
        flex-wrap: wrap;
        padding: 10px 0 12px;
        min-height: unset;
        gap: 10px;
    }

    .mobile-menu-trigger {
        display: flex;
        order: 1;
        margin-right: 4px;
    }

    .brand-identity {
        order: 2;
        flex: 1;
    }
    .brand-logo-text {
        font-size: 18px;
    }
    .brand-tagline {
        font-size: 8px;
    }

    .header-utility-actions {
        order: 3;
        gap: 8px;
    }
    .header-cart-pill {
        padding: 7px 12px;
        gap: 0;
    }

    .header-search-wrapper {
        order: 4;
        width: 100%;
        max-width: 100%;
        margin-top: 4px;
		display:none;
    }
    .search-form-pro {
        padding: 2px 4px 2px 14px;
    }
    .search-submit-btn {
        width: 34px;
        height: 34px;
    }

    .top-announcement-bar {
        padding: 6px 0;
    }
    .top-announcement-inner {
        justify-content: center;
        text-align: center;
    }
    .top-support-actions {
        display: none;
    }
    .top-offer-text {
        font-size: 11px;
    }

    .trust-strip-grid {
        grid-template-columns: 1fr;
    }
    .main-columns-grid {
        grid-template-columns: 1fr;
    }
    .sub-bar-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}