@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

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

        :root {
            --gold: #e6c200;
            --gold-light: #f8e98c;
            --gold-dark: #d4b000;
            --warm-gray: #f8f8f8;
            --warm-beige: #f9f5f0;
            --charcoal: #2a2a2a;
            --charcoal-light: #444444;
            --white: #ffffff;
            --cream: #fefaf3;
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.12);
            --radius: 12px;
        }

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

   .back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: block;
    background-color: var(--gold-dark);
    color: var(--warm-gray);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px; 
    cursor:pointer;
    font-size: 20px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s;
    z-index: 999;
    -webkit-animation: up 5s infinite; 
}

@keyframes up {
    0% {
        transform: translate(0);
    }
    50% {
        transform: translateY(-20px); 
    }
    100% {
        transform: translateY(0);
    }
}

.back-to-top:hover {
    background-color: #222; 
}

.btn {
    display: inline-block;
    background-color: var(--gold);
    color: var(--charcoal);
    padding: 14px 32px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(230, 194, 0, 0.3);
}

.btn:hover {
    background-color: #d4b000;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(230, 194, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--charcoal);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: var(--gold);
}

section {
    padding: 80px 0;
}

        .screen-intro {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--cream);
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            margin: 0;
            padding: 0;
        }
    
        .screen-intro  .logo-intro  {
            font-size: 110px;
            color: var(--gold-dark);
            display: flex;
            align-items: center;
            font-weight: 700;
            font-family: 'Dancing Script', cursive;
        }

        .screen-intro .next-logo {
            font-size: 110px;
            color: var(--gold-dark);
            display: none;
            align-items: center;
            font-weight: 700;
            font-family: 'Dancing Script', cursive;
        }

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    padding: 5px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: var(--transition);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--gold-light);
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--charcoal);
    text-decoration: none;
    display: flex;
    align-items: center;
    z-index: 0;
}

.logo i {
    margin-right: 10px;
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: var(--transition);
    padding: 5px 0;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon, .user-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.2rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--gold);
    color: var(--charcoal);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 1001;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px;
   padding-top: 12rem;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg.jpg') no-repeat center center/cover;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-content {
   text-align: center;
    max-width:900px;
    animation: fadeInLeft 1s ease;
    color: var(--white);
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    margin-top:40px;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero .btn {
    background-color: var(--gold);
    color: var(--charcoal);
    font-weight: 700;
    padding: 15px 25px;
    margin-bottom:50px;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero .btn:hover {
    background-color: #d4b000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}


/* Our Story Section */
.our-story {
    background-color: var(--warm-beige);
    position: relative;
}

.story-container {
    display: flex;
    align-items: center;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.story-content h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--gold);
    bottom: -10px;
    left: 0;
}

        /* Featured Delights Section */
        .featured-delights {
            text-align: center;
            position: relative;
            padding: 40px 0;
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 35px;
            text-align: center;
            position: relative;
            display: inline-block;
            font-weight: 600;
            color: var(--charcoal);
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--gold);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-subtitle {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 50px;
            color: var(--charcoal-light);
            text-align: center;
            line-height: 1.5;
        }

        .delights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            align-items: start;
        }

        .delight-card {
            background-color: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 1px solid rgba(230, 194, 0, 0.1);
        }

        .delight-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .delight-image-container {
            height: 250px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }

        .delight-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

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

        .delight-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .delight-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.4rem;
            margin-bottom: 12px;
            color: var(--charcoal);
            font-weight: 500;
            position: relative;
            display: inline-block;
            align-self: flex-start;
        }

        .delight-card p {
            margin-bottom: 5px;
            flex-grow: 1;
            color: var(--charcoal-light);
            font-size: 0.95rem;
            line-height: 1.6;
            text-align: left;
        }

        .card-footer {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: auto;
        }
        
         .delight-card .price {
             font-size: 20px;
         }
         
          .delight-card .price-rating {
             font-size: 15px;
         }
         
         .delight-card .price-rating span {
             font-size: 15px;
         }

        .price-rating {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 5px;
        }

        .price {
            font-weight: 700;
            color: var(--gold);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .price:before {
            content: '₱';
            font-size: 25px;
        }

        .rating {
            display: flex;
            align-items: center;
            color: var(--gold);
            gap: 3px;
        }

        .rating span {
            color: var(--charcoal-light);
            font-size: 0.85rem;
            margin-left: 5px;
        }

        .action-buttons {
            display: flex;
            gap: 12px;
        }

        .buy-now, .add-to-cart {
            flex: 1;
            padding: 12px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .buy-now {
            background: linear-gradient(135deg, var(--charcoal), var(--charcoal-light));
            color: var(--white);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

        .buy-now:hover {
            background: linear-gradient(135deg, var(--charcoal-light), var(--charcoal));
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }

        .add-to-cart {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--charcoal);
            box-shadow: 0 4px 10px rgba(230, 194, 0, 0.25);
        }

        .add-to-cart:hover {
            background: linear-gradient(135deg, var(--gold-dark), var(--gold));
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(230, 194, 0, 0.35);
        }

        /* Featured Card  */
        .featured-section {
            grid-column: 1 / -1;
            margin-bottom: 30px;
        }

        .featured-card {
            display: flex;
            flex-direction: row;
            height: auto;
            max-width: 100%;
        }

        .featured-card .delight-image-container {
            width: 45%;
            height: 300px;
        }

        .featured-card .delight-content {
            width: 55%;
            padding: 30px;
            justify-content: center;
        }

/* About Section */
.about {
    background-color: var(--warm-beige);
    padding: 80px 0;
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
}

.team-member {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.team-member:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.member-image {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--gold-light);
    cursor: pointer;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.member-image .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

 .member-role {
   color: var(--gold-dark);
   font-weight: 00;
}
.member-image.active .default-image {
    opacity: 0;
}

.member-image.active .hover-image {
    opacity: 1;
}

/* Contact Section */
#contact-details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 70px;
    background-color: var(--white);
}

#contact-details .details {
    width: 40%;
}

#contact-details .details span {
    font-size: 12px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1px;
}

