  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .top-bar {
            background: #333;
            color: #fff;
            padding: 10px 0;
            font-size: 12px;
        }

        .top-bar .container {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .top-bar a {
            color: #fff;
            text-decoration: none;
            margin: 0 10px;
        }

        header {
            background: #fff;
            padding: 20px 0;
            border-bottom: 1px solid #eee;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            width: 80px;
            height: 80px;
            /* border: 2px solid #333; */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 24px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
            text-transform: uppercase;
            font-weight: 500;
        }

        /* Hero Section */
        .hero {
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .hero-slides {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .hero-slide.active {
            opacity: 1;
            z-index: 10;
        }

        .hero-content {
            position: relative;
            z-index: 5;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .hero h1 span {
            color: #FDB714;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
        }

        .btn {
            background: #FDB714;
            color: #333;
            padding: 15px 40px;
            text-decoration: none;
            display: inline-block;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 3px;
        }

        .hero-nav {
            position: absolute;
            width: 100%;
            top: 50%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 15;
            transform: translateY(-50%);
        }

        .hero-nav button {
            background: transparent;
            border: none;
            color: #fff;
            width: 50px;
            height: 50px;
            cursor: pointer;
            font-size: 24px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .hero-nav button:hover {
            color: #FDB714;
        }

        .hero-nav button i {
            font-size: 24px;
        }

        .hero-dots {
            position: absolute;
            bottom: 30px;
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
        }

        .dot.active {
            background: #FDB714;
        }

        /* Products Grid */
        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .section-title p {
            color: #666;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 200px;
            gap: 30px;
            margin-bottom: 40px;
        }

        /* Bento-style placement for the first 8 items */
        .products-grid > .product-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
        .products-grid > .product-card:nth-child(2) { grid-column: span 2; grid-row: span 1; }
        .products-grid > .product-card:nth-child(3) { grid-column: span 1; grid-row: span 1; }
        .products-grid > .product-card:nth-child(4) { grid-column: span 1; grid-row: span 2; }
        .products-grid > .product-card:nth-child(5) { grid-column: span 1; grid-row: span 1; }
        .products-grid > .product-card:nth-child(6) { grid-column: span 1; grid-row: span 1; }
        .products-grid > .product-card:nth-child(7) { grid-column: span 2; grid-row: span 1; }
        .products-grid > .product-card:nth-child(8) { grid-column: span 1; grid-row: span 1; }

        .product-card {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            background: #f8f8f8;
            border: 0; /* remove inner padding/border so image fills card */
        }

        .product-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Overlay info revealed on hover */
        .product-info {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 18px;
            color: #fff;
            background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 70%);
            transform: translateY(100%);
            opacity: 0;
            transition: transform 0.32s ease, opacity 0.32s ease;
            z-index: 1;
        }

        .product-card:hover .product-info {
            transform: translateY(0);
            opacity: 1;
        }

        .product-card h3 {
            font-size: 16px;
            margin-bottom: 10px;
        }

        .sale-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #FF5722;
            color: #fff;
            padding: 6px 12px;
            font-size: 12px;
            font-weight: bold;
            border-radius: 4px;
            z-index: 2;
        }

        .view-products-btn {
            text-align: center;
        }

        /* Testimonial */
        .testimonial {
            background: #333;
            padding: 60px 0;
        }

        .testimonial-content {
            display: flex;
            align-items: center;
            gap: 50px;
            color: #999;
        }

        .testimonial-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: #ddd;
            flex-shrink: 0;
        }

        .testimonial-text {
            flex: 1;
        }

        .testimonial-text p {
            font-size: 18px;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .testimonial-author {
            font-weight: bold;
            font-size: 16px;
        }

        .testimonial-dots {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        /* Features */
        .features {
            background: #f9f9f9;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .feature-item {
            text-align: center;
        }

        .feature-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, #CBA75A 0%, #9C6F2F 100%);
            box-shadow: 0 8px 20px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.12);
            font-size: 32px;
        }

        .feature-icon i { color: #fff; }

        .feature-item h3 {
            font-size: 16px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .feature-item p {
            font-size: 14px;
            color: #666;
        }

        /* Cake Types */
        .cake-types {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .cake-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 250px;
            gap: 20px;
            max-width: 800px;
            margin: 40px auto;
            width: 100%;
        }

        .cake-image-1 { grid-column: span 2; grid-row: span 2; }
        .cake-image-2 { grid-column: span 2; grid-row: span 1; }
        .cake-image-3 { grid-column: span 1; grid-row: span 1; }
        .cake-image-4 { grid-column: span 1; grid-row: span 1; }

        .cake-image {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            background: #f8f8f8;
        }

        .cake-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .bread-image {
            max-width: 600px;
            margin: 0 auto 40px;
            display: flex;
            justify-content: center;
        }

        .bread-image img {
            width: 50%;
            height: auto;
            border-radius: 50px;
        }

        /* Product Showcase */
        .product-showcase {
            display: flex;
            gap: 50px;
            align-items: center;
            justify-content: center;
            /* flex-direction: column; */
            margin-left: 200px;
        }

        .product-images {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .product-images img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 50px;
        }

        .product-details {
            flex: 1;
            position: relative;
            text-align: center;
        }

        .product-details .sale-badge {
            position: absolute;
            top: -20px;
            right: 0;
        }

        .product-details h2 {
            font-size: 28px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .product-details p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .product-price {
            font-size: 36px;
            font-weight: bold;
            color: #333;
            margin: 20px 0;
        }

        .product-main-image {
            flex: 1;
        }

        .product-main-image img {
            width: 50%;
            border-radius: 50px;
            max-width: 400px;
        }

        /* App Features */
        .app-features {
            background: #333;
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .app-images {
            flex: 1;
        }

        .app-images img {
            width: 100%;
            max-width: 500px;
        }

        .app-features-list {
            flex: 1;
        }

        .app-feature {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            align-items: center;
        }

        .app-feature-icon {
            width: 72px;
            height: 72px;
            background: linear-gradient(180deg, #CBA75A 0%, #9C6F2F 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.12);
            font-size: 28px;
        }

        .app-feature-icon i { color: #fff; }

        .app-feature h3 {
            font-size: 18px;
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .app-feature p {
            font-size: 14px;
            color: #333;
        }

        /* Order Options */
        .order-option {
            background: #fff;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            max-width: 300px;
        }

        .order-option:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.18);
        }

        .order-icon {
            width: 72px;
            height: 72px;
            background: linear-gradient(180deg, #CBA75A 0%, #9C6F2F 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.12);
        }

        .order-icon i {
            color: #fff;
        }

        .order-option h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: #333;
            font-weight: 600;
        }

        .order-option p {
            font-size: 14px;
            color: #666;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .order-option .btn {
            background: linear-gradient(180deg, #CBA75A 0%, #9C6F2F 100%);
            color: #fff;
            padding: 12px 30px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .order-option .btn:hover {
            box-shadow: 0 6px 20px rgba(203, 167, 90, 0.4);
            transform: scale(1.05);
        }

        /* Event Services */
        .event-services {
            background: #f9f9f9;
            color: #333;
        }

        .event-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 250px;
            gap: 20px;
            max-width: 900px;
            margin: 0 auto 50px;
            width: 100%;
        }

        .event-image-1 { grid-column: span 2; grid-row: span 2; }
        .event-image-2 { grid-column: span 2; grid-row: span 1; }
        .event-image-3 { grid-column: span 1; grid-row: span 1; }
        .event-image-4 { grid-column: span 1; grid-row: span 1; }

        .event-image {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            background: #555;
        }

        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .event-services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .event-service-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .event-service-card:hover {
            background: #fff;
            transform: translateY(-8px);
            border-color: #CBA75A;
            box-shadow: 0 8px 24px rgba(203, 167, 90, 0.15);
        }

        .event-service-icon {
            width: 72px;
            height: 72px;
            background: linear-gradient(180deg, #CBA75A 0%, #9C6F2F 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.12);
        }

        .event-service-icon i {
            color: #fff;
        }

        .event-service-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            text-transform: uppercase;
            font-weight: 600;
            color: #333;
        }

        .event-service-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* Team */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .team-member {
            text-align: center;
            border: 1px solid #ddd;
            padding: 20px;
        }

        .team-member img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 15px;
        }

        .team-member h3 {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .team-member p {
            color: #666;
            font-size: 14px;
        }

        /* Blog */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .blog-post {
            border: 1px solid #ddd;
        }

        .blog-post img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .blog-content {
            padding: 20px;
        }

        .blog-content h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .blog-content p {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .read-more {
            color: #FDB714;
            text-decoration: none;
            font-weight: bold;
        }

        /* Contact */
        .contact-section {
            background: #333;
            color: #fff;
        }

        .contact-content {
            display: flex;
            gap: 50px;
        }

        .contact-form {
            flex: 1;
        }

        .contact-form h2 {
            font-size: 24px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 15px;
            border: 1px solid #555;
            background: transparent;
            color: #fff;
        }

        .contact-form button {
            background: #FDB714;
            color: #333;
            padding: 15px 40px;
            border: none;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
        }

        .contact-map {
            flex: 1;
            background: #555;
            min-height: 400px;
            position: relative;
        }

        /* Footer */
        footer {
            background: #222;
            color: #fff;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 16px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .footer-section p,
        .footer-section a {
            color: #999;
            font-size: 14px;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
        }

        .footer-section a:hover {
            color: #FDB714;
        }

        .footer-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .footer-gallery img {
            width: 100%;
            height: 60px;
            object-fit: cover;
        }

        .social-icons {
            display: flex;
            gap: 10px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #333;
            text-decoration: none;
            margin-right: 8px;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .social-icon:hover {
            color: #CBA75A;
        }

        .social-icon i { color: inherit; }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #666;
            font-size: 12px;
        }

        @media (max-width: 768px) {
            .products-grid,
            .features-grid,
            .team-grid,
            .blog-grid,
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }

            /* On small screens, collapse bento layout to single-column cards */
            .products-grid { grid-auto-rows: auto; }
            .products-grid > .product-card { grid-column: span 2 !important; grid-row: span 1 !important; }

            .product-showcase,
            .contact-content,
            .app-features {
                flex-direction: column;
            }

            .order-option {
                max-width: 100%;
            }
        }