/* === COLOR SCHEME: white + #B13E5C (dark pink) === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  font-weight: 300;
  color: #1e1e1e;
  line-height: 1.5;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* wave divider (pink tint) */
.wave-divider {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%23B13E5C" fill-opacity="0.15" d="M0,32L60,37.3C120,43,240,53,360,50.7C480,48,600,32,720,32C840,32,960,48,1080,53.3C1200,59,1320,53,1380,50.7L1440,48L1440,0L1380,0C1320,0,1200,0,1080,0C960,0,840,0,720,0C600,0,480,0,360,0C240,0,120,0,60,0L0,0Z"></path></svg>') repeat-x bottom;
  height: 30px;
  background-size: cover;
  margin-top: -2px;
  opacity: 0.7;
}

/* ========== HEADER – TRANSPARENT, TALLER, MOBILE HIDE NAV ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 2px solid rgba(177, 62, 92, 0.5);
  backdrop-filter: blur(0px);
}

/* Add slight blur on scroll for better readability */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-creative {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  backdrop-filter: none !important;
  border: none !important;
  padding: 0;
  margin: 0;
  border-radius: 0;
}

.logo-img {
  height: 130px;
  width: auto;
  display: block;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  transition: transform 0.3s ease;
}

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

.header-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.header-nav a {
  color: #1e1e1e;
  text-decoration: none;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  border: 1px solid #B13E5C;
  transition: 0.2s;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.header-nav a:hover {
  background: #B13E5C;
  color: white;
  border-color: white;
  box-shadow: 0 8px 18px -6px #B13E5C;
}

/* ----- BANNER CAROUSEL ----- */
.banner-carousel {
  height: 100vh;
  min-height: 700px;
  margin-top: 0;
}
.carousel-item {
  height: 100vh;
  min-height: 700px;
  background-size: cover;
  background-position: center;
}
.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  filter: brightness(0.8);
}
.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(177,62,92,0.3), rgba(255,255,255,0.15));
  z-index: 1;
}
.carousel-caption-custom {
  position: absolute;
  z-index: 3;
  bottom: 20%;
  left: 10%;
  right: 10%;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 8px #B13E5C;
}
.carousel-caption-custom h1 {
  font-size: 5rem;
  font-weight: 600;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
  display: inline-block;
  padding: 0.5rem 3rem;
  border-radius: 80px;
  border: 3px solid white;
  color: white;
}
.carousel-caption-custom p {
  font-size: 1.7rem;
  background: rgba(177,62,92,0.7);
  display: inline-block;
  padding: 0.5rem 2.5rem;
  border-radius: 60px;
  margin-top: 1rem;
  font-weight: 300;
  border: 2px solid white;
}
.carousel-indicators [data-bs-target] {
  background-color: #B13E5C;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  opacity: 1;
}
.carousel-indicators .active {
  background-color: white;
  border: 2px solid #B13E5C;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
  background-color: #B13E5C;
  border-radius: 50%;
  padding: 1.5rem;
  background-size: 50%;
}

/* ----- SECTIONS general ----- */
.section-inner {
  padding: 5rem 1rem;
  background: white;
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  font-size: 3.3rem;
  color: #B13E5C;
  display: inline-block;
  border-bottom: 5px double #B13E5C;
  padding-bottom: 0.6rem;
  margin-bottom: 1.5rem;
}
.section-title i {
  color: #B13E5C;
  margin: 0 10px;
}

/* ----- PRODUCTS (cards white + pink) with clickable image ----- */
.products-grid { background: white; }
.product-card-creative {
  background: white;
  border-radius: 60px 20px 60px 20px;
  padding: 2rem 1rem 2rem;
  box-shadow: 0 15px 30px -10px rgba(177,62,92,0.2);
  transition: all 0.25s ease;
  border: 2px solid #f0d0dc;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.product-card-creative:hover {
  transform: translateY(-12px);
  border-color: #B13E5C;
  box-shadow: 0 30px 35px -12px #B13E5C;
}

.product-img-link {
  cursor: pointer;
  display: inline-block;
}
.product-img-creative {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fad9e0;
  margin-bottom: 1.2rem;
  transition: 0.3s;
  pointer-events: none;
}
.product-card-creative:hover .product-img-creative {
  border-color: #B13E5C;
  transform: scale(1.03);
}
.product-card-creative h5 {
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  color: #B13E5C;
  margin-bottom: 0.5rem;
}
.product-desc { 
  color: #5a5a5a; 
  font-size: 1rem; 
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding: 0 0.5rem;
}

