/* 
    NIRKALA - Premium Luxury Website
    Theme: Arctic White & Royal Blue
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Primary Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F0F7FF; /* Arctic Blue Mist */
    --bg-tertiary: #001A3D; /* Deep Navy */
    
    /* Accent Colors */
    --accent: #0052CC; /* Royal Blue */
    --accent-dark: #003D99;
    --accent-light: #E0EEFF;
    --accent-glow: rgba(0, 82, 204, 0.1);
    
    /* Text Colors */
    --text-dark: #001A3D;
    --text-mid: #4F6D7E;
    --text-light: #8EABB9;
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions & Shadow */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 20px 40px rgba(0, 26, 61, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: initial; /* Managed by Lenis */
}

body {
    background-color: var(--bg-primary);
    color: var(--text-dark);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Fix for Blank Areas: Ensure content is visible but can be animated */
section {
    position: relative;
    padding: var(--section-padding, 100px 8%);
    opacity: 1; /* Ensure sections are visible by default */
    overflow: hidden;
}

/* Page Transition Overlay */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 100000;
    transform: translateY(100%);
    pointer-events: none;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 99999; /* Increased z-index */
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

nav.scrolled {
    height: 75px;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--accent-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: auto;
    margin-right: 40px;
}

.close-btn {
    display: none;
    position: absolute;
    top: 50px;
    right: 40px;
    font-size: 1.8rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 10px;
    transition: var(--transition-smooth);
}

.close-btn:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

@media (max-width: 992px) {
    .close-btn { display: block; }
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-mobile-cta {
    display: none;
    padding: 15px 35px;
    background: var(--accent);
    color: var(--white) !important;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px;
    margin-top: 30px;
    width: auto !important;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent);
}

.nav-cta {
    padding: 12px 25px;
    background: var(--accent);
    color: var(--white) !important;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.nav-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 82, 204, 0.2);
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--accent);
    cursor: pointer;
    z-index: 100005;
    padding: 5px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-secondary);
    padding: 0;
}

.hero-left {
    padding: 0 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 5.5rem;
    line-height: 1;
    margin: 20px 0;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-container {
    width: 90%;
    height: 80%;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 26, 61, 0.1);
}

/* Buttons */
.btn-primary {
    padding: 18px 45px;
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 82, 204, 0.2);
}

.btn-secondary {
    padding: 18px 45px;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-5px);
}

/* Section Titles */
.section-title {
    margin-bottom: 70px;
}

.section-title p {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.3em; /* More spacing for luxury feel */
    font-size: 0.75rem;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    padding-left: 40px;
}

.section-title p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--accent);
    transform: translateY(-50%);
}

.section-title h2 {
    font-size: 3.5rem;
    color: var(--text-dark);
    line-height: 1.1;
    max-width: 800px;
}

.section-title.center {
    text-align: center;
}

.section-title.center h2 {
    margin: 0 auto;
}

.section-title.center p {
    padding-left: 0;
}

.section-title.center p::before {
    display: none;
}

/* About Section Refinement */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 600px;
}

.about-media img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: var(--shadow-premium);
    object-fit: cover;
}

.essence-list {
    list-style: none;
}

.essence-list li i {
    color: var(--accent);
    font-size: 1.2rem;
    min-width: 25px; /* Ensure icon doesn't shrink */
}

/* Product Details Styles */
.product-details {
    padding-top: 150px;
    padding-bottom: 100px;
}

.product-info-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.product-info-text .price {
    font-size: 2.5rem;
    color: var(--accent);
    font-family: var(--font-heading);
    margin: 20px 0;
}

@media (max-width: 768px) {
    .product-info-text h1 { font-size: 2.2rem; }
    .product-info-text .price { font-size: 1.8rem; }
    .product-actions { flex-direction: column; }
    .product-actions .btn-primary { width: 100%; }
}
.essence-list li i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Stats Section Update */
.stats {
    background: var(--bg-tertiary);
    color: var(--white) !important;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 120px 8%;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.stats .stat-card h3 {
    font-size: 4rem;
    color: var(--accent-light) !important;
    margin-bottom: 10px;
}

.stats .stat-card p {
    color: rgba(255, 255, 255, 0.6) !important;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Specialization Cards */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.spec-card {
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 50px;
    transition: var(--transition-smooth);
}

.spec-card:hover {
    transform: translateY(-15px);
}

.spec-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: transform 1.2s ease;
}

.spec-card:hover img {
    transform: scale(1.1);
}

.spec-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 26, 61, 0.8), transparent);
}

.spec-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.spec-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    max-width: 250px;
    line-height: 1.4;
    font-weight: 300;
}

/* Reviews */
.review-card {
    background: var(--bg-secondary);
    padding: 60px;
    border-radius: 40px;
    text-align: center;
}

.review-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 25px;
    border: 4px solid var(--white);
}

/* Products Grid & Filters */
.product-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
}

.filter-btn {
    padding: 12px 28px;
    background: var(--bg-secondary);
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid var(--accent-light);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(0, 82, 204, 0.15);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 40px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--bg-secondary);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-premium);
}

.product-img {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 26, 61, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.wishlist-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 10px;
    transition: var(--transition-smooth);
    font-size: 1.2rem;
}

.wishlist-btn:hover {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1);
}

.wishlist-btn.active i {
    font-weight: 900;
    color: #ff4757;
}

.product-info {
    padding: 35px;
    text-align: center;
}

.product-info h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .product-info h4 { font-size: 1.1rem; }
}

.product-info p {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

/* Wishlist Empty State */
.empty-wishlist {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    width: 100%;
}

.empty-wishlist-icon {
    font-size: 5rem;
    color: var(--accent-light);
    margin-bottom: 30px;
    opacity: 0.5;
}

.empty-wishlist h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.empty-wishlist p {
    color: var(--text-mid);
    margin-bottom: 40px;
    max-width: 400px;
}


/* Page Transition Overlay */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 100000;
    transform: translateY(100%);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
footer {
    background: var(--bg-tertiary);
    color: var(--white);
    padding: 100px 8% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-links h4 {
    color: var(--accent-light);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--text-light);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    z-index: 1000000;
    transition: var(--transition-smooth);
    animation: whatsapp-glow 2s infinite;
}

@keyframes whatsapp-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    background: #128C7E;
    animation: none;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Hero Buttons Alignment */
.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* Product Filters Alignment Fix */
.product-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px auto;
    max-width: 900px;
}

/* Layout Helpers */
.center-text { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* Portfolio Card Variants */
.spec-card.card-large { height: 600px; }
.spec-card.card-medium { height: 500px; }
.spec-card.card-small { height: 400px; }

/* Responsive adjustments Overhaul - REFINED */

/* Large Tablets & Small Laptops */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 4rem; }
    .footer-grid { gap: 40px; }
}

@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3.5rem; }
    .about-grid { gap: 50px; }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
    .spec-grid { gap: 20px; }
    .spec-card.card-large, .spec-card.card-medium, .spec-card.card-small { height: 450px; }
}

