/* NAIRA CLOTHING — COMPONENTS */

/* --- SITE HEADER --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-fast);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-logo-text {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: var(--color-text-primary);
    text-transform: uppercase;
}

.brand-tagline-micro {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* Nav Menu (Desktop) */
.header-nav {
    display: none;
}

@media (min-width: 992px) {
    .header-nav {
        display: flex;
        align-items: center;
        gap: 2.2rem;
    }
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-black);
    transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link.nav-tryon {
    color: var(--color-black);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-link.nav-tryon .tryon-badge {
    background: #0A0A0C;
    color: #FFF;
    font-size: 0.65rem;
    padding: 0.15rem 0.45rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.08em;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.action-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    color: var(--color-text-primary);
    transition: background-color var(--transition-fast);
}

.action-btn:hover {
    background-color: var(--color-surface);
}

.badge-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: var(--color-black);
    color: #FFFFFF;
    font-size: 0.68rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Bottom Navigation Dock */
.mobile-nav-dock {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 999;
}

@media (min-width: 992px) {
    .mobile-nav-dock {
        display: none;
    }
}

.dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    position: relative;
}

.dock-item.active, .dock-item:hover {
    color: var(--color-text-primary);
}

.dock-item svg {
    width: 20px;
    height: 20px;
}

.dock-item.dock-tryon {
    color: var(--color-black);
}

.dock-item.dock-tryon svg {
    stroke: var(--color-black);
}

/* --- PRODUCT CARD --- */
.product-card {
    position: relative;
    background-color: var(--color-bg);
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-image-box {
    position: relative;
    aspect-ratio: 4 / 5;
    background-color: #F4F4F6;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity var(--transition-fast);
}

.product-image-box .img-back {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity var(--transition-fast);
}

/* ONLY hide front image if the card actually has a secondary back image */
.product-card:hover .product-image-box.has-back-image .img-front {
    opacity: 0;
}

.product-card:hover .product-image-box.has-back-image .img-back {
    opacity: 1;
    transform: scale(1.04);
}

/* If no back image, front image stays 100% visible and gently zooms */
.product-card:hover .product-image-box:not(.has-back-image) .img-front {
    opacity: 1;
    transform: scale(1.04);
}

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    z-index: 2;
}

/* Luxury High-Contrast Quick Actions Bar */
.product-quick-actions {
    position: absolute;
    bottom: 12px;
    left: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-smooth);
    z-index: 5;
}

.product-card:hover .product-quick-actions {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .product-quick-actions {
        opacity: 1;
        transform: translateY(0);
        position: static;
        margin-top: 0.75rem;
    }
}

