        /* ═══════════════════════════════════════════════════════════ */
        /* RESET & BASE */
        /* ═══════════════════════════════════════════════════════════ */

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

        :root {
            /* Modern Pastel Palette */
            --bg-cream: #FBF6F2;
            --primary-rose: #C75A7A;
            --primary-rose-hover: #b34a68;
            --secondary-beige: #F5EEE6;
            --accent-peach: #FFD4B8;
            --text-dark: #3D3D3D;
            --text-medium: #6B6B6B;
            --text-light: #8B8B8B;
            --white: #FFFFFF;

            /* Soft Shadows */
            --shadow-sm: 0 2px 12px rgba(199, 90, 122, 0.08);
            --shadow-md: 0 4px 24px rgba(199, 90, 122, 0.12);
            --shadow-lg: 0 8px 40px rgba(199, 90, 122, 0.16);
            --shadow-float: 0 12px 48px rgba(199, 90, 122, 0.18);

            /* Typography */
            --font-display: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;

            /* Spacing */
            --section-padding: 100px 0;
            --container-max: 1200px;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

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

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Typography */
        h1, h2, h3 {
            font-family: var(--font-display);
            font-weight: 600;
            line-height: 1.2;
            color: var(--text-dark);
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.2rem;
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1rem;
        }

        h3 {
            font-size: clamp(1.4rem, 3vw, 1.8rem);
            margin-bottom: 0.8rem;
        }

        p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--text-medium);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 32px;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--primary-rose);
            color: var(--white);
            box-shadow: var(--shadow-sm);
        }

        .btn-primary:hover {
            background: var(--primary-rose-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .whatsapp-btn.btn-primary:hover,
        .telegram-btn.btn-primary:hover,
        .facebook-btn.btn-primary:hover,
        .instagram-btn.btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary-rose);
            border: 2px solid transparent;
            box-shadow: var(--shadow-sm);
        }

        .btn-secondary:hover {
            border-color: var(--primary-rose);
            transform: translateY(-2px);
        }

        /* Badge/Pill */
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: var(--white);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--primary-rose);
            box-shadow: var(--shadow-sm);
        }

        /* ═══════════════════════════════════════════════════════════ */
        /* HEADER */
        /* ═══════════════════════════════════════════════════════════ */

        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(251, 246, 242, 0.95);
            backdrop-filter: blur(12px);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(251, 246, 242, 0.98);
            box-shadow: var(--shadow-sm);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--primary-rose);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .nav-center {
            display: flex;
            gap: 40px;
            list-style: none;
            align-items: center;
        }

        .nav-center a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .nav-center a:hover {
            color: var(--primary-rose);
        }

        /* Language Pills */
        .lang-switcher {
            display: flex;
            gap: 6px;
            background: var(--white);
            padding: 4px;
            border-radius: 50px;
            box-shadow: var(--shadow-sm);
        }

        .lang-btn {
            padding: 6px 14px;
            background: transparent;
            border: none;
            color: var(--text-medium);
            border-radius: 50px;
            cursor: pointer;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .lang-btn.active {
            background: var(--primary-rose);
            color: var(--white);
        }

        .lang-btn:hover:not(.active) {
            color: var(--primary-rose);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 26px;
            height: 2.5px;
            background: var(--primary-rose);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* ═══════════════════════════════════════════════════════════ */
        /* HERO SECTION */
        /* ═══════════════════════════════════════════════════════════ */

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 0 100px;
            position: relative;
            background:
                linear-gradient(rgba(251, 246, 242, 0.85), rgba(251, 246, 242, 0.85)),
                url('image.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: inherit;
            filter: brightness(0.95);
            z-index: -1;
            pointer-events: none;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                repeating-radial-gradient(circle at 0 0, rgba(199, 90, 122, 0.06) 0 1px, transparent 1px 20px),
                repeating-radial-gradient(circle at 10px 10px, rgba(245, 238, 230, 0.5) 0 1px, transparent 1px 22px);
            opacity: 0.05;
            pointer-events: none;
            z-index: 0;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-ornament {
            position: absolute;
            opacity: 0.08;
            pointer-events: none;
            z-index: 0;
        }

        .hero-ornament.top-left {
            top: 80px;
            left: 20px;
            width: 180px;
            height: 180px;
        }

        .hero-ornament.top-right {
            top: 100px;
            right: 30px;
            width: 160px;
            height: 160px;
        }

        .hero-ornament.bottom-left {
            bottom: 60px;
            left: 40px;
            width: 140px;
            height: 140px;
        }

        .hero-ornament.bottom-right {
            bottom: 80px;
            right: 20px;
            width: 200px;
            height: 200px;
        }

        .hero-ornament.near-image {
            top: 50%;
            right: 15%;
            transform: translateY(-50%);
            width: 120px;
            height: 120px;
        }

        .hero-content {
            animation: fadeInUp 0.8s ease;
        }

        .hero-badge {
            margin-bottom: 24px;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4.2rem);
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero h1 .highlight {
            color: var(--primary-rose);
        }

        .hero .subtitle {
            font-size: 1.25rem;
            color: var(--text-medium);
            margin-bottom: 12px;
            font-weight: 400;
        }

        .hero .order-info {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 32px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 48px;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary-rose);
            line-height: 1;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-medium);
        }

        /* Hero Image Card */
        .hero-image-wrapper {
            position: relative;
            animation: fadeInRight 0.8s ease;
        }

        .hero-image-bg {
            position: absolute;
            top: -20px;
            left: -20px;
            right: 20px;
            bottom: 20px;
            background: linear-gradient(135deg, rgba(255, 212, 184, 0.3) 0%, rgba(199, 90, 122, 0.2) 100%);
            border-radius: 32px;
            transform: rotate(-2deg);
        }

        .hero-image-card {
            position: relative;
            background: var(--white);
            border-radius: 32px;
            overflow: hidden;
            box-shadow: var(--shadow-float);
            transform: rotate(1deg);
            transition: transform 0.4s ease;
            z-index: 1;
        }

        .hero-image-card:hover {
            transform: rotate(0deg) translateY(-8px);
        }

        .hero-image-card img {
            width: 100%;
            height: auto;
            display: block;
        }

        .hero-image-badge {
            position: absolute;
            bottom: 24px;
            left: 24px;
            background: var(--white);
            padding: 12px 20px;
            border-radius: 50px;
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hero-image-badge-icon {
            font-size: 1.2rem;
        }

        .hero-image-badge-text {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .hero-image-badge-subtext {
            font-size: 0.75rem;
            color: var(--text-light);
        }


        /* ═══════════════════════════════════════════════════════════ */
        /* SECTIONS */
        /* ═══════════════════════════════════════════════════════════ */

        section {
            padding: var(--section-padding);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            color: var(--primary-rose);
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        /* About Section */
        .about {
            background: var(--white);
        }

        .about-content {
            max-width: 860px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content p {
            margin-bottom: 1.2rem;
        }

        .about-lead {
            color: var(--text-dark);
            font-weight: 500;
        }

        .about-features {
            list-style: none;
            max-width: 680px;
            margin: 1.6rem auto 0;
            padding: 0;
            text-align: left;
            display: grid;
            gap: 10px;
        }

        .about-features li {
            background: var(--secondary-beige);
            border-radius: 14px;
            padding: 12px 16px 12px 40px;
            color: var(--text-dark);
            font-size: 0.98rem;
            position: relative;
        }

        .about-features li::before {
            content: "✓";
            color: var(--primary-rose);
            font-weight: 700;
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
        }

        /* Cakes Section */
        .cakes {
            background: var(--bg-cream);
        }

        .cakes-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 28px;
            max-width: 820px;
            margin: 0 auto;
        }

        /* How to Order Section */
        .how-order {
            background: var(--bg-cream);
        }

        .how-order-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .how-order-card {
            background: var(--white);
            border-radius: 24px;
            padding: 32px 28px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .how-order-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
        }

        .how-order-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--secondary-beige);
            color: var(--primary-rose);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            position: relative;
            box-shadow: var(--shadow-sm);
        }

        .how-order-step {
            position: absolute;
            top: -10px;
            right: -10px;
            padding: 4px 8px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: rgba(199, 90, 122, 0.75);
            background: var(--white);
            border-radius: 999px;
            box-shadow: var(--shadow-sm);
        }

        .how-order-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .how-order-card p {
            font-size: 0.95rem;
            color: var(--text-medium);
        }

        .cake-card {
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .cake-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-float);
        }

        .cake-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .cake-card:hover .cake-image {
            transform: scale(1.08);
        }

        .cake-info {
            padding: 24px;
        }

        .cake-info h3 {
            font-size: 1.35rem;
            margin-bottom: 8px;
        }

        .cake-price-line {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--primary-rose);
            margin-bottom: 6px;
        }

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


        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(61, 61, 61, 0.7);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding: 20px;
            overflow-y: auto;
        }

        .modal.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background: var(--white);
            border-radius: 28px;
            max-width: 700px;
            width: 100%;
            max-height: 92vh;
            overflow: hidden;
            position: relative;
            animation: slideUp 0.4s ease;
            box-shadow: var(--shadow-float);
            display: flex;
            flex-direction: column;
        }

        .modal-close {
            position: absolute;
            top: calc(20px + env(safe-area-inset-top));
            right: 20px;
            width: 40px;
            height: 40px;
            background: var(--white);
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            color: var(--text-dark);
        }

        .modal-close:hover {
            background: var(--primary-rose);
            color: var(--white);
            transform: rotate(90deg);
        }

        .modal-image {
            width: 100%;
            height: 360px;
            object-fit: cover;
            border-radius: 28px 28px 0 0;
            flex: 0 0 auto;
        }

        .modal-body {
            padding: 36px;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            flex: 1 1 auto;
        }

        .modal-header h2 {
            margin-bottom: 8px;
        }

        .modal-description {
            margin: 18px 0 28px;
            line-height: 1.7;
        }

        /* Options Section */
        .options-section {
            background: var(--secondary-beige);
            padding: 24px;
            border-radius: 20px;
            margin: 28px 0;
        }

        .option-group {
            margin-bottom: 24px;
        }

        .option-group:last-child {
            margin-bottom: 0;
        }

        .option-label {
            font-weight: 600;
            margin-bottom: 12px;
            display: block;
            color: var(--text-dark);
            font-size: 1.05rem;
        }

        .option-chips {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .option-chip {
            padding: 12px 20px;
            background: var(--white);
            border: 2px solid transparent;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: var(--shadow-sm);
        }

        .option-chip:hover {
            border-color: var(--primary-rose);
            transform: translateY(-2px);
        }

        .option-chip.selected {
            background: var(--primary-rose);
            color: var(--white);
            border-color: var(--primary-rose);
        }

        .option-chip input[type="radio"],
        .option-chip input[type="checkbox"] {
            margin: 0;
            cursor: pointer;
        }

        .modal-examples {
            margin: 14px 0 18px;
            text-align: center;
            font-size: 0.95rem;
            color: var(--text-medium);
        }

        .modal-examples a {
            color: var(--primary-rose);
            font-weight: 600;
            text-decoration: none;
        }

        .modal-examples a:hover {
            color: var(--primary-rose-hover);
            text-decoration: underline;
        }


        /* How to Order Box */
        .how-to-order {
            background: #FFF9F5;
            border-left: 4px solid var(--primary-rose);
            padding: 16px 20px;
            border-radius: 12px;
            margin: 24px 0;
        }

        .how-to-order h4 {
            font-size: 1rem;
            margin-bottom: 8px;
            color: var(--primary-rose);
        }

        .how-to-order p {
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        /* Modal Actions */
        .modal-actions {
            display: flex;
            gap: 12px;
            margin-top: 28px;
            flex-wrap: wrap;
            flex-direction: column;
        }

        .contact-btn {
            flex: 1;
            min-width: 180px;
            padding: 16px 24px;
            font-size: 1rem;
            width: 100%;
        }

        .btn-whatsapp,
        .whatsapp-btn {
            background: #25D366;
            color: var(--white);
        }

        .btn-whatsapp:hover,
        .whatsapp-btn:hover {
            background: #20b858;
        }

        .btn-telegram,
        .telegram-btn {
            background: #0088CC;
            color: var(--white);
            border: none;
        }

        .btn-telegram:hover,
        .telegram-btn:hover {
            background: #007AB8;
        }

        .btn-instagram,
        .instagram-btn {
            background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
            color: var(--white);
        }

        .btn-instagram:hover,
        .instagram-btn:hover {
            filter: brightness(0.9);
        }

        .btn-facebook,
        .facebook-btn {
            background: #1877F2;
            color: var(--white);
        }

        .btn-facebook:hover,
        .facebook-btn:hover {
            background: #166AD6;
        }

        .instagram-btn.btn-primary:hover,
        .btn-instagram.btn-primary:hover {
            background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
        }

        /* Contact Section */
        .contact-section {
            background: var(--white);
            padding: 80px 0;
        }

        .contact-card {
            background: var(--bg-cream);
            border-radius: 28px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 0;
            max-width: 950px;
            margin: 0 auto;
        }

        .contact-photo {
            background: linear-gradient(135deg, var(--primary-rose) 0%, #b34a68 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }

        .contact-photo img {
            width: 100%;
            max-width: 320px;
            height: auto;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
        }

        .contact-info {
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-info h2 {
            margin-bottom: 28px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 18px;
        }

        .contact-icon {
            width: 44px;
            height: 44px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            color: var(--primary-rose);
            flex-shrink: 0;
            box-shadow: var(--shadow-sm);
        }

        .contact-text {
            flex: 1;
        }

        .contact-label {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-bottom: 2px;
        }

        .contact-value {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 1rem;
        }

        .contact-value a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-value a:hover {
            color: var(--primary-rose);
        }

        .contact-buttons {
            display: flex;
            gap: 12px;
            margin: 28px 0 20px;
            flex-wrap: wrap;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .social-link {
            width: 44px;
            height: 44px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-rose);
            text-decoration: none;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }

        .social-link:hover {
            background: var(--primary-rose);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* Footer */
        .footer {
            background: var(--text-dark);
            color: var(--white);
            padding: 28px 0;
            text-align: center;
        }

        .footer p {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                transform: translateY(40px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .nav-center {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(251, 246, 242, 0.98);
                backdrop-filter: blur(12px);
                flex-direction: column;
                padding: 30px;
                gap: 20px;
                display: none;
                box-shadow: var(--shadow-md);
            }

            .nav-center.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .hero-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .hero-image-wrapper {
                order: -1;
            }

            .hero-content {
                text-align: center;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-ornament.near-image {
                display: none;
            }

            .hero-ornament.top-left,
            .hero-ornament.top-right,
            .hero-ornament.bottom-left,
            .hero-ornament.bottom-right {
                opacity: 0.06;
                width: 140px;
                height: 140px;
            }

            .contact-card {
                grid-template-columns: 1fr;
            }

            .contact-photo {
                padding: 40px 40px 20px;
            }

            .contact-info {
                padding: 30px 40px 40px;
            }

            .cakes-grid {
                max-width: 720px;
            }

            .how-order-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .hero-ornament.near-image,
            .hero-ornament.top-right {
                display: none;
            }
        }

        @media (max-width: 640px) {
            :root {
                --section-padding: 70px 0;
            }

            .hero {
                padding: 120px 0 80px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .modal-body {
                padding: 20px 18px 24px;
                max-height: calc(92vh - 200px);
            }

            .modal-image {
                height: clamp(180px, 30vh, 220px);
                object-fit: cover;
            }

            .modal-description {
                margin: 12px 0 18px;
            }

            .options-section {
                margin: 18px 0;
                padding: 20px;
            }

            .option-group {
                margin-bottom: 16px;
            }

            .modal-actions {
                flex-direction: column;
            }

            .contact-btn {
                width: 100%;
            }

            .cakes-grid {
                grid-template-columns: 1fr;
                max-width: 420px;
            }

            .how-order-grid {
                grid-template-columns: 1fr;
            }

            .how-order-card {
                padding: 28px 24px;
            }

            .how-order-icon {
                width: 58px;
                height: 58px;
            }

            .contact-info {
                padding: 28px 25px;
            }

            .hero-ornament {
                display: none;
            }

            .hero-ornament.top-left,
            .hero-ornament.bottom-left {
                display: block;
                opacity: 0.05;
                width: 100px;
                height: 100px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding-top: calc(12px + 80px);
                padding-bottom: 12px;
            }

            .hero-image-wrapper {
                height: 45dvh;
                max-height: 320px;
            }

            .hero-image-card {
                height: 100%;
                border-radius: 22px;
            }

            .hero-image-bg {
                border-radius: 22px;
            }

            .hero-image-card img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    
