/* ============================================================
                   ROOT VARIABLES
                   ============================================================ */
        :root {
            --color-white: #ffffff;
            --color-black: #111111;
            --color-pink: #F8AFCB;
            --color-pink-dark: #e88aad;
            --color-pink-light: #fbd5e4;
            --color-rose-gold: #b76e79;
            --color-rose-gold-light: #d4a0a8;
            --color-gray-soft: #f7f5f5;
            --color-gray-light: #eae7e7;
            --color-gray: #b0a8a8;
            --color-text: #2d2a2a;
            --font-serif: 'Playfair Display', serif;
            --font-sans: 'Inter', sans-serif;
            --shadow-soft: 0 8px 32px rgba(17, 17, 17, 0.08);
            --shadow-medium: 0 12px 48px rgba(17, 17, 17, 0.12);
            --shadow-glass: 0 8px 32px rgba(248, 175, 203, 0.15);
            --radius-card: 20px;
            --radius-sm: 12px;
            --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --glass-bg: rgba(255, 255, 255, 0.72);
            --glass-border: rgba(248, 175, 203, 0.20);
        }

        /* ============================================================
                   RESET & BASE
                   ============================================================ */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-sans);
            color: var(--color-text);
            background: var(--color-white);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ============================================================
                   TYPOGRAPHY
                   ============================================================ */
        .heading-serif {
            font-family: var(--font-serif);
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .heading-serif-light {
            font-family: var(--font-serif);
            font-weight: 400;
            font-style: italic;
        }

        .text-rose {
            color: var(--color-rose-gold);
        }

        .text-pink {
            color: var(--color-pink);
        }

        .text-black {
            color: var(--color-black);
        }

        .text-muted {
            color: var(--color-gray);
        }

        /* ============================================================
                   BUTTONS
                   ============================================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 36px;
            border-radius: 60px;
            font-family: var(--font-sans);
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            letter-spacing: 0.3px;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--color-black);
            color: var(--color-white);
        }

        .btn-primary:hover {
            background: var(--color-pink);
            color: var(--color-black);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(248, 175, 203, 0.35);
        }

        .btn-secondary {
            background: var(--color-pink);
            color: var(--color-black);
        }

        .btn-secondary:hover {
            background: var(--color-black);
            color: var(--color-white);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(17, 17, 17, 0.15);
        }

        .btn-outline {
            background: transparent;
            color: var(--color-black);
            border: 2px solid var(--color-black);
        }

        .btn-outline:hover {
            background: var(--color-black);
            color: var(--color-white);
            transform: translateY(-2px);
        }

        .btn-rose {
            background: var(--color-rose-gold);
            color: var(--color-white);
        }

        .btn-rose:hover {
            background: var(--color-pink);
            color: var(--color-black);
            transform: translateY(-2px);
        }

        .btn-sm {
            padding: 10px 24px;
            font-size: 0.85rem;
        }

        .btn-block {
            width: 100%;
            justify-content: center;
        }

        /* ============================================================
                   GLASSMORPHISM
                   ============================================================ */
        .glass {
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
        }

        /* ============================================================
                   CARD
                   ============================================================ */
        .card {
            background: var(--color-white);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-soft);
            overflow: hidden;
            transition: var(--transition);
        }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-medium);
        }

        .card-img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
        }

        .card-body {
            padding: 24px;
        }

        /* ============================================================
                   NAVIGATION
                   ============================================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 0;
            transition: var(--transition);
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow: 0 2px 40px rgba(17, 17, 17, 0.06);
            padding: 10px 0;
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            font-family: var(--font-serif);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--color-black);
            letter-spacing: -0.5px;
        }

        .nav-logo span {
            color: var(--color-pink);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-links a {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-black);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-pink);
            transition: var(--transition);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .nav-actions .btn {
            padding: 10px 22px;
            font-size: 0.85rem;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }

        .hamburger span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: var(--color-black);
            border-radius: 4px;
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        /* Mobile Nav */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 360px;
            height: 100vh;
            background: var(--color-white);
            padding: 80px 32px 32px;
            z-index: 999;
            transition: var(--transition);
            box-shadow: var(--shadow-medium);
            overflow-y: auto;
        }

        .mobile-nav.open {
            right: 0;
        }

        .mobile-nav a {
            display: block;
            padding: 12px 0;
            font-size: 1.1rem;
            font-weight: 500;
            border-bottom: 1px solid var(--color-gray-light);
        }

        .mobile-nav .btn {
            margin-top: 16px;
            width: 100%;
        }

        .nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* ============================================================
                   FLOATING WHATSAPP
                   ============================================================ */
        .whatsapp-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 999;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
            transition: var(--transition);
            animation: pulse-whatsapp 2.5s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.08);
            box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
        }

        @keyframes pulse-whatsapp {
            0%,
            100% {
                box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
            }
            50% {
                box-shadow: 0 8px 50px rgba(37, 211, 102, 0.55);
            }
        }

        /* ============================================================
                   SCROLL TO TOP
                   ============================================================ */
        .scroll-top {
            position: fixed;
            bottom: 100px;
            right: 28px;
            z-index: 998;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--color-pink);
            color: var(--color-black);
            border: none;
            font-size: 20px;
            cursor: pointer;
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-top:hover {
            background: var(--color-black);
            color: var(--color-white);
            transform: translateY(-4px);
        }

        /* ============================================================
                   FOOTER
                   ============================================================ */
        .footer {
            background: var(--color-black);
            color: rgba(255, 255, 255, 0.8);
            padding: 60px 0 30px;
            margin-top: 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer h4 {
            color: var(--color-white);
            font-family: var(--font-serif);
            font-size: 1.1rem;
            margin-bottom: 16px;
        }

        .footer a {
            display: block;
            padding: 4px 0;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer a:hover {
            color: var(--color-pink);
            padding-left: 6px;
        }

        .footer .socials {
            display: flex;
            gap: 14px;
            margin-top: 12px;
        }

        .footer .socials a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            padding: 0;
        }

        .footer .socials a:hover {
            background: var(--color-pink);
            color: var(--color-black);
            padding-left: 0;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 24px;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
        }

        /* ============================================================
                   HERO
                   ============================================================ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
            background: linear-gradient(165deg, #fcf8f6 0%, #f5eeea 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(248, 175, 203, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: clamp(2.6rem, 6vw, 4.8rem);
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-content h1 span {
            color: var(--color-pink);
            font-style: italic;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: var(--color-gray);
            max-width: 480px;
            margin-bottom: 32px;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 32px;
        }

        .hero-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 24px 40px;
            margin-top: 12px;
        }

        .hero-highlights li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .hero-highlights li i {
            color: var(--color-pink);
            font-size: 1.2rem;
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image img {
            width: 100%;
            max-width: 520px;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-medium);
            object-fit: cover;
            aspect-ratio: 4/5;
        }

        /* ============================================================
                   SECTION
                   ============================================================ */
        .section {
            padding: 80px 0;
        }

        .section-title {
            font-family: var(--font-serif);
            font-size: clamp(2rem, 4vw, 3rem);
            text-align: center;
            margin-bottom: 12px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--color-gray);
            max-width: 560px;
            margin: 0 auto 48px;
            font-size: 1.05rem;
        }

        /* ============================================================
                   SERVICES GRID
                   ============================================================ */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .service-card .card-body h3 {
            font-family: var(--font-serif);
            font-size: 1.2rem;
            margin-bottom: 6px;
        }

        .service-card .card-body .price {
            font-weight: 600;
            color: var(--color-rose-gold);
            font-size: 1.1rem;
        }

        /* ============================================================
                   PRODUCTS GRID
                   ============================================================ */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 28px;
        }

        .product-card .card-body h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .product-card .card-body .price {
            color: var(--color-rose-gold);
            font-weight: 600;
        }

        .product-card .card-body .stock {
            font-size: 0.8rem;
            color: var(--color-gray);
        }

        /* ============================================================
                   TESTIMONIALS
                   ============================================================ */
        .testimonials-slider {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            padding: 28px;
            text-align: center;
            background: var(--color-gray-soft);
            border-radius: var(--radius-card);
        }

        .testimonial-card .stars {
            color: #f5b342;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .testimonial-card blockquote {
            font-style: italic;
            font-size: 0.98rem;
            margin-bottom: 12px;
        }

        .testimonial-card .author {
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* ============================================================
                   BLOG PREVIEW
                   ============================================================ */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .blog-card .card-body .meta {
            font-size: 0.8rem;
            color: var(--color-gray);
            margin-bottom: 6px;
        }

        .blog-card .card-body h3 {
            font-family: var(--font-serif);
            font-size: 1.1rem;
        }

        /* ============================================================
                   PROMO BANNER
                   ============================================================ */
        .promo-banner {
            background: linear-gradient(135deg, var(--color-pink), var(--color-rose-gold));
            color: var(--color-white);
            padding: 50px 40px;
            border-radius: var(--radius-card);
            text-align: center;
            margin: 40px 0;
        }

        .promo-banner h2 {
            font-family: var(--font-serif);
            font-size: clamp(1.8rem, 3vw, 2.8rem);
            margin-bottom: 8px;
        }

        .promo-banner p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 500px;
            margin: 0 auto 20px;
        }

        .promo-banner .btn {
            background: var(--color-white);
            color: var(--color-black);
        }

        .promo-banner .btn:hover {
            background: var(--color-black);
            color: var(--color-white);
        }

        /* ============================================================
                   CTA
                   ============================================================ */
        .cta-section {
            background: var(--color-gray-soft);
            padding: 80px 0;
            text-align: center;
            border-radius: var(--radius-card);
            margin: 40px 0;
        }

        .cta-section h2 {
            font-family: var(--font-serif);
            font-size: clamp(2rem, 3.5vw, 3rem);
        }

        .cta-section .btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin-top: 24px;
        }

        /* ============================================================
                   RESPONSIVE
                   ============================================================ */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content p {
                margin: 0 auto 32px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-highlights {
                justify-content: center;
            }

            .hero-image img {
                max-width: 400px;
            }
        }

        @media (max-width: 768px) {
            .nav-links,
            .nav-actions .btn {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero {
                padding: 100px 0 60px;
                min-height: auto;
            }

            .hero-content h1 {
                font-size: 2.4rem;
            }

            .section {
                padding: 50px 0;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .whatsapp-float {
                width: 52px;
                height: 52px;
                font-size: 24px;
                bottom: 20px;
                right: 20px;
            }

            .scroll-top {
                bottom: 84px;
                right: 20px;
                width: 42px;
                height: 42px;
                font-size: 17px;
            }

            .promo-banner {
                padding: 32px 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.9rem;
            }

            .hero-highlights {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .products-grid {
                grid-template-columns: 1fr 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .testimonials-slider {
                grid-template-columns: 1fr;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .btn {
                padding: 12px 24px;
                font-size: 0.85rem;
            }
        }

        /* ============================================================
                   ANIMATIONS (AOS overrides)
                   ============================================================ */
        [data-aos] {
            pointer-events: none;
        }

        [data-aos].aos-animate {
            pointer-events: auto;
        }

        /* ============================================================
                   LOADING SPINNER (optional)
                   ============================================================ */
        .page-loader {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: var(--color-white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.6s, visibility 0.6s;
        }

        .page-loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-spinner {
            width: 48px;
            height: 48px;
            border: 4px solid var(--color-gray-light);
            border-top-color: var(--color-pink);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* ============================================================
                   PAGE TRANSITIONS (fade)
                   ============================================================ */
        .page-transition {
            animation: fadeUp 0.6s ease forwards;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }