
/* ===========================================================
   Winbees ? Common Stylesheet
   =========================================================== */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Fredoka:wght@500;600&display=swap');

/* ---- Design tokens ---- */
:root{
  /* Colors */
  --cream: #efeadd;          /* page / section background */
  --panel-pink: #f0c9f1;     /* accent panel background */
  --panel-cream: #efeadd;    /* card background */
  --plum: #3d0f2e;           /* primary text / headings / borders */
  --maroon: #7a1743;         /* buttons */
  --maroon-dark: #5e1235;    /* button hover */
  --coral: #ef8a72;          /* accent */
  --lime: #d7e04a;           /* accent */
  --text-body: #6b4f66;      /* body copy */

  /* Typography */
  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

/* ---- Reset ---- */
*{
  box-sizing: border-box;
}

html, body{
  margin: 0;
  padding: 0;
}

body{
  background: var(--cream);
  color: var(--plum);
  font-family: var(--font-body);
}

img{
  max-width: 100%;
}

a{
  text-decoration: none;
}

/* ---- Shared layout ---- */
.section{
  padding: 3rem 1rem;
}

.section-title,
.flavor-section h2{
  font-family: var(--font-body);
  color: var(--plum);
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 30px;
}

/* ---- Shared buttons ---- */
.outline{
  padding: 10px 25px;
  font-family: var(--font-body);
  font-weight: 600;
  border: 2px solid var(--plum);
  border-bottom: 5px solid var(--plum);
  background: transparent;
  color: var(--plum);
  border-radius: 6px;
  transition: all 0.3s ease;
}
.outline:hover{
  background: var(--plum);
  color: var(--cream);
}
.outline:focus,
.outline:active{
  background: var(--plum) !important;
  color: var(--cream) !important;
  border-color: var(--plum) !important;
  box-shadow: none;
}

.btn-shop{
  background-color: var(--maroon);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  width: fit-content;
  display: inline-block;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.btn-shop:hover{
  background-color: var(--maroon-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ===========================================================
   Slider (Carousel)
   =========================================================== */
.carousel-item img{
  height: 500px;
  object-fit: cover;
}

.carousel-caption{
  left: 0;
  right: 0;
  bottom: 60px;
  text-align: left;
}

.carousel-caption .container{
  max-width: 1320px;
  margin: auto;
}

.caption-box{
  background: var(--panel-cream);
  padding: 30px;
  border-radius: 10px;
  display: inline-block;
  color: var(--plum);
  max-width: 500px;
  border: 2px solid var(--plum);
  border-bottom: 5px solid var(--plum);
}

.caption-box h2{
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--plum);
}

@media (max-width: 768px){
  .carousel-item img{ height: 350px; }
  .carousel-caption{ bottom: 30px; }
  .caption-box{ max-width: 100%; padding: 20px; }
  .caption-box h2{ font-size: 1.5rem; }
}

/* ===========================================================
   Featured Collection (Bestsellers)
   =========================================================== */
.product-card{
  border: none;
  background: transparent;
  transition: .3s;
}
.product-card:hover{
  transform: translateY(-5px);
}

.product-img{
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  border: 2px solid var(--plum);
  border-bottom: 5px solid var(--plum);
  border-radius: 18px;
}

.product-name{
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--plum);
  margin-top: 15px;
  margin-bottom: 8px;
  font-weight: bold;
  text-transform: capitalize;
}

.carousel-indicators [data-bs-target]{
background-color: #7a1743;
}
.price{
  font-size: 18px;
  color: var(--text-body);
}

@media (max-width: 992px){
  .section-title{ font-size: 30px; }
  .product-name{ font-size: 20px; }
  .price{ font-size: 20px; }
}

/* ===========================================================
   Collection (Find Your Flavor)
   =========================================================== */
.flavor-grid{
  height: 600px;
}

.flavor-grid .col-lg-4,
.flavor-grid .col-lg-8{
  height: 100%;
}

.flavor-card{
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  text-decoration: none;
}

.flavor-img-wrap{
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  flex: 1;
  min-height: 0;
  border: 2px solid var(--plum);
  border-bottom: 5px solid var(--plum);
}

.flavor-img-small,
.flavor-img-large{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.flavor-card:hover .flavor-img-small,
.flavor-card:hover .flavor-img-large{
  transform: scale(1.05);
}

.card-title-new{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--plum);
  font-weight: 500;
  margin: 14px 0 0;
}

@media (max-width: 992px){
  .flavor-grid{ height: auto; }
  .flavor-grid .col-lg-4,
  .flavor-grid .col-lg-8{ height: auto; }
  .flavor-card{ min-height: 220px; }
}

/* ===========================================================
   Image Banners (Promo Card)
   =========================================================== */
.promo-card{
  border: 2px solid var(--plum);
  border-radius: 28px;
  overflow: hidden;
  background: var(--panel-cream);
  box-shadow: 0 6px 0 var(--plum);
}

.promo-card.row{
  align-items: stretch;
}

.visual-panel{
  background: var(--panel-pink);
  position: relative;
  height: 420px;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.main-img-wrap{
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
}

.main-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.content-panel{
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 420px;
  overflow: hidden;
}

.content-panel h2{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 2.6rem;
  color: var(--plum);
  margin-bottom: 0.4rem;
}

.content-panel p{
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 1.75rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767.98px){
  .content-panel{ padding: 2rem 1.75rem; height: auto; }
  .content-panel h2{ font-size: 2rem; }
  .visual-panel{ height: 340px; }
}

/* ===========================================================
  privacy policy{list}
   =========================================================== */


.section ul li {
  list-style: disc;
}
.section ul {
  padding-left: 1.5rem;
}

