@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;800&display=swap');

/* --- Design Tokens --- */
:root {
    --bg-dark: #050508;
    --bg-dark-gray: #0c0c12;
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
    --neon-pink: #ff007f;
    --neon-pink-rgb: 255, 0, 127;
    --ice-white: #f0fdff;
    --ice-white-rgb: 240, 253, 255;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-shadow: rgba(0, 0, 0, 0.5);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: var(--transition-smooth);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-pink);
}

/* --- Layout Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 30%, var(--neon-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Glassmorphism UI --- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px var(--glass-shadow);
    border-radius: 20px;
}

/* --- Glowing Effects --- */
.glow-pink {
    box-shadow: 0 0 25px rgba(var(--neon-pink-rgb), 0.35), 
                0 0 50px rgba(var(--neon-pink-rgb), 0.15);
}

.glow-white {
    box-shadow: 0 0 25px rgba(var(--ice-white-rgb), 0.4), 
                0 0 50px rgba(var(--ice-white-rgb), 0.15);
}

.text-glow-pink {
    text-shadow: 0 0 10px rgba(var(--neon-pink-rgb), 0.6);
}

.text-glow-white {
    text-shadow: 0 0 10px rgba(var(--ice-white-rgb), 0.6);
}

/* Background Glowing Orbs */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

.bg-orb-pink {
    background: var(--neon-pink);
    width: 500px;
    height: 500px;
    top: 10%;
    left: -10%;
}

.bg-orb-white {
    background: var(--ice-white);
    width: 600px;
    height: 600px;
    bottom: 10%;
    right: -10%;
}

/* --- Header / Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
}

header.scrolled {
    padding: 1rem 0;
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(var(--neon-pink-rgb), 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-item a {
    font-family: var(--font-heading);
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

.nav-item a:hover,
.nav-item.active a {
    color: var(--text-light);
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    box-shadow: 0 0 8px var(--neon-pink);
    transition: var(--transition-smooth);
}

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

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Menu Toggle for Mobile */
.menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
}

/* --- Premium Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--neon-pink);
    color: #fff;
    border: none;
    box-shadow: 0 0 20px rgba(var(--neon-pink-rgb), 0.4);
}

.btn-primary:hover {
    background: #fff;
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border: none;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1ebd5c;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    background: radial-gradient(circle at 50% 50%, #0d0d16 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(var(--neon-pink-rgb), 0.1);
    border: 1px solid rgba(var(--neon-pink-rgb), 0.2);
    color: var(--neon-pink);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: pulseGlow 2s infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--neon-pink);
    text-shadow: 0 0 20px rgba(var(--neon-pink-rgb), 0.4);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 550px;
}

.mirror-display-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mirror-showcase-card {
    position: absolute;
    width: 260px;
    height: 430px;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
    background: #000;
    border: 3px solid transparent;
}

.mirror-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.mirror-showcase-card.pink-card {
    transform: rotate(-6deg) translateX(-70px) translateZ(0);
    z-index: 2;
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(var(--neon-pink-rgb), 0.5), inset 0 0 20px rgba(var(--neon-pink-rgb), 0.2);
}

.mirror-showcase-card.white-card {
    transform: rotate(6deg) translateX(70px) translateZ(0);
    z-index: 1;
    border-color: var(--ice-white);
    box-shadow: 0 0 30px rgba(var(--ice-white-rgb), 0.5), inset 0 0 20px rgba(var(--ice-white-rgb), 0.2);
}

.mirror-showcase-card:hover {
    z-index: 5;
    transform: scale(1.08) rotate(0deg) translate(0) translateZ(0);
}

.mirror-showcase-card.pink-card:hover {
    box-shadow: 0 0 50px rgba(var(--neon-pink-rgb), 0.8);
}

.mirror-showcase-card.white-card:hover {
    box-shadow: 0 0 50px rgba(var(--ice-white-rgb), 0.8);
}

.mirror-label {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    pointer-events: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --- Offer Banner (Scrolling Marquee) --- */
.offer-marquee-container {
    background: #ffffff; /* Premium white marquee background */
    border-top: 2px solid var(--neon-pink);
    border-bottom: 2px solid var(--neon-pink);
    padding: 1.25rem 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15), 0 0 15px rgba(var(--neon-pink-rgb), 0.2);
}

.offer-marquee {
    display: flex;
    white-space: nowrap;
    width: 200%;
    animation: marquee 25s linear infinite;
}

.offer-item {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #4a0e17; /* Luxury Maroon Color text */
    margin-right: 4rem;
}

.offer-item span {
    color: var(--neon-pink);
    margin-right: 0.6rem;
}

