/*
 * ==============================================
 *   SIM'S KITCHEN – MAIN STYLESHEET
 *   Theme: sims-kitchen
 * ==============================================
 */

/* ===== ROOT VARIABLES ===== */
:root {
  --bg: #f6c9ec;
  --brown: #b58a67;
  --text: #2b1d12;
  --soft: #5f3f2c;
  --pink: #e02bbf;
  --sims-primary: #e02bbf;
  --sims-accent: #fb7185;
  --sims-bg: #fff1f2;
  --card-bg: #ffffff;
}

/* ===== GLOBAL ===== */
body {
  font-family: 'Poppins', sans-serif;
}

/* ===== NAVBAR ===== */
.navbar {
  background: white;
  border-bottom: 2px solid #c81aa6;
  padding: 10px 0;
  z-index: 1055;
  position: relative;
}

.navbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #e02bbf;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sk-logo {
  height: 90px;
  width: 140px;
  object-fit: contain;
  display: block;
}

.sk-brand-text {
  color: black;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .3px;
  white-space: nowrap;
}

.navbar .nav-link {
  color: black !important;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 12px;
  transition: color .2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: #c81aa6 !important;
}

.navbar .bi-cart3 {
  font-size: 20px;
  line-height: 1;
}

.navbar-nav {
  align-items: center;
}

.dropdown-menu {
  z-index: 1760;
  background-color: #e02bbf;
}

.dropdown-menu .dropdown-item {
  color: #fff;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: rgba(255, 255, 255, .18);
  color: #fff;
}

@media (max-width: 991px) {
  .sk-brand-text {
    font-size: 16px;
  }

  .navbar .nav-link {
    padding: 6px 0;
  }
}

@media (min-width: 992px) {
  .navbar .navbar-nav.mx-auto {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ===== HERO SECTION ===== */
.hero-sim {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  padding: 60px 0;
}

.hero-box {
  max-width: 950px;
}

.hero-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 30px;
  background: rgba(224, 43, 191, .15);
  color: var(--pink);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero-title {
  font-size: clamp(46px, 6vw, 70px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
}

.hero-text {
  font-size: 18px;
  line-height: 1.9;
  color: var(--soft);
  max-width: 620px;
}

.hero-btn,
.hero-btn:hover,
.hero-btn:focus,
.hero-btn:active {
  margin-top: 26px;
  padding: 14px 34px;
  border-radius: 40px;
  background: var(--pink) !important;
  color: #fff !important;
  font-weight: 700;
  border: none;
  box-shadow: none !important;
  transform: none !important;
}

.hero-highlight {
  margin-top: 10px;
  padding: 16px 20px 16px 22px;
  border-left: 5px solid var(--pink);
  background: linear-gradient(to right, rgba(224, 43, 191, .12), rgba(224, 43, 191, .03));
  border-radius: 12px;
}

.hero-image-box {
  background: #e02bbf;
  padding: 28px;
  border-radius: 28px;
  max-width: 560px;
  margin-left: auto;
}

.hero-image-box img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}

@media (max-width: 991px) {
  .hero-sim {
    min-height: auto;
    padding: 60px 0;
    text-align: center;
  }

  .hero-box,
  .hero-text,
  .hero-title {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-highlight {
    text-align: left;
  }

  .hero-image-box {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== OUR STORY ===== */
.sk-story {
  padding: 110px 0;
  background:
    radial-gradient(circle at 90% 15%, rgba(224, 43, 191, .10), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(181, 138, 103, .25), transparent 45%),
    var(--sims-bg);
  position: relative;
  overflow: hidden;
}

.sk-story::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(224, 43, 191, .10);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.sk-story::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  background: rgba(181, 138, 103, .18);
  border-radius: 50%;
  bottom: -60px;
  left: -60px;
}

.sk-story-image-wrap {
  position: relative;
  border-radius: 30px;
  padding: 10px;
  background: linear-gradient(135deg, #e02bbf, #b58a67);
  box-shadow: 0 30px 60px rgba(43, 29, 18, .18);
  transition: transform .3s ease, box-shadow .3s ease;
  will-change: transform;
}

.sk-story-image-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 70px rgba(43, 29, 18, .25);
}

.sk-story-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.sk-story-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(43, 29, 18, .85);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  padding: 10px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 13px;
}

.sk-story-content {
  background: #fcc6f3;
  padding: 38px 36px;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(43, 29, 18, .12);
  border: 1px solid rgba(224, 43, 191, .12);
}

.sk-story-top {
  display: inline-block;
  color: var(--pink);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 12px;
}

.sk-story-title {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.sk-story-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #e02bbf;
  border-radius: 4px;
  margin-top: 10px;
}

.sk-story-content p {
  color: var(--soft);
  line-height: 1.8;
  max-width: 520px;
}

.sk-story-btn,
.sk-story-btn:hover {
  margin-top: 18px;
  padding: 13px 34px;
  border-radius: 40px;
  background: var(--pink);
  color: #fff;
  font-weight: 700;
  border: none;
  box-shadow: 0 10px 25px rgba(224, 43, 191, .35);
  transition: .3s ease;
}

.sk-story-btn:hover {
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .sk-story {
    padding: 70px 0;
  }

  .sk-story-content {
    padding-left: 0;
    text-align: center;
  }

  .sk-story-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .sk-story-badge {
    left: 12px;
    bottom: 12px;
    font-size: 12px;
  }
}

/* ===== THIS WEEK HIGHLIGHTS ===== */
.sk-week-new {
  padding: 110px 0;
  background: linear-gradient(135deg, #f594e1 0%, #ffd6f2 100%);
}

.sk-week-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 18px;
}

.sk-week-tile {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(43, 29, 18, .18);
}

.sk-week-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  will-change: transform;
}

.sk-week-tile::after {
  content: "";
  position: absolute;
  inset: 0;
}

.sk-week-info {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  max-width: 80%;
}

.sk-week-info span {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  background: #e02bbf;
  margin-bottom: 8px;
}

.sk-week-info h4,
.sk-week-info h6 {
  margin: 0;
  font-weight: 800;
}

.sk-week-big {
  grid-row: 1 / span 2;
}

.sk-week-tile:hover img {
  transform: scale(1.08);
}

.sk-week-new-title {
  position: relative;
  display: inline-block;
  font-weight: 900;
  letter-spacing: .5px;
  padding-bottom: 12px;
}

.sk-week-new-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 90px;
  height: 5px;
  border-radius: 6px;
  background: linear-gradient(90deg, #e02bbf, #ff8fdc);
  box-shadow: 0 8px 20px rgba(224, 43, 191, .45);
}

.sk-week-new-title::before {
  content: "FEATURED THIS WEEK";
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #e02bbf;
}

@media (max-width: 991px) {
  .sk-week-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .sk-week-big {
    grid-row: auto;
    height: 260px;
  }

  .sk-week-tile {
    height: 200px;
  }
}

/* ===== MONTHLY SPOTLIGHT ===== */
.sk-month-spotlight {
  padding: 110px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f57fce 60%, #f76fd9 100%);
  position: relative;
}

.sk-month-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.sk-month-left h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  color: #2b1d12;
  margin-bottom: 10px;
}

.sk-month-left p {
  color: #5f3f2c;
  max-width: 420px;
}

.sk-month-list {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sk-month-row {
  cursor: pointer;
  padding: 18px 22px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(224, 43, 191, .18);
  transition: transform .35s ease, background .35s ease, color .35s ease;
  will-change: transform;
  box-shadow: 0 10px 22px rgba(43, 29, 18, .08);
  position: relative;
}

.sk-month-row h5 {
  margin: 0;
  font-weight: 800;
  color: #2b1d12;
  font-size: 18px;
}

.sk-month-row span {
  font-size: 13px;
  color: #5f3f2c;
}

.sk-month-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 6px;
  background: #e02bbf;
  opacity: 0;
  transition: .3s ease;
}

.sk-month-row.active::before,
.sk-month-row:hover::before {
  opacity: 1;
}

.sk-month-row.active,
.sk-month-row:hover {
  background: #e02bbf;
  transform: translateX(6px);
}

.sk-month-row.active h5,
.sk-month-row.active span,
.sk-month-row:hover h5,
.sk-month-row:hover span {
  color: #fff;
}

.sk-month-preview {
  position: relative;
  border-radius: 32px;
  padding: 10px;
  background: linear-gradient(135deg, #ff8fdc, #e02bbf);
  box-shadow: 0 25px 55px rgba(224, 43, 191, .35);
}

.sk-month-preview img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: 22px;
  display: none;
}

.sk-month-preview img.active {
  display: block;
  animation: fadeDish .5s ease;
}

@keyframes fadeDish {
  from {
    opacity: 0;
    transform: scale(1.03);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 991px) {
  .sk-month-wrap {
    grid-template-columns: 1fr;
  }

  .sk-month-preview img {
    height: 260px;
  }
}

/* ===== WHY PEOPLE LOVE US ===== */
.sk-love-new {
  padding: 70px 0;
  background: #fff;
}

.sk-love-new-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  color: #2b1d12;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.sk-love-new-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 70px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #e02bbf, #ff8fdc);
}

.sk-love-new-sub {
  max-width: 600px;
  margin: 12px auto 0;
  color: #5f3f2c;
  font-size: 15px;
}

.sk-love-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.sk-love-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 18px;
  background: #fd9aeb;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
  transition: transform .3s ease, box-shadow .3s ease;
  will-change: transform;
}