#contact-details .details h2 {
    font-size: 26px;
    line-height: 35px;
    padding: 20px 0;
}

#contact-details .details h3 {
    font-size: 16px;
    padding-bottom: 15px;
    position: relative;
    display: inline-block;
}

#contact-details .details h3:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: var(--gold);
    bottom: 10px;
    left: 0;
}

#contact-details .details li {
    list-style: none;
    display: flex;
    padding: 10px 0;
    align-items: flex-start;
}

#contact-details .details li i {
    font-size: 14px;
    color: var(--gold);
    margin-right: 15px;
    margin-top: 3px;
}

#contact-details .details li p {
    margin: 0;
    font-size: 14px;
}

.contact-btn {
    margin-top: 20px;
}

#contact-details .map {
    width: 55%;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#contact-details .map iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 30px 0 20px;
    text-align: center;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.footer-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: var(--white);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-icons a:hover {
    color: var(--gold);
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-50px);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--charcoal);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold);
    outline: none;
}

.form-footer {
    margin-top: 20px;
    text-align: center;
}

.form-footer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    transition: right 0.4s ease;
    padding: 20px;
    overflow-y: auto;
}

.cart-modal.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--warm-gray);
}

.cart-header h2 {
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--charcoal);
}

.cart-items {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--warm-gray);
}

.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: 5%;
    overflow: hidden;
    margin-right: 15px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-name {
    font-weight: 700;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--gold);
    font-weight: 700;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.quantity-btn {
    background-color: var(--warm-gray);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quantity-value {
    margin: 0 10px;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    margin-left: 10px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--warm-gray);
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--gold);
    color: var(--charcoal);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.checkout-btn:hover {
    background-color: #d4b000;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
        @media (max-width: 1200px) {
            .delights-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .featured-card .delight-image-container {
                height: 280px;
            }
        }
        
@media (max-width: 992px) {
    .story-container, .hero-container {
        flex-direction: column;
    }
    
    .story-image, .hero-image {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-image {
        height: 400px;
    }
                .featured-card {
                flex-direction: column;
            }
            
            .featured-card .delight-image-container {
                width: 100%;
                height: 250px;
            }
            
            .featured-card .delight-content {
                width: 100%;
            }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top:0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        z-index: 1;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
        font-size: 20px;
    }
    
    .hamburger {
        display: block;
    }

    .hamburger.active i:before {
        content: "\f00d";
    }
    
    .hero {
    min-height: 100vh;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
                .delights-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .delight-content {
                padding: 18px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .action-buttons {
                flex-direction: column;
            }
            
            .featured-card .delight-image-container {
                height: 220px;
            }

    #contact-details {
        flex-direction: column;
        padding: 40px 30px;
    }

    #contact-details .details {
        width: 100%;
        margin-bottom: 30px;
    }

    #contact-details .map {
        width: 100%;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .cart-modal {
        width: 320px;
    }

    .action-buttons {
        flex-direction: column;
    }
    
    .screen-intro .logo-intro {
       font-size: 50px;
   }
   
     .screen-intro .next-logo {
       font-size: 50px;
   }
}

@media (max-width: 576px) {
    .logo {
        font-size:2rem;
   }
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
    
    .hero-image {
        height: 300px;
    }

    .hero-container {
        gap: 30px;
    }

    .cart-modal {
        width: 100%;
        right: -100%;
    }

    .nav-icons {
        gap: 15px;
    }
    
                .section-title {
                font-size: 1.8rem;
            }
            
            .featured-delights {
                padding: 30px 0;
            }
}

