/* ============================================================
   FashionToro — Frontend Stylesheet
   Premium Dark Theme | Glassmorphism
   Full implementation in Phase 11
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-gradient: radial-gradient(ellipse at center, #023738 0%, #012829 35%, #000E0F 100%);
    --accent: #00D4D4;
    --accent-dark: #009999;
    --accent-gold: #E8AF29;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.75);
    --border: rgba(255, 255, 255, 0.08);
    --card-bg: rgba(255, 255, 255, 0.04);
    --radius: 14px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden;
}

/* Text Muted Override for Dark Theme legibility */
.text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}


/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 212, 0.4);
    border-radius: 3px;
}

/* Links */
a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.85;
}

/* Glassmorphism card */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Container */
.site-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section spacing */
.section {
    padding: 5rem 0;
}

.section-sm {
    padding: 3rem 0;
}

/* Section heading */
/* Global Headings Overrides */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-title,
.page-hero h1,
.mega-menu-title {
    color: var(--accent-gold) !important;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    color: var(--accent-gold) !important;
}

.section-subtitle {
    color: #ffffff !important;
    opacity: 0.9;
    font-size: 0.95rem;
}

.title-accent {
    background: linear-gradient(135deg, var(--accent-gold), #FFF1D0) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Buttons */
.btn-primary-ft {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
}

.btn-primary-ft:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 212, 0.3);
    color: #000;
}

.btn-outline-ft {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: transparent;
    color: var(--accent);
    border: 1px solid rgba(0, 212, 212, 0.4);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
}

.btn-outline-ft:hover {
    background: rgba(0, 212, 212, 0.08);
    color: var(--accent);
}

/* Product Card */
.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 212, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.product-card .product-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-card .product-info {
    padding: 1rem;
}

.product-card .product-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text);
    margin-bottom: 0.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .product-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--accent);
}

.product-card .product-price .old-price {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 0.35rem;
}

/* Badge */
.badge-custom {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-featured {
    background: rgba(0, 212, 212, 0.15);
    color: var(--accent);
}

.badge-sale {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
}

.badge-new {
    background: rgba(0, 230, 118, 0.15);
    color: #00e676;
}

/* Category Card */
.category-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: all 0.3s;
    position: relative;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 212, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.category-card .cat-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.category-card .cat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.category-card:hover .cat-image img {
    transform: scale(1.07);
}

.category-card .cat-info {
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-card .cat-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #E8AF29;
}

/* Form controls — frontend */
.form-ft {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 10px;
    padding: 0.7rem 1rem;
    width: 100%;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.25s;
    outline: none;
}

.form-ft:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 212, 212, 0.12);
}

.form-ft::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-ft option,
select option {
    background-color: #012829;
    color: #ffffff;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-up {
    animation: fadeUp 0.5s ease both;
}

.fade-in {
    animation: fadeIn 0.4s ease both;
}

/* Loading spinner */
.spinner-ft {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 212, 212, 0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Page hero */
.page-hero {
    padding: 3rem 1.5rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--border);
    margin-bottom: 3rem;
}

.page-hero h1 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.page-hero .breadcrumb-ft {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.page-hero .breadcrumb-ft a {
    color: var(--text-muted);
}

.page-hero .breadcrumb-ft a:hover {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 767px) {
    .section {
        padding: 3rem 0;
    }

    .site-container {
        padding: 0 1rem;
    }
}

/* ============================================================
   FashionToro — Premium Header & Navigation
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 2000 !important;
    background: rgba(0, 14, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0 1.5rem;
    transition: background 0.3s ease;
}

.header-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 105px;
}

/* Logo container styling */
.logo-container {
    background: transparent;
    padding: 0;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 96px;
    box-shadow: none;
    transition: transform 0.2s ease;
}

.logo-container:hover {
    transform: scale(1.04);
}

.logo-img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

/* Desktop Nav Links */
.desktop-nav {
    display: flex;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}

.nav-link-ft {
    padding: 0.5rem 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link-ft:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    opacity: 1;
}

.nav-link-ft.active {
    color: var(--accent);
    background: rgba(0, 212, 212, 0.08);
}

/* Mega Menu Position Reset */
.nav-item-shop {
    position: static;
}

/* Mega Menu Wrapper */
.mega-menu-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(1, 15, 16, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 2px solid var(--accent);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    padding: 3rem 0;
    max-height: 80vh;
    overflow-y: auto;
}

.nav-item-shop:hover .mega-menu-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-column {
    margin-bottom: 1rem;
}

.mega-menu-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
    display: inline-block;
    border-bottom: 1px solid rgba(0, 212, 212, 0.15);
    padding-bottom: 0.25rem;
    transition: color 0.2s;
}

.mega-menu-title:hover {
    color: #fff;
    opacity: 1;
}

.mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-links li {
    margin-bottom: 0.45rem;
}

.mega-menu-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.mega-menu-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
    opacity: 1;
}

/* ============================================================
   FashionToro — Storefront Home & Components
   ============================================================ */

/* Hero Carousel */
.carousel-item {
    height: 60vh;
    min-height: 480px;
    position: relative;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    padding: 0;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--accent-gold), #FFF1D0) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.25rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Hero text slide animation */