.sk-love-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, .12);
}

.sk-love-thumb {
  flex: 0 0 80px;
  height: 80px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #e02bbf, #b58a67);
  padding: 2px;
}

.sk-love-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.sk-love-thumb::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e02bbf;
  border: 3px solid #fff;
}

.sk-love-text h5 {
  margin: 0 0 4px;
  font-weight: 800;
  font-size: 16px;
  color: #2b1d12;
}

.sk-love-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #5f3f2c;
}

@media (max-width: 991px) {
  .sk-love-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .sk-love-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BEST SELLING SLIDER ===== */
.sk-best-slider {
  padding: 100px 0;
  background: #f594e1;
}

.sk-best-title {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  color: var(--text);
}

.sk-best-sub {
  color: var(--soft);
  max-width: 520px;
  margin: 8px auto 0;
}

.sk-best-card {
  background: #fff;
  border-radius: 26px;
  padding: 16px 16px 20px;
  text-align: center;
  box-shadow: 0 16px 36px rgba(43, 29, 18, .12);
  height: 100%;
}

.sk-best-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.sk-best-card h5 {
  margin-top: 14px;
  font-weight: 800;
  color: var(--text);
}

.sk-best-card p {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--soft);
}

.sk-best-control {
  width: 44px;
}

.sk-best-control .carousel-control-prev-icon,
.sk-best-control .carousel-control-next-icon {
  background-color: var(--pink);
  border-radius: 50%;
  padding: 18px;
  background-size: 60% 60%;
}

#skBestCarousel .carousel-control-prev {
  left: -55px;
}

#skBestCarousel .carousel-control-next {
  right: -55px;
}

@media (max-width: 767px) {
  .sk-best-slider {
    padding: 70px 0;
  }

  .sk-best-card img {
    height: 200px;
  }

  #skBestCarousel .carousel-control-prev {
    left: -10px;
  }

  #skBestCarousel .carousel-control-next {
    right: -10px;
  }
}

/* ===== CUSTOMER REVIEWS ===== */
.sk-reviews-new {
  padding: 100px 0;
  background: #fff;
}

.sk-reviews-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #e02bbf;
  background: rgba(224, 43, 191, .12);
}

.sk-reviews-title-new {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  color: #2b1d12;
}

.sk-reviews-sub-new {
  color: #5f3f2c;
  max-width: 520px;
  margin: 8px auto 0;
}

.sk-review-glass {
  position: relative;
  height: 100%;
  padding: 32px 28px 26px;
  border-radius: 22px;
  background: #ecbbe3;
  border: 1px solid rgba(224, 43, 191, .25);
}

.sk-quote {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 64px;
  line-height: 1;
  color: #e02bbf;
  opacity: .25;
}

.sk-review-glass p {
  margin-top: 18px;
  margin-bottom: 22px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
  color: black;
}

.sk-review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sk-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e02bbf;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.sk-review-footer h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: #2b1d12;
}

.sk-review-footer span {
  font-size: 13px;
  color: #5f3f2c;
  display: block;
}

