
        @font-face { font-family: 'Inter'; font-display: swap; }
        @font-face { font-family: 'Playfair Display'; font-display: swap; }

        :root {
            --bg: #f8f6f2;
            --surface: rgba(255,255,255,0.94);
            --text: #1c1917;
            --text-muted: #57534e;
            --accent: #c026d3;
            --accent-dark: #9f1239;
            --gold: #d4af37;
            --border: rgba(245,243,238,0.85);
        }

        * { margin:0; padding:0; box-sizing:border-box; }

        body {
            font-family: 'Inter', system-ui, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.55;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 50% 50%, rgba(192,38,211,0.025) 0%, transparent 60%);
            background-attachment: fixed;
        }
        
            .other-categories1 {
            text-decoration: none;
            font-family: 'Playfair Display', serif;
            font-size: clamp(0.92rem, 3.1vw, 1.15rem);
            font-weight: 700;
            background: linear-gradient(90deg, #1c1917, var(--accent-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .navbar {
            position: fixed;
            inset: 0 0 auto 0;
            z-index: 1000;
            background: var(--surface);
            border-bottom: 1px solid var(--border);
            padding: 0.7rem 5.5vw;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }

        .navbar.scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 3px 10px rgba(0,0,0,0.08); }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.32rem, 3.8vw, 1.65rem);
            font-weight: 700;
            background: linear-gradient(90deg, #1c1917, var(--accent-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links { display: flex; gap: 1.9rem; }
        .nav-links a {
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.97rem;
            text-decoration: none;
        }
        .nav-links a:hover { color: var(--accent); }
        
 .whatsapp-hero-btn {
  color: var(--text-muted);
  background: transparent;
  border: none;
  padding: 0;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.whatsapp-hero-btn:hover {
  color: var(--accent-dark);
}

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 4.5px;
            cursor: pointer;
            z-index: 1002;
        }
        .hamburger span {
            width: 24px; height: 2.8px;
            background: var(--text);
            border-radius: 2.5px;
        }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

        .mobile-menu {
            position: fixed;
            top: 0; right: -100%;
            width: 80%; max-width: 310px;
            height: 100vh;
            background: var(--surface);
            padding: 5rem 1.8rem 2rem;
            transition: right 0.4s ease;
            z-index: 1001;
            box-shadow: -9px 0 36px rgba(0,0,0,0.15);
        }
        .mobile-menu.active { right: 0; }
        .mobile-menu a {
            display: block;
            color: var(--text);
            font-size: 1.3rem;
            font-weight: 600;
            margin: 1.6rem 0;
            text-decoration: none;
        }
        .mobile-menu a:hover { color: var(--accent); }

        .menu-close {
            position: absolute;
            top: 20px; right: 22px;
            font-size: 34px;
            color: #000;
            cursor: pointer;
        }
        .menu-close:hover { color: var(--accent); }

        .menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.35);
            opacity: 0; visibility: hidden;
            z-index: 1000;
        }
        .menu-overlay.active { opacity: 1; visibility: visible; }

        .hero {
            padding: 100px 6vw 16px;
            text-align: center;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.75), rgba(248,246,242,0.95));
            z-index: -1;
        }
        .hero-content { max-width: 720px; margin: 0 auto; }
        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 5.5vw, 2.2rem);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.8px;
            background: linear-gradient(90deg, #1c1917 30%, var(--accent-dark) 70%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.6rem;
        }
        .hero-subtitle {
            font-size: clamp(0.95rem, 2.4vw, 1.05rem);
            color: var(--text-muted);
            max-width: 580px;
            margin: 0 auto 1rem;
            line-height: 1.45;
        }

        .main-content {
            padding: 0 6vw 32px;
            max-width: 1380px;
            margin: 0 auto;
        }

        .section { margin-bottom: 56px; }
        .section-title-wrapper { text-align: center; margin-bottom: 1.8rem; }
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.3rem, 4.4vw, 1.76rem);
            font-weight: 700;
            background: linear-gradient(90deg, #1c1917, var(--accent-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px; left: 50%;
            transform: translateX(-50%);
            width: 70px; height: 2px;
            background: linear-gradient(to right, transparent, var(--gold), transparent);
        }

        .occasion-grid,
        #templateGrid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
            gap: 18px;
        }

        .template-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px -15px rgba(28,25,23,0.12);
            border: 1px solid rgba(245,243,238,0.9);
            position: relative;
            transition: all 0.25s ease;
        }

        .template-card.coming-soon {
            opacity: 0.92;
            cursor: default;
            filter: brightness(0.97) saturate(0.94);
        }

        .template-card.coming-soon:hover {
            filter: brightness(1) saturate(1);
        }

        .preview-wrapper {
            aspect-ratio: 9/16;
            overflow: hidden;
        }
        .preview-wrapper img {
            width: 100%; height: 100%;
            object-fit: cover;
        }

        .action-btn,
        .select-button {
            position: absolute;
            bottom: 14px;
            z-index: 10;
            cursor: pointer;
            transition: all 0.15s ease;
        }

        .action-btn {
            left: 14px;
            width: 34px; height: 34px;
            background: rgba(255,255,255,0.92);
            color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: bold;
            box-shadow: 0 3px 10px rgba(0,0,0,0.18);
            border: none;
        }
        .action-btn:hover {
            background: var(--accent);
            color: white;
            box-shadow: 0 5px 14px rgba(192,38,211,0.25);
        }

        .select-button {
            right: 14px;
            padding: 0.5rem 1rem;
            background: rgba(255,255,255,0.92);
            color: var(--accent);
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 999px;
            border: 1px solid rgba(192,38,211,0.25);
            box-shadow: 0 3px 12px rgba(0,0,0,0.18);
        }
        .select-button:hover {
            background: var(--accent);
            color: white;
            border-color: var(--accent);
            box-shadow: 0 5px 14px rgba(192,38,211,0.25);
        }

        .coming-soon-badge {
            position: absolute;
            top: 8px;
            right: 8px;
            z-index: 12;
            padding: 0.26rem 0.68rem;
            font-family: 'Playfair Display', serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.4px;
            color: white;
            background: linear-gradient(135deg, var(--accent), #a818a8);
            border-radius: 999px;
            box-shadow: 0 2px 8px rgba(192,38,211,0.3);
            border: 1px solid rgba(255,255,255,0.3);
            pointer-events: none;
            line-height: 1;
            white-space: nowrap;
            transition: all 0.2s ease;
        }

        .coming-soon-badge:hover {
            box-shadow: 0 4px 12px rgba(192,38,211,0.4);
            transform: translateY(-1px);
        }

        .occasion-card {
            padding: 1.04rem 0.72rem;
            font-size: 1.07rem;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 52px;
            transition: all 0.2s ease;
            border-radius: 10px;
        }

        .occasion-card.active,
        .occasion-card:hover {
            color: var(--accent);
            background: rgba(192,38,211,0.06);
        }

        .loader {
            grid-column: 1 / -1;
            text-align: center;
            padding: 40px 0;
            color: var(--text-muted);
            font-size: 1.1rem;
        }
        .loader.hidden { display: none; }

        footer {
            background: var(--surface);
            border-top: 1px solid var(--border);
            padding: 28px 6vw 24px;
            text-align: center;
            margin-top: 10px;
        }
        .footer-love {
            font-size: clamp(0.95rem, 2.2vw, 1.05rem);
            color: var(--text-muted);
            margin-bottom: 8px;
        }
        .footer-year {
            font-size: 0.82rem;
            color: var(--text-muted);
            opacity: 0.75;
        }

        .preview-modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 2000;
            background: rgba(0,0,0,0.92);
            align-items: center;
            justify-content: center;
        }
        .preview-modal.active { display: flex; }

        .modal-content {
            max-width: 92%;
            max-height: 90vh;
            margin: 20px;
            text-align: center;
        }
        .modal-content img,
        .modal-content video {
            max-width: 100%;
            max-height: 85vh;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.7);
            object-fit: contain;
            background: #000;
        }

        .modal-close {
            position: fixed;
            top: 24px; right: 24px;
            width: 56px; height: 56px;
            background: var(--accent);
            color: white;
            font-size: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2100;
            
        }
        
        /* This moves only the × character slightly upward inside the circle */
.modal-close::before {
    content: "×";
    margin-top: -6px;     /* ← adjust this number: -3px, -5px, -8px, etc. */
    display: block;
}
        
        .modal-close:hover { background: var(--accent-dark); }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hamburger { display: flex; }
            .navbar { padding: 0.65rem 5vw; height: 60px; }
            .hero { padding: 84px 5vw 8px; }
            .occasion-grid,
            #templateGrid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
                gap: 14px;
            }
            .occasion-card {
                padding: 0.72rem 0.59rem;
                font-size: 0.96rem;
                min-height: 47px;
            }
            .coming-soon-badge {
                font-size: 0.65rem;
                padding: 0.22rem 0.6rem;
            }
        }
   