/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--neon-pink-rgb), 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(var(--neon-pink-rgb), 0.1);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 1.5rem;
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(var(--neon-pink-rgb), 0.3);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--neon-pink);
    color: #fff;
    box-shadow: 0 0 15px var(--neon-pink);
    border-color: var(--neon-pink);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.about-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-bullet {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-light);
}

.about-bullet span {
    color: var(--neon-pink);
    font-size: 1.25rem;
}

.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 480px;
}

.about-glow-orb {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--neon-pink);
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
}

.about-mirror-card {
    position: relative;
    width: 260px;
    height: 430px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--neon-pink);
    box-shadow: 0 0 35px rgba(var(--neon-pink-rgb), 0.5);
    z-index: 2;
    transform: rotate(-3deg);
    transition: var(--transition-smooth);
}

.about-mirror-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-mirror-card:hover {
    transform: scale(1.03) rotate(0deg);
    box-shadow: 0 0 50px rgba(var(--neon-pink-rgb), 0.7);
}

/* --- Products Page / Products Display --- */
.products-section {
    padding-top: 10rem;
    background: radial-gradient(circle at top, #0f0f1c 0%, var(--bg-dark) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.01));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.product-card.pink-glow-hover:hover::before {
    background: linear-gradient(135deg, var(--neon-pink), rgba(255,255,255,0.01));
}

.product-card.white-glow-hover:hover::before {
    background: linear-gradient(135deg, var(--ice-white), rgba(255,255,255,0.01));
}

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

.product-card.pink-glow-hover:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(var(--neon-pink-rgb), 0.2);
}

.product-card.white-glow-hover:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(var(--ice-white-rgb), 0.25);
}

.product-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pink-glow-hover .product-badge {
    border: 1px solid rgba(var(--neon-pink-rgb), 0.3);
    color: var(--neon-pink);
}

.white-glow-hover .product-badge {
    border: 1px solid rgba(var(--ice-white-rgb), 0.3);
    color: var(--ice-white);
}

.product-img-wrapper {
    width: 100%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img-wrapper img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

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

/* Specific glows in product page */
.pink-glow-hover .product-img-wrapper {
    border: 2px solid var(--neon-pink);
    box-shadow: 0 0 20px rgba(var(--neon-pink-rgb), 0.3);
}

.white-glow-hover .product-img-wrapper {
    border: 2px solid var(--ice-white);
    box-shadow: 0 0 20px rgba(var(--ice-white-rgb), 0.3);
}

.product-rating {
    display: flex;
    gap: 0.25rem;
    color: #ffb800;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.product-meta-specs {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-meta-specs li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.product-meta-specs li span {
    color: var(--neon-pink);
}

.product-price-block {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-discounted {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

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

.price-save {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--neon-pink);
    background: rgba(var(--neon-pink-rgb), 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
}

.product-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: auto;
}

/* --- Customer Reviews Section --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.review-card {
    padding: 3rem 2.5rem;
    position: relative;
}

.review-stars {
    color: #ffb800;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.review-text {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #11111a;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(var(--neon-pink-rgb), 0.2);
}

.review-info h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
}

.review-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Contact Page --- */
.contact-section {
    padding-top: 10rem;
    background: radial-gradient(circle at top, #0f0f1c 0%, var(--bg-dark) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateX(5px);
    border-color: rgba(var(--neon-pink-rgb), 0.25);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--neon-pink);
    transition: var(--transition-smooth);
}

.contact-card:hover .contact-card-icon {
    background: var(--neon-pink);
    color: #fff;
    box-shadow: 0 0 15px var(--neon-pink);
}

.contact-card-details h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-card-details p,
.contact-card-details a {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-card-details a:hover {
    color: var(--neon-pink);
}

/* Contact Form */
.contact-form-panel {
    padding: 3.5rem;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-pink);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(var(--neon-pink-rgb), 0.2);
}

textarea.form-control {
    resize: none;
    min-height: 120px;
}

/* --- Footer --- */
footer {
    background: #030305;
    border-top: 1px solid var(--glass-border);
    padding: 5rem 0 2.5rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--neon-pink);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--neon-pink);
    color: #fff;
    box-shadow: 0 0 12px var(--neon-pink);
    border-color: var(--neon-pink);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--neon-pink);
}

/* --- Floating Particles --- */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(var(--neon-pink-rgb), 0.25);
    pointer-events: none;
    animation: floatUp 8s linear infinite;
}

/* --- Animations & Keyframes --- */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px rgba(var(--neon-pink-rgb), 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(var(--neon-pink-rgb), 0.5);
    }
    100% {
        box-shadow: 0 0 10px rgba(var(--neon-pink-rgb), 0.2);
    }
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-10vh) translateX(100px) scale(1.5);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Page Transition Overlay */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    pointer-events: none;
}

.page-transition-overlay.active {
    transform: translateY(0);
    pointer-events: all;
}

