/* --------------------------------------------------
   GLOBAL THEME
-------------------------------------------------- */
body {
  background: #fff9fc;
  font-family: "Poppins", sans-serif;
}

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */
.js-hero {
  text-align: center;
  padding: 40px 20px;
  background: #fff7fb;
  position: relative;
}

.js-logo {
  width: 180px;
  height: auto;
  margin-bottom: 10px;
}

.js-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #b85ca8;
}

.js-insta-btn {
  display: inline-block;
  padding: 14px 24px;
  background: #b85ca8;
  color: white;
  font-size: 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
}

.js-insta-btn:hover {
  background: #e85aa8;
}

.js-floating-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: #ffbde6;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  color: #a03f8c;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* --------------------------------------------------
   MENU SECTION
-------------------------------------------------- */
.js-menu-section {
  padding: 50px 20px;
  text-align: center;
  background: #fff2fa;
  border-top: 4px solid #ffd3ef;
  border-bottom: 4px solid #ffd3ef;
}

.js-section-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #b85ca8;
}

.js-special-badge {
  display: inline-block;
  background: #ffe0f4;
  padding: 8px 18px;
  border-radius: 20px;
  color: #b85ca8;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* --------------------------------------------------
   PINK TEMPLATE (DAY CARD)
-------------------------------------------------- */
.js-day-card {
  position: relative;
  background: url("../Pictures/JanSisters/JanSisterMenuTemplate.png") no-repeat
    top center;
  background-size: contain;
  width: 100%;
  max-width: 600px;
  margin: 30px auto;
  height: 700px;
}

.js-day-content {
  position: absolute;
  top: 300px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  text-align: center;
}

.js-day-content .js-item {
  margin-bottom: 30px;
}

.js-day-title {
  font-size: 26px;
  font-weight: 700;
  color: #b85ca8;
  margin-bottom: 20px;
}

.js-item {
  font-size: 18px;
  color: #444;
}

.js-item-img {
  width: 120px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 8px;
}

/* --------------------------------------------------
   MOBILE OPTIMIZATION
-------------------------------------------------- */
@media (max-width: 600px) {
  .js-day-card {
    height: 550px;
    background-size: cover;
  }

  .js-day-content {
    top: 260px;
  }

  .js-item {
    font-size: 16px;
  }

  .js-item-img {
    width: 100px;
  }
}

/* --------------------------------------------------
   GALLERY SECTION
-------------------------------------------------- */
.js-gallery {
  padding: 40px 20px;
  text-align: center;
}

.js-gallery h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #b85ca8;
}

/* ⭐ DESKTOP — MAKE IMAGES BIGGER */
.js-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.js-gallery-card {
  background: white;
  padding: 0; /* remove padding so image fills card */
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 340px; /* bigger desktop height */
}

.js-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills the card beautifully */
  border-radius: 16px;
}

.js-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: 0.25s ease;
}

/* ⭐ MOBILE FIX — BIGGER IMAGES, 1 PER ROW */
@media (max-width: 768px) {
  .js-gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 22px;
  }

  .js-gallery-card {
    padding: 0 !important;
    height: auto !important;
    border-radius: 14px;
  }

  .js-gallery-card img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 14px;
  }
}

/* --------------------------------------------------
   MODAL
-------------------------------------------------- */
.js-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.js-modal-content {
  background: white;
  padding: 25px;
  width: 90%;
  max-width: 380px;
  border-radius: 12px;
  text-align: center;
  position: relative;
}

.js-item-row span {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

.js-close {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 26px;
  cursor: pointer;
  color: #b85ca8;
}

.js-modal-price,
.js-modal-total {
  font-size: 20px;
  font-weight: 600;
  margin: 12px 0;
  color: #b85ca8;
}

.js-modal-qty {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 15px 0;
}

.js-modal-qty button {
  background: #ff7ac8;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
}

#jsQtyNumber {
  font-size: 22px;
  font-weight: 700;
}

.js-modal-add-btn {
  background: #ff7ac8;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  margin-top: 10px;
}

.js-modal-add-btn:hover {
  background: #e85aa8;
}

.js-arrow-hint {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #7d3cff;
  margin-top: 10px;
  opacity: 0.9;
  letter-spacing: 0.3px;
}

.js-insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.js-insta-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* --------------------------------------------------
   MOBILE HEADER
-------------------------------------------------- */
.mobile-header {
  display: none;
}

@media (max-width: 768px) {
  .main-header {
    display: none !important;
  }

  .mobile-header {
    display: block;
    width: 100%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .mobile-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
  }

  .mobile-logo img {
    width: 55px;
  }

  .mobile-cart {
    position: relative;
  }

  .mobile-cart img {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }

  #cart-count-mobile {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #27ae60;
    color: white;
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
  }

  .mobile-menu-btn {
    width: 100%;
    text-align: center;
    padding: 14px 0;
    background: #f8f8f8;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }

  .mobile-dropdown {
    display: none;
    flex-direction: column;
    background: #ffffff;
    border-bottom: 1px solid #eee;
  }

  .mobile-dropdown.active {
    display: flex;
  }

  .mobile-dropdown a {
    padding: 14px 20px;
    font-size: 17px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
  }

  .mobile-dropdown a:last-child {
    border-bottom: none;
  }
}
