@import url(https://db.onlinewebfonts.com/c/f4d849075c9b4c0047fc56a828879854?family=Recoleta+Bold);

@font-face {
    font-family: 'Recoleta';
    src: url('fonts/Recoleta-RegularDEMO.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Glacial Indifference';
    src: url('fonts/GlacialIndifference-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Glacial Indifference';
    src: url('fonts/GlacialIndifference-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
  }
    @font-face {
        font-family: "Recoleta Bold";
        src: url("https://db.onlinewebfonts.com/t/f4d849075c9b4c0047fc56a828879854.eot");
        src: url("https://db.onlinewebfonts.com/t/f4d849075c9b4c0047fc56a828879854.eot?#iefix")format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/f4d849075c9b4c0047fc56a828879854.woff2")format("woff2"),
        url("https://db.onlinewebfonts.com/t/f4d849075c9b4c0047fc56a828879854.woff")format("woff"),
        url("https://db.onlinewebfonts.com/t/f4d849075c9b4c0047fc56a828879854.ttf")format("truetype"),
        url("https://db.onlinewebfonts.com/t/f4d849075c9b4c0047fc56a828879854.svg#Recoleta Bold")format("svg");
    }  
  

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFF8F2;
    overflow-x: hidden; /* Fixes white border issue */
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

/* Fix White Space Issue Globally */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Header */
header {
    background-color: #FFF9F2;
    padding: 15px 0;
    text-align: center;
    width: 100%;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.logo img {
    height: auto;           /* Let height scale naturally */
    width: 120px;           /* Or 100%, or a max-width (see below) */
    max-width: 80vw;        /* Prevents logo from overflowing on small screens */
    display: block;
    margin: 0 auto;
    padding-top: 0;         /* Remove extra top padding */
    object-fit: contain;    /* Prevents distortion */
}


@media (max-width: 500px) {
    .logo img {
        height: 60px; /* Slightly smaller for small screens */
        width: 100px;

    }
  }

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list .nav-link {
    text-decoration: none;
    color: #6f2a4b;
    font-size: 1.2rem;
}

.nav-list .nav-link:hover {
    color: #d9534f;
}

/* Hero Section with Slider */
.hero-banner.flush {
    display: flex;
    width: 100vw;
    margin: 0;
    padding: 0;
    border: none;
    overflow: hidden;
}

.hero-banner.flush .banner-img {
    width: 50vw;
    height: 70vh;
    display: block;
    object-fit: cover;
}


.slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 100%;
    flex: 0 0 100%; /* Ensures each slide takes up full viewport width */
}


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




.hero-overlay .btn {
    display: inline-block;
    padding: 14px 32px;
    background: #000; /* Black button */
    color: #fff;
    border-radius: 50px; /* Fully rounded */
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-overlay .btn:hover {
    background: #333; /* Slightly lighter black on hover */
}
/* WHAT ARE YOU LOOKING FOR? */
/* Section Title */
.looking-for h2 {
    text-align: center;
    font-family: 'Recoleta Bold'; /* Use Recoleta font */
    font-size: 3.5rem;
    margin: 40px 0;
    color: #FF5AA9; /* Adjusted to match */
    font-weight: 700;
}

/* Grid Layout for Category Items */
.looking-for-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* ✅ Now 4 items per row */
    gap: 24px;
    padding: 0 10px;
    margin-bottom: 30px;
}
@media (max-width: 1024px) {
    .looking-for-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Mobile: 2 items */
@media (max-width: 768px) {
    .looking-for-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 420px) {
    .looking-for-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* Grid Item */
.looking-for-item {
    background-color: transparent;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    max-width: 250px;
    transition: transform 0.3s ease;
    text-align: center;
}

/* Hover effect */
.looking-for-item:hover {
    transform: scale(1.03);
}

/* Image Styling */
.looking-for-item img {
    width: 100%;
    height: auto;
    border-radius: 20px; /* Fully rounded */
    display: block;
}

/* Text Section */
.looking-for-text {
    background-color: #FF5AA9; /* Pink bar */
    color: white;
    padding: 10px 0;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Glacial Indifference', sans-serif; /* Use Glacial Indifference font */
    text-align: center;
    border-radius: 0 0 20px 20px;
    margin-top: -10px; /* Optional: closes gap */
}

.looking-for-text h3 {
    color: white;
    margin: 0;
    font-weight: 700;
}
/* Ensuring uniform spacing */
.looking-for-item {
    display: flex;
    flex-direction: column;
}

.looking-for-item img {
    flex-grow: 1;
}

.looking-for-item .image-wrapper {
    width: 100%;
    position: relative;
    padding-top: 100%; /* This maintains a 1:1 aspect ratio */
    overflow: hidden;
}

.looking-for-text {
    flex-shrink: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .looking-for-grid {
        grid-template-columns: repeat(2, 1fr); /* Show 2 per row */
    }
}

@media (max-width: 480px) {
    .looking-for-grid {
        grid-template-columns: repeat(1, 1fr); /* Show 1 per row */
    }
}

/* === FOREIGNER'S FAVORITE COOKIES SECTION === */
.foreigner-favorite {
  background-color: #fff8f2;
  padding: 70px 20px 60px;
  text-align: center;
}

.section-title {
  font-family: 'Recoleta Bold', serif;
  font-size: 3.3rem;
  color: #6B2E16;
  margin: 0 0 12px;
  font-weight: bold;
}

.section-subtitle {
  font-family: 'Glacial Indifference';
  font-size: 2.2rem;
  color: #703C2E;
  font-weight: normal;
  letter-spacing: 1px;
  margin-bottom: 38px;
}

.section-subtitle .highlight {
 color: #703C2E;
font-family: 'Glacial Indifference';
    font-weight: bold;
}

.flag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 50px;
  max-width: 1000px;
}

.flag-row img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
    background-color: white; /* Optional: helps make white flags like JP/SK visible */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* ← shadow effect */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flag-row img:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}


/* Circle Cookie Feature Grid */
.feature-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature {
  position: relative;
  text-align: center;
  width: 220px;
  height: auto;
}

.feature img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  background-color: #FFE4EC;
  padding: 10px;
}

.feature-caption {
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.4;
  font-family: 'Glacial Indifference', sans-serif;
  font-weight: 700;
  color: #FF5AA9;
}




/* Cake by Occasions */ 
.trending-occasions {
  background-color: #FFE9F2; /* Same soft pink */
  padding: 60px 20px;
  text-align: center;
}

.trending-occasions h2 {
  font-family: 'Recoleta Bold', serif;
  font-size: 3rem;
  color: #FF5AA9;
  margin-bottom: 40px;
}

.trending-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.trending-item {
  width: 180px;
  background-color: transparent;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
}

.trending-item img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

.trending-text {
  background-color: #FF5AA9;
  color: white;
  font-family: 'Glacial Indifference', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 0 0 16px 16px;
}
/* Animation Keyframes */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation to each tile */
.trending-item {
  animation: fadeSlideUp 0.6s ease forwards;
  opacity: 0; /* Start hidden */
}

/* Optional: Add delay for a staggered effect */
.trending-item:nth-child(1) { animation-delay: 0.1s; }
.trending-item:nth-child(2) { animation-delay: 0.2s; }
.trending-item:nth-child(3) { animation-delay: 0.3s; }
.trending-item:nth-child(4) { animation-delay: 0.4s; }
.trending-item:nth-child(5) { animation-delay: 0.5s; }


@media (max-width: 768px) {
  .trending-grid {
    gap: 16px;
  }

  .trending-item {
    width: 140px;
  }

  .trending-occasions h2 {
    font-size: 2rem;
  }
}


/* Large Screens (Above 1400px) */
@media (min-width: 1400px) {
    .hero {
        height: 550px;
    }
}

/* Tablets (Between 768px and 1024px) */
@media (max-width: 1024px) {
    .hero {
        height: 450px;
    }

    .hero-overlay {
        top: 75%;
    }
}

/* Mobile Screens (Below 768px) */
@media (max-width: 768px) {
    .hero {
        height: 380px; /* Adjusted smaller for mobile */
    }

    .hero-overlay {
        top: 80%;
    }
}
@media (max-width: 768px){
  .customer-reviews-grid {
    grid-template-columns: repeat(1, 1fr); /* Single column on mobile */
    gap: 14px; /* Adjust the gap between items */
}

.customer-review-bubble {
    font-size: 1rem; /* Adjust font size */
    padding: 16px 20px; /* Adjust padding for mobile */
    max-width: 95vw; /* Ensure review fits mobile screen */
    margin-bottom: 12px; /* Space between reviews */
}
.best-sellers-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on mobile */
    gap: 20px; /* Reduce the gap between items */
}
}
/* Very Small Phones (Below 480px) */
@media (max-width: 480px) {
    .hero {
        height: 350px; /* Further reduced */
    }

    .hero-overlay {
        top: 85%;
    }
}


@media (max-width: 768px) {
    .best-sellers h2 {
        font-size: 1.5rem; /* Make it smaller to match design proportions */
        text-align: center;
    }
}

@media (max-width: 768px) {
    .why-choose {
        text-align: center;
        padding: 20px;
    }

    .why-choose h2 {
        font-size: 1.2rem; /* Adjust font size */
    }

    .why-choose-description {
        font-size: 0.9rem; /* Reduce description text */
        padding: 0 10px;
        max-width: 100%;
    }

    .why-choose-features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .feature-text {
        font-size: 0.85rem; /* Reduce text below icons */
    }
    .feature-item {
        max-width: 100px; /* Adjust for better alignment */
    }
}


@media (max-width: 768px) {
    .trending-occasions {
        padding-left: 20px;
        padding-right: 20px;
    }

    .trending-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 per row */
        gap: 15px;
        max-width: 100%;
        margin: 0 auto;
    }

    .trending-item {
        width: 100%;
    }
}
.section-wrapper {
    width: 100%;
    background-color: #FFE9E3;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.looking-for, .why-choose, .trending-occasions, .best-sellers, .customer-love {
    margin: auto 0; /* Equal top and bottom margin */
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Ensure centering of content vertically */
    align-items: center; /* Center content horizontally */
}


h2, .section-title {  /* Apply to all h2 or specific titles */
    margin: 0;  /* Remove top margin */
    padding: 0;  /* Remove unnecessary padding */
    text-align: center; /* Center align text */
    flex-grow: 1; /* Ensure content grows to center in the section */
    display: flex;
    justify-content: center;
    align-items: center;  /* Center text vertically within section */
}

.looking-for h2, .why-choose h2, .trending-occasions h2, .best-sellers h2, .customer-love h2 {
    margin-top: 0; /* Remove any extra margin at the top */
    margin-bottom: 40px; /* Ensure there's space between title and content */
}

/* Responsive Customer Love Layout */
@media (max-width: 768px) {
    .customer-grid {
        grid-template-columns: repeat(1, 1fr);
        padding-left: 15px;
        padding-right: 15px;
    }
}
/* Inner Content Wrapper */
.inner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Best Sellers */
/* ===== BEST SELLERS SECTION: 10 PRODUCTS ===== */

/* === Refined Best Sellers Section to Match Example #2 === */

.best-sellers {
    background-color: #FFE9F2; /* Softer pink to match second image */
    padding: 60px 20px;
    width: 100%;
    text-align: center;
}

.best-sellers h2 {
    font-family: 'Recoleta Bold', serif;
    font-size: 3.5rem;
    color: #FF5AA9;
    margin-bottom: 50px;
}

.best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === BEST SELLERS PRODUCT CARD: SQUARE WITH TEXT BELOW === */

/* === Final Best Seller Card Style (Attached Label Block) === */
.product {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Image takes top 1:1 square */
.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Label bar attached at bottom */
.product-label {
    background-color: #FF5AA9;
    color: white;
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 0.95rem;
    font-weight: bold;
    padding: 12px 0;
    border-top: 1px solid #FF5AA9; /* cleaner connection */
}



.product:hover img {
    transform: scale(1.05);
}

/* === Responsive Adjustments === */
@media (max-width: 1200px) {
    .best-sellers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .best-sellers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .best-sellers h2 {
        font-size: 2.2rem;
    }
    .best-sellers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .best-sellers-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .product-label {
        font-size: 0.85rem;
        padding: 5px 14px;
    }
}

/* === XL COOKIES SECTION === */
.xl-cookies {
    background-color: #FFF8F2; /* Soft background */
    padding: 60px 20px;
    text-align: center;
}

.xl-cookies h2 {
    font-family: 'Recoleta Bold', serif;
    font-size: 3.2rem;
    color: #FF5AA9;
    margin-bottom: 50px;
}

/* Grid setup for 10 items */
.xl-cookies-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Product card format */
.xl-cookies .product {
    background-color: transparent;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.xl-cookies .product:hover {
    transform: translateY(-6px);
}

/* 1:1 image area */
.xl-cookies .product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.xl-cookies .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(0.9); /* ⬅️ Zoom out by 5% */
    transform-origin: center;
}
.see-all-btn {
  display: block;
  margin: 30px auto;
  padding: 5px 20px; /* Adjust padding to make it smaller */
  width: auto; /* Ensure the width is auto so it doesn't stretch */
  max-width: 200px; /* Limit the width to make the button compact */
  background-color: #FF5AA9; /* Matching color */
  color: white;
  font-size: 1.2rem; /* Matching font size */
  font-family: 'Glacial Indifference', 'Poppins', Arial, sans-serif;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}

.see-all-btn:hover {
  background-color: #FF449F; /* Slightly darker shade on hover */
}



/* Label attached under the image */
.xl-cookies .product-label {
    background-color: #FF5AA9;
    color: white;
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 0.95rem;
    font-weight: bold;
    padding: 12px 0;
    border-top: 1px solid #FF5AA9;
}
.customer-reviews-section {
  background: #f8a9c2;
  padding: 48px 0 60px 0;
  font-family: 'Glacial Indifference', 'Poppins', Arial, sans-serif;
}

.customer-reviews-title {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 38px;
  letter-spacing: 1px;
  font-family: 'Recoleta Bold', serif;
}

.customer-reviews-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.customer-review-bubble {
  background: #FFF5E7;
  border-radius: 32px;
  padding: 24px 28px;
  font-size: 1.1rem;
  color: #6a4b36;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  max-width: 420px;
  min-width: 220px;
  margin: 0;
  line-height: 1.6;
  position: relative;  /* Ensure independent positioning */
  font-family: 'Glacial Indifference', 'Poppins', Arial, sans-serif;
  transition: all 0.4s ease; /* Smooth transition for all properties */
  flex: 0 1 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Text Clamping Effect */


/* Small Review Bubble */
.customer-review-bubble.small {
  padding: 18px 22px;
  font-size: 1rem;
  flex: 0 1 280px;
  min-height: 100px;
}

/* HOVER STATE: Only the individual hovered bubble expands */
.customer-review-bubble:hover {
  -webkit-line-clamp: unset;
  overflow: visible;
  background: #fffbe9;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px); /* More subtle translation */
  z-index: 10; /* Ensure it floats above other bubbles */
  flex: 0 1 auto;
  min-height: auto;
}

/* Hover Effect for Small Bubbles */
.customer-review-bubble.small:hover {
  background: #fffbe9;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px); /* Subtle translation */
  z-index: 10; /* Ensure hover bubble floats above others */
}

/* Flag Image Styling */
.flag-img {
  width: 30px; /* Adjusted flag size */
  height: 30px;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 700px) {
  .customer-reviews-grid {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .customer-review-bubble, .customer-review-bubble.small {
    max-width: 95vw;
  }

  .customer-reviews-title {
    font-size: 2.1rem;
  }

  .customer-review-bubble,
  .customer-review-bubble.small {
    padding: 16px 20px;
    font-size: 1rem;
    border-radius: 24px;
    flex: 1 1 auto;
    max-width: 95vw;
  }
}

@media (max-width: 1100px) {
  .customer-reviews-grid {
    gap: 20px 14px;
    max-width: 98vw;
  }
  .customer-review-bubble {
    flex: 0 1 300px;
  }
  .customer-review-bubble.small {
    flex: 0 1 260px;
  }
}

/* Footer Section CSS */
.footer {
  background: #fff8f0;
  padding: 32px 0;
  border-top: 1px solid #f3e8e1;
  font-family: 'Poppins', 'Arial', sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  min-width: 160px;
}

.chamin-logo {
  height: 130px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex: 2 1 400px;
  gap: 60px;
  justify-content: flex-end;
}

.footer-column {
  min-width: 140px;
}

.footer-column h4 {
  color: #ff4fa3;
  font-weight: bold;
  margin-bottom: 12px;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #ff4fa3;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: #d13c8a;
}

@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-links {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
}
/* Popup Banner */

/* Popup Banner Overlay (keep your original display logic) */
.popup-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  display: none; /* Show with JS: .popup-banner { display: flex; } */
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 0;
  box-sizing: border-box;
}

/* Popup Content */
.popup-content {
  background-color: #f9e3ed;
  padding: 40px 32px 32px 32px;
  border-radius: 28px;
  width: 410px;
  max-width: 96vw;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  position: relative;
  font-family: 'Glacial Indifference', 'Poppins', Arial, sans-serif;
}

/* Close button styling */
/* Close button styling */
.popup-close {
  position: absolute;
  top: -50px;
  right: 0px;
  background-color: transparent;
  border: none;
  font-size: 2rem;
  color: #222;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}

.popup-close:hover,
.popup-close:focus {
  color: #FF5AA9; /* Change color on hover */
}


.popup-close:hover,
.popup-close:focus {
  color: #FF5AA9; /* Change on hover */
}

/* Logo styling */
.logo-container {
  text-align: center;
  margin-bottom: 10px;
}
.logo {
  width: 60px;
  height: auto;
  margin-bottom: 8px;
}

/* Headings and discount text */
.popup-header h2 {
  color: #222;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 10px 0;
  line-height: 1.3;
  letter-spacing: 0;
}

.discount-text {
  font-size: 2.3rem;
  color: #111;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.1;
  text-transform: none;
}

/* QR code section */
.qr-code-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  margin: 22px 0 16px 0;
}
.qr-code img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
  background: #fff;
  border: 2px solid #eee;
}

/* Instructions section */
.instructions {
  color: #222;
  font-size: 1.08rem;
  margin: 18px 0 0 0;
  text-align: center;
  line-height: 1.5;
  font-weight: 400;
  font-family: inherit;
}

/* Show the instructions list */
ul {
  list-style-type: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: block;
}
ul li {
  color: #222;
  font-size: 1.08rem;
  margin: 0 0 4px 0;
  font-weight: 400;
  text-align: center;
}

/* Button styling */
button {
  background-color: #f9e3ed;
  display: block;
  color: #111;
  font-size: 1.1rem;
  padding: 12px 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 18px;
  text-align: center;
  width: 100%;
  transition: background 0.2s;
  font-weight: 500;
  letter-spacing: 0.01em;
}
button:hover {
  background-color: #ff5aa9; /* Change to a pink shade on hover */
  color: white; /* Change text color to white on hover */
}
/* Order Now Button Styling */
/* Order Now Button Styling */
.order-now-container {
    position: fixed;
    bottom: 50px;
    right: 40px;
    z-index: 9999;
    animation: slideIn 0.5s ease-out;
}

.order-now-button {
    background-color: #FF69B4;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.order-now-button:hover {
    background-color: #FF1493;
}

/* Animation for the button */
@keyframes slideIn {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Popup Modal */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    justify-content: center;
    align-items: center;
    font-family: 'Glacial Indifference', sans-serif;  /* Set font to Glacial Indifference */
}

.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 80%;
    font-family: 'Glacial Indifference', sans-serif;  /* Ensure content uses the desired font */
}

.close-btn {
    font-size: 30px;
    color: #FF69B4;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

h2, p {
    margin-bottom: 15px;  /* Add margin between text elements */
}

.qr-code {
    margin: 20px 0;  /* Add space around the QR code */
}

.qr-code img {
    width: 100px;  /* Set size of the QR code image */
    height: 100px;
    margin-bottom: 20px;  /* Add margin below the image */
}

.line-link {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.line-link:hover {
    background-color: #128C7E;
}


/* Responsive Design */
@media (max-width: 600px) {
  .popup-content {
    width: 99vw;
    padding: 18px 2vw 18px 2vw;
  }
  .qr-code img {
    width: 80px;
    height: 80px;
  }
  .popup-close {
    top: 10px;
    right: 10px;
  }
  .discount-text {
    font-size: 1.5rem;
  }
}

/* End of Pop up Banner Styles */


/* === Responsive Layouts === */
@media (max-width: 1200px) {
    .xl-cookies-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .xl-cookies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .xl


/* Background Colors for Different Cards */
.customer-card.pink { background-color: #FF66B2; }
.customer-card.beige { background-color: #FBE8D3; color: #000; }
.customer-card.green { background-color: #28A745; color: #FFF; }
.customer-card.light-green { background-color: #90EE90; color: #000; }
.customer-card.brown { background-color: #6B4226; color: #FFF; }
.customer-card.light-pink { background-color: #FFB6C1; color: #000; }

@media (max-width: 1024px) {
    .customer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .customer-grid {
        grid-template-columns: 1fr;
    }
}



/* Color Variations */
.pink { background-color: #FF66B2; }
.beige { background-color: #FBE8D3; color: #000; }
.green { background-color: #28A745; }
.light-green { background-color: #90EE90; color: #000; }
.brown { background-color: #6B4226; }
.light-pink { background-color: #FFB6C1; color: #000; }

/* customer review */
.customer-reviews-section {
  background: #F8A9C2;
  padding: 50px 0 60px 0;
  font-family: 'Glacial Indifference', 'Poppins', Arial, sans-serif;
}

.customer-reviews-title {
  text-align: center;
  font-family: 'Recoleta Bold', serif;
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 36px;
  letter-spacing: 1px;
}

.customer-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* Default 3 columns */
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.customer-review-bubble {
  background: #FFF5E7;
  border-radius: 32px;
  padding: 24px 28px;
  font-size: 1.1rem;
  color: #6a4b36;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  max-width: 420px;
  min-width: 220px;
  margin: 0;
  line-height: 1.6;
  position: relative;
  font-family: 'Glacial Indifference', 'Poppins', Arial, sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  opacity: 1;  /* Ensure it is always visible */
  transform: translateY(0); /* Reset to ensure it's visible */
}
.customer-review-bubble.small {
  padding: 14px 18px;
  font-size: 1rem;
  max-width: 260px;
}

@media (max-width: 900px) {
  .customer-reviews-grid {
    grid-template-columns: repeat(2, 1fr);  /* 2 columns on tablets */
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .customer-reviews-grid {
    grid-template-columns: 1fr;  /* 1 column on smaller screens */
    gap: 14px;
  }

  .customer-reviews-title {
    font-size: 2.1rem;  /* Smaller title on mobile */
  }

  .customer-review-bubble {
    font-size: 1rem;  /* Smaller font for mobile screens */
    padding: 16px 20px;
    max-width: 95vw;  /* Ensure review fits within mobile screen */
    flex: 1 1 auto; /* Allow bubble to adjust size based on content */
    margin-bottom: 12px;  /* Ensure space between review cards */
  }
}
/* Keyframes for the fade-in and slide-up animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply fade-in animation */
.customer-review-bubble {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;  /* Start hidden */
  transform: translateY(30px); /* Start below */
}

/* Stagger delay for each customer review */
.customer-review-bubble:nth-child(1) {
  animation-delay: 0.3s;
}
.customer-review-bubble:nth-child(2) {
  animation-delay: 0.4s;
}
.customer-review-bubble:nth-child(3) {
  animation-delay: 0.5s;
}
/* Add stagger delay for additional bubbles */
.customer-review-bubble:nth-child(4) {
  animation-delay: 0.6s;
}


/* Footer */
/* Footer */
.footer {
    background-color: #6f2a4b;
    padding: 2rem;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 100%;
}

/* Prevent Overflow Issues */
* {
    box-sizing: border-box;
    max-width: 100%;
}

}
/* Apply the animation to Shop by Category section */



/* Ensure items are initially hidden */
.product, .looking-for-item {
    opacity: 0;  /* Start hidden */
    transform: translateY(30px); /* Start below */
    transition: opacity 0.6s ease-out, transform 0.5s ease-out;
}

/* === Shop by Category Section === */
.looking-for {
    animation: fadeInCategory 1.2s ease-out forwards;
    opacity: 0;  /* Start off hidden */
    transform: translateY(30px); /* Start below */
}

/* Apply animation for category items */


/* Show the items one by one with delay */
.looking-for-item.show {
    opacity: 1;
    transform: translateX(0); /* Move into place */
}

/* Stagger the animations for each category item */
.looking-for-item:nth-child(1) {
    animation-delay: 0.3s;
}
.looking-for-item:nth-child(2) {
    animation-delay: 0.4s;
}
.looking-for-item:nth-child(3) {
    animation-delay: 0.5s;
}
.looking-for-item:nth-child(4) {
    animation-delay: 0.6s;
}
/* NEW: Best Sellers Section Animation */
.best-sellers {
    animation: fadeInCategory 1.2s ease-out forwards;
    opacity: 0;  /* Initially hidden */
    transform: translateY(30px); /* Initially below */
}

/* Apply animation for product items */
.product {
    opacity: 0;  /* Initially hidden */
    transform: translateY(30px); /* Initially below */
    transition: opacity 0.6s ease-out, transform 0.5s ease-out; /* Smooth transition */
}

/* Show items one by one with delay */
.product.show {
    opacity: 1;
    transform: translateY(0); /* Move into place */
}

/* Stagger the animations for products */
.product:nth-child(1) {
    animation-delay: 0.3s;
}
.product:nth-child(2) {
    animation-delay: 0.4s;
}
.product:nth-child(3) {
    animation-delay: 0.5s;
}
.product:nth-child(4) {
    animation-delay: 0.6s;
}


/* === Animation for Product Items === */
@keyframes slideInLeftCategory {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply the animation to the Shop by Category items */




/* Smooth fade-in effect with gradient for category section */
@keyframes fadeInCategory {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  50% {
    opacity: 0.5;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply the animation to Shop by Category section */
.looking-for {
  animation: fadeInCategory 1.2s ease-out forwards;
  opacity: 0;  /* Start off hidden */
  transform: translateY(30px); /* Start below */
}

/* Apply the fade-in and slide-up animation for Internet's Favorite Cookies */
.internet-favorite-item {
  opacity: 0; /* Start off hidden */
  transform: translateY(30px); /* Start below */
  transition: opacity 0.6s ease-out, transform 0.5s ease-out; /* Smooth transition */
}

/* Stagger the animations for each item in the section */
.internet-favorite-item:nth-child(1) {
  animation-delay: 0.3s;
}

.internet-favorite-item:nth-child(2) {
  animation-delay: 0.4s;
}

.internet-favorite-item:nth-child(3) {
  animation-delay: 0.5s;
}

.internet-favorite-item:nth-child(4) {
  animation-delay: 0.6s;
}

/* Apply the fadeInUp animation */
.internet-favorite-item.show {
  animation: fadeInUp 1s ease-out forwards;
}

/* Keyframes for the fade-in and slide-up animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply fadeInUp to the section itself */
.foreigner-favorite {
  animation: fadeInUp 1.2s ease-out forwards;
  opacity: 0;  /* Start off hidden */
  transform: translateY(30px); /* Start below */
}
/* Customer Review Section */
.customer-reviews-section {
  background: #F8A9C2;
  padding: 50px 0 60px 0;
  font-family: 'Glacial Indifference', 'Poppins', Arial, sans-serif;
}

.customer-reviews-title {
  text-align: center;
  font-family: 'Recoleta Bold', serif;
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 36px;
  letter-spacing: 1px;
}

.customer-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 3 columns */
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.customer-review-bubble {
  background: #FFF5E7;
  border-radius: 32px;
  padding: 24px 28px;
  font-size: 1.1rem;
  color: #6a4b36;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  max-width: 420px;
  min-width: 220px;
  margin: 0;
  line-height: 1.6;
  position: relative;
  font-family: 'Glacial Indifference', 'Poppins', Arial, sans-serif;
  opacity: 0;  /* Start with hidden state */
  transform: translateY(30px); /* Start slightly below */
  transition: opacity 0.6s ease-out, transform 0.5s ease-out;
}

/* Animation Triggered when item is visible */
.customer-review-bubble.show {
  opacity: 1;
  transform: translateY(0); /* Move into place */
}

/* Add a staggered delay effect for each bubble */
.customer-review-bubble:nth-child(1) {
  animation-delay: 0.3s;
}
.customer-review-bubble:nth-child(2) {
  animation-delay: 0.4s;
}
.customer-review-bubble:nth-child(3) {
  animation-delay: 0.5s;
}
.customer-review-bubble:nth-child(4) {
  animation-delay: 0.6s;
}
.customer-review-bubble:nth-child(5) {
  animation-delay: 0.7s;
}
.customer-review-bubble:nth-child(6) {
  animation-delay: 0.8s;
}
.customer-review-bubble:nth-child(7) {
  animation-delay: 0.9s;
}
.customer-review-bubble:nth-child(8) {
  animation-delay: 1s;
}
.customer-review-bubble:nth-child(9) {
  animation-delay: 1.1s;
}
.customer-review-bubble:nth-child(10) {
  animation-delay: 1.2s;
}

/* Animation for each review bubble */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* For mobile screens */
@media (max-width: 600px) {
    .popup {
        width: 90%; /* Adjust width for smaller screens */
        height: auto; /* Allow height to adjust */
        padding: 20px; /* Ensure proper padding */
    }
    
    .popup img {
        max-width: 100%; /* Make images responsive */
    }
}

/* Add a media query to force animation on mobile for Best-Sellers */
@media (max-width: 768px) {
    /* Ensure Best-Sellers section is animated even on mobile */
    .best-sellers .product {
        opacity: 1; /* Ensure it's visible */
        transform: translateY(0); /* Move it into place */
        transition: opacity 0.6s ease-out, transform 0.5s ease-out;
    }

    /* Add staggered animation effect for Best-Sellers on mobile */
    .best-sellers .product.show {
        opacity: 1;
        transform: translateY(0); /* Move into place */
    }

    .best-sellers .product:nth-child(1) {
        animation-delay: 0.3s;
    }
    .best-sellers .product:nth-child(2) {
        animation-delay: 0.4s;
    }
    .best-sellers .product:nth-child(3) {
        animation-delay: 0.5s;
    }
    .best-sellers .product:nth-child(4) {
        animation-delay: 0.6s;
    }
    .best-sellers .product:nth-child(5) {
        animation-delay: 0.7s;
    }
}
/* Apply only on mobile screens (below 768px) */
@media (max-width: 768px) {
  .customer-reviews-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 16px;
    justify-items: center; /* Center items in the grid */
  }

  .customer-review-bubble {
    padding: 16px 20px;
    font-size: 1rem;
    max-width: 95vw; /* Ensure reviews fit within screen */
    flex: 1 1 auto;
    margin-bottom: 12px;
  }

  .customer-reviews-title {
    font-size: 2.1rem; /* Adjust font size */
  }
}