/* View detail button */
.btn-view-detail {
  background: transparent;
  border: 2px solid #B13E5C;
  color: #B13E5C;
  border-radius: 50px;
  padding: 0.7rem 2rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  transition: 0.2s;
  font-size: 0.95rem;
  cursor: pointer;
  margin-top: auto;
  width: fit-content;
}
.btn-view-detail:hover {
  background: #B13E5C;
  color: white;
  box-shadow: 0 0 0 3px rgba(177,62,92,0.3);
  transform: scale(1.05);
}

/* ----- MINERAL GRID ----- */
.mineral-creative {
  background: #fff2f5;
  border-radius: 90px 0 90px 0;
}
.flavour-chip {
  background: white;
  border-radius: 100px;
  padding: 0.7rem 1.5rem;
  border: 2px dashed #B13E5C;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1e1e1e;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px #f3cdd9;
  width: 100%;
  justify-content: center;
}
.flavour-chip i {
  color: #B13E5C;
  font-size: 1.8rem;
}
.flavour-chip:hover {
  background: #B13E5C;
  color: white;
  border: 2px solid white;
  transform: scale(1.02);
}
.flavour-chip:hover i { color: white; }

/* ========== ABOUT US with HOVER EFFECTS ========== */
.about-section {
  background: white;
  border-top: 8px double #B13E5C;
  border-bottom: 8px double #B13E5C;
}
.signature-block {
  background: #faeef2;
  border-left: 12px solid #B13E5C;
  padding: 2rem;
  border-radius: 30px 0 30px 0;
  transition: all 0.3s ease;
}
.signature-block:hover {
  background: #f5d8e0;
  border-left-width: 20px;
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -10px rgba(177,62,92,0.3);
}
.benefit-block {
  background: #fef6f8;
  border-radius: 70px 0 70px 0;
  padding: 2rem;
  border-left: 12px solid #B13E5C;
  transition: all 0.3s ease;
  height: 100%;
}
.benefit-block i {
  font-size: 2.5rem;
  color: #B13E5C;
  transition: transform 0.3s ease;
}
.benefit-block:hover {
  background: #fadbe4;
  transform: translateY(-5px) scale(1.02);
  border-left-width: 20px;
  box-shadow: 0 15px 25px -8px rgba(177,62,92,0.4);
}
.benefit-block:hover i {
  transform: scale(1.2);
}

/* ========== CONTACT FORM with HOVER EFFECTS ========== */
.contact-section {
  background: #f9f9f9;
}
.contact-creative {
  background: white;
  border-radius: 130px 0 130px 0;
  padding: 4rem 2rem;
  border: 3px solid #B13E5C;
  box-shadow: 0 25px 40px -20px #B13E5C;
  transition: all 0.3s ease;
}
.contact-creative:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 50px -20px #B13E5C;
  border-color: #8f2c48;
}
.form-control-creative {
  border: none;
  border-bottom: 3px solid #B13E5C;
  background: #fcfcfc;
  border-radius: 0;
  padding: 1rem 0.5rem;
  font-size: 1.2rem;
  color: #1e1e1e;
  transition: all 0.3s ease;
}
.form-control-creative:focus {
  outline: none;
  border-bottom-color: #8f2c48;
  background: #ffffff;
  transform: scale(1.02);
  box-shadow: 0 10px 20px -12px #B13E5C;
}
.form-control-creative:hover {
  background: #faeef2;
  border-bottom-color: #8f2c48;
}
.btn-big-round {
  background: #B13E5C;
  border: none;
  border-radius: 60px;
  padding: 1rem 3rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.3s ease;
}
.btn-big-round:hover {
  background: #8f2c48;
  transform: scale(1.05);
  box-shadow: 0 15px 25px -8px #B13E5C;
}
.contact-info {
  margin-top: 3rem;
}
.contact-info span {
  background: #faeef2;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  border: 2px solid #B13E5C;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}
.contact-info span:hover {
  background: #B13E5C;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 10px 20px -8px #B13E5C;
}
.contact-info span:hover i {
  color: white;
}
.contact-info i {
  color: #B13E5C;
  transition: color 0.3s ease;
}

.footer-creative {
  background: #1e1e1e;
  color: #f5f5f5;
  padding: 2.5rem 0;
  border-top: 12px solid #B13E5C;
}

/* ========== FULLSCREEN POPUP WITH VERTICAL LAYOUT ========== */
.product-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  padding: 1rem;
}
.product-popup.show {
  display: flex;
  opacity: 1;
}
.popup-content {
  background: white;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  border-radius: 60px 20px 60px 20px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 30px 50px rgba(177,62,92,0.5);
  border: 5px solid #B13E5C;
  animation: popupPulse 0.4s;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #B13E5C #fad9e0;
}

.popup-content::-webkit-scrollbar {
  width: 8px;
}
.popup-content::-webkit-scrollbar-track {
  background: #fad9e0;
  border-radius: 10px;
}
.popup-content::-webkit-scrollbar-thumb {
  background: #B13E5C;
  border-radius: 10px;
}
.popup-content::-webkit-scrollbar-thumb:hover {
  background: #8f2c48;
}