.btn-tryon-pill,
.btn-fitcheck-pill {
    flex: 1;
    background-color: #0A0A0C;
    color: #FFFFFF;
    border: 1px solid rgba(197, 168, 128, 0.45);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.58rem 0.75rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-tryon-pill svg,
.btn-fitcheck-pill svg {
    color: #C5A880;
    transition: transform 0.2s ease;
}

.btn-tryon-pill:hover,
.btn-fitcheck-pill:hover {
    background-color: #1A1A20;
    border-color: #C5A880;
    color: #EAD8C0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.btn-tryon-pill:hover svg,
.btn-fitcheck-pill:hover svg {
    transform: scale(1.15);
}

.btn-quick-icon {
    background-color: #0A0A0C;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    padding: 0.52rem 0.65rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-quick-icon:hover {
    background-color: #1A1A20;
    border-color: #C5A880;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.btn-quick-view {
    background-color: #0A0A0C;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    padding: 0.58rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-quick-view:hover {
    background-color: #FFFFFF;
    color: #0A0A0C;
    border-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.product-details {
    padding: 1rem 0.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.product-category {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
}

.product-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.3;
}

.product-price-box {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-top: 0.2rem;
}

.price-current {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.price-original {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.price-discount {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-success);
}

.product-colors {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.4rem;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

/* --- CART DRAWER --- */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}

.cart-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 440px;
    background-color: var(--color-bg);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    box-shadow: var(--shadow-floating);
}

.cart-drawer-overlay.open .cart-drawer {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 1.4rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-drawer-title {
    font-size: 1.2rem;
    font-weight: 700;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.cart-item-img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    background-color: var(--color-surface);
    border-radius: var(--radius-sm);
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-qty-ctrl {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.cart-qty-ctrl button {
    padding: 0.2rem 0.6rem;
    font-size: 0.9rem;
}

.cart-qty-ctrl span {
    padding: 0.2rem 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.cart-drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--color-border);
    background-color: var(--color-surface);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* --- FOOTER --- */
.site-footer {
    background-color: #0A0A0C;
    color: #F8F8FA;
    margin-top: auto;
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #222226;
}

@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

.footer-brand .brand-logo-text {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.footer-desc {
    color: #9E9EA7;
    font-size: 0.9rem;
    max-width: 320px;
    line-height: 1.6;
}

.footer-col-title {
    color: #FFFFFF;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #9E9EA7;
    font-size: 0.88rem;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    background-color: #18181B;
    border: 1px solid #333338;
    color: #FFF;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #71717A;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* --- LUXURY ANNOUNCEMENT RIBBON --- */
.announcement-ribbon {
    background-color: #0A0A0C;
    color: #F4F4F6;
    border-bottom: 1px solid #1E1E22;
    padding: 9px 0;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    overflow: hidden;
}

.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: center;
}

.announcement-pill {
    background: #C5A880;
    color: #0A0A0C;
    padding: 2px 8px;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
}

.announcement-dot {
    color: #C5A880;
    opacity: 0.6;
}

.announcement-code {
    color: #DFD0B8;
}

.announcement-highlight {
    color: #FFFFFF;
    font-weight: 600;
}

/* --- HERO SECTION LUXURY REDESIGN --- */
.hero-luxury {
    position: relative;
    min-height: 88vh;
    background: #0A0A0C;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-luxury-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    opacity: 0.46;
    transform: scale(1.02);
    transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-luxury:hover .hero-luxury-bg {
    transform: scale(1.06);
}

.hero-luxury-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg, 
        rgba(10, 10, 12, 0.95) 0%, 
        rgba(10, 10, 12, 0.75) 45%, 
        rgba(10, 10, 12, 0.4) 100%
    );
    z-index: 1;
}

.hero-luxury-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.hero-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(197, 168, 128, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #DFD0B8;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6.5vw, 5.2rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.hero-sub-title {
    font-size: clamp(1.08rem, 1.8vw, 1.35rem);
    font-weight: 400;
    line-height: 1.6;
    color: #D1D1D6;
    margin-bottom: 2.5rem;
    max-width: 640px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.8rem;
}

.btn-hero-solid {
    background-color: #FFFFFF;
    color: #0A0A0C !important;
    border: 2px solid #FFFFFF;
    font-weight: 700;
    padding: 0.95rem 2.2rem;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.btn-hero-solid:hover {
    background-color: transparent;
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

.btn-hero-ghost {
    background-color: rgba(255, 255, 255, 0.05);
    color: #FFFFFF !important;
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    font-weight: 700;
    padding: 0.95rem 2.2rem;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.btn-hero-ghost:hover {
    border-color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-hero-tryon {
    background: linear-gradient(135deg, #18181B 0%, #0A0A0C 100%);
    color: #FFFFFF !important;
    border: 1px solid #C5A880;
    padding: 0.95rem 2rem;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    box-shadow: 0 4px 20px rgba(197, 168, 128, 0.2);
    transition: all var(--transition-fast);
}

.btn-hero-tryon:hover {
    background: #C5A880;
    color: #0A0A0C !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(197, 168, 128, 0.35);
}

/* --- BRAND SPECS VALUE STRIP --- */
.brand-specs-strip {
    background-color: #0A0A0C;
    border-top: 1px solid #1E1E22;
    border-bottom: 1px solid #1E1E22;
    padding: 1.8rem 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
}

.spec-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #18181B;
    border: 1px solid #27272A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A880;
    flex-shrink: 0;
}

.spec-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.15rem;
    letter-spacing: 0.02em;
}

.spec-desc {
    font-size: 0.8rem;
    color: #8E8E9A;
    line-height: 1.35;
}

/* --- CATEGORY CARDS LUXURY --- */
.category-grid-luxury {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .category-grid-luxury {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .category-grid-luxury {
        grid-template-columns: 1fr;
    }
}

.cat-card-lux {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #141417;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.6rem;
    color: #FFFFFF;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.cat-card-lux:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.cat-card-lux-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-card-lux:hover .cat-card-lux-bg {
    transform: scale(1.06);
}

.cat-card-lux-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg, 
        rgba(10, 10, 12, 0.05) 0%, 
        rgba(10, 10, 12, 0.4) 50%, 
        rgba(10, 10, 12, 0.94) 100%
    );
    z-index: 1;
}

.cat-card-lux-content {
    position: relative;
    z-index: 2;
}

.cat-badge-lux {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #DFD0B8;
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(8px);
    padding: 3px 10px;
    border-radius: 4px;
    border: 1px solid rgba(197, 168, 128, 0.35);
    margin-bottom: 0.6rem;
}

.cat-title-lux {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.4rem;
    color: #FFFFFF;
}

.cat-link-lux {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #C5A880;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-transform: uppercase;
    transition: gap var(--transition-fast);
}

.cat-card-lux:hover .cat-link-lux {
    gap: 0.7rem;
    color: #FFFFFF;
}

/* --- HOMEPAGE INTERACTIVE TRY-ON SHOWCASE --- */
.tryon-showcase-box {
    position: relative;
    border-radius: 16px;
    background: #141417;
    border: 1px solid #27272A;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.home-ba-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    user-select: none;
    overflow: hidden;
    background: #0A0A0C;
}

.home-ba-img-before,
.home-ba-img-after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-ba-after-layer {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
    z-index: 2;
}

.home-ba-after-layer img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    max-width: none;
    object-fit: cover;
}

.home-ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #FFFFFF;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
    z-index: 5;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.home-ba-handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    background: #0A0A0C;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 0.85rem;
}

/* ============================================================
   NAIRA "FIND MY SIZE" & SIZE GUIDE COMPONENT STYLES
   ============================================================ */

/* --- MODAL OVERLAY & BACKDROP --- */
.size-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
    animation: nairaModalFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.size-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 12, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

.size-modal-dialog {
    position: relative;
    z-index: 2;
    background: #FFFFFF;
    color: #0A0A0C;
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    border-radius: 20px;
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: nairaModalScaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes nairaModalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes nairaModalScaleUp {
    from { opacity: 0; transform: scale(0.96) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Mobile Bottom Sheet Adaptation */
@media (max-width: 640px) {
    .size-modal-overlay {
        padding: 0;
        align-items: flex-end;
    }
    .size-modal-dialog {
        max-width: 100%;
        max-height: 92vh;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        animation: nairaModalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
}

@keyframes nairaModalSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* Modal Close Button */
.size-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F4F4F5;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #52525B;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-modal-close:hover {
    background: #E4E4E7;
    color: #0A0A0C;
    transform: rotate(90deg);
}

/* Modal Header */
.size-modal-header {
    padding: 1.75rem 2rem 1.25rem;
    border-bottom: 1px solid #F0F0F2;
    background: #FAFAFA;
}

.size-modal-brand {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #71717A;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.size-modal-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #0A0A0C;
    margin: 0 0 0.35rem;
}

.size-modal-subtitle {
    font-size: 0.85rem;
    color: #71717A;
    margin: 0 0 1.25rem;
    line-height: 1.4;
}

/* Modal Nav Tabs */
.size-modal-tabs {
    display: flex;
    gap: 0.5rem;
    background: #EDEDF0;
    padding: 4px;
    border-radius: 12px;
}

.size-modal-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.6rem 0.85rem;
    border-radius: 9px;
    border: none;
    background: transparent;
    font-size: 0.82rem;
    font-weight: 600;
    color: #71717A;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-modal-tab:hover {
    color: #0A0A0C;
}

.size-modal-tab.active {
    background: #FFFFFF;
    color: #0A0A0C;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Modal Body */
.size-modal-body {
    padding: 1.75rem 2rem;
    overflow-y: auto;
    flex: 1;
}

@media (max-width: 640px) {
    .size-modal-header { padding: 1.25rem 1.25rem 1rem; }
    .size-modal-body { padding: 1.25rem; }
}

/* --- STEPPER PROGRESS --- */
.size-wizard-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.size-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F4F4F5;
    border: 1.5px solid #D4D4D8;
    color: #71717A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.size-step-dot.active {
    background: #0A0A0C;
    border-color: #0A0A0C;
    color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(10, 10, 12, 0.15);
}

.size-step-dot.completed {
    background: #18181B;
    border-color: #18181B;
    color: #FFFFFF;
}

.size-step-line {
    flex: 1;
    height: 2px;
    background: #E4E4E7;
    margin: 0 6px;
    transition: background 0.2s ease;
}

.size-step-line.active {
    background: #0A0A0C;
}

.size-step-header {
    margin-bottom: 1.5rem;
}

.size-step-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #C5A880;
    background: rgba(197, 168, 128, 0.12);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.size-step-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #0A0A0C;
    margin: 0 0 0.35rem;
}

.size-step-sub {
    font-size: 0.85rem;
    color: #71717A;
    margin: 0;
}

/* Alert inside modal */
.size-alert {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

/* --- STEP 1: CHOICE CARDS --- */
.size-choice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.size-choice-card {
    position: relative;
    cursor: pointer;
    display: block;
}

.size-choice-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.size-choice-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    border-radius: 12px;
    border: 1.5px solid #E4E4E7;
    background: #FFFFFF;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.size-choice-card:hover .size-choice-content {
    border-color: #A1A1AA;
    background: #FAFAFA;
}

.size-choice-card input[type="radio"]:checked + .size-choice-content {
    border-color: #0A0A0C;
    background: #FDFDFD;
    box-shadow: 0 4px 14px rgba(10, 10, 12, 0.08);
}

.size-choice-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #F4F4F5;
    color: #0A0A0C;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.size-choice-card input[type="radio"]:checked + .size-choice-content .size-choice-icon {
    background: #0A0A0C;
    color: #FFFFFF;
}

.size-choice-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0A0A0C;
    margin-bottom: 0.2rem;
}

.size-choice-desc {
    font-size: 0.8rem;
    color: #71717A;
    line-height: 1.4;
}

/* --- UNIT TOGGLE & INPUTS --- */
.unit-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.unit-toggle-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #71717A;
}

.unit-pill-selector {
    display: inline-flex;
    background: #F4F4F5;
    padding: 3px;
    border-radius: 100px;
    border: 1px solid #E4E4E7;
}

.unit-pill-btn {
    border: none;
    background: transparent;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #71717A;
    cursor: pointer;
    transition: all 0.15s ease;
}

.unit-pill-btn:hover {
    color: #0A0A0C;
}

.unit-pill-btn.active {
    background: #0A0A0C;
    color: #FFFFFF;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.size-input-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.size-number-input-wrap {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    background: #FAFAFA;
    border: 2px solid #E4E4E7;
    border-radius: 14px;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
}

.size-number-input-wrap:focus-within {
    border-color: #0A0A0C;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(10, 10, 12, 0.08);
}

.size-large-input {
    border: none;
    background: transparent;
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center;
    width: 140px;
    color: #0A0A0C;
    outline: none;
    -moz-appearance: textfield;
}

.size-large-input::-webkit-outer-spin-button,
.size-large-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.size-input-affix {
    font-size: 1.1rem;
    font-weight: 700;
    color: #71717A;
    margin-left: 0.4rem;
}

.size-dual-input-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.size-dual-input-wrap .size-number-input-wrap {
    padding: 0.65rem 1.25rem;
}

.size-dual-input-wrap .size-large-input {
    width: 90px;
    font-size: 2.25rem;
}

/* Quick selection pill buttons */
.size-quick-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
}

.size-quick-pills button {
    border: 1px solid #E4E4E7;
    background: #FFFFFF;
    color: #52525B;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.size-quick-pills button:hover {
    border-color: #0A0A0C;
    color: #0A0A0C;
    background: #F4F4F5;
}

/* --- STEP 4: CHEST KNOWLEDGE TOGGLE --- */
.chest-choice-toggle {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.chest-option-btn {
    display: block;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1.5px solid #E4E4E7;
    background: #FFFFFF;
    font-size: 0.88rem;
    font-weight: 600;
    color: #52525B;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.chest-option-btn:hover {
    border-color: #A1A1AA;
    color: #0A0A0C;
}

.chest-option-btn.active {
    border-color: #0A0A0C;
    background: #0A0A0C;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(10, 10, 12, 0.15);
}

.size-hint-text {
    display: block;
    margin-top: 0.85rem;
    font-size: 0.78rem;
    color: #71717A;
    text-align: center;
    max-width: 360px;
    line-height: 1.4;
}

/* --- STEP 5: FIT PREFERENCE CARDS --- */
.fit-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 520px) {
    .fit-card-grid {
        grid-template-columns: 1fr;
    }
}

.fit-card {
    position: relative;
    cursor: pointer;
    display: block;
}

.fit-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.fit-card-inner {
    padding: 1rem;
    border-radius: 12px;
    border: 1.5px solid #E4E4E7;
    background: #FFFFFF;
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fit-card:hover .fit-card-inner {
    border-color: #A1A1AA;
}

.fit-card input[type="radio"]:checked + .fit-card-inner {
    border-color: #0A0A0C;
    background: #FAFAFA;
    box-shadow: 0 4px 14px rgba(10, 10, 12, 0.08);
}

.fit-card-badge {
    align-self: flex-start;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 2px 7px;
    border-radius: 4px;
    background: #F4F4F5;
    color: #71717A;
    margin-bottom: 0.4rem;
}

.fit-card input[type="radio"]:checked + .fit-card-inner .fit-card-badge {
    background: #0A0A0C;
    color: #FFFFFF;
}

.fit-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0A0A0C;
    margin-bottom: 0.25rem;
}

.fit-card-sub {
    font-size: 0.75rem;
    color: #71717A;
    line-height: 1.35;
}

/* Wizard Footer Controls */
.size-wizard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid #F0F0F2;
}

.size-next-btn {
    margin-left: auto;
    min-width: 140px;
}

/* --- VIEW 2: RECOMMENDATION RESULT --- */
.result-hero-box {
    background: linear-gradient(180deg, #FAFAFA 0%, #F4F4F5 100%);
    border: 1px solid #E4E4E7;
    border-radius: 16px;
    padding: 2rem 1.5rem 1.75rem;
    margin-bottom: 1rem;
    text-align: center;
}

.result-kicker {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #71717A;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.result-size-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #0A0A0C;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(10, 10, 12, 0.25);
    margin-bottom: 1rem;
    animation: nairaSizeBadgePop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes nairaSizeBadgePop {
    0% { transform: scale(0.6); opacity: 0; }
    80% { transform: scale(1.08); }
    100% { transform: scale(1); opacity: 1; }
}

.result-confidence-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
    margin-bottom: 1rem;
}

.result-confidence-pill.confidence-good {
    background: #F0FDF4;
    color: #166534;
    border-color: #BBF7D0;
}

.result-confidence-pill.confidence-check {
    background: #FFFBEB;
    color: #92400E;
    border-color: #FDE68A;
}

.result-explanation {
    font-size: 0.92rem;
    color: #27272A;
    line-height: 1.5;
    max-width: 440px;
    margin: 0 auto 1.25rem;
}

.result-specs-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #71717A;
}

.result-spec-item {
    background: #FFFFFF;
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid #E4E4E7;
}

/* Silhouette Advisory Card */
.result-silh-card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: #FDFBF7;
    border: 1px solid #F3E8D8;
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.25rem;
}

.silh-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.silh-content strong {
    display: block;
    font-size: 0.82rem;
    color: #78350F;
    margin-bottom: 0.15rem;
}

.silh-content p {
    font-size: 0.78rem;
    color: #92400E;
    margin: 0;
    line-height: 1.4;
}

/* Result Action Stack */
.result-action-stack {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.result-disclaimer {
    font-size: 0.72rem;
    color: #A1A1AA;
    line-height: 1.4;
}

/* --- VIEW 3: DYNAMIC SIZE TABLE --- */
.chart-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.chart-garment-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #0A0A0C;
    margin: 0 0 0.2rem;
}

.chart-garment-sub {
    font-size: 0.78rem;
    color: #71717A;
    margin: 0;
}

.size-table-container {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #E4E4E7;
    margin-bottom: 1.25rem;
}

.naira-size-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    text-align: left;
}