/* Tablets */
@media (max-width: 992px) {
    nav { height: 70px; }
    .logo { font-size: 1.5rem; }
    .nav-cta { display: none; }
    
    .menu-btn { 
        display: block; 
        z-index: 100001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        left: auto;
        height: 100vh;
        background: var(--white);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        border-left: 1px solid var(--accent-light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: none; /* Controlled by JS/GSAP */
        opacity: 0;
        z-index: 100005; /* Increased to be above menu-btn */
        margin: 0 !important;
        padding: 40px;
    }

    .close-btn {
        display: block;
        position: absolute;
        top: 25px; /* Moved up */
        right: 25px; /* Adjusted */
        z-index: 100006;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 15px;
        letter-spacing: 0.2em;
        text-align: center;
        width: 100%;
        padding: 10px;
    }
    
    .hero { 
        grid-template-columns: 1fr; 
        height: auto; 
        padding-top: 100px; 
    }
    
    .hero-right { 
        height: 40vh; 
        order: 1; /* Video below text on mobile as requested */
        margin: 0 !important; 
        border-radius: 20px; 
        overflow: hidden;
    }
    
    .hero-left { 
        padding: 100px 5% 50px !important; /* Heavily increased to prevent any overlap */
        text-align: center; 
        min-height: 50vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-btns { 
        justify-content: center; 
    }
    
    .nav-mobile-cta {
        display: block;
    }
    
    .hero-content p {
        margin: 0 auto 30px;
        max-width: 500px;
    }
    
    .stats { 
        grid-template-columns: repeat(4, 1fr); 
        gap: 15px; 
        padding: 40px 5%;
    }

    .stat-card h3 { font-size: 1.8rem !important; }
    .stat-card p { font-size: 0.6rem !important; }
    
    .about-grid { 
        grid-template-columns: 1fr; 
        gap: 30px;
        padding-top: 20px;
    }

    .about-content { 
        padding: 0; 
        text-align: center;
    }
    
    .about-content .section-title {
        text-align: center !important;
    }

    .essence-list {
        display: inline-block;
        text-align: left;
    }
    
    .spec-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }
    
    .footer-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 40px; 
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    section { padding: 50px 5%; }
    
    .section-title h2 { font-size: 2rem; }
    .section-title p { font-size: 0.7rem; }
    
    .hero-content h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; width: 100%; gap: 12px; }
    .hero-btns a { width: 100%; text-align: center; }
    
    .stats { 
        grid-template-columns: repeat(4, 1fr); 
        gap: 10px;
        padding: 30px 2%;
    }

    .stat-card { padding: 15px 5px; }
    .stat-card h3 { font-size: 1.4rem !important; }
    .stat-card p { font-size: 0.5rem !important; letter-spacing: 0.05em; }
    
    .spec-grid { grid-template-columns: 1fr; }
    .spec-card { height: 300px !important; }
    
    .product-grid { 
        grid-template-columns: 1fr; 
        gap: 25px;
    }
    
    .product-actions { 
        display: flex !important;
        flex-direction: row !important; 
        gap: 10px !important;
        flex-wrap: wrap !important;
        margin-top: 30px;
    }
    
    .product-actions .btn-primary { 
        width: 100% !important; 
        margin-bottom: 5px;
        order: -1;
    }

    .product-actions .btn-secondary {
        flex: 1 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 15px !important;
        height: 55px;
        margin: 0 !important;
    }

    .product-card { 
        max-width: 100%; 
        transform: scale(0.95); /* Slightly smaller as requested */
    }
    
    .product-img {
        height: 300px;
    }

    .product-overlay {
        opacity: 1 !important;
        background: linear-gradient(to top, rgba(0, 26, 61, 0.8), transparent) !important;
        align-items: flex-end !important;
        padding: 20px !important;
    }

    .product-overlay .btn-primary {
        padding: 10px 20px !important;
        font-size: 0.7rem !important;
    }

    .product-card .wishlist-btn {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
        margin-left: 5px !important;
    }
    
    .quote-form { 
        padding: 25px 15px; 
    }
    
    #inquiryForm div { 
        grid-template-columns: 1fr !important; 
        gap: 0;
    }
    
    .footer-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .section-title h2 { font-size: 1.6rem; }
    .stats { gap: 5px; }
    .stat-card h3 { font-size: 1.2rem !important; }
}

/* Quote Form Styles */
.quote-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    border: 1px solid var(--bg-secondary);
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-alt);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 82, 204, 0.1);
}
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white !important;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 600;
    transition: var(--transition-smooth);
}
.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Empty Wishlist Styles */
.empty-wishlist {
    display: none; /* Controlled by JS */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
    width: 100%;
}

.empty-wishlist-icon {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--accent-light);
    font-size: 5rem;
    background: var(--bg-secondary);
    border-radius: 50%;
    position: relative;
}

.empty-wishlist h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.empty-wishlist p {
    color: var(--text-mid);
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.empty-wishlist .btn-primary {
    padding: 15px 40px;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