@keyframes popupPulse {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.popup-close {
  position: sticky;
  top: 0;
  float: right;
  font-size: 3rem;
  color: #B13E5C;
  cursor: pointer;
  transition: 0.2s;
  line-height: 1;
  background: transparent;
  border: none;
  z-index: 20;
  margin-bottom: -40px;
}
.popup-close:hover {
  color: #8f2c48;
  transform: scale(1.2) rotate(90deg);
}

/* Vertical layout container */
.popup-vertical {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 30px;
  clear: both;
}

.popup-image {
  width: 100%;
}

/* ===== INCREASED POPUP CAROUSEL SIZE WITH TALLER HEIGHT ===== */
.popup-carousel {
  max-width: 1000px !important;
  width: 100%;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 30px -5px rgba(177,62,92,0.3);
  position: relative;
  aspect-ratio: 16/12;
  border: 3px solid #fad9e0;
}

.popup-carousel .carousel-inner {
  border-radius: 30px;
  height: 100%;
}

.popup-carousel .carousel-item {
  height: 100%;
}

.popup-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  transition: transform 0.5s ease;
}

.popup-carousel .carousel-item:hover img {
  transform: scale(1.05);
}

/* Enhanced carousel controls */
.popup-carousel .carousel-control-prev,
.popup-carousel .carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  opacity: 0;
  z-index: 15;
  height: 100%;
  transition: opacity 0.3s ease;
}

.popup-carousel:hover .carousel-control-prev,
.popup-carousel:hover .carousel-control-next {
  opacity: 1;
}

.popup-carousel .carousel-control-prev {
  left: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.3) 0%, transparent 100%);
}

.popup-carousel .carousel-control-next {
  right: 0;
  background: linear-gradient(270deg, rgba(0,0,0,0.3) 0%, transparent 100%);
}

.popup-carousel .carousel-control-prev-icon,
.popup-carousel .carousel-control-next-icon {
  background-color: #B13E5C;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  background-size: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.popup-carousel .carousel-control-prev-icon:hover,
.popup-carousel .carousel-control-next-icon:hover {
  background-color: #8f2c48;
  transform: scale(1.1);
}

/* Enhanced carousel indicators */
.popup-carousel .carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 15;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 20%;
}