/* ===== CATALOG / MENU PAGE ===== */
.order-section {
  position: relative;
  padding: 60px 0;
  background: white;
  overflow: hidden;
}

.order-section .container {
  position: relative;
  z-index: 1;
}

.left-panel {
  background: #d64bbd;
  border-radius: 16px;
  padding: 16px;
  color: #fff;
  min-height: 500px;
}

.search-box input {
  border-radius: 20px;
  border: 0;
  padding: 8px 14px;
  width: 100%;
}

.category-btn {
  background: #fff;
  border: 0;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #520d45;
  text-align: left;
  width: 100%;
  text-decoration: none;
  display: block;
}

.product-card {
  background: white;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: black;
}

.product-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
}

.product-price {
  color: black;
  font-weight: 700;
}

.add-btn {
  background: var(--pink);
  color: #fff;
  border: 0;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 13px;
}

.right-box {
  background: #e24ac6;
  border-radius: 16px;
  padding: 16px;
  color: #fff;
  margin-bottom: 14px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  padding: 6px 0;
  font-size: 14px;
}

.order-icons button {
  background: transparent;
  border: 0;
  color: #fff;
}

.checkout-btn {
  background: white;
  border: 0;
  width: 100%;
  padding: 8px;
  border-radius: 20px;
  color: var(--pink);
  font-weight: 600;
}

.light-btn {
  background: #fff;
  color: var(--pink);
  border: 0;
  width: 100%;
  padding: 6px;
  border-radius: 20px;
  font-weight: 600;
}

.food-img {
  border-radius: 16px;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* ===== CART / CHECKOUT PAGE ===== */
.collection-section {
  position: relative;
  padding: 60px 0;
}

.collection-section::before {
  content: "";
  background: linear-gradient(135deg, #fff1f2, #fde2e4);
  position: absolute;
  inset: 0;
  opacity: .18;
  z-index: 0;
}

.collection-section .container {
  position: relative;
  z-index: 1;
}

.collection-title {
  text-align: center;
  font-weight: 800;
  letter-spacing: 1px;
  color: black;
  margin-bottom: 40px;
  font-size: 30px;
}

@media (max-width: 768px) {
  .collection-title {
    font-size: 22px;
  }
}

.loyalty-box {
  background: #e02bbf;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, .15);
  color: #fff;
}

.loyalty-box h5 {
  font-size: 22px;
  text-transform: lowercase;
  font-weight: 700;
}

.loyalty-box input {
  height: 48px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  background: #f3f4f6;
  font-weight: 500;
}

.apply-btn,
.remove-btn {
  background: white;
  color: black;
  font-weight: 600;
  padding: 10px;
  border-radius: 8px;
  border: none;
  transition: 0.3s;
  width: 100%;
}

.checkout-box {
  background: #df3abe;
  color: #fff;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.checkout-box h6 {
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  padding-bottom: 6px;
  margin-bottom: 12px;
}

.checkout-box input,
.checkout-box textarea {
  border-radius: 6px;
  border: 0;
  padding: 8px 10px;
  font-size: 14px;
}

.checkout-box textarea {
  resize: none;
}

.checkout-box .btn {
  border-radius: 6px;
  font-weight: 600;
}

.checkout-box .btn-outline-light {
  background: #fff !important;
  color: #000 !important;
  border: 1px solid #fff !important;
}

.payment-new {
  background: #ffffff;
  border: 2px solid #e02bbf;
  border-radius: 12px;
  padding: 25px;
  transition: 0.3s;
}

.payment-new:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.payment-new img {
  height: 45px;
}

.secure-box {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)),
    url("../images/secure.webp") center / cover no-repeat;
  color: #fff;
  border-radius: 18px;
  padding: 18px;
  min-height: 260px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, .2);
  display: flex;
  flex-direction: column;
}

.secure-title {
  font-weight: 700;
  font-size: 15px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.secure-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}

.secure-text {
  margin-top: 12px;
  padding: 10px;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.5;
}

.delivery-box {
  background: #e02bbf;
  padding: 15px;
  border-radius: 8px;
  color: #fff;
  margin-bottom: 20px;
}

.delivery-title {
  font-weight: 700;
  margin-bottom: 15px;
}