.naira-size-table th {
    background: #FAFAFA;
    padding: 0.75rem 1rem;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #52525B;
    border-bottom: 1px solid #E4E4E7;
}

.naira-size-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #F4F4F5;
    color: #27272A;
}

.naira-size-table tr:last-child td {
    border-bottom: none;
}

.naira-size-table tr.highlight-size {
    background: #F4F4F5;
    font-weight: 700;
}

.naira-size-table tr.highlight-size td:first-child {
    position: relative;
    color: #0A0A0C;
}

.naira-size-table tr.highlight-size td:first-child::after {
    content: "RECOMMENDED";
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 800;
    background: #0A0A0C;
    color: #FFFFFF;
    padding: 1px 6px;
    border-radius: 4px;
    margin-left: 6px;
    letter-spacing: 0.04em;
}

.sizing-note-callout {
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    color: #1E40AF;
    font-size: 0.82rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

/* How to measure card */
.how-to-measure-card {
    background: #FAFAFA;
    border: 1px solid #E4E4E7;
    border-radius: 12px;
    padding: 1.25rem;
}

.measure-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0A0A0C;
    margin: 0 0 0.85rem;
}

.measure-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}

.measure-step-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.78rem;
    color: #52525B;
    line-height: 1.4;
}

.step-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0A0A0C;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Product Detail Sizing Triggers */
.product-size-actions-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.65rem;
}