.popup-carousel .carousel-indicators button {
  background-color: #B13E5C;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0;
  border: 2px solid white;
  opacity: 0.8;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.popup-carousel .carousel-indicators button:hover {
  transform: scale(1.2);
  opacity: 1;
}

.popup-carousel .carousel-indicators button.active {
  background-color: white;
  border-color: #B13E5C;
  transform: scale(1.3);
  opacity: 1;
}

/* Product details section */
.popup-details {
  width: 100%;
  color: #000000;
  padding: 0 1rem;
}

.popup-details h2 {
  color: #B13E5C;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: -0.02em;
}

.popup-details .popup-desc {
  font-size: 1.3rem;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 400;
  text-align: center;
  font-style: italic;
  border-bottom: 2px dashed #B13E5C;
  padding-bottom: 1.5rem;
}

.popup-details .popup-longdesc {
  font-size: 1.15rem;
  color: #000000;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  border-radius: 30px 10px 30px 10px;
  border-left: 5px solid #B13E5C;
  border-right: 1px solid #fad9e0;
  border-top: 1px solid #fad9e0;
  border-bottom: 1px solid #fad9e0;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(177,62,92,0.1);
}

.popup-details .popup-longdesc:hover {
  background: #f5e6ec;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -10px #B13E5C;
  border-left-width: 8px;
}

/* Mobile hover effect for product cards */
@media (max-width: 768px) {
    .product-card-creative.visible-mobile {
        transform: translateY(-12px);
        border-color: #B13E5C;
        box-shadow: 0 30px 35px -12px #B13E5C;
    }
    
    .product-card-creative.visible-mobile .product-img-creative {
        border-color: #B13E5C;
        transform: scale(1.03);
    }
}

/* ========== IMPROVED MOBILE POPUP IMAGE SIZING WITH MORE HEIGHT ========== */
@media (max-width: 768px) {
  .popup-content {
    max-width: 98%;
    padding: 1rem;
    max-height: 98vh;
  }
  
  .popup-carousel {
    max-width: 100% !important;
    aspect-ratio: auto;
    height: auto;
    min-height: 400px;
    max-height: 65vh;
  }
  
  .popup-carousel .carousel-item {
    height: auto;
    min-height: 350px;
    max-height: 65vh;
  }
  
  .popup-carousel .carousel-item img {
    width: 100%;
    height: auto;
    max-height: 65vh;
    object-fit: contain;
    object-position: center;
  }
  
  .popup-vertical {
    gap: 1rem;
  }
  
  .popup-details {
    padding: 0;
    max-height: 30vh;
    overflow-y: auto;
  }
  
  .popup-details h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .popup-details .popup-desc {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
  }
  
  .popup-details .popup-longdesc {
    font-size: 0.9rem;
    padding: 1rem;
    max-height: 20vh;
    overflow-y: auto;
  }
}

@media (max-width: 576px) {
  .popup-content {
    padding: 0.8rem;
    border-radius: 40px 15px 40px 15px;
  }
  
  .popup-carousel {
    min-height: 320px;
    max-height: 60vh;
  }
  
  .popup-carousel .carousel-item {
    min-height: 280px;
    max-height: 60vh;
  }
  
  .popup-carousel .carousel-item img {
    max-height: 60vh;
  }
  
  .popup-details {
    max-height: 35vh;
  }
  
  .popup-details h2 {
    font-size: 1.5rem;
  }
  
  .popup-details .popup-longdesc {
    max-height: 20vh;
    font-size: 0.85rem;
    padding: 0.8rem;
  }
  
  .popup-close {
    font-size: 2rem;
    margin-bottom: -20px;
  }
}

/* For very small phones */
@media (max-width: 380px) {
  .popup-carousel {
    min-height: 260px;
    max-height: 55vh;
  }
  
  .popup-carousel .carousel-item {
    min-height: 220px;
    max-height: 55vh;
  }
  
  .popup-details h2 {
    font-size: 1.3rem;
  }
  
  .popup-carousel .carousel-item img {
    max-height: 55vh;
  }
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1200px) {
    .popup-content {
        max-width: 1000px;
    }
    
    .popup-carousel {
        max-width: 900px !important;
        aspect-ratio: 16/12;
    }
}

@media (max-width: 992px) {
    .popup-content {
        max-width: 900px;
    }
    
    .popup-carousel {
        max-width: 800px !important;
        aspect-ratio: 16/11;
    }
    
    .popup-details h2 {
        font-size: 2.5rem;
    }
     .products-grid .row {
    justify-content: center;
  }
  
  .products-grid .col-lg-5 {
    flex: 0 0 auto;
    width: 45%;
    max-width: 500px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .products-grid .col-md-6 {
    flex: 0 0 auto;
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-container { justify-content: center !important; }
  .logo-img { height: 100px; }
  
  .carousel-caption-custom h1 { 
    font-size: 2.5rem; 
    padding: 0.3rem 1.5rem;
  }
  
  .carousel-caption-custom p { 
    font-size: 1.2rem; 
    padding: 0.4rem 1.5rem;
  }
  
  .section-title h2 { 
    font-size: 2.5rem; 
  }
  
  .contact-creative { 
    padding: 2rem 1rem; 
  }
  
  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .contact-info span {
    width: 100%;
    text-align: center;
  }
  
  .product-card-creative {
    padding: 1.5rem 0.5rem 2rem;
  }
  
  .product-img-creative {
    width: 140px;
    height: 140px;
  }
  
  .product-card-creative h5 {
    font-size: 1.5rem;
  }
  
  .product-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .btn-view-detail {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .flavour-chip {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
  
  .flavour-chip i {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .section-inner {
    padding: 3rem 0.5rem;
  }
  
  .carousel-caption-custom h1 { 
    font-size: 2rem; 
    padding: 0.3rem 1rem;
  }
  
  .carousel-caption-custom p { 
    font-size: 1rem; 
    padding: 0.3rem 1rem;
  }
  
  .section-title h2 { 
    font-size: 2rem; 
  }
  
  .section-title .lead {
    font-size: 1rem;
  }
  
  .logo-img { 
    height: 80px; 
  }
  
  .btn-view-detail {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .btn-big-round {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  .form-control-creative {
    font-size: 1rem;
    padding: 0.8rem 0.5rem;
  }
  
  .contact-creative {
    padding: 1.5rem 1rem;
    border-radius: 80px 0 80px 0;
  }
  
  .mineral-creative {
    border-radius: 50px 0 50px 0;
  }
  
  .product-card-creative {
    border-radius: 40px 10px 40px 10px;
  }
  
  .product-img-creative {
    width: 120px;
    height: 120px;
    border-width: 4px;
  }
  
  .footer-creative .logo-img {
    height: 60px;
  }
}

@media (max-width: 380px) {
  .popup-details h2 { 
    font-size: 1.6rem; 
  }
  
  .product-img-creative {
    width: 100px;
    height: 100px;
  }
  
  .product-card-creative h5 {
    font-size: 1.3rem;
  }
  
  .btn-view-detail {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }
  
  .flavour-chip {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
  
  .flavour-chip i {
    font-size: 1.2rem;
  }
}