.page-transition-overlay.active-out {
    transform: translateY(-100%);
}

/* --- Media Queries (Responsiveness) --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.25rem;
    }
    .hero-grid {
        gap: 2rem;
    }
    .hero-showcase {
        height: 480px;
    }
    .mirror-showcase-card {
        width: 210px;
        height: 350px;
    }
    .mirror-showcase-card.pink-card {
        transform: rotate(-6deg) translateX(-50px);
    }
    .mirror-showcase-card.white-card {
        transform: rotate(6deg) translateX(50px);
    }
}

@media (max-width: 968px) {
    section {
        padding: 6rem 0;
    }
    .hero {
        padding-top: 7rem;
        height: auto;
        min-height: auto;
        padding-bottom: 6rem;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    .about-bullets {
        justify-content: center;
    }
    .about-image-wrapper {
        height: 450px;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(5, 5, 8, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--glass-border);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    .nav-menu.active {
        right: 0;
    }
    .menu-toggle {
        display: block;
        z-index: 1000;
    }
    .nav-cta {
        display: none; /* In mobile menu, or we can place it inside */
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.25rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-badge {
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .hero-showcase {
        height: 350px;
        width: 100%;
        overflow: hidden;
    }
    .mirror-showcase-card {
        width: 140px;
        height: 240px;
    }
    .mirror-showcase-card.pink-card {
        transform: rotate(-6deg) translateX(-18px);
    }
    .mirror-showcase-card.white-card {
        transform: rotate(6deg) translateX(18px);
    }
    .section-title {
        font-size: 2.25rem;
    }
    .product-card {
        padding: 1.5rem;
    }
    .product-img-wrapper {
        height: 280px;
    }
    .product-buttons {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .contact-form-panel {
        padding: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* --- Spin Wheel Styles --- */
/* Floating Widget Trigger */
#spin-wheel-widget {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    z-index: 999;
    cursor: pointer;
    background: rgba(10, 10, 15, 0.9);
    border: 1px solid var(--neon-pink);
    box-shadow: 0 0 20px rgba(var(--neon-pink-rgb), 0.4);
    transition: var(--transition-smooth);
    animation: widgetGlow 2s infinite;
}

#spin-wheel-widget.hidden {
    display: none !important;
}

#spin-wheel-widget:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 0 30px rgba(var(--neon-pink-rgb), 0.6);
    background: #000;
}

#spin-wheel-widget .widget-icon {
    font-size: 1.25rem;
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(var(--neon-pink-rgb), 0.5);
    animation: pulseIcon 1.5s infinite;
}

#spin-wheel-widget .widget-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 5, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin: auto;
    padding: 2.5rem 1.5rem;
    box-sizing: border-box;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 99999;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: var(--neon-pink);
    border-color: var(--neon-pink);
    color: #fff;
    transform: rotate(90deg);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 40%, var(--neon-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Spin Wheel Styling */
.wheel-outer {
    position: relative;
    width: 280px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    margin: 0 auto 2rem;
    border-radius: 50%;
    padding: 8px;
    background: #050508;
    border: 4px solid var(--neon-pink);
    box-shadow: 0 0 35px rgba(var(--neon-pink-rgb), 0.5), inset 0 0 20px rgba(0,0,0,0.8);
    box-sizing: border-box;
}

.wheel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: conic-gradient(
        #16112a 0deg 59deg, #ffffff 59deg 60deg,
        #ff007f 60deg 119deg, #ffffff 119deg 120deg,
        #ffb800 120deg 179deg, #ffffff 179deg 180deg,
        #16112a 180deg 239deg, #ffffff 239deg 240deg,
        #ff007f 240deg 299deg, #ffffff 299deg 300deg,
        #ffb800 300deg 359deg, #ffffff 359deg 360deg
    );
    transition: transform 6s cubic-bezier(0.1, 0.8, 0.1, 1);
}

.wheel-slice {
    position: absolute;
    width: 50%;
    height: 50px;
    top: calc(50% - 25px);
    left: 50%;
    transform-origin: left center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 18px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    user-select: none;
    pointer-events: none;
}

.wheel-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid #fff;
    filter: drop-shadow(0 0 10px rgba(var(--neon-pink-rgb), 0.8));
    z-index: 10;
}

.wheel-center-pin {
    position: absolute;
    width: 54px;
    height: 54px;
    background: #000;
    border: 3px solid var(--neon-pink);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-pink);
    font-size: 1.1rem;
    box-shadow: 0 0 20px var(--neon-pink);
}

/* Success Celebration Modal Specifics */
.success-icon {
    font-size: 3.5rem;
    color: #ffb800;
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.4);
    margin-bottom: 1.5rem;
    animation: bounce 1s infinite alternate;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.success-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.success-desc span {
    font-weight: 800;
}