.size-trigger-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-link-size-guide,
.btn-link-find-my-size {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: #71717A;
    cursor: pointer;
    transition: color 0.15s ease;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.btn-link-find-my-size {
    color: #0A0A0C;
    font-weight: 700;
}

.btn-link-find-my-size:hover {
    color: #C5A880;
}

.btn-link-size-guide:hover {
    color: #0A0A0C;
}

/* Recommended size badge in product selector */
.product-recommended-size-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #065F46;
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    padding: 2px 8px;
    border-radius: 100px;
    margin-left: 0.5rem;
}

/* Dedicated Find My Size Landing Page */
.fms-landing-hero {
    padding: 3.5rem 0 2rem;
    text-align: center;
    background: linear-gradient(180deg, #F9F9FB 0%, #FFFFFF 100%);
    border-bottom: 1px solid #F0F0F2;
}

.fms-hero-kicker {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #C5A880;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.fms-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #0A0A0C;
    margin: 0 auto 0.75rem;
    max-width: 700px;
    line-height: 1.15;
}

.fms-hero-sub {
    font-size: 1rem;
    color: #71717A;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.5;
}

.fms-landing-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 5rem;
}

.fms-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 860px) {
    .fms-grid-2col {
        grid-template-columns: 1fr;
    }
}

.fms-card {
    background: #FFFFFF;
    border: 1px solid #E4E4E7;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.fms-faq-item {
    border-bottom: 1px solid #F0F0F2;
    padding: 1.25rem 0;
}

.fms-faq-item:last-child {
    border-bottom: none;
}

.fms-faq-q {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0A0A0C;
    margin: 0 0 0.4rem;
}

.fms-faq-a {
    font-size: 0.88rem;
    color: #71717A;
    line-height: 1.5;
    margin: 0;
}

/* --- TOAST NOTIFICATIONS (TOP RIGHT) --- */
#naira-toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10050;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    max-width: min(420px, calc(100vw - 32px));
}

.naira-toast {
    background: rgba(15, 15, 18, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #FFFFFF;
    padding: 13px 18px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    pointer-events: auto;
    transform: translateY(-16px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.naira-toast.toast-show {
    transform: translateY(0);
    opacity: 1;
}

.naira-toast.toast-success {
    border-left: 4px solid #10B981;
}

.naira-toast.toast-error {
    border-left: 4px solid #EF4444;
}

.naira-toast.toast-warning {
    border-left: 4px solid #C5A880;
}

@media (max-width: 640px) {
    #naira-toast-container {
        top: 16px;
        left: 16px;
        right: 16px;
        max-width: calc(100vw - 32px);
    }
}