.carousel-item.active .animate-up-1 {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.carousel-item.active .animate-up-2 {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.carousel-item.active .animate-up-3 {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* Static Hero Fallback */
.static-hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--border);
}

.static-hero-glow {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 70%;
    height: 140%;
    background: radial-gradient(circle, rgba(0, 212, 212, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-accent-circle {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 212, 212, 0.08) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}

/* Benefit bar icons */
.benefit-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 212, 212, 0.05);
    border: 1px solid rgba(0, 212, 212, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.15rem;
    flex-shrink: 0;
}

/* Workflow Step Indicators */
.workflow-step {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.workflow-step:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 212, 0.25);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    transition: color 0.3s;
}

.workflow-step:hover .step-number {
    color: rgba(0, 212, 212, 0.08);
}

.workflow-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 212, 0.08);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.25rem;
}

/* Shop Icon button inside product card */
.btn-shop-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.25s ease;
}

.product-card:hover .btn-shop-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
    box-shadow: 0 4px 12px rgba(0, 212, 212, 0.3);
}

/* FAQs Accordion Overrides */
.accordion-button::after {
    filter: invert(1);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(255, 255, 255, 0.02) !important;
    color: var(--accent) !important;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.1);
}

/* Newsletter Overlay Glow */
.newsletter-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 212, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.newsletter-icon {
    width: 58px;
    height: 58px;
    background: rgba(0, 212, 212, 0.08);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
}

/* Helper utilities */
.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================================
   FashionToro — Gift Finder & Promo Banners Styling
   ============================================================ */

/* Gift Finder Occasion Badges */
.recipient-badge {
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    cursor: pointer;
    text-decoration: none !important;
}

.recipient-badge:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 212, 0.3) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    background: rgba(0, 212, 212, 0.05) !important;
}

.recipient-icon {
    width: 46px;
    height: 46px;
    background: rgba(0, 212, 212, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.recipient-badge:hover .recipient-icon {
    transform: scale(1.1);
    background: rgba(0, 212, 212, 0.15);
    color: #fff;
}

/* Promo Banner Cards */
.promo-banner-card {
    transition: all 0.35s ease;
    cursor: pointer;
}

.promo-banner-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 175, 41, 0.25) !important;
    box-shadow: 0 20px 45px rgba(232, 175, 41, 0.15);
}

/* Floating product preview images inside promo banners */
.floating-promo-img {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s;
    max-height: 180px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-banner-card:hover .floating-promo-img {
    box-shadow: 0 25px 45px rgba(232, 175, 41, 0.25);
}

.col-12:nth-child(1) .floating-promo-img {
    transform: rotate(3deg);
}

.col-12:nth-child(2) .floating-promo-img {
    transform: rotate(-3deg);
}

.col-12:nth-child(1) .promo-banner-card:hover .floating-promo-img {
    transform: translateY(-8px) rotate(5deg) scale(1.05);
}

.col-12:nth-child(2) .promo-banner-card:hover .floating-promo-img {
    transform: translateY(-8px) rotate(-5deg) scale(1.05);
}

/* Navbar Search Bar Styling */
.nav-search-container {
    width: 220px;
    transition: width 0.3s ease;
}

.nav-search-container:focus-within {
    width: 280px;
}

.nav-search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 0.4rem 2.2rem 0.4rem 1rem;
    color: #fff;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.25s;
}

.nav-search-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 10px rgba(232, 175, 41, 0.15) !important;
}

.nav-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.nav-search-btn {
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 0.88rem;
    padding: 0 10px;
    display: flex;
    align-items: center;
}

.nav-search-btn:hover {
    color: var(--accent-gold) !important;
}

/* Product Thumbnails Horizontal Slider */
.product-thumbnails-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    padding: 0.5rem 0.2rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

/* Scrollbar custom styles */
.product-thumbnails-slider::-webkit-scrollbar {
    height: 5px;
}

.product-thumbnails-slider::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 3px;
}

.product-thumbnails-slider::-webkit-scrollbar-thumb {
    background: rgba(232, 175, 41, 0.35);
    border-radius: 3px;
}

.product-thumbnails-slider::-webkit-scrollbar-thumb:hover {
    background: rgba(232, 175, 41, 0.6);
}

.product-thumbnail-btn {
    flex: 0 0 auto !important;
}

/* Mobile Navigation Scroll Limit to prevent cutting off on phone screens */
#mobileNav {
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(232, 175, 41, 0.25) rgba(255, 255, 255, 0.02);
}

#mobileNav::-webkit-scrollbar {
    width: 4px;
}

#mobileNav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

#mobileNav::-webkit-scrollbar-thumb {
    background: rgba(232, 175, 41, 0.25);
    border-radius: 2px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20ba5a;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 0 0px rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 0 0px rgba(37, 211, 102, 0);
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 48px;
        height: 48px;
        font-size: 25px;
    }
}

/* ============================================================
   FashionToro — Mobile Header Scaling & Side Panel Menu
   ============================================================ */

@media (max-width: 767px) {
    .header-container {
        height: 110px;
        gap: 0.5rem;
    }

    .logo-container {
        height: 95px;
    }

    .logo-img {
        max-height: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 105px;
    }

    .logo-container {
        height: 88px;
    }
}

/* Off-canvas Side Panel Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Off-canvas Side Panel Main Content */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: -320px;
    /* Start hidden */
    width: 300px;
    height: 100vh;
    background: rgba(1, 15, 16, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 3000;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    visibility: hidden;
    /* Prevent horizontal scroll when closed */
}

.mobile-nav-panel.open {
    right: 0;
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.mobile-nav-close-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
}

.mobile-nav-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.mobile-nav-body {
    flex-grow: 1;
    overflow-y: auto;
}