/* Price Breakdown UI */
.price-breakdown {
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.breakdown-item .price-line {
    text-decoration: line-through;
}

.breakdown-item.final-item {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    color: #fff;
    font-size: 1.1rem;
}

.success-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.success-buttons .btn {
    width: 100%;
}

/* Coupon Badges on Products Page */
.spin-coupon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(var(--neon-pink-rgb), 0.1);
    border: 1px solid rgba(var(--neon-pink-rgb), 0.3);
    color: var(--neon-pink);
    padding: 0.35rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px rgba(var(--neon-pink-rgb), 0.3);
    align-self: flex-start;
}

/* --- Spin Wheel Animations --- */
@keyframes widgetGlow {
    0% { box-shadow: 0 0 15px rgba(var(--neon-pink-rgb), 0.3); }
    50% { box-shadow: 0 0 30px rgba(var(--neon-pink-rgb), 0.6); }
    100% { box-shadow: 0 0 15px rgba(var(--neon-pink-rgb), 0.3); }
}

@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

/* Mobile Responsiveness for widget and modal */
@media (max-width: 576px) {
    .modal-overlay {
        padding: 0.75rem;
    }
    #spin-wheel-widget {
        bottom: 1rem;
        left: 1rem;
        padding: 0.5rem 1rem;
    }
    #spin-wheel-widget .widget-text {
        font-size: 0.75rem;
    }
    .modal-content {
        width: 100%;
        max-width: 100%;
        padding: 1.75rem 1rem;
        border-radius: 20px;
        margin: auto;
    }
    .modal-title {
        font-size: 1.4rem;
    }
    .modal-desc {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }
    .wheel-outer {
        width: 250px;
        max-width: 100%;
        aspect-ratio: 1 / 1;
        height: auto;
        margin: 0 auto 1.5rem;
        border-width: 3px;
        padding: 6px;
    }
    .wheel-slice {
        height: 40px;
        top: calc(50% - 20px);
        font-size: 0.85rem;
        padding-right: 10px;
    }
    .wheel-center-pin {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    #spin-btn {
        width: 100%;
        box-sizing: border-box;
        padding: 0.85rem 1rem !important;
        font-size: 1rem !important;
    }
    .success-title {
        font-size: 1.6rem;
    }
    .success-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    .price-breakdown {
        padding: 0.85rem;
        margin-bottom: 1.5rem;
        gap: 0.5rem;
    }
    .breakdown-item {
        font-size: 0.8rem;
    }
    .breakdown-item.final-item {
        font-size: 0.95rem;
    }
    .success-buttons .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 380px) {
    .modal-overlay {
        padding: 0.5rem;
    }
    .modal-content {
        padding: 1.25rem 0.75rem;
    }
    .modal-title {
        font-size: 1.25rem;
    }
    .wheel-outer {
        width: 210px;
    }
    .wheel-slice {
        font-size: 0.75rem;
        padding-right: 6px;
    }
    .wheel-center-pin {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }
}

/* Slice Text Rotation Alignment */
.wheel-slice span {
    display: inline-block;
}
.wheel-slice.upside-down span {
    transform: rotate(180deg);
}

/* --- Spin Wheel Section --- */
.spin-section {
    padding: 8rem 0;
    background: radial-gradient(circle at center, #140d24 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
}

.spin-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.spin-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.spin-section-card {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 440px;
    border-radius: 24px;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.spin-section-card:hover {
    border-color: rgba(var(--neon-pink-rgb), 0.25);
    box-shadow: 0 20px 40px rgba(var(--neon-pink-rgb), 0.15);
}

.btn-spin-section {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Responsiveness for Spin Section */
@media (max-width: 968px) {
    .spin-section {
        padding: 6rem 0;
    }
    .spin-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    .spin-content h2,
    .spin-content p {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .spin-content ul {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .spin-section-card {
        padding: 2rem 1.25rem;
    }
    .spin-section-card h3 {
        font-size: 1.4rem !important;
    }
    .btn-spin-section {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
    .promo-gift-icon {
        font-size: 3.5rem !important;
        margin-bottom: 1rem !important;
    }
}

/* --- Customer Gallery CSS --- */
.gallery-grid-display {
    margin-top: 2rem;
}

.gallery-item-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.gallery-item-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(var(--neon-pink-rgb), 0.35);
    box-shadow: 0 15px 40px rgba(var(--neon-pink-rgb), 0.2);
}

.gallery-item-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item-card:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 2rem 1.5rem 1rem;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item-card:hover .gallery-item-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* --- Interactive Switch Styles --- */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border: 1px solid var(--glass-border);
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

input:checked + .slider {
    background-color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(var(--neon-pink-rgb), 0.4);
    border-color: rgba(var(--neon-pink-rgb), 0.4);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--neon-pink);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}