.delivery-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.delivery-head,
.delivery-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  font-size: 14px;
}

.delivery-head {
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 5px;
}

.delivery-row {
  opacity: 0.85;
}

/* ===== CONTACT PAGE ===== */
.contact-tribe {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(135deg, #fff1f2, #fde2e4);
  overflow: hidden;
}

.contact-tribe .wrap {
  position: relative;
  z-index: 1;
}

.contact-title {
  text-align: center;
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 50px;
  color: black;
}

.tribe-box {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 26px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
}

.tribe-box .box-head {
  background: var(--sims-primary);
  color: #fff;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 16px;
}

.tribe-box .box-body {
  padding: 18px 20px;
  font-size: 16px;
}

.tribe-form .form-control {
  border-radius: 10px;
  font-size: 15px;
  margin-bottom: 12px;
  height: 46px;
  border: 1px solid #e5e7eb;
}

.tribe-form .form-control:focus {
  border-color: var(--sims-primary);
  box-shadow: 0 0 0 .15rem rgba(236, 72, 153, .18);
}

.tribe-form textarea.form-control {
  height: 110px;
  resize: none;
}

.send-btn {
  background: #e02bbf;
  color: #fff;
  border: none;
  width: 100%;
  padding: 12px;
  border-radius: 26px;
  font-size: 15px;
  font-weight: 600;
}

.send-btn:hover {
  background: #c8189f;
}

@media (max-width: 767px) {
  .contact-title {
    font-size: 28px;
  }
}

/* ===== LOGIN / REGISTER PAGE ===== */
.auth-section {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(135deg, #fff1f2, #fde2e4);
  overflow: hidden;
  min-height: 70vh;
}

.auth-box {
  position: relative;
  z-index: 2;
  background: #ec6bd7;
  border-radius: 26px;
  padding: 38px 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  height: 100%;
}

.auth-box h3 {
  color: #000;
  font-weight: 800;
  margin-bottom: 22px;
}

.auth-box .form-control {
  border-radius: 10px;
  height: 48px;
  border: 0;
  margin-bottom: 14px;
  font-size: 14px;
}

.auth-btn {
  width: 100%;
  background: #fff;
  color: var(--sims-primary);
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  margin-top: 10px;
  cursor: pointer;
  transition: opacity .2s;
}

.auth-btn:hover {
  opacity: .88;
}

.auth-link {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.auth-link:hover {
  color: #fde2e4;
}

/* ===== FOOTER ===== */
.footer-brand {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  color: white;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .footer-brand {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
  }

  .custom-footer {
    padding: 40px 0 20px;
  }

  .custom-footer .footer-col {
    text-align: center;
  }

  .custom-footer .footer-col ul {
    padding-left: 0;
  }

  .custom-footer .footer-col p {
    justify-content: center;
  }

  .custom-footer .social-icons {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }

  .custom-footer .translator-flags-top {
    justify-content: center;
  }

  .custom-footer .small {
    text-align: center;
    width: 100%;
  }

  .custom-footer .text-end {
    align-items: center !important;
    text-align: center !important;
    width: 100%;
  }

  .footer-bottom-icons {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom-icons img {
    width: 40px;
    height: 40px;
  }

  .powered-logo {
    height: 70px;
    margin: 0 auto;
  }
}

.custom-footer {
  background: #111;
  color: #fff;
  padding: 60px 0 30px;
}

.custom-footer a {
  color: white;
  text-decoration: none;
}

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

.custom-footer .footer-title {
  font-weight: bold;
  margin-bottom: 15px;
}

.custom-footer input[type="email"] {
  border: 1px solid #555;
  padding: 6px 10px;
  background: transparent;
  color: #fff;
  border-radius: 4px 0 0 4px;
  flex: 1;
}

.custom-footer .btn-subscribe {
  border-radius: 0 4px 4px 0;
  background-color: #e02bbf;
  color: white;
  border: none;
  padding: 6px 12px;
}

.footer-col {
  margin-bottom: 30px;
}

.powered-text {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 0;
  color: #ccc;
}

.powered-logo {
  height: 100px;
  width: auto;
  display: block;
  margin-top: -10px;
}

.footer-bottom-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 15px;
}

.footer-bottom-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-bottom-icons img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.social-icons a {
  color: #fff;
  font-size: 1.4rem;
  margin-right: 12px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: #e02bbf;
}

.translator-flags-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.translator-flags-top img {
  width: 26px;
  height: auto;
  cursor: pointer;
  border-radius: 3px;
  transition: 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
}

.translator-flags-top img:hover {
  transform: scale(1.15);
}

/* ===== CHECKOUT NOTE ===== */
.checkout-note {
  background: rgba(255, 255, 255, .08);
  border-left: 4px solid #e02bbf;
  border-radius: 8px;
}

/* ===== CURRENT DAY HIGHLIGHT (Opening Hours) ===== */
.current-day {
  background-color: rgba(224, 43, 191, .15) !important;
  font-weight: 700;
}

.coupon-box {
  background-color: #e02bbf;
  padding: 20px;
  border-radius: 10px;
}

.coupon-box h5 {
  color: #ffffff;
}

.coupon-input {
  border: 1px solid #e02bbf;
  border-radius: 6px;
  height: 45px;
}

.coupon-input:focus {
  border-color: #ffff;
  box-shadow: 0 0 5px rgba(224, 43, 191, 0.4);
}

.apply-btn {
  background-color: #fff;
  color: #e02bbf;
  border-radius: 6px;
  height: 45px;
  font-weight: 500;
}

.apply-btn:hover {
  background-color: #fff;
  color: #e02bbf;
}

.remove-btn {
  background-color: #fff;
  color: #e02bbf;
  border: 1px solid #e02bbf;
  border-radius: 6px;
  height: 45px;
  font-weight: 500;
}

.remove-btn:hover {
  background-color: #e02bbf;
  color: #fff;
}

.custom-alert {
  background-color: #fff0fb;
  color: #e02bbf;
  border: 1px solid #e02bbf;
  border-radius: 6px;
  padding: 10px;
}
/* 
Gift Voucher Page CSS */
/* Main Section */
.term_and_conditions_section {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    margin-bottom: 100px;
    margin-top: 100px;
}

/* Heading */
.term_and_conditions_section h1 {
    font-weight: 700;
    color: #e02bbf;
    margin-bottom: 20px;
}

/* Buttons */
.term_and_conditions_section .btn-primary {
    background: #e02bbf;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s ease;
}

.term_and_conditions_section .btn-primary:hover {
    background: #c91fa8;
    transform: translateY(-1px);
}

/* Balance Text */
.term_and_conditions_section span {
    background: #fff0fb;
    padding: 8px 14px;
    border-radius: 8px;
    color: #e02bbf;
    font-weight: 600;
    border: 1px solid rgba(224, 43, 191, 0.2);
}

/* Table Styling */
.term_and_conditions_section table {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

/* Table Head */
.term_and_conditions_section table thead {
    background: #e02bbf;
    color: #fff;
}

.term_and_conditions_section table thead th {
    border: none;
    font-weight: 600;
    padding: 12px;
}

/* Table Body */
.term_and_conditions_section table tbody tr {
    transition: 0.2s ease;
}

.term_and_conditions_section table tbody tr:hover {
    background: #fff0fb;
}

.term_and_conditions_section table td {
    vertical-align: middle;
    padding: 10px;
    border-color: #f1f1f1;
}

/* Action Link */
.term_and_conditions_section table a {
    color: #e02bbf;
    font-weight: 500;
    text-decoration: none;
}

.term_and_conditions_section table a:hover {
    text-decoration: underline;
}

/* Pagination */
.pagination {
    justify-content: center;
    margin-top: 20px;
}

.pagination .page-item.active .page-link {
    background: #e02bbf;
    border-color: #e02bbf;
}

.pagination .page-link {
    color: #e02bbf;
    border-radius: 6px;
}

/* Modal */
.modal-content {
    border-radius: 14px;
    border: none;
}

.modal-header {
    background: #e02bbf;
    color: #fff;
    border-bottom: none;
}

.modal-title {
    font-weight: 600;
}

.modal-body {
    background: #fff;
    color: #333;
    padding: 20px;
}

/* Close Button Fix */
.btn-close {
    filter: invert(1);
}