/*
 * ==============================================
 *   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;
}

.cart-component__button .cart-component__button--checkout {
  color: #000000 !important;
}

.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: 600;
  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: 800;
  font-size: 15px;
  line-height: 1.2;
  color: #520d45;
  text-align: left;
  width: 100%;
  text-decoration: none;
  display: block;
}

body.theme-sims-kitchen .left-panel .category-btn,
.sk-header-nav~* .left-panel .category-btn {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: #520d45;
}

.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);
}

/* Checkout styles migrated from public\custom-css\sims-kitchen.css */
/* MOBILE */
@media (max-width:992px) {

  .member_body {
    padding: 9rem 0 6rem 0;
    background: #ffffff;
    /* WHITE PAGE */
    color: #333;
    height: auto !important;
  }

  .member_body_child_left input,
  .member_body_child_right input {
    width: 100% !important;
    height: 3rem !important;
  }

  .member_body_child_left label,
  .member_body_child_right label {
    font-size: 20px !important;
    width: 100% !important;
  }
}


/* MAIN BODY (WHITE) */
.member_body {
  padding: 9rem 0 4rem 0;
  background: #ffffff;
  /* PAGE WHITE */
  color: #333;
  min-height: 100vh;
}


/* FORM CARD (PINK) */
.member_body_child_left,
.member_body_child_right_child1 {
  background: linear-gradient(135deg, #e02bbf, #ff6ad5);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(224, 43, 191, 0.2);
}


/* HEADINGS */
.member_body_child_left h1,
.member_body_child_right h2 {
  color: #fff;
  font-size: 28px;
}


/* LABEL */
.member_body_child_left label,
.member_body_child_right_child1 label {
  font-size: 18px;
  color: #fff;
}


/* INPUT */
.member_body_child_left input,
.member_body_child_right_child1 input {
  width: 12rem;
  height: 2.4rem;
  border-radius: 6px;
  border: none;
  padding: 8px 12px;
  outline: none;
}

/* INPUT FOCUS */
.member_body_child_left input:focus,
.member_body_child_right_child1 input:focus {
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}


/* PRIMARY BUTTON */
.resister_btn {
  height: 3rem !important;
  background-color: #fff;
  color: #e02bbf;
  font-size: 17px;
  border-radius: 6px;
  border: none !important;
  transition: 0.3s;
  font-weight: 600;
}

.resister_btn:hover {
  background-color: #f3f3f3;
  transform: translateY(-2px);
}


/* OUTLINE BUTTON */
.resister_btn2_bg {
  background-color: transparent !important;
  color: #fff !important;
  border: 1px solid #fff !important;
  border-radius: 6px;
  transition: 0.3s;
}

.resister_btn2_bg:hover {
  background-color: #fff !important;
  color: #e02bbf !important;
}


/* SIGNUP BUTTON */
.btn_sign_up {
  width: 6rem;
  height: 2rem;
  border: 1px solid #fff !important;
  background-color: transparent !important;
  color: #fff;
  border-radius: 6px;
  transition: 0.3s;
}

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


/* INPUT PADDING FIX */
.custom-input {
  padding: 10px 15px;
}

.consent-text {
  margin-left: 10px;
  font-size: 14px;
  color: #fff !important;
}

.theme-footer-bottom {
  --theme-footer-text: #ffffff;
  --theme-footer-muted: #ffffff;
  --theme-footer-link: #ffffff;
  --theme-footer-divider: rgba(255, 255, 255, 0.22);
  --theme-footer-social-border: rgba(255, 255, 255, 0.35);
  --theme-footer-social-bg: rgba(255, 255, 255, 0.08);
  --theme-footer-social-color: #ffffff;
  --theme-footer-social-hover-bg: #f25c8d;
  --theme-footer-social-hover-color: #ffffff;
  --theme-footer-payment-height: 38px;
  --theme-footer-certification-height: 50px;
  --theme-footer-powered-height: 78px;
}

.theme-footer-bottom {
  margin-top: 1.5rem;
  color: var(--theme-footer-text);
}

.theme-footer-divider {
  border-color: var(--theme-footer-divider);
  opacity: 1;
  margin: 0 0 1.25rem;
}

.theme-footer-flags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 auto 1.25rem;
  max-width: min(90vw, 760px);
}

.theme-footer-flags img {
  width: clamp(26px, 6vw, 32px);
  height: auto;
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.theme-footer-flags img:hover {
  transform: scale(1.12);
}

.theme-footer-copy-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.theme-footer-copy h6 {
  margin: 0;
  color: var(--theme-footer-text);
  font-weight: 700;
}

.theme-footer-copy p {
  margin: 0;
  color: var(--theme-footer-muted);
}

.theme-footer-copy a {
  color: var(--theme-footer-link);
  font-weight: 600;
  text-decoration: none;
}

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

.theme-footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.theme-footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--theme-footer-social-border);
  background: var(--theme-footer-social-bg);
  color: var(--theme-footer-social-color);
  text-decoration: none;
  transition: all 0.25s ease;
}

.theme-footer-social a:hover {
  background: var(--theme-footer-social-hover-bg);
  color: var(--theme-footer-social-hover-color);
  border-color: var(--theme-footer-social-hover-bg);
}

.theme-footer-payment {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.theme-footer-payment-item {
  height: var(--theme-footer-payment-height);
  width: auto;
  object-fit: contain;
}

.theme-footer-payment-item--certification {
  height: var(--theme-footer-certification-height);
}

.theme-footer-powered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.theme-footer-powered-label {
  color: var(--theme-footer-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.theme-footer-powered-logo {
  height: var(--theme-footer-powered-height);
  width: auto;
  object-fit: contain;
}

@media (min-width: 992px) {
  .theme-footer-copy-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .theme-footer-powered {
    align-items: flex-end;
  }
}

@media (max-width: 767px) {
  .theme-footer-flags {
    gap: 8px;
    justify-content: flex-start;
  }

  .theme-footer-payment-item {
    height: calc(var(--theme-footer-payment-height) - 4px);
  }

  .theme-footer-payment-item--certification {
    height: calc(var(--theme-footer-certification-height) - 6px);
  }

  .theme-footer-powered-logo {
    height: calc(var(--theme-footer-powered-height) - 10px);
  }
}


.checkout-sidebar {
  --checkout-sidebar-login-bg: #e02bbf;
  --checkout-sidebar-login-color: #ffffff;
  --checkout-sidebar-delivery-bg: #e02bbf;
  --checkout-sidebar-delivery-color: #ffffff;
  --checkout-sidebar-security-bg: #e02bbf;
  --checkout-sidebar-security-color: #ffffff;
  --checkout-sidebar-button-bg: #ffffff;
  --checkout-sidebar-button-color: #e02bbf;
  --checkout-sidebar-input-bg: #ffffff;
  --checkout-sidebar-input-color: #111111;
}

.checkout-sidebar__card {
  border-radius: 6px;
}

.checkout-sidebar__card {
  padding: 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.12);
}


.checkout-sidebar__card--login {
  background: var(--checkout-sidebar-login-bg);
  color: var(--checkout-sidebar-login-color);
}


.checkout-sidebar__card--delivery {
  background: var(--checkout-sidebar-delivery-bg);
  color: var(--checkout-sidebar-delivery-color);
}

body.theme-sims-kitchen .checkout-sidebar__card--delivery {
  background: linear-gradient(145deg, rgba(240, 43, 191, 0.96), rgba(255, 87, 208, 0.9));
  border: 0 !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 40px rgba(6, 31, 43, 0.15);
  color: #ffffff;
  padding: 1rem 1.05rem 1.1rem;
}

body.theme-sims-kitchen .checkout-sidebar__card--delivery .delivery-info {
  background: transparent;
  padding: 0;
}

body.theme-sims-kitchen .checkout-sidebar__card--delivery .delivery-info__grid {
  margin-top: 0.15rem;
}

body.theme-sims-kitchen .delivery-info__title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.25;
  margin-bottom: 0.85rem;
  padding: 0.25rem 0.65rem 0.4rem;
}

body.theme-sims-kitchen .delivery-info__grid {
  display: grid;
  gap: 0.65rem 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  padding: 0.2rem 0.2rem 0.1rem;
  position: relative;
  z-index: 1;
}

body.theme-sims-kitchen .delivery-info__head {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.theme-sims-kitchen .delivery-info__cell {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  padding: 0.85rem 0.9rem;
}

body.theme-sims-kitchen .delivery-info__empty {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-radius: 18px;
  padding: 1rem 1.1rem;
}


.checkout-sidebar__card--security {
  background: var(--checkout-sidebar-security-bg);
  color: var(--checkout-sidebar-security-color);
}


.checkout-sidebar__title,

.checkout-sidebar__label,

.checkout-sidebar__security-text,

.checkout-sidebar__forgot,

.checkout-sidebar__error {
  color: inherit;
}


.checkout-sidebar__input {
  background: var(--checkout-sidebar-input-bg);
  color: var(--checkout-sidebar-input-color);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.25rem;
  text-transform: none;
}


.checkout-sidebar__button {
  width: 100%;
  border: 0;
  padding: 0.25rem 1rem;
  background: var(--checkout-sidebar-button-bg);
  color: var(--checkout-sidebar-button-color);
  font-weight: 700;
  text-transform: uppercase;
}



.checkout-sidebar__security-text {
  text-transform: none;
  margin-bottom: 0;
}

/* CART PANEL */
.order_confirm_left_box1 {
  background: linear-gradient(135deg, #e02bbf, #ff6ad5);
  border-radius: 16px;
  border: 0 !important;
  box-shadow: 0 10px 30px rgba(224, 43, 191, 0.2);
  color: #fff;
}

.order_confirm_left_box1,
.order_confirm_left_box1 p,
.order_confirm_left_box1 span,
.order_confirm_left_box1 li,
.order_confirm_left_box1 ul,
.order_confirm_left_box1 b,
.order_confirm_left_box1 strong,
.order_confirm_left_box1 .text-end,
.order_confirm_left_box1 .fw-bold,
.order_confirm_left_box1 .title_cart,
.order_confirm_left_box1 .title_cart p {
  color: #fff !important;
}

.order_confirm_left_box1 .border-bottom,
.order_confirm_left_box1 .border-top {
  border-color: rgba(255, 255, 255, 0.35) !important;
}

.order_confirm_left_box1 .order-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.order_confirm_left_box1 .order-item:last-of-type {
  border-bottom: 0;
}

.order_confirm_left_box1 .order-icons button {
  background: transparent;
  border: 0;
  color: #fff;
  padding: 0;
  line-height: 1;
}

.order_confirm_left_box1 .order-icons button:hover {
  color: #ffe96d;
}

.order_confirm_left_box1 .checkout-btn {
  width: 100%;
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.sims-cart .sims-cart__btn--checkout {
  background: #fff !important;
  color: #e02bbf !important;
  box-shadow: 0 12px 24px rgba(122, 8, 95, 0.18);
}

.sims-cart .sims-cart__btn--checkout span,
.sims-cart .sims-cart__btn--checkout:not(:disabled) {
  color: #e02bbf !important;
}

.sims-cart .sims-cart__btn--clear {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
  backdrop-filter: blur(4px);
}

.sims-cart .sims-cart__btn--clear span {
  color: #fff !important;
}

.sims-cart .sims-cart__btn:hover {
  transform: translateY(-2px);
}

.sims-cart .sims-cart__btn--checkout:hover {
  background: #fff5fd !important;
  color: #b8139c !important;
}

.sims-cart .sims-cart__btn--clear:hover {
  background: rgba(255, 255, 255, 0.24) !important;
  color: #fff !important;
}

.sims-cart .sims-cart__btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen {
  background: linear-gradient(180deg, rgba(224, 43, 191, 0.96), rgba(173, 44, 151, 0.96)) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 24px !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12) !important;
  color: #ffffff !important;
  padding: 1.15rem 1.15rem 1.2rem !important;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__title,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__summary-label,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__summary-value,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen p,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen li,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen span,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen h6,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen a,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen i {
  color: #ffffff !important;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__summary-label,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__summary-value {
  font-size: 0.95rem;
  font-weight: 700;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__item {
  padding: 0.85rem 0;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen .variation-side-cart-text,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__variation,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__toppings {
  color: rgba(255, 255, 255, 0.88) !important;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen {
  filter: none !important;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen .checkout-trash-icon {
  color: #ffffff !important;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen .checkout-back-link,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen .btn-primary {
  background: linear-gradient(135deg, #ffffff, #f7c4e6) !important;
  color: #a31b85 !important;
  border: 0 !important;
  border-radius: 999px !important;
  font-weight: 800;
  min-height: 48px;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen .checkout-back-link:hover,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen .btn-primary:hover,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen .checkout-back-link:focus,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen .btn-primary:focus {
  background: linear-gradient(135deg, #fff6fb, #f3b8e0) !important;
  color: #a31b85 !important;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen textarea.form-control {
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 16px;
  color: #111111;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen {
  background: linear-gradient(180deg, #fff7fb 0%, #f7e6ef 100%) !important;
  border: 1px solid rgba(224, 43, 191, 0.14) !important;
  border-radius: 24px !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08) !important;
  color: #20111a !important;
  padding: 1.2rem 1.15rem 1.1rem !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__heading,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__item-title,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__meta,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__summary,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__empty,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__qty,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen p,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen li,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen span,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen h6,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen a,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen i {
  color: #20111a !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__heading {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 0.9rem !important;
  color: #ffffff !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__item {
  border-bottom-color: rgba(224, 43, 191, 0.16) !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__meta,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__toppings {
  color: rgba(32, 17, 26, 0.72) !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__qty-group {
  min-width: 96px;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__qty-icon {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  filter: none;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__qty-group,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__action:not(.cart-component__remove),
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__action:not(.cart-component__remove) i,
.cart-component-shell--sims-kitchen .cart-component__qty-group,
.cart-component-shell--sims-kitchen .cart-component__action:not(.cart-component__remove),
.cart-component-shell--sims-kitchen .cart-component__action:not(.cart-component__remove) i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__trash-icon {
  color: #111111 !important;
  font-size: 1.1rem;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout {
  background: linear-gradient(135deg, #e02bbf, #c61aa7) !important;
  color: #000000 !important;
  border-radius: 16px !important;
  min-height: 46px;
  box-shadow: 0 14px 26px rgba(224, 43, 191, 0.24);
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--clear {
  background: #f6c7dc !important;
  color: #000000 !important;
  border-radius: 16px !important;
  min-height: 46px;
  box-shadow: none;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout:hover,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout:focus {
  background: linear-gradient(135deg, #ec43c8, #cd1dac) !important;
  color: #000000 !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout *,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout .visually-hidden {
  color: #000000 !important;
  fill: #000000 !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen button.cart-component__button--checkout,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen button.cart-component__button--checkout>span,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen button.cart-component__button--checkout>*:not(.cart-component__spinner) {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  opacity: 1 !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--clear:hover,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--clear:focus {
  background: #f2bdd5 !important;
  color: #000000 !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__spinner {
  color: currentColor;
}

.cart-component-shell--sims-kitchen .cart-component__button--clear,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--clear {
  background: #f6c7dc !important;
  color: #000000 !important;
  border: 0 !important;
  border-radius: 16px !important;
  min-height: 46px;
  box-shadow: none !important;
  text-shadow: none !important;
}

.cart-component-shell--sims-kitchen .cart-component__button--clear:hover,
.cart-component-shell--sims-kitchen .cart-component__button--clear:focus,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--clear:hover,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--clear:focus {
  background: #efb5cf !important;
  color: #000000 !important;
}

.cart-component-shell--sims-kitchen .cart-component__button--clear *,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--clear * {
  color: #000000 !important;
  fill: #000000 !important;
}

.order_confirm_left_box1 .spinner-border {
  border-width: 0.18em;
}

@media (max-width: 992px) {
  .order_confirm_left_box1 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 1rem !important;
    padding: 20px !important;
  }
}

.custom-input {
  padding: 10px 15px;
}

.consent-text {
  margin-left: 10px;
  font-size: 14px;
  color: #fff !important;
}

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

.right-box .catalog-sidebar__panel-title {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.right-box .catalog-sidebar__panel-copy {
  color: #fff;
}

.right-box .catalog-sidebar__button {
  background: #fff;
  color: #e02bbf;
  border: 0;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  text-decoration: none;
}

.right-box .catalog-sidebar__member-link {
  color: #fff !important;
  text-decoration: underline;
}

/* sims-kitchen Theme - Catalog Allergy And Loyalty Cards CSS */
body.theme-sims-kitchen .catalog-sidebar--sims-kitchen .right-box,
.catalog-sidebar--sims-kitchen .right-box.catalog-sidebar__panel {
  background: linear-gradient(180deg, #e02bbf 0%, #c81aa6 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 36px rgba(124, 21, 103, 0.22) !important;
  color: #ffffff !important;
}

body.theme-sims-kitchen .catalog-sidebar--sims-kitchen .right-box .catalog-sidebar__panel-title,
.catalog-sidebar--sims-kitchen .right-box .catalog-sidebar__panel-title {
  color: #ffffff !important;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(82, 13, 69, 0.24);
}

body.theme-sims-kitchen .catalog-sidebar--sims-kitchen .right-box .catalog-sidebar__panel-copy,
.catalog-sidebar--sims-kitchen .right-box .catalog-sidebar__panel-copy {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 500;
}

body.theme-sims-kitchen .catalog-sidebar--sims-kitchen .right-box .catalog-sidebar__member-link,
.catalog-sidebar--sims-kitchen .right-box .catalog-sidebar__member-link {
  color: #ffffff !important;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.theme-sims-kitchen .catalog-sidebar--sims-kitchen .right-box .catalog-sidebar__button,
.catalog-sidebar--sims-kitchen .right-box .catalog-sidebar__button {
  background: #ffffff !important;
  color: #e02bbf !important;
  border: 0 !important;
  box-shadow: 0 12px 24px rgba(82, 13, 69, 0.18) !important;
}

body.theme-sims-kitchen .catalog-sidebar--sims-kitchen .right-box .catalog-sidebar__button:hover,
body.theme-sims-kitchen .catalog-sidebar--sims-kitchen .right-box .catalog-sidebar__button:focus,
.catalog-sidebar--sims-kitchen .right-box .catalog-sidebar__button:hover,
.catalog-sidebar--sims-kitchen .right-box .catalog-sidebar__button:focus {
  background: #fff1fc !important;
  color: #b8139c !important;
}

/* Checkout Page CSS */
.sims-checkout-page {
  background: #fff1f2;
  min-height: 80vh;
}

.sims-checkout-page__title {
  color: #2b1d12;
}

.checkout-note {
  background: #fff;
  border-left: 4px solid #e02bbf;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 0.88rem;
  color: #333;
}

.checkout-note a {
  color: #e02bbf;
  font-weight: 600;
  text-decoration: underline;
}

.checkout-note a:hover {
  color: #c81aa6;
  text-decoration: none;
}

.checkout-hidden {
  display: none;
}

.flash-blink {
  background-color: #ffcc00;
  color: black;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  animation: flash-bg 1s linear infinite;
}

@keyframes flash-bg {

  0%,
  100% {
    background-color: #94a4d7;
  }

  50% {
    background-color: #ffe680;
  }
}

.bogof-backdrop {
  backdrop-filter: blur(3px);
  z-index: 1055;
}

.bogof-modal {
  border-radius: 18px;
  overflow: hidden;
  animation: scaleFade 0.35s ease;
}

.bogof-header {
  background: linear-gradient(135deg, #ff6a00, #ff9500);
  color: #fff;
  border-bottom: none;
}

.bogof-text {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  padding: 10px 15px;
}

.bogof-btn {
  background: linear-gradient(135deg, #ff6a00, #ff9500);
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.bogof-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.4);
}

@keyframes scaleFade {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

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

.checkout-toppings-list {
  font-size: 12px;
}

.checkout-trash-icon {
  font-size: 18px;
}

.checkout-trash-icon--large {
  font-size: 22px;
}

.sims-checkout-back-link {
  background: #fff;
  color: #e02bbf;
  border: 0;
  border-radius: 6px;
  padding: 6px;
  font-weight: 700;
  text-decoration: none;
}

.custom-tooltip-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.custom-tooltip-box {
  display: none;
  position: absolute;
  top: 50%;
  left: 130%;
  transform: translateY(-50%);
  width: 300px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 0;
  font-size: 14px;
  color: #000;
}

.custom-tooltip-wrapper:hover .custom-tooltip-box {
  display: block;
}

.custom-tooltip-box .tooltip-header {
  background-color: #7e9e59;
  color: white;
  padding: 8px 10px;
  font-weight: bold;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.custom-tooltip-box .tooltip-body {
  padding: 10px;
  background: white;
  color: #000;
  text-transform: none !important;
}

.custom-tooltip-box .tooltip-arrow {
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid #7e9e59;
}

.sims-checkout-payment-options {
  border-radius: 0;
}

.checkout-ladder-offer {
  font-size: 0.9rem;
}

.checkout-ladder-offer__text {
  line-height: 1.2;
}

.checkout-ladder-offer__icon {
  font-size: 1.2rem;
  color: #007bff;
}

.checkout-payment-card {
  cursor: pointer;
  background-color: #f8f9fa;
  color: #000;
  border: 2px solid #ced4da;
}

.checkout-payment-card--active {
  background-color: #28a745;
  color: #fff;
  border-color: #28a745;
}

.checkout-payment-card__image {
  width: 100px;
  height: 70px;
}

.sims-checkout-note-box {
  border-left: 4px solid #ecb2e2;
  color: white;
  padding-left: 10px;
}

.sims-checkout-note-box__header {
  border-left: 4px solid #e065cc;
  color: white;
  padding-left: 10px;
}

.note-body {
  padding: 12px;
}

.note-textarea {
  border-radius: 4px;
  font-size: 14px;
  resize: none;
  border: 1px solid #ddd;
}

.note-textarea:focus {
  box-shadow: 0 0 0 0.15rem rgba(255, 193, 7, 0.4);
  border-color: #ffc107;
}

.note-help {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #666;
}

.checkout-form-alert {
  font-size: 1.1rem;
}

.checkout-terms-input {
  width: 16px;
  height: 16px;
}

.checkout-place-order-btn {
  background-color: #ffffff;
}

.checkout-place-order-btn__label {
  font-size: 1rem;
}

.checkout-loyalty-copy,
.checkout-loyalty-caption {
  font-size: 12px;
  text-transform: none;
}

.sims-loyalty-box {
  background-color: #e02bbf;
}

.sims-loyalty-login-link {
  background: #fff;
  color: #e02bbf;
  border: 0;
  border-radius: 6px;
  padding: 6px;
  font-weight: 700;
  text-decoration: none;
}

.sims-coupon-btn {
  background-color: #ffffff;
  color: #333;
  border: 1px solid #ccc;
}

.sims-coupon-remove-btn {
  background-color: #dc3545 !important;
  color: #fff !important;
  border: 1px solid #dc3545 !important;
}

.sims-coupon-remove-btn:hover,
.sims-coupon-remove-btn:focus,
.sims-coupon-remove-btn:active {
  background-color: #bb2d3b !important;
  color: #fff !important;
  border-color: #bb2d3b !important;
  box-shadow: none !important;
}

.sims-coupon-btn--disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.checkout-coupon-card__shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, #ffffff22, transparent);
  pointer-events: none;
}

.checkout-coupon-card--0 {
  background: linear-gradient(135deg, #e84e4f 0%, #00000033 100%);
}

.checkout-coupon-card--1 {
  background: linear-gradient(135deg, #007bff 0%, #00000033 100%);
}

.checkout-coupon-card--2 {
  background: linear-gradient(135deg, #28a745 0%, #00000033 100%);
}

.checkout-coupon-card--3 {
  background: linear-gradient(135deg, #ff9800 0%, #00000033 100%);
}

.checkout-coupon-card__pill {
  font-size: 1.1rem;
  min-width: 130px;
  text-align: center;
}

.checkout-coupon-card__pill--code {
  letter-spacing: 1px;
}

.checkout-coupon-card__meta {
  opacity: 0.9;
}

.checkout-coupon-card__terms {
  opacity: 0.9;
  font-size: 0.9rem;
}

/* sims-kitchen Theme - Checkout Coupon Card Wrapping CSS */
body.theme-sims-kitchen .checkout-coupon-card--sims-kitchen,
.checkout-coupon-card--sims-kitchen {
  height: auto !important;
  min-height: 260px;
  overflow: visible !important;
  padding-bottom: 2rem !important;
}

body.theme-sims-kitchen .checkout-coupon-card--sims-kitchen .checkout-coupon-card__meta,
body.theme-sims-kitchen .checkout-coupon-card--sims-kitchen .checkout-coupon-card__terms,
.checkout-coupon-card--sims-kitchen .checkout-coupon-card__meta,
.checkout-coupon-card--sims-kitchen .checkout-coupon-card__terms {
  width: 100%;
  max-width: 100%;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: normal;
  line-height: 1.35;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

body.theme-sims-kitchen .checkout-coupon-card--sims-kitchen .checkout-coupon-card__terms strong,
.checkout-coupon-card--sims-kitchen .checkout-coupon-card__terms strong {
  display: inline;
  white-space: normal;
}

body.theme-sims-kitchen .catalog-sidebar--sims-kitchen .catalog-sidebar__coupon-card,
.catalog-sidebar--sims-kitchen .catalog-sidebar__coupon-card {
  height: auto;
  min-height: 0;
  overflow: visible;
  padding-bottom: 1.6rem;
}

body.theme-sims-kitchen .catalog-sidebar--sims-kitchen .catalog-sidebar__coupon-meta,
body.theme-sims-kitchen .catalog-sidebar--sims-kitchen .catalog-sidebar__coupon-terms,
.catalog-sidebar--sims-kitchen .catalog-sidebar__coupon-meta,
.catalog-sidebar--sims-kitchen .catalog-sidebar__coupon-terms {
  width: 100%;
  white-space: normal !important;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

/* Checkout UI consistency fixes */
.note-box,
.checkout-note-box,
.sims-checkout-note-box {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
}

/* .note-header,
.checkout-note-box__header,
.sims-checkout-note-box__header {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.92), rgba(68, 68, 68, 0.88));
} */

.note-body {
  padding: 14px;
  background: #ffffff;
}

.note-textarea,
.checkout-note-box textarea,
.sims-checkout-note-box textarea {
  min-height: 110px;
  background: #ffffff !important;
  color: #1f1f1f !important;
  border: 1px solid #d7d7d7 !important;
  box-shadow: none !important;
}

.note-help,
.checkout-note-help,
.checkout-note-help.text-white {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.6;
  text-transform: none;
  color: #666666 !important;
}

.checkout-payment-shell h5,
.checkout-payment-shell label,
.checkout-payment-shell .form-label,
.checkout-payment-shell .invalid-feedback,
.checkout-payment-shell .text-white {
  color: #ffffff !important;
}

.checkout-place-order-btn,
.checkout-back-link,
.checkout-loyalty-login-link,
.sims-checkout-back-link,
.sims-loyalty-login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
}

.checkout-place-order-btn,
.checkout-back-link,
.checkout-back-link--dark,
.checkout-back-link--lavender,
.sims-checkout-back-link {
  background: #ffffff !important;
}

.checkout-back-link,
.checkout-back-link--dark,
.sims-checkout-back-link {
  color: #111111 !important;
}

.checkout-terms-input,
input#acceptTerms.form-check-input,
.form-check input[type="checkbox"]#acceptTerms {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  margin-top: 0.2rem !important;
  border: 1px solid #9b9b9b !important;
  background: #ffffff !important;
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  accent-color: #111111;
}

input#acceptTerms+.form-check-label,
.checkout-terms-input+.form-check-label {
  margin: 0;
  line-height: 1.5;
}

/* Sims Kitchen checkout restore */
.sims-checkout-note-box {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-left: 6px solid #ff9be7 !important;
  border-radius: 8px !important;
  overflow: hidden;
}

.sims-checkout-note-box__header {
  background: linear-gradient(135deg, #ff71d8, #e02bbf) !important;
  color: #ffffff !important;
  border-left: 0 !important;
  padding: 12px 16px !important;
}

.sims-checkout-note-box .note-body {
  background: #ffffff !important;
}

.sims-checkout-note-box .checkout-note-help,
.sims-checkout-note-box .note-help {
  color: #666666 !important;
}

.checkout-place-order-btn,
.checkout-place-order-btn:hover,
.checkout-place-order-btn:focus,
.checkout-place-order-btn:active {
  background: #ffffff !important;
  border: 2px solid #e02bbf !important;
  color: #111111 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.checkout-place-order-btn,
.checkout-place-order-btn *,
.checkout-place-order-btn__label,
.checkout-place-order-btn__label:hover,
.checkout-place-order-btn__label:focus {
  color: #111111 !important;
  fill: #111111 !important;
}

.checkout-place-order-btn__label {
  color: #000000 !important;
}

.sims-checkout-note-box,
.note-box.sims-checkout-note-box {
  background: #ffffff !important;
  border: 1px solid rgba(224, 43, 191, 0.28) !important;
  border-left: 6px solid #ff57d0 !important;
}

.sims-checkout-note-box__header,
.note-header.sims-checkout-note-box__header,
.checkout-note-box__header.sims-checkout-note-box__header {
  background: linear-gradient(135deg, #ff57d0, #e02bbf) !important;
  color: #ffffff !important;
}

/* Theme checkout restore */
.checkout-place-order-btn,
.checkout-place-order-btn:hover,
.checkout-place-order-btn:focus,
.checkout-place-order-btn:active,
.checkout-back-link,
.checkout-back-link:hover,
.checkout-back-link:focus,
.checkout-back-link:active,
.checkout-back-link--dark,
.checkout-back-link--dark:hover,
.checkout-back-link--dark:focus,
.checkout-back-link--dark:active,
.checkout-back-link--lavender,
.checkout-back-link--lavender:hover,
.checkout-back-link--lavender:focus,
.checkout-back-link--lavender:active {
  background: #ffffff !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.checkout-loyalty-login-link,
.checkout-loyalty-login-link:hover,
.checkout-loyalty-login-link:focus,
.checkout-loyalty-login-link:active {
  background: #2f7d32 !important;
  color: #ffffff !important;
  border-color: #2f7d32 !important;
  box-shadow: none !important;
  transform: none !important;
  text-decoration: none !important;
}

/* Use Loyalty Points Component CSS */
.loyalty-points__panel--sims-kitchen,
.loyalty-points__panel--sims-kitchen.checkout-loyalty-shell,
.loyalty-points__panel--sims-kitchen.checkout-loyalty-card,
.loyalty-points__panel--sims-kitchen.order_confirm_left_box4 {
  background: #e02bbf !important;
  background-color: #e02bbf !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 87, 208, 0.34) !important;
  box-shadow: 0 18px 34px rgba(224, 43, 191, 0.24) !important;
  border-radius: 0.5rem !important;
}

.checkout-loyalty-shell .checkout-loyalty__title,
.checkout-loyalty-card .checkout-loyalty__title,
.checkout-loyalty-shell h5,
.checkout-loyalty-card h5 {
  color: #ffffff !important;
}

.checkout-loyalty-shell .checkout-loyalty-copy,
.checkout-loyalty-card .checkout-loyalty-copy,
.checkout-loyalty-shell .checkout-loyalty-caption,
.checkout-loyalty-card .checkout-loyalty-caption,
.checkout-loyalty-shell .loyalty-points__copy,
.checkout-loyalty-card .loyalty-points__copy,
.checkout-loyalty-shell .loyalty-points__label,
.checkout-loyalty-card .loyalty-points__label,
.checkout-loyalty-shell .loyalty-points__equals,
.checkout-loyalty-card .loyalty-points__equals,
.checkout-loyalty-shell .loyalty-points__value,
.checkout-loyalty-card .loyalty-points__value {
  color: #ffffff !important;
}

.checkout-loyalty-shell .checkout-loyalty-stat-label,
.checkout-loyalty-card .checkout-loyalty-stat-label {
  background-color: #ff57d0 !important;
  color: #ffffff !important;
}

.checkout-loyalty-shell .checkout-loyalty-input,
.checkout-loyalty-card .checkout-loyalty-input,
.checkout-loyalty-shell .loyalty-points__input,
.checkout-loyalty-card .loyalty-points__input {
  background: #ffffff !important;
  color: #2d0b25 !important;
  border: 1px solid rgba(224, 43, 191, 0.22) !important;
  border-radius: 14px !important;
  box-shadow: none !important;
}

.checkout-loyalty-shell .checkout-loyalty-action-btn,
.checkout-loyalty-card .checkout-loyalty-action-btn,
.checkout-loyalty-shell .loyalty-points__button,
.checkout-loyalty-card .loyalty-points__button {
  border-radius: 14px !important;
  font-weight: 800 !important;
}

.checkout-loyalty-shell .loyalty-points__button--apply,
.checkout-loyalty-card .loyalty-points__button--apply,
.checkout-loyalty-shell .checkout-loyalty-action-btn.btn-primary,
.checkout-loyalty-card .checkout-loyalty-action-btn.btn-primary {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #111111 !important;
}

.checkout-loyalty-shell .loyalty-points__button--remove,
.checkout-loyalty-card .loyalty-points__button--remove,
.checkout-loyalty-shell .checkout-loyalty-action-btn.btn-danger,
.checkout-loyalty-card .checkout-loyalty-action-btn.btn-danger {
  background: #ffffff !important;
  border-color: #e02bbf !important;
  color: #e02bbf !important;
}

.checkout-loyalty-shell .loyalty-points__button--login,
.checkout-loyalty-card .loyalty-points__button--login,
.checkout-loyalty-login-link {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #2d0b25 !important;
  border: 1px solid #ff57d0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.checkout-loyalty-shell .loyalty-points__button--login:hover,
.checkout-loyalty-card .loyalty-points__button--login:hover,
.checkout-loyalty-login-link:hover,
.checkout-loyalty-shell .loyalty-points__button--login:focus,
.checkout-loyalty-card .loyalty-points__button--login:focus,
.checkout-loyalty-login-link:focus,
.checkout-loyalty-shell .loyalty-points__button--login:active,
.checkout-loyalty-card .loyalty-points__button--login:active,
.checkout-loyalty-login-link:active {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #2d0b25 !important;
  border-color: #ff57d0 !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Final Sims Kitchen checkout overrides */
.sims-checkout-note-box,
.note-box.sims-checkout-note-box,
.checkout-note-box.sims-checkout-note-box {
  background: #ffffff !important;
  border: 1px solid rgba(224, 43, 191, 0.28) !important;
  border-left: 6px solid #ff57d0 !important;
}

.sims-checkout-note-box__header,
.note-header.sims-checkout-note-box__header,
.checkout-note-box__header.sims-checkout-note-box__header {
  background: linear-gradient(135deg, #ff57d0, #e02bbf) !important;
  color: #ffffff !important;
}

button.checkout-place-order-btn,
button.checkout-place-order-btn:hover,
button.checkout-place-order-btn:focus,
button.checkout-place-order-btn:active,
.btn.checkout-place-order-btn,
.btn.checkout-place-order-btn:hover,
.btn.checkout-place-order-btn:focus,
.btn.checkout-place-order-btn:active,
.place-order.checkout-place-order-btn,
.place-order.checkout-place-order-btn:hover,
.place-order.checkout-place-order-btn:focus,
.place-order.checkout-place-order-btn:active,
.checkout-place-order-btn,
.checkout-place-order-btn:hover,
.checkout-place-order-btn:focus,
.checkout-place-order-btn:active {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #111111 !important;
  border-color: #e02bbf !important;
}

.checkout-place-order-btn,
.checkout-place-order-btn *,
.checkout-place-order-btn__label,
.checkout-place-order-btn__label:hover,
.checkout-place-order-btn__label:focus,
.checkout-place-order-btn .spinner-border,
.checkout-place-order-btn .visually-hidden {
  color: #111111 !important;
  border-color: #111111 !important;
  fill: #111111 !important;
}

.checkout-note-box,
.note-box.checkout-note-box {
  border-left: 6px solid #ff57d0 !important;
}

.checkout-note-box__header,
.note-header.checkout-note-box__header {
  background: linear-gradient(135deg, #ff71d8, #e02bbf) !important;
  color: #ffffff !important;
}

body.theme-sims-kitchen .checkout-note-box__header,
body.theme-sims-kitchen .note-header.checkout-note-box__header {
  background: linear-gradient(135deg, #ff71d8, #e02bbf) !important;
  color: #ffffff !important;
}

body.theme-sims-kitchen .note-box.checkout-note-box {
  border-left: 6px solid #ff57d0 !important;
}

body.theme-sims-kitchen .note-header,
body.theme-sims-kitchen .checkout-note-box__header,
body.theme-sims-kitchen .note-header.checkout-note-box__header {
  background-image: linear-gradient(135deg, #ff71d8, #e02bbf) !important;
  background-color: #ff71d8 !important;
  color: #ffffff !important;
}

body.theme-sims-kitchen .checkout-note-box__header.checkout-note-box__header--pink,
body.theme-sims-kitchen .note-header.checkout-note-box__header.checkout-note-box__header--pink {
  background: linear-gradient(135deg, #ff71d8, #e02bbf) !important;
  background-color: #ff71d8 !important;
  color: #ffffff !important;
}

body.theme-sims-kitchen .checkout-note-box__header {
  background-size: 200% 200% !important;
}

/* gift voucher css */
.gift-voucher-box {
  --gv-bg: #e02bbf;
  --gv-color: #ffffff;
  --gv-border: rgba(224, 43, 191, .35);
  --gv-radius: 12px;
  --gv-input-bg: #ffffff;
  --gv-input-color: #111111;
  --gv-input-border: rgba(0, 0, 0, .15);
  --gv-btn-bg: #ffffff;
  --gv-btn-color: #e02bbf;
  --gv-btn-border: #ffffff;
  --gv-btn-hover: #fdf2fb;
  --gv-status-bg: rgba(255, 255, 255, .16);
  --gv-status-border: rgba(255, 255, 255, .28);
  width: 100%;
  background: var(--gv-bg);
  color: var(--gv-color);
  border: 1px solid var(--gv-border);
  border-radius: var(--gv-radius);
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .12);
}

.gift-voucher-box__body {
  padding: 1.5rem;
}

.gift-voucher-box__title {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: inherit;
}

.gift-voucher-box__form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.gift-voucher-box__input,
.gift-voucher-box__button {
  min-height: 46px;
  border-radius: 0 !important;
}

.gift-voucher-box__input {
  background: var(--gv-input-bg) !important;
  color: var(--gv-input-color) !important;
  border: 1px solid var(--gv-input-border) !important;
  box-shadow: none !important;
  padding: .75rem 1rem;
  text-transform: none;
}

.gift-voucher-box__input::placeholder {
  color: rgba(31, 31, 31, .7);
}

.gift-voucher-box__input:focus {
  border-color: var(--gv-btn-border) !important;
  box-shadow: none !important;
}

.gift-voucher-box__status {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: .75rem;
  padding: .875rem 1rem;
  background: var(--gv-status-bg);
  border: 1px solid var(--gv-status-border);
  border-radius: var(--gv-radius);
}

.gift-voucher-box__status-label,
.gift-voucher-box__meta {
  display: block;
  color: inherit;
  text-transform: none;
}

.gift-voucher-box__status-label {
  font-weight: 700;
}

.gift-voucher-box__meta {
  font-size: .92rem;
}

.gift-voucher-box__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: .75rem 1rem;
  background: var(--gv-btn-bg) !important;
  color: var(--gv-btn-color) !important;
  border: 1px solid var(--gv-btn-border) !important;
  font-weight: 700;
  text-transform: none;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.gift-voucher-box__button:hover,
.gift-voucher-box__button:focus {
  background: var(--gv-btn-hover) !important;
  color: var(--gv-btn-color) !important;
  border-color: var(--gv-btn-hover) !important;
  box-shadow: none !important;
}

.gift-voucher-box__button:disabled {
  opacity: .65;
  cursor: not-allowed;
}


/* End migrated checkout styles for sims-kitchen */

/* Cart component theme overrides */
.cart-component-shell--sims-kitchen {
  --cart-shell-bg: #E02BBF;
  --cart-shell-text: #ffffff;
  --cart-shell-muted: rgba(255, 255, 255, 0.84);
  --cart-shell-border: rgba(255, 255, 255, 0.18);
  --cart-heading-color: #ffffff;
  --cart-button-primary-bg: #ffffff;
  --cart-button-primary-text: #000000;
  --cart-button-secondary-bg: #f6c7dc;
  --cart-button-secondary-text: #000000;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen {
  background: linear-gradient(180deg, rgba(224, 43, 191, 0.98), rgba(194, 35, 165, 0.98)) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 45px rgba(124, 21, 103, 0.14) !important;
  color: #ffffff !important;
  overflow: hidden;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__heading,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__item-title,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__meta,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__summary,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__empty,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__qty,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__toppings,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__action,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__trash-icon {
  color: #ffffff !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__heading {
  font-size: 1.55rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__item {
  border-bottom-color: rgba(255, 255, 255, 0.18) !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__meta,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__toppings {
  color: rgba(255, 255, 255, 0.84) !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button {
  border-radius: 14px !important;
  font-weight: 700 !important;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12);
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout {
  background: #ffffff !important;
  color: #000000 !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--clear {
  background: #f6c7dc !important;
  color: #000000 !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout *,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--clear * {
  color: #000000 !important;
  fill: #000000 !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout .cart-component__spinner,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--clear .cart-component__spinner {
  color: currentColor !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__heading {
  color: #ffffff !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout:hover,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout:focus,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout:active {
  color: #000000 !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout *,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout .visually-hidden {
  color: #000000 !important;
  fill: #000000 !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout span,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout .spinner-border,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout .spinner-border span {
  color: #000000 !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__heading,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__heading * {
  color: #ffffff !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__heading,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__heading span,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__heading strong,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__heading i {
  color: #ffffff !important;
  fill: #ffffff !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout *,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout span,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout .visually-hidden {
  color: #000000 !important;
  fill: #000000 !important;
}

/* Checkout Apply Coupon CSS */
.checkout-coupon-btn,
.checkout-coupon-btn-apply,
.checkout-coupon-btn-remove {
  min-height: 48px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.checkout-coupon-btn:hover,
.checkout-coupon-btn-apply:hover,
.checkout-coupon-btn-remove:hover {
  transform: translateY(-1px);
}

.checkout-coupon-btn-apply {
  background: #e02bbf;
  border: 1px solid #e02bbf;
  color: #ffffff;
}

.checkout-coupon-btn-remove {
  background: transparent;
  border: 1px solid #e02bbf;
  color: #e02bbf;
}

/* Checkout Apply Coupon CSS */
.checkout-apply-coupon--sims-kitchen .checkout-apply-coupon__panel {
  background: linear-gradient(180deg, #ff71d8 0%, #e02bbf 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 24px !important;
  box-shadow: 0 18px 36px rgba(124, 21, 103, 0.18) !important;
  color: #ffffff !important;
}

.checkout-apply-coupon--sims-kitchen .checkout-apply-coupon__title {
  color: #ffffff !important;
}

.checkout-apply-coupon--sims-kitchen .checkout-apply-coupon__input {
  background: rgba(255, 255, 255, 0.98) !important;
  color: #171717 !important;
  border: 1px solid rgba(255, 255, 255, 0.36) !important;
  border-radius: 14px !important;
  box-shadow: none !important;
}

.checkout-apply-coupon--sims-kitchen .checkout-apply-coupon__input::placeholder {
  color: rgba(23, 23, 23, 0.56);
}

.checkout-apply-coupon--sims-kitchen .checkout-coupon-btn-apply {
  background: #ffffff !important;
  border: 1px solid #ffffff !important;
  color: #111111 !important;
  font-weight: 700 !important;
}

.checkout-apply-coupon--sims-kitchen .checkout-coupon-btn-remove {
  background: #f6c7dc !important;
  border: 1px solid #f6c7dc !important;
  color: #111111 !important;
  font-weight: 700 !important;
}

.checkout-apply-coupon--sims-kitchen .checkout-apply-coupon__btn {
  border-radius: 14px !important;
}

/* sims-kitchen Theme - Layout CSS */
html,
body.theme-sims-kitchen {
  overflow-x: hidden;
  max-width: 100%;
}

body.theme-sims-kitchen {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

body.theme-sims-kitchen [x-cloak] {
  display: none !important;
}

body.theme-sims-kitchen .custom-translator {
  top: 70px;
}

@font-face {
  font-display: swap;
}

@media (max-width: 640px) {
  body.theme-sims-kitchen .custom-translator {
    top: 70px;
  }
}

/* sims-kitchen Theme - Flash Popup CSS */
body.theme-sims-kitchen .flash-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

body.theme-sims-kitchen .flash-box {
  background: #fff;
  padding: 30px 28px 35px;
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  border-top: 6px solid #dc3545;
}

body.theme-sims-kitchen .icon-wrapper {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: #fdecea;
  color: #dc3545;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.theme-sims-kitchen .flash-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

body.theme-sims-kitchen .flash-box p {
  font-size: 15.5px;
  margin-bottom: 22px;
  color: #555;
}

body.theme-sims-kitchen .popup-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

body.theme-sims-kitchen .preorder-btn {
  background: #198754;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.25s;
}

body.theme-sims-kitchen .preorder-btn:hover {
  background: #146c43;
}

body.theme-sims-kitchen .close-btn {
  background: #dc3545;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

body.theme-sims-kitchen .close-btn:hover {
  background: #bb2d3b;
}

/* sims-kitchen Theme - Header CSS */
body.theme-sims-kitchen .sk-header-nav .container {
  gap: 0.75rem;
}

body.theme-sims-kitchen .sk-navbar-toggler {
  background: #f8f9fa;
}

body.theme-sims-kitchen .sk-login-link {
  background-color: #e02bbf;
  color: #fff !important;
}

body.theme-sims-kitchen .sk-login-link i {
  color: #fff;
}

body.theme-sims-kitchen .sk-register-link {
  border: 2px solid #e02bbf;
  background: #fff;
  color: #e02bbf !important;
}

body.theme-sims-kitchen #postcodeModal .modal-title,
body.theme-sims-kitchen #changeOrderTypeModal .modal-title {
  color: #fff !important;
}

body.theme-sims-kitchen #postcodeModal .modal-body,
body.theme-sims-kitchen #postcodeModal .form-label,
body.theme-sims-kitchen #postcodeModal .modal-body label,
body.theme-sims-kitchen #changeOrderTypeModal .modal-body,
body.theme-sims-kitchen #changeOrderTypeModal .modal-body p,
body.theme-sims-kitchen #changeOrderTypeModal #err_msg {
  color: #212529 !important;
}

body.theme-sims-kitchen .sk-header-links .nav-link,
body.theme-sims-kitchen .sk-header-actions .nav-link {
  white-space: nowrap;
}

body.theme-sims-kitchen .sk-header-actions {
  flex-wrap: wrap;
}

body.theme-sims-kitchen .food-hygiene-badge {
  position: relative;
  background: linear-gradient(135deg, #4f7f34 0%, #8fbf42 48%, #5f8f28 100%);
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  border: 2px solid #ffffff;
  box-shadow: 0 6px 18px rgba(79, 127, 52, 0.28);
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border-radius: 10px;
  min-width: 150px;
  max-width: 180px;
  text-align: center;
  margin: 0 0.5rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.theme-sims-kitchen .food-hygiene-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(79, 127, 52, 0.36);
}

body.theme-sims-kitchen .food-hygiene-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  pointer-events: none;
}

body.theme-sims-kitchen .food-hygiene-title {
  position: relative;
  z-index: 1;
  font-weight: 800;
  font-size: 0.62rem;
  line-height: 1.1;
  margin-bottom: 0.28rem;
  color: #ffffff !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.theme-sims-kitchen .rating-numbers {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 0.12rem;
  margin-bottom: 0.25rem;
}

body.theme-sims-kitchen .rating-circle {
  width: 1.08rem;
  height: 1.08rem;
  border-radius: 50%;
  background-color: #ffffff;
  color: #4f7f34;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  border: 1px solid rgba(47, 93, 58, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

body.theme-sims-kitchen .rating-circle.active {
  background-color: #173f22;
  color: #ffffff;
  border-color: #ffffff;
  transform: scale(1.12);
}

body.theme-sims-kitchen .rating-description {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 0.55rem;
  line-height: 1;
  font-weight: 700;
  color: #ffffff !important;
  font-style: italic;
}

body.theme-sims-kitchen .sk-alert-banner {
  position: absolute;
  top: 120px;
  z-index: 1;
}

@media (max-width: 1199.98px) {
  body.theme-sims-kitchen .sk-header-nav .navbar-brand {
    margin-right: 0;
  }

  body.theme-sims-kitchen .sk-header-nav .navbar-collapse {
    width: 100%;
    margin-top: 0.75rem;
  }

  body.theme-sims-kitchen .sk-header-links,
  body.theme-sims-kitchen .sk-header-actions {
    width: 100%;
    align-items: stretch !important;
  }

  body.theme-sims-kitchen .sk-header-actions {
    margin-top: 0.5rem;
  }

  body.theme-sims-kitchen .sk-header-actions .nav-item {
    width: 100%;
  }

  body.theme-sims-kitchen .sk-header-actions .nav-link,
  body.theme-sims-kitchen .sk-header-actions .food-hygiene-badge,
  body.theme-sims-kitchen .sk-header-actions .livewire-cart-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  body.theme-sims-kitchen .sk-header-actions .food-hygiene-badge {
    flex-direction: column;
  }

  body.theme-sims-kitchen .sk-header-links .dropdown-menu {
    position: static;
    float: none;
  }

  body.theme-sims-kitchen .food-hygiene-badge {
    max-width: 100%;
    margin: 0;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  body.theme-sims-kitchen .sk-header-nav .container {
    gap: 0.5rem;
  }

  body.theme-sims-kitchen .sk-header-links {
    gap: 0.25rem;
  }

  body.theme-sims-kitchen .sk-header-links .nav-link {
    font-size: 0.88rem;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }

  body.theme-sims-kitchen .sk-header-actions .nav-link {
    font-size: 0.88rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  body.theme-sims-kitchen .food-hygiene-badge {
    max-width: 150px;
    margin: 0 0 0 0.25rem;
  }

  body.theme-sims-kitchen .sk-logo {
    width: 120px;
    height: auto;
  }
}

/* sims-kitchen Theme - Catalog Page CSS */
body.theme-sims-kitchen .sk-catalog-heading {
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;
}

body.theme-sims-kitchen .sk-menu-toggle-icon {
  cursor: pointer;
  font-size: 20px;
}

body.theme-sims-kitchen .sk-catalog-title {
  font-weight: 700;
  font-size: 17px;
}

body.theme-sims-kitchen .sk-search {
  display: flex;
  align-items: center;
  gap: 0;
  width: 220px;
  height: 32px;
  padding: 0;
  background: #ffffff;
  border: 2px solid #8f177d;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(82, 13, 69, 0.14);
  overflow: hidden;
}

body.theme-sims-kitchen .sk-search-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  border-radius: 0;
  border: 0;
  outline: 0;
  padding: 4px 9px;
  width: 100%;
  font-size: 14px;
  color: #2b1d12;
  background: transparent;
}

body.theme-sims-kitchen .sk-search-input::placeholder {
  color: rgba(43, 29, 18, 0.6);
}

body.theme-sims-kitchen .sk-search-btn {
  background: #e02bbf;
  color: #ffffff;
  border: 0;
  border-left: 2px solid #8f177d;
  border-radius: 0;
  width: 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

body.theme-sims-kitchen .sk-search-btn:hover,
body.theme-sims-kitchen .sk-search-btn:focus {
  background: #b8139c;
  transform: none;
}

body.theme-sims-kitchen .sk-search-btn i {
  color: inherit;
  font-size: inherit;
  line-height: 1;
}

body.theme-sims-kitchen .left-panel .sk-search,
.sk-header-nav~* .left-panel .sk-search {
  width: 220px;
  height: 32px;
  border: 2px solid #8f177d;
  border-radius: 4px;
  background: #ffffff;
}

body.theme-sims-kitchen .left-panel .sk-search-input,
.sk-header-nav~* .left-panel .sk-search-input {
  height: 100%;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 4px 9px !important;
  font-size: 14px;
  box-shadow: none !important;
}

body.theme-sims-kitchen .left-panel .sk-search-btn,
.sk-header-nav~* .left-panel .sk-search-btn {
  width: 32px;
  height: 100%;
  border: 0 !important;
  border-left: 2px solid #8f177d !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  color: #111111 !important;
  box-shadow: none !important;
}

body.theme-sims-kitchen .left-panel .sk-search-btn:hover,
body.theme-sims-kitchen .left-panel .sk-search-btn:focus,
.sk-header-nav~* .left-panel .sk-search-btn:hover,
.sk-header-nav~* .left-panel .sk-search-btn:focus {
  background: #f6c9ec !important;
  color: #111111 !important;
}

body.theme-sims-kitchen .sk-search-suggestions {
  z-index: 3000;
  max-height: 220px;
  overflow-y: auto;
  top: 100%;
  left: 0;
}

body.theme-sims-kitchen .sk-search-suggestion,
body.theme-sims-kitchen .sk-product-image-zoom,
body.theme-sims-kitchen .sk-favourite-icon {
  cursor: pointer;
}

body.theme-sims-kitchen .sk-search-suggestion {
  font-size: 14px;
}

body.theme-sims-kitchen .sk-product-placeholder {
  width: 60px;
  height: 60px;
  background: #f6c9ec;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.theme-sims-kitchen .sk-product-placeholder-icon {
  color: #e02bbf;
  font-size: 20px;
}

body.theme-sims-kitchen .sk-product-title {
  font-size: 14px;
}

body.theme-sims-kitchen .sk-food-icon {
  width: 16px;
  height: 16px;
}

body.theme-sims-kitchen .sk-product-description {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 2px;
}

body.theme-sims-kitchen .sk-product-actions {
  flex-shrink: 0;
}

body.theme-sims-kitchen .sk-favourite-active {
  color: #fff;
}

body.theme-sims-kitchen .sk-favourite-muted {
  color: rgba(255, 255, 255, 0.5);
}

body.theme-sims-kitchen .sk-empty-products {
  opacity: 0.8;
}

body.theme-sims-kitchen .sk-cat-active {
  background: #b8139c !important;
  color: #fff !important;
}

body.theme-sims-kitchen .sk-image-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

body.theme-sims-kitchen .sk-image-modal.is-open {
  display: flex;
}

body.theme-sims-kitchen .sk-image-modal-dialog {
  position: relative;
  background: linear-gradient(135deg, #e02bbf, #b8139c);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  max-width: 520px;
  width: 92vw;
}

body.theme-sims-kitchen .sk-image-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 9999;
  background: rgba(15, 15, 15, 0.5);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: #fff;
}

body.theme-sims-kitchen .sk-image-modal-img {
  width: 100%;
  max-height: 65vh;
  border-radius: 12px;
  display: block;
  object-fit: contain;
  background: #fff1fc;
}

body.theme-sims-kitchen .sk-image-modal-title {
  text-align: center;
  color: #fff;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 700;
}

body.theme-sims-kitchen .flashy-banner,
body.theme-sims-kitchen #goog-gt-tt,
body.theme-sims-kitchen .goog-te-balloon-frame,
body.theme-sims-kitchen .goog-te-spinner-pos,
body.theme-sims-kitchen .VIpgJd-ZVi9od-aZ2wEe-OiiCO {
  display: none !important;
}

@media (max-width: 575.98px) {
  body.theme-sims-kitchen .sk-catalog-heading {
    align-items: stretch !important;
    flex-direction: column;
    gap: 0.65rem;
  }

  body.theme-sims-kitchen .sk-search {
    width: 100%;
    height: 34px;
  }

  body.theme-sims-kitchen .sk-search-btn {
    width: 30px;
    height: 30px;
  }
}

/* sims-kitchen Theme - Product Item And Toppings Modal CSS */
body.theme-sims-kitchen .qty-input::-webkit-inner-spin-button,
body.theme-sims-kitchen .qty-input::-webkit-outer-spin-button {
  opacity: 1;
}

body.theme-sims-kitchen .qty-input {
  padding-right: 4px;
}

body.theme-sims-kitchen .qty-add-group .form-control {
  border-right: 0;
}

body.theme-sims-kitchen .qty-add-group .btn {
  border-left: 0;
}

body.theme-sims-kitchen .variation-row .variation-info {
  transition: color 0.2s ease;
}

body.theme-sims-kitchen .variation-row:hover .variation-info {
  color: #000000;
}

body.theme-sims-kitchen .variation-row:hover {
  border-radius: 6px;
}

body.theme-sims-kitchen .sk-product-item-actions {
  z-index: 1;
  position: relative;
}

body.theme-sims-kitchen .sk-variation-qty-input {
  width: 55px;
  height: 32px;
  border-radius: 4px 0 0 4px;
}

body.theme-sims-kitchen .sk-variation-add-btn {
  height: 32px;
  background-color: #e02bbf;
  border-radius: 0 4px 4px 0;
}

body.theme-sims-kitchen .sk-spinner-sm {
  width: 14px;
  height: 14px;
}

body.theme-sims-kitchen .sk-product-price {
  font-size: 30px;
}

body.theme-sims-kitchen .sk-simple-qty-input {
  height: 35px;
  width: 70px;
}

body.theme-sims-kitchen .sk-simple-add-btn {
  height: 35px;
  padding: 0 10px;
  background-color: #e02bbf;
  width: 65px;
  color: #fff !important;
}

body.theme-sims-kitchen .sk-spinner-md {
  width: 16px;
  height: 16px;
}

body.theme-sims-kitchen .sk-modal-backdrop {
  display: block;
  background: rgba(0, 0, 0, 0.5);
}

body.theme-sims-kitchen .sk-deal-modal-backdrop {
  padding-top: 140px;
}

body.theme-sims-kitchen .sk-deal-modal-dialog {
  margin: 0 auto;
  max-width: 640px;
}

body.theme-sims-kitchen .sk-modal-header {
  background: #e02bbf;
}

body.theme-sims-kitchen .sk-modal-header-borderless {
  border-bottom: none;
}

body.theme-sims-kitchen .sk-deal-modal-body {
  padding-top: 1.25rem;
}

body.theme-sims-kitchen .deal-modal-shell--sims-kitchen .modal-dialog,
.deal-modal-shell--sims-kitchen .modal-dialog {
  align-items: flex-start;
  margin-top: 5.5rem;
}

body.theme-sims-kitchen .deal-modal-shell--sims-kitchen .modal-dialog-centered,
.deal-modal-shell--sims-kitchen .modal-dialog-centered {
  min-height: auto;
}

@media (max-width: 575.98px) {

  body.theme-sims-kitchen .deal-modal-shell--sims-kitchen .modal-dialog,
  .deal-modal-shell--sims-kitchen .modal-dialog {
    margin-top: 4.25rem;
  }
}

body.theme-sims-kitchen .sk-toppings-modal-backdrop {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding-top: 200px;
}

body.theme-sims-kitchen .sk-toppings-modal-dialog {
  max-width: 700px;
  margin: 0 auto;
}

body.theme-sims-kitchen .sk-topping-alert,
body.theme-sims-kitchen .sk-topping-title,
body.theme-sims-kitchen .sk-topping-empty {
  font-size: 13px;
}

body.theme-sims-kitchen .sk-topping-option {
  min-width: 160px;
}

body.theme-sims-kitchen .sk-topping-select {
  width: 65px;
}

body.theme-sims-kitchen .sk-topping-option-name {
  font-size: 12px;
}

body.theme-sims-kitchen .sk-topping-option-price {
  font-size: 0.75rem;
}

body.theme-sims-kitchen .sk-topping-submit {
  background-color: #e02bbf;
  color: #ffffff !important;
  font-weight: 600;
}

/* sims-kitchen Theme - Shared Soft Page CSS */
body.theme-sims-kitchen .sk-soft-page-section {
  background: #fff1f2;
  min-height: 80vh;
}

body.theme-sims-kitchen .sk-accent-title,
body.theme-sims-kitchen .sk-accent-text {
  color: #e02bbf;
}

body.theme-sims-kitchen .sk-muted-label {
  color: #666;
}

body.theme-sims-kitchen .sk-badge-accent {
  background: #e02bbf;
  color: #fff;
}

body.theme-sims-kitchen .sk-badge-white {
  color: #fff;
}

/* Order history Page CSS */
.order-history-page--central {
    background: var(--oh-bg);
    color: var(--oh-text);
    min-height: 80vh;
    padding: 3rem 1rem;
}

.order-history-page--central .order-history-wrapper {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.order-history-page--central .order-history-card {
    background: var(--oh-surface);
    border: 1px solid var(--oh-border);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.order-history-page--central .order-history-card__body {
    padding: 1.5rem;
}

.order-history-page--central .order-history-card__body--table {
    padding: 0;
}

.order-history-page--central .order-history-card__header {
    background: var(--oh-head);
    color: var(--oh-head-text);
    padding: 1rem 1.25rem;
}

.order-history-page--central .order-history-title {
    color: inherit;
    font-weight: 700;
    margin: 0;
}

.order-history-page--central .order-history-title--loyalty {
    color: var(--oh-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.order-history-page--central .order-history-copy {
    color: var(--oh-text);
    margin-bottom: .75rem;
    text-align: center;
    text-transform: none;
}

.order-history-page--central .order-history-copy--last {
    margin-bottom: 0;
}

.order-history-page--central .order-history-points,
.order-history-page--central .order-history-points-value {
    color: var(--oh-primary);
    font-weight: 800;
}

.order-history-page--central .order-history-points {
    font-size: 1.35rem;
}

.order-history-page--central .order-history-table-wrap {
    overflow-x: auto;
    width: 100%;
}

.order-history-page--central .order-history-table {
    color: var(--oh-text);
    margin-bottom: 0;
    min-width: 760px;
    vertical-align: middle;
}

.order-history-page--central .order-history-table thead th {
    background: var(--oh-accent);
    border-bottom: 1px solid var(--oh-border);
    color: var(--oh-text);
    font-weight: 700;
    padding: .95rem 1rem;
    white-space: nowrap;
}

.order-history-page--central .order-history-table tbody td,
.order-history-page--central .order-history-table tfoot td {
    border-color: var(--oh-border);
    color: var(--oh-text);
    padding: 1rem;
}

.order-history-page--central .order-history-status-cell {
    min-width: 240px;
}

.order-history-page--central .order-history-status {
    color: var(--oh-text);
    display: inline-block;
    font-weight: 700;
    margin-right: .35rem;
}

.order-history-page--central .order-history-status--pending,
.order-history-page--central .order-history-status--processing {
    color: var(--oh-delay-text);
}

.order-history-page--central .order-history-status--completed,
.order-history-page--central .order-history-status--delivered,
.order-history-page--central .order-history-status--paid {
    color: var(--oh-card);
}

.order-history-page--central .order-history-status--cancelled,
.order-history-page--central .order-history-status--canceled {
    color: var(--oh-cash);
}

.order-history-page--central .order-history-badge {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: .75rem;
    font-weight: 700;
    gap: .25rem;
    line-height: 1.2;
    margin: .2rem .25rem .2rem 0;
    padding: .35rem .55rem;
    vertical-align: middle;
    white-space: nowrap;
}

.order-history-page--central .order-history-badge--cash {
    background: var(--oh-cash);
    color: #fff;
}

.order-history-page--central .order-history-badge--card {
    background: var(--oh-card);
    color: #fff;
}

.order-history-page--central .order-history-badge--delay {
    background: var(--oh-delay);
    color: var(--oh-delay-text);
}

.order-history-page--central .order-history-badge--schedule {
    background: var(--oh-schedule);
    color: #fff;
}

.order-history-page--central .order-history-badge--schedule i,
.order-history-page--central .order-history-badge--schedule span {
    color: inherit;
}

.order-history-page--central .order-history-reject-reason {
    color: var(--oh-cash);
    font-weight: 700;
    margin-top: .45rem;
}

.order-history-page--central .order-history-action-btn {
    align-items: center;
    background: transparent;
    border: 1px solid var(--oh-button);
    border-radius: 6px;
    color: var(--oh-button);
    display: inline-flex;
    font-size: .875rem;
    font-weight: 700;
    gap: .35rem;
    justify-content: center;
    min-height: 2.1rem;
    padding: .35rem .7rem;
    text-decoration: none;
    white-space: nowrap;
}

.order-history-page--central .order-history-action-btn:hover,
.order-history-page--central .order-history-action-btn:focus {
    background: var(--oh-button-hover);
    border-color: var(--oh-button-hover);
    color: #fff;
    text-decoration: none;
}

.order-history-page--central .order-history-empty {
    color: var(--oh-muted);
    padding: 2rem 1rem;
    text-align: center;
}

.order-history-page--central .order-history-pagination {
    padding: 1rem;
}

.order-history-page--central .order-history-pagination .pagination {
    flex-wrap: wrap;
    gap: .35rem;
    justify-content: center;
    margin-bottom: 0;
}

.order-history-page--central .order-history-pagination .page-link {
    border-color: var(--oh-border);
    color: var(--oh-button);
}

.order-history-page--central .order-history-pagination .page-item.active .page-link {
    background: var(--oh-button);
    border-color: var(--oh-button);
    color: #fff;
}

@media (max-width: 767.98px) {
    .order-history-page--central {
        padding: 2rem .75rem;
    }

    .order-history-page--central .order-history-card__body {
        padding: 1.15rem;
    }

    .order-history-page--central .order-history-card__body--table {
        padding: 0;
    }

    .order-history-page--central .order-history-table {
        min-width: 680px;
    }

    .order-history-page--central .order-history-table thead th,
    .order-history-page--central .order-history-table tbody td,
    .order-history-page--central .order-history-table tfoot td {
        padding: .85rem;
    }

    .order-history-page--central .order-history-status-cell {
        min-width: 220px;
    }
}
/* sims-kitchen Theme - Terms Page CSS */
body.theme-sims-kitchen .term_and_conditions_section {
  background-color: #ffffff;
  padding: 7rem 0 4rem 0;
}

body.theme-sims-kitchen .term_and_conditions_section_title_box {
  border-bottom: 0.2rem solid #e02bbf;
}

body.theme-sims-kitchen .term_and_conditions_section_title_box h1 {
  font-size: 36px;
  color: #e02bbf;
  font-weight: 900;
}

body.theme-sims-kitchen .term_and_conditions_section_title_box_left_content h6,
body.theme-sims-kitchen .term_and_conditions_section_title_box_left_content_common h6,
body.theme-sims-kitchen .term_and_conditions_section_title_box_right_content h6 {
  font-size: 28px;
  color: #e02bbf;
  line-height: 1.4;
}

body.theme-sims-kitchen .term_and_conditions_section_title_box_left_content p,
body.theme-sims-kitchen .term_and_conditions_section_title_box_right_content p {
  font-size: 16px;
  line-height: 1.7;
}

body.theme-sims-kitchen .term_and_conditions_section_title_box_left_content a {
  width: 12rem;
  height: 3rem;
  background-color: #e02bbf;
  color: #ffffff;
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
}

body.theme-sims-kitchen .term_and_conditions_section_title_box_left_content_common_link {
  background-color: #e02bbf;
  color: #ffffff;
  text-decoration: none;
  width: 100% !important;
  display: flex;
  height: 3rem;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-weight: 700;
}

body.theme-sims-kitchen .term_and_conditions_section_title_box_right_container {
  border: 10px solid #e02bbf;
}

body.theme-sims-kitchen .term_and_conditions_section_title_box_right_content_title,
body.theme-sims-kitchen .sk-terms-inline-heading {
  background-color: #e02bbf;
}

body.theme-sims-kitchen .term_and_conditions_section_title_box_right_content_title h6 {
  color: white;
  font-size: 36px;
  font-weight: 900;
}

body.theme-sims-kitchen .condition_color,
body.theme-sims-kitchen .sk-terms-heading-text {
  color: #ffffff !important;
}

body.theme-sims-kitchen .sk-policy-btn {
  background-color: #e02bbf;
  color: #ffffff;
}

body.theme-sims-kitchen .sk-content-store {
  display: none;
}

body.theme-sims-kitchen .sk-terms-section-heading,
body.theme-sims-kitchen .subheading,
body.theme-sims-kitchen .sub-heading,
body.theme-sims-kitchen .section-title {
  color: #e02bbf;
}

body.theme-sims-kitchen .sk-terms-email-link {
  text-decoration: none;
  color: #000000;
}

body.theme-sims-kitchen .heading-highlight,
body.theme-sims-kitchen .section-heading,
body.theme-sims-kitchen .policy-header {
  background-color: #e02bbf;
  color: white !important;
  font-weight: bold;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0.5rem 1rem;
}

body.theme-sims-kitchen .sub-heading {
  font-size: 1.2rem;
  font-weight: 600;
}

body.theme-sims-kitchen .refund-policy-container ul,
body.theme-sims-kitchen .privacy-policy-container ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

body.theme-sims-kitchen .refund-policy-container p,
body.theme-sims-kitchen .privacy-policy-container p {
  margin-bottom: 0.75rem;
}

body.theme-sims-kitchen .section-title {
  margin-top: 1rem;
}

/* Gallery and videos */
.ht-gallery-page {
  min-height: 650px;
  padding: 46px 24px 245px;
  background: var(--ht-cream);
}

.ht-gallery-inner {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.ht-gallery-tabs {
  display: inline-flex;
  overflow: hidden;
  border: 2px solid var(--ht-maroon);
  border-radius: 10px;
}

.ht-gallery-tabs a {
  min-width: 135px;
  padding: 11px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ht-maroon);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.ht-gallery-tabs a+a {
  border-left: 1px solid var(--ht-maroon);
}

.ht-gallery-tabs a.is-active,
.ht-gallery-tabs a:hover {
  color: #fff5df;
  background: var(--ht-maroon);
}

.ht-gallery-heading {
  margin: 38px auto 34px;
  text-align: center;
}

.ht-gallery-heading h1 {
  margin: 0 0 10px;
  color: var(--ht-maroon);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 700;
  line-height: 1;
}

.ht-gallery-heading p {
  max-width: 650px;
  margin: 0 auto;
  color: #674034;
  font-size: 13px;
  line-height: 1.65;
}

.ht-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ht-gallery-card {
  padding: 0;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ht-maroon);
  border-radius: 14px;
  background: #f8e6bf;
  aspect-ratio: 1.2 / 1;
  cursor: pointer;
}

.ht-gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.ht-gallery-card:hover img {
  transform: scale(1.05);
}

.ht-gallery-card span {
  position: absolute;
  inset: auto 0 0;
  padding: 14px;
  color: #fff;
  background: linear-gradient(transparent, rgba(65, 7, 10, .9));
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}

.ht-gallery-empty {
  padding: 80px 20px;
  border: 2px dashed rgba(116, 19, 22, .45);
  border-radius: 14px;
  color: var(--ht-maroon);
  text-align: center;
}

.ht-gallery-empty i {
  font-size: 48px;
  opacity: .6;
}

.ht-gallery-empty p {
  margin: 12px 0 0;
}

.ht-gallery-modal .modal-content {
  border: 2px solid var(--ht-maroon);
  border-radius: 14px;
  overflow: hidden;
  background: var(--ht-cream);
}

.ht-gallery-modal .modal-header {
  border-bottom: 1px solid rgba(116, 19, 22, .3);
}

.ht-gallery-modal .modal-title {
  color: var(--ht-maroon);
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
}

.ht-gallery-modal .modal-body {
  padding: 10px;
  text-align: center;
}

.ht-gallery-modal .modal-body img {
  max-width: 100%;
  max-height: 72vh;
  border-radius: 8px;
}

.ht-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.ht-video-card {
  overflow: hidden;
  border: 2px solid var(--ht-maroon);
  border-radius: 14px;
  color: var(--ht-maroon);
}

.ht-video-embed {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #2b0c0d;
}

.ht-video-embed iframe,
.ht-video-embed object,
.ht-video-embed embed,
.ht-video-embed video {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  inset: 0;
  border: 0;
}

.ht-video-card h2 {
  margin: 0;
  padding: 14px 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
}

/* sims-kitchen Theme - PDF Menu Page CSS */
body.theme-sims-kitchen .pdf-menu-section {
  min-height: 80vh;
  padding: 60px 0;
  background: linear-gradient(135deg, #fff2e5, #f8d4f1);
}

body.theme-sims-kitchen .pdf-menu-wrapper {
  border-radius: 28px;
  padding: 50px 40px;
}

body.theme-sims-kitchen .pdf-menu-heading {
  font-size: 42px;
  font-weight: 800;
  color: #c81aa6;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

body.theme-sims-kitchen .pdf-menu-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 4px;
  border-radius: 4px;
  background: #c81aa6;
}

body.theme-sims-kitchen .pdf-menu-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  background: #f0a5e1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.theme-sims-kitchen .pdf-menu-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
}

body.theme-sims-kitchen .pdf-menu-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  cursor: zoom-in;
}

body.theme-sims-kitchen .pdf-menu-card embed {
  display: block;
  width: 100%;
  height: 600px;
  border: 0;
}

body.theme-sims-kitchen .pdf-menu-empty {
  text-align: center;
  padding: 60px 20px;
  color: #888;
  font-size: 18px;
}

@media (max-width: 768px) {
  body.theme-sims-kitchen .pdf-menu-wrapper {
    padding: 28px 18px;
  }

  body.theme-sims-kitchen .pdf-menu-heading {
    font-size: 30px;
  }

  body.theme-sims-kitchen .pdf-menu-card embed {
    height: 400px;
  }
}

/* sims-kitchen Theme - Auth Pages CSS */
body.theme-sims-kitchen .sk-login-section {
  min-height: 660px !important;
  margin-top: 60px !important;
}

body.theme-sims-kitchen .sk-password-email-section {
  min-height: 830px;
}

body.theme-sims-kitchen .custom-input {
  padding: 10px 15px;
}

body.theme-sims-kitchen .sk-text-transform-none {
  text-transform: none;
}

body.theme-sims-kitchen .sk-flex-no-shrink {
  flex-shrink: 0;
}

body.theme-sims-kitchen .sk-pointer {
  cursor: pointer;
}

/* sims-kitchen Theme - Header Cart Badge CSS */
body.theme-sims-kitchen .sk-cart-badge-count {
  background: #e02bbf;
  font-size: 0.65rem;
}

/* sims-kitchen Theme - Header Food Hygiene Fallback CSS */
.sk-header-nav .food-hygiene-badge {
  position: relative;
  display: inline-block;
  min-width: 150px;
  max-width: 180px;
  margin: 0 0.5rem;
  padding: 0.35rem 0.65rem;
  overflow: hidden;
  text-align: center;
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  background: linear-gradient(135deg, #4f7f34 0%, #8fbf42 48%, #5f8f28 100%);
  border: 2px solid #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(79, 127, 52, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sk-header-nav .food-hygiene-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(79, 127, 52, 0.36);
}

.sk-header-nav .food-hygiene-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.sk-header-nav .food-hygiene-title {
  position: relative;
  z-index: 1;
  margin-bottom: 0.28rem;
  color: #ffffff !important;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sk-header-nav .rating-numbers {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 0.12rem;
  margin-bottom: 0.25rem;
}

.sk-header-nav .rating-circle {
  width: 1.08rem;
  height: 1.08rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f7f34;
  font-size: 0.6rem;
  font-weight: 800;
  background-color: #ffffff;
  border: 1px solid rgba(47, 93, 58, 0.35);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.sk-header-nav .rating-circle.active {
  color: #ffffff;
  background-color: #173f22;
  border-color: #ffffff;
  transform: scale(1.12);
}

.sk-header-nav .rating-description {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #ffffff !important;
  font-size: 0.55rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 1199.98px) {
  .sk-header-nav .sk-header-actions .food-hygiene-badge {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}

/* sims-kitchen Theme - Gift Voucher Checkout Box CSS */
body.theme-sims-kitchen .gift-voucher-box--sims-kitchen,
.gift-voucher-box--sims-kitchen {
  --gv-bg: linear-gradient(135deg, #e02bbf 0%, #d527b5 54%, #bd159a 100%);
  --gv-color: #ffffff;
  --gv-border: rgba(224, 43, 191, 0.38);
  --gv-radius: 22px;
  --gv-input-bg: #ffffff;
  --gv-input-color: #1a1a1a;
  --gv-input-border: rgba(255, 255, 255, 0.92);
  --gv-btn-bg: #ffffff;
  --gv-btn-color: #e02bbf;
  --gv-btn-border: #ffffff;
  --gv-btn-hover: #fff4fc;
  --gv-status-bg: rgba(255, 255, 255, 0.16);
  --gv-status-border: rgba(255, 255, 255, 0.28);
  margin-top: 1rem;
  overflow: hidden;
  background: var(--gv-bg) !important;
  color: var(--gv-color) !important;
  border: 1px solid var(--gv-border) !important;
  border-radius: var(--gv-radius) !important;
  box-shadow: 0 18px 42px rgba(224, 43, 191, 0.16);
}

body.theme-sims-kitchen .gift-voucher-box--sims-kitchen .gift-voucher-box__body,
.gift-voucher-box--sims-kitchen .gift-voucher-box__body {
  padding: 1.35rem 1.5rem 1.5rem;
}

body.theme-sims-kitchen .gift-voucher-box--sims-kitchen .gift-voucher-box__title,
.gift-voucher-box--sims-kitchen .gift-voucher-box__title {
  margin-bottom: 1rem;
  color: #ffffff !important;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.15;
}

body.theme-sims-kitchen .gift-voucher-box--sims-kitchen .gift-voucher-box__form,
.gift-voucher-box--sims-kitchen .gift-voucher-box__form {
  gap: 0.8rem;
}

body.theme-sims-kitchen .gift-voucher-box--sims-kitchen .gift-voucher-box__input,
body.theme-sims-kitchen .gift-voucher-box--sims-kitchen .gift-voucher-box__button,
.gift-voucher-box--sims-kitchen .gift-voucher-box__input,
.gift-voucher-box--sims-kitchen .gift-voucher-box__button {
  min-height: 46px;
  border-radius: 999px !important;
}

body.theme-sims-kitchen .gift-voucher-box--sims-kitchen .gift-voucher-box__input,
.gift-voucher-box--sims-kitchen .gift-voucher-box__input {
  width: 100%;
  background: #ffffff !important;
  color: #1a1a1a !important;
  border-color: rgba(255, 255, 255, 0.96) !important;
  font-size: 0.95rem;
}

body.theme-sims-kitchen .gift-voucher-box--sims-kitchen .gift-voucher-box__button,
.gift-voucher-box--sims-kitchen .gift-voucher-box__button {
  color: #e02bbf !important;
  font-weight: 800;
  letter-spacing: 0;
}

@media (max-width: 575.98px) {

  body.theme-sims-kitchen .gift-voucher-box--sims-kitchen .gift-voucher-box__body,
  .gift-voucher-box--sims-kitchen .gift-voucher-box__body {
    padding: 1.15rem;
  }

  body.theme-sims-kitchen .gift-voucher-box--sims-kitchen .gift-voucher-box__title,
  .gift-voucher-box--sims-kitchen .gift-voucher-box__title {
    font-size: 1.35rem;
  }
}

/* * ============================================== *   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;
}

.cart-component__button .cart-component__button--checkout {
  color: #000000 !important;
}

.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-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);
}

/* Checkout styles migrated from public\custom-css\sims-kitchen.css */
/* MOBILE */
@media (max-width:992px) {
  .member_body {
    padding: 9rem 0 6rem 0;
    background: #ffffff;
    /* WHITE PAGE */
    color: #333;
    height: auto !important;
  }

  .member_body_child_left input,
  .member_body_child_right input {
    width: 100% !important;
    height: 3rem !important;
  }

  .member_body_child_left label,
  .member_body_child_right label {
    font-size: 20px !important;
    width: 100% !important;
  }
}

/* MAIN BODY (WHITE) */
.member_body {
  padding: 9rem 0 4rem 0;
  background: #ffffff;
  /* PAGE WHITE */
  color: #333;
  min-height: 100vh;
}

/* FORM CARD (PINK) */
.member_body_child_left,
.member_body_child_right_child1 {
  background: linear-gradient(135deg, #e02bbf, #ff6ad5);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(224, 43, 191, 0.2);
}

/* HEADINGS */
.member_body_child_left h1,
.member_body_child_right h2 {
  color: #fff;
  font-size: 28px;
}

/* LABEL */
.member_body_child_left label,
.member_body_child_right_child1 label {
  font-size: 18px;
  color: #fff;
}

/* INPUT */
.member_body_child_left input,
.member_body_child_right_child1 input {
  width: 12rem;
  height: 2.4rem;
  border-radius: 6px;
  border: none;
  padding: 8px 12px;
  outline: none;
}

/* INPUT FOCUS */
.member_body_child_left input:focus,
.member_body_child_right_child1 input:focus {
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* PRIMARY BUTTON */
.resister_btn {
  height: 3rem !important;
  background-color: #fff;
  color: #e02bbf;
  font-size: 17px;
  border-radius: 6px;
  border: none !important;
  transition: 0.3s;
  font-weight: 600;
}

.resister_btn:hover {
  background-color: #f3f3f3;
  transform: translateY(-2px);
}

/* OUTLINE BUTTON */
.resister_btn2_bg {
  background-color: transparent !important;
  color: #fff !important;
  border: 1px solid #fff !important;
  border-radius: 6px;
  transition: 0.3s;
}

.resister_btn2_bg:hover {
  background-color: #fff !important;
  color: #e02bbf !important;
}

/* SIGNUP BUTTON */
.btn_sign_up {
  width: 6rem;
  height: 2rem;
  border: 1px solid #fff !important;
  background-color: transparent !important;
  color: #fff;
  border-radius: 6px;
  transition: 0.3s;
}

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

/* INPUT PADDING FIX */
.custom-input {
  padding: 10px 15px;
}

.consent-text {
  margin-left: 10px;
  font-size: 14px;
  color: #fff !important;
}

.theme-footer-bottom {
  --theme-footer-text: #ffffff;
  --theme-footer-muted: #ffffff;
  --theme-footer-link: #ffffff;
  --theme-footer-divider: rgba(255, 255, 255, 0.22);
  --theme-footer-social-border: rgba(255, 255, 255, 0.35);
  --theme-footer-social-bg: rgba(255, 255, 255, 0.08);
  --theme-footer-social-color: #ffffff;
  --theme-footer-social-hover-bg: #f25c8d;
  --theme-footer-social-hover-color: #ffffff;
  --theme-footer-payment-height: 38px;
  --theme-footer-certification-height: 50px;
  --theme-footer-powered-height: 78px;
}

.theme-footer-bottom {
  margin-top: 1.5rem;
  color: var(--theme-footer-text);
}

.theme-footer-divider {
  border-color: var(--theme-footer-divider);
  opacity: 1;
  margin: 0 0 1.25rem;
}

.theme-footer-flags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 auto 1.25rem;
  max-width: min(90vw, 760px);
}

.theme-footer-flags img {
  width: clamp(26px, 6vw, 32px);
  height: auto;
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.theme-footer-flags img:hover {
  transform: scale(1.12);
}

.theme-footer-copy-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.theme-footer-copy h6 {
  margin: 0;
  color: var(--theme-footer-text);
  font-weight: 700;
}

.theme-footer-copy p {
  margin: 0;
  color: var(--theme-footer-muted);
}

.theme-footer-copy a {
  color: var(--theme-footer-link);
  font-weight: 600;
  text-decoration: none;
}

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

.theme-footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.theme-footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--theme-footer-social-border);
  background: var(--theme-footer-social-bg);
  color: var(--theme-footer-social-color);
  text-decoration: none;
  transition: all 0.25s ease;
}

.theme-footer-social a:hover {
  background: var(--theme-footer-social-hover-bg);
  color: var(--theme-footer-social-hover-color);
  border-color: var(--theme-footer-social-hover-bg);
}

.theme-footer-payment {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.theme-footer-payment-item {
  height: var(--theme-footer-payment-height);
  width: auto;
  object-fit: contain;
}

.theme-footer-payment-item--certification {
  height: var(--theme-footer-certification-height);
}

.theme-footer-powered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.theme-footer-powered-label {
  color: var(--theme-footer-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.theme-footer-powered-logo {
  height: var(--theme-footer-powered-height);
  width: auto;
  object-fit: contain;
}

@media (min-width: 992px) {
  .theme-footer-copy-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .theme-footer-powered {
    align-items: flex-end;
  }
}

@media (max-width: 767px) {
  .theme-footer-flags {
    gap: 8px;
    justify-content: flex-start;
  }

  .theme-footer-payment-item {
    height: calc(var(--theme-footer-payment-height) - 4px);
  }

  .theme-footer-payment-item--certification {
    height: calc(var(--theme-footer-certification-height) - 6px);
  }

  .theme-footer-powered-logo {
    height: calc(var(--theme-footer-powered-height) - 10px);
  }
}

.checkout-sidebar {
  --checkout-sidebar-login-bg: #e02bbf;
  --checkout-sidebar-login-color: #ffffff;
  --checkout-sidebar-delivery-bg: #e02bbf;
  --checkout-sidebar-delivery-color: #ffffff;
  --checkout-sidebar-security-bg: #e02bbf;
  --checkout-sidebar-security-color: #ffffff;
  --checkout-sidebar-button-bg: #ffffff;
  --checkout-sidebar-button-color: #e02bbf;
  --checkout-sidebar-input-bg: #ffffff;
  --checkout-sidebar-input-color: #111111;
}

.checkout-sidebar__card {
  border-radius: 6px;
}

.checkout-sidebar__card {
  padding: 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.12);
}

.checkout-sidebar__card--login {
  background: var(--checkout-sidebar-login-bg);
  color: var(--checkout-sidebar-login-color);
}

.checkout-sidebar__card--delivery {
  background: var(--checkout-sidebar-delivery-bg);
  color: var(--checkout-sidebar-delivery-color);
}

body.theme-sims-kitchen .checkout-sidebar__card--delivery {
  background: linear-gradient(145deg, rgba(240, 43, 191, 0.96), rgba(255, 87, 208, 0.9));
  border: 0 !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 40px rgba(6, 31, 43, 0.15);
  color: #ffffff;
  padding: 1rem 1.05rem 1.1rem;
}

body.theme-sims-kitchen .checkout-sidebar__card--delivery .delivery-info {
  background: transparent;
  padding: 0;
}

body.theme-sims-kitchen .checkout-sidebar__card--delivery .delivery-info__grid {
  margin-top: 0.15rem;
}

body.theme-sims-kitchen .delivery-info__title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.25;
  margin-bottom: 0.85rem;
  padding: 0.25rem 0.65rem 0.4rem;
}

body.theme-sims-kitchen .delivery-info__grid {
  display: grid;
  gap: 0.65rem 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  padding: 0.2rem 0.2rem 0.1rem;
  position: relative;
  z-index: 1;
}

body.theme-sims-kitchen .delivery-info__head {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.theme-sims-kitchen .delivery-info__cell {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  padding: 0.85rem 0.9rem;
}

body.theme-sims-kitchen .delivery-info__empty {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-radius: 18px;
  padding: 1rem 1.1rem;
}

.checkout-sidebar__card--security {
  background: var(--checkout-sidebar-security-bg);
  color: var(--checkout-sidebar-security-color);
}

.checkout-sidebar__title,
.checkout-sidebar__label,
.checkout-sidebar__security-text,
.checkout-sidebar__forgot,
.checkout-sidebar__error {
  color: inherit;
}

.checkout-sidebar__input {
  background: var(--checkout-sidebar-input-bg);
  color: var(--checkout-sidebar-input-color);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.25rem;
  text-transform: none;
}

.checkout-sidebar__button {
  width: 100%;
  border: 0;
  padding: 0.25rem 1rem;
  background: var(--checkout-sidebar-button-bg);
  color: var(--checkout-sidebar-button-color);
  font-weight: 700;
  text-transform: uppercase;
}

.checkout-sidebar__security-text {
  text-transform: none;
  margin-bottom: 0;
}

/* CART PANEL */
.order_confirm_left_box1 {
  background: linear-gradient(135deg, #e02bbf, #ff6ad5);
  border-radius: 16px;
  border: 0 !important;
  box-shadow: 0 10px 30px rgba(224, 43, 191, 0.2);
  color: #fff;
}

.order_confirm_left_box1,
.order_confirm_left_box1 p,
.order_confirm_left_box1 span,
.order_confirm_left_box1 li,
.order_confirm_left_box1 ul,
.order_confirm_left_box1 b,
.order_confirm_left_box1 strong,
.order_confirm_left_box1 .text-end,
.order_confirm_left_box1 .fw-bold,
.order_confirm_left_box1 .title_cart,
.order_confirm_left_box1 .title_cart p {
  color: #fff !important;
}

.order_confirm_left_box1 .border-bottom,
.order_confirm_left_box1 .border-top {
  border-color: rgba(255, 255, 255, 0.35) !important;
}

.order_confirm_left_box1 .order-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.order_confirm_left_box1 .order-item:last-of-type {
  border-bottom: 0;
}

.order_confirm_left_box1 .order-icons button {
  background: transparent;
  border: 0;
  color: #fff;
  padding: 0;
  line-height: 1;
}

.order_confirm_left_box1 .order-icons button:hover {
  color: #ffe96d;
}

.order_confirm_left_box1 .checkout-btn {
  width: 100%;
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.sims-cart .sims-cart__btn--checkout {
  background: #fff !important;
  color: #e02bbf !important;
  box-shadow: 0 12px 24px rgba(122, 8, 95, 0.18);
}

.sims-cart .sims-cart__btn--checkout span,
.sims-cart .sims-cart__btn--checkout:not(:disabled) {
  color: #e02bbf !important;
}

.sims-cart .sims-cart__btn--clear {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
  backdrop-filter: blur(4px);
}

.sims-cart .sims-cart__btn--clear span {
  color: #fff !important;
}

.sims-cart .sims-cart__btn:hover {
  transform: translateY(-2px);
}

.sims-cart .sims-cart__btn--checkout:hover {
  background: #fff5fd !important;
  color: #b8139c !important;
}

.sims-cart .sims-cart__btn--clear:hover {
  background: rgba(255, 255, 255, 0.24) !important;
  color: #fff !important;
}

.sims-cart .sims-cart__btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen {
  background: linear-gradient(180deg, rgba(224, 43, 191, 0.96), rgba(173, 44, 151, 0.96)) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 24px !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12) !important;
  color: #ffffff !important;
  padding: 1.15rem 1.15rem 1.2rem !important;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__title,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__summary-label,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__summary-value,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen p,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen li,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen span,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen h6,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen a,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen i {
  color: #ffffff !important;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__summary-label,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__summary-value {
  font-size: 0.95rem;
  font-weight: 700;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__item {
  padding: 0.85rem 0;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen .variation-side-cart-text,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__variation,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__toppings {
  color: rgba(255, 255, 255, 0.88) !important;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__qty-btn img {
  filter: brightness(0) invert(1);
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen .checkout-trash-icon {
  color: #ffffff !important;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen .checkout-back-link,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen .btn-primary {
  background: linear-gradient(135deg, #ffffff, #f7c4e6) !important;
  color: #a31b85 !important;
  border: 0 !important;
  border-radius: 999px !important;
  font-weight: 800;
  min-height: 48px;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen .checkout-back-link:hover,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen .btn-primary:hover,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen .checkout-back-link:focus,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen .btn-primary:focus {
  background: linear-gradient(135deg, #fff6fb, #f3b8e0) !important;
  color: #a31b85 !important;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen textarea.form-control {
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 16px;
  color: #111111;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen {
  background: linear-gradient(180deg, #fff7fb 0%, #f7e6ef 100%) !important;
  border: 1px solid rgba(224, 43, 191, 0.14) !important;
  border-radius: 24px !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08) !important;
  color: #20111a !important;
  padding: 1.2rem 1.15rem 1.1rem !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__heading,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__item-title,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__meta,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__summary,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__empty,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__qty,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen p,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen li,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen span,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen h6,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen a,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen i {
  color: #20111a !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__heading {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 0.9rem !important;
  color: #ffffff !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__item {
  border-bottom-color: rgba(224, 43, 191, 0.16) !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__meta,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__toppings {
  color: rgba(32, 17, 26, 0.72) !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__qty-group {
  min-width: 96px;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__qty-icon {
  filter: none;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__trash-icon {
  color: #111111 !important;
  font-size: 1.1rem;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout {
  background: linear-gradient(135deg, #e02bbf, #c61aa7) !important;
  color: #000000 !important;
  border-radius: 16px !important;
  min-height: 46px;
  box-shadow: 0 14px 26px rgba(224, 43, 191, 0.24);
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--clear {
  background: #f6c7dc !important;
  color: #000000 !important;
  border-radius: 16px !important;
  min-height: 46px;
  box-shadow: none;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout:hover,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout:focus {
  background: linear-gradient(135deg, #ec43c8, #cd1dac) !important;
  color: #000000 !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout *,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout .visually-hidden {
  color: #000000 !important;
  fill: #000000 !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen button.cart-component__button--checkout,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen button.cart-component__button--checkout>span,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen button.cart-component__button--checkout>*:not(.cart-component__spinner) {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  opacity: 1 !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--clear:hover,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--clear:focus {
  background: #f2bdd5 !important;
  color: #000000 !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__spinner {
  color: currentColor;
}

.cart-component-shell--sims-kitchen .cart-component__button--clear,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--clear {
  background: #f6c7dc !important;
  color: #000000 !important;
  border: 0 !important;
  border-radius: 16px !important;
  min-height: 46px;
  box-shadow: none !important;
  text-shadow: none !important;
}

.cart-component-shell--sims-kitchen .cart-component__button--clear:hover,
.cart-component-shell--sims-kitchen .cart-component__button--clear:focus,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--clear:hover,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--clear:focus {
  background: #efb5cf !important;
  color: #000000 !important;
}

.cart-component-shell--sims-kitchen .cart-component__button--clear *,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--clear * {
  color: #000000 !important;
  fill: #000000 !important;
}

.order_confirm_left_box1 .spinner-border {
  border-width: 0.18em;
}

@media (max-width: 992px) {
  .order_confirm_left_box1 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 1rem !important;
    padding: 20px !important;
  }
}

.custom-input {
  padding: 10px 15px;
}

.consent-text {
  margin-left: 10px;
  font-size: 14px;
  color: #fff !important;
}

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

.right-box .catalog-sidebar__panel-title {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.right-box .catalog-sidebar__panel-copy {
  color: #fff;
}

.right-box .catalog-sidebar__button {
  background: #fff;
  color: #e02bbf;
  border: 0;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  text-decoration: none;
}

.right-box .catalog-sidebar__member-link {
  color: #fff !important;
  text-decoration: underline;
}

/* Checkout Page CSS */
.sims-checkout-page {
  background: #fff1f2;
  min-height: 80vh;
}

.sims-checkout-page__title {
  color: #2b1d12;
}

.checkout-note {
  background: #fff;
  border-left: 4px solid #e02bbf;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 0.88rem;
  color: #333;
}

.checkout-note a {
  color: #e02bbf;
  font-weight: 600;
  text-decoration: underline;
}

.checkout-note a:hover {
  color: #c81aa6;
  text-decoration: none;
}

.checkout-hidden {
  display: none;
}

.flash-blink {
  background-color: #ffcc00;
  color: black;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  animation: flash-bg 1s linear infinite;
}

@keyframes flash-bg {

  0%,
  100% {
    background-color: #94a4d7;
  }

  50% {
    background-color: #ffe680;
  }
}

.bogof-backdrop {
  backdrop-filter: blur(3px);
  z-index: 1055;
}

.bogof-modal {
  border-radius: 18px;
  overflow: hidden;
  animation: scaleFade 0.35s ease;
}

.bogof-header {
  background: linear-gradient(135deg, #ff6a00, #ff9500);
  color: #fff;
  border-bottom: none;
}

.bogof-text {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  padding: 10px 15px;
}

.bogof-btn {
  background: linear-gradient(135deg, #ff6a00, #ff9500);
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.bogof-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.4);
}

@keyframes scaleFade {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

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

.checkout-toppings-list {
  font-size: 12px;
}

.checkout-trash-icon {
  font-size: 18px;
}

.checkout-trash-icon--large {
  font-size: 22px;
}

.sims-checkout-back-link {
  background: #fff;
  color: #e02bbf;
  border: 0;
  border-radius: 6px;
  padding: 6px;
  font-weight: 700;
  text-decoration: none;
}

.custom-tooltip-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.custom-tooltip-box {
  display: none;
  position: absolute;
  top: 50%;
  left: 130%;
  transform: translateY(-50%);
  width: 300px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 0;
  font-size: 14px;
  color: #000;
}

.custom-tooltip-wrapper:hover .custom-tooltip-box {
  display: block;
}

.custom-tooltip-box .tooltip-header {
  background-color: #7e9e59;
  color: white;
  padding: 8px 10px;
  font-weight: bold;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.custom-tooltip-box .tooltip-body {
  padding: 10px;
  background: white;
  color: #000;
  text-transform: none !important;
}

.custom-tooltip-box .tooltip-arrow {
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid #7e9e59;
}

.sims-checkout-payment-options {
  border-radius: 0;
}

.checkout-ladder-offer {
  font-size: 0.9rem;
}

.checkout-ladder-offer__text {
  line-height: 1.2;
}

.checkout-ladder-offer__icon {
  font-size: 1.2rem;
  color: #007bff;
}

.checkout-payment-card {
  cursor: pointer;
  background-color: #f8f9fa;
  color: #000;
  border: 2px solid #ced4da;
}

.checkout-payment-card--active {
  background-color: #28a745;
  color: #fff;
  border-color: #28a745;
}

.checkout-payment-card__image {
  width: 100px;
  height: 70px;
}

.sims-checkout-note-box {
  border-left: 4px solid #ecb2e2;
  color: white;
  padding-left: 10px;
}

.sims-checkout-note-box__header {
  border-left: 4px solid #e065cc;
  color: white;
  padding-left: 10px;
}

.note-body {
  padding: 12px;
}

.note-textarea {
  border-radius: 4px;
  font-size: 14px;
  resize: none;
  border: 1px solid #ddd;
}

.note-textarea:focus {
  box-shadow: 0 0 0 0.15rem rgba(255, 193, 7, 0.4);
  border-color: #ffc107;
}

.note-help {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #666;
}

.checkout-form-alert {
  font-size: 1.1rem;
}

.checkout-terms-input {
  width: 16px;
  height: 16px;
}

.checkout-place-order-btn {
  background-color: #ffffff;
}

.checkout-place-order-btn__label {
  font-size: 1rem;
}

.checkout-loyalty-copy,
.checkout-loyalty-caption {
  font-size: 12px;
  text-transform: none;
}

.sims-loyalty-box {
  background-color: #e02bbf;
}

.sims-loyalty-login-link {
  background: #fff;
  color: #e02bbf;
  border: 0;
  border-radius: 6px;
  padding: 6px;
  font-weight: 700;
  text-decoration: none;
}

.sims-coupon-btn {
  background-color: #ffffff;
  color: #333;
  border: 1px solid #ccc;
}

.sims-coupon-remove-btn {
  background-color: #dc3545 !important;
  color: #fff !important;
  border: 1px solid #dc3545 !important;
}

.sims-coupon-remove-btn:hover,
.sims-coupon-remove-btn:focus,
.sims-coupon-remove-btn:active {
  background-color: #bb2d3b !important;
  color: #fff !important;
  border-color: #bb2d3b !important;
  box-shadow: none !important;
}

.sims-coupon-btn--disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.checkout-coupon-card__shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, #ffffff22, transparent);
  pointer-events: none;
}

.checkout-coupon-card--0 {
  background: linear-gradient(135deg, #e84e4f 0%, #00000033 100%);
}

.checkout-coupon-card--1 {
  background: linear-gradient(135deg, #007bff 0%, #00000033 100%);
}

.checkout-coupon-card--2 {
  background: linear-gradient(135deg, #28a745 0%, #00000033 100%);
}

.checkout-coupon-card--3 {
  background: linear-gradient(135deg, #ff9800 0%, #00000033 100%);
}

.checkout-coupon-card__pill {
  font-size: 1.1rem;
  min-width: 130px;
  text-align: center;
}

.checkout-coupon-card__pill--code {
  letter-spacing: 1px;
}

.checkout-coupon-card__meta {
  opacity: 0.9;
}

.checkout-coupon-card__terms {
  opacity: 0.9;
  font-size: 0.9rem;
}

/* Checkout UI consistency fixes */
.note-box,
.checkout-note-box,
.sims-checkout-note-box {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
}

/* .note-header,.checkout-note-box__header,.sims-checkout-note-box__header {  display: flex;  align-items: center;  padding: 10px 15px;  font-size: 15px;  font-weight: 600;  color: #ffffff;  background: linear-gradient(135deg, rgba(17, 17, 17, 0.92), rgba(68, 68, 68, 0.88));} */
.note-body {
  padding: 14px;
  background: #ffffff;
}

.note-textarea,
.checkout-note-box textarea,
.sims-checkout-note-box textarea {
  min-height: 110px;
  background: #ffffff !important;
  color: #1f1f1f !important;
  border: 1px solid #d7d7d7 !important;
  box-shadow: none !important;
}

.note-help,
.checkout-note-help,
.checkout-note-help.text-white {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.6;
  text-transform: none;
  color: #666666 !important;
}

.checkout-payment-shell h5,
.checkout-payment-shell label,
.checkout-payment-shell .form-label,
.checkout-payment-shell .invalid-feedback,
.checkout-payment-shell .text-white {
  color: #ffffff !important;
}

.checkout-place-order-btn,
.checkout-back-link,
.checkout-loyalty-login-link,
.sims-checkout-back-link,
.sims-loyalty-login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
}

.checkout-place-order-btn,
.checkout-back-link,
.checkout-back-link--dark,
.checkout-back-link--lavender,
.sims-checkout-back-link {
  background: #ffffff !important;
}

.checkout-back-link,
.checkout-back-link--dark,
.sims-checkout-back-link {
  color: #111111 !important;
}

.checkout-terms-input,
input#acceptTerms.form-check-input,
.form-check input[type="checkbox"]#acceptTerms {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  margin-top: 0.2rem !important;
  border: 1px solid #9b9b9b !important;
  background: #ffffff !important;
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  accent-color: #111111;
}

input#acceptTerms+.form-check-label,
.checkout-terms-input+.form-check-label {
  margin: 0;
  line-height: 1.5;
}

/* Sims Kitchen checkout restore */
.sims-checkout-note-box {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-left: 6px solid #ff9be7 !important;
  border-radius: 8px !important;
  overflow: hidden;
}

.sims-checkout-note-box__header {
  background: linear-gradient(135deg, #ff71d8, #e02bbf) !important;
  color: #ffffff !important;
  border-left: 0 !important;
  padding: 12px 16px !important;
}

.sims-checkout-note-box .note-body {
  background: #ffffff !important;
}

.sims-checkout-note-box .checkout-note-help,
.sims-checkout-note-box .note-help {
  color: #666666 !important;
}

.checkout-place-order-btn,
.checkout-place-order-btn:hover,
.checkout-place-order-btn:focus,
.checkout-place-order-btn:active {
  background: #ffffff !important;
  border: 2px solid #e02bbf !important;
  color: #111111 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.checkout-place-order-btn,
.checkout-place-order-btn *,
.checkout-place-order-btn__label,
.checkout-place-order-btn__label:hover,
.checkout-place-order-btn__label:focus {
  color: #111111 !important;
  fill: #111111 !important;
}

.checkout-place-order-btn__label {
  color: #000000 !important;
}

.sims-checkout-note-box,
.note-box.sims-checkout-note-box {
  background: #ffffff !important;
  border: 1px solid rgba(224, 43, 191, 0.28) !important;
  border-left: 6px solid #ff57d0 !important;
}

.sims-checkout-note-box__header,
.note-header.sims-checkout-note-box__header,
.checkout-note-box__header.sims-checkout-note-box__header {
  background: linear-gradient(135deg, #ff57d0, #e02bbf) !important;
  color: #ffffff !important;
}

/* Theme checkout restore */
.checkout-place-order-btn,
.checkout-place-order-btn:hover,
.checkout-place-order-btn:focus,
.checkout-place-order-btn:active,
.checkout-back-link,
.checkout-back-link:hover,
.checkout-back-link:focus,
.checkout-back-link:active,
.checkout-back-link--dark,
.checkout-back-link--dark:hover,
.checkout-back-link--dark:focus,
.checkout-back-link--dark:active,
.checkout-back-link--lavender,
.checkout-back-link--lavender:hover,
.checkout-back-link--lavender:focus,
.checkout-back-link--lavender:active {
  background: #ffffff !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.checkout-loyalty-login-link,
.checkout-loyalty-login-link:hover,
.checkout-loyalty-login-link:focus,
.checkout-loyalty-login-link:active {
  background: #2f7d32 !important;
  color: #ffffff !important;
  border-color: #2f7d32 !important;
  box-shadow: none !important;
  transform: none !important;
  text-decoration: none !important;
}

/* Use Loyalty Points Component CSS */
.loyalty-points__panel--sims-kitchen,
.loyalty-points__panel--sims-kitchen.checkout-loyalty-shell,
.loyalty-points__panel--sims-kitchen.checkout-loyalty-card,
.loyalty-points__panel--sims-kitchen.order_confirm_left_box4 {
  background: #e02bbf !important;
  background-color: #e02bbf !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 87, 208, 0.34) !important;
  box-shadow: 0 18px 34px rgba(224, 43, 191, 0.24) !important;
  border-radius: 0.5rem !important;
}

.checkout-loyalty-shell .checkout-loyalty__title,
.checkout-loyalty-card .checkout-loyalty__title,
.checkout-loyalty-shell h5,
.checkout-loyalty-card h5 {
  color: #ffffff !important;
}

.checkout-loyalty-shell .checkout-loyalty-copy,
.checkout-loyalty-card .checkout-loyalty-copy,
.checkout-loyalty-shell .checkout-loyalty-caption,
.checkout-loyalty-card .checkout-loyalty-caption,
.checkout-loyalty-shell .loyalty-points__copy,
.checkout-loyalty-card .loyalty-points__copy,
.checkout-loyalty-shell .loyalty-points__label,
.checkout-loyalty-card .loyalty-points__label,
.checkout-loyalty-shell .loyalty-points__equals,
.checkout-loyalty-card .loyalty-points__equals,
.checkout-loyalty-shell .loyalty-points__value,
.checkout-loyalty-card .loyalty-points__value {
  color: #ffffff !important;
}

.checkout-loyalty-shell .checkout-loyalty-stat-label,
.checkout-loyalty-card .checkout-loyalty-stat-label {
  background-color: #ff57d0 !important;
  color: #ffffff !important;
}

.checkout-loyalty-shell .checkout-loyalty-input,
.checkout-loyalty-card .checkout-loyalty-input,
.checkout-loyalty-shell .loyalty-points__input,
.checkout-loyalty-card .loyalty-points__input {
  background: #ffffff !important;
  color: #2d0b25 !important;
  border: 1px solid rgba(224, 43, 191, 0.22) !important;
  border-radius: 14px !important;
  box-shadow: none !important;
}

.checkout-loyalty-shell .checkout-loyalty-action-btn,
.checkout-loyalty-card .checkout-loyalty-action-btn,
.checkout-loyalty-shell .loyalty-points__button,
.checkout-loyalty-card .loyalty-points__button {
  border-radius: 14px !important;
  font-weight: 800 !important;
}

.checkout-loyalty-shell .loyalty-points__button--apply,
.checkout-loyalty-card .loyalty-points__button--apply,
.checkout-loyalty-shell .checkout-loyalty-action-btn.btn-primary,
.checkout-loyalty-card .checkout-loyalty-action-btn.btn-primary {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #111111 !important;
}

.checkout-loyalty-shell .loyalty-points__button--remove,
.checkout-loyalty-card .loyalty-points__button--remove,
.checkout-loyalty-shell .checkout-loyalty-action-btn.btn-danger,
.checkout-loyalty-card .checkout-loyalty-action-btn.btn-danger {
  background: #ffffff !important;
  border-color: #e02bbf !important;
  color: #e02bbf !important;
}

.checkout-loyalty-shell .loyalty-points__button--login,
.checkout-loyalty-card .loyalty-points__button--login,
.checkout-loyalty-login-link {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #2d0b25 !important;
  border: 1px solid #ff57d0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.checkout-loyalty-shell .loyalty-points__button--login:hover,
.checkout-loyalty-card .loyalty-points__button--login:hover,
.checkout-loyalty-login-link:hover,
.checkout-loyalty-shell .loyalty-points__button--login:focus,
.checkout-loyalty-card .loyalty-points__button--login:focus,
.checkout-loyalty-login-link:focus,
.checkout-loyalty-shell .loyalty-points__button--login:active,
.checkout-loyalty-card .loyalty-points__button--login:active,
.checkout-loyalty-login-link:active {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #2d0b25 !important;
  border-color: #ff57d0 !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Final Sims Kitchen checkout overrides */
.sims-checkout-note-box,
.note-box.sims-checkout-note-box,
.checkout-note-box.sims-checkout-note-box {
  background: #ffffff !important;
  border: 1px solid rgba(224, 43, 191, 0.28) !important;
  border-left: 6px solid #ff57d0 !important;
}

.sims-checkout-note-box__header,
.note-header.sims-checkout-note-box__header,
.checkout-note-box__header.sims-checkout-note-box__header {
  background: linear-gradient(135deg, #ff57d0, #e02bbf) !important;
  color: #ffffff !important;
}

button.checkout-place-order-btn,
button.checkout-place-order-btn:hover,
button.checkout-place-order-btn:focus,
button.checkout-place-order-btn:active,
.btn.checkout-place-order-btn,
.btn.checkout-place-order-btn:hover,
.btn.checkout-place-order-btn:focus,
.btn.checkout-place-order-btn:active,
.place-order.checkout-place-order-btn,
.place-order.checkout-place-order-btn:hover,
.place-order.checkout-place-order-btn:focus,
.place-order.checkout-place-order-btn:active,
.checkout-place-order-btn,
.checkout-place-order-btn:hover,
.checkout-place-order-btn:focus,
.checkout-place-order-btn:active {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #111111 !important;
  border-color: #e02bbf !important;
}

.checkout-place-order-btn,
.checkout-place-order-btn *,
.checkout-place-order-btn__label,
.checkout-place-order-btn__label:hover,
.checkout-place-order-btn__label:focus,
.checkout-place-order-btn .spinner-border,
.checkout-place-order-btn .visually-hidden {
  color: #111111 !important;
  border-color: #111111 !important;
  fill: #111111 !important;
}

.checkout-note-box,
.note-box.checkout-note-box {
  border-left: 6px solid #ff57d0 !important;
}

.checkout-note-box__header,
.note-header.checkout-note-box__header {
  background: linear-gradient(135deg, #ff71d8, #e02bbf) !important;
  color: #ffffff !important;
}

body.theme-sims-kitchen .checkout-note-box__header,
body.theme-sims-kitchen .note-header.checkout-note-box__header {
  background: linear-gradient(135deg, #ff71d8, #e02bbf) !important;
  color: #ffffff !important;
}

body.theme-sims-kitchen .note-box.checkout-note-box {
  border-left: 6px solid #ff57d0 !important;
}

body.theme-sims-kitchen .note-header,
body.theme-sims-kitchen .checkout-note-box__header,
body.theme-sims-kitchen .note-header.checkout-note-box__header {
  background-image: linear-gradient(135deg, #ff71d8, #e02bbf) !important;
  background-color: #ff71d8 !important;
  color: #ffffff !important;
}

body.theme-sims-kitchen .checkout-note-box__header.checkout-note-box__header--pink,
body.theme-sims-kitchen .note-header.checkout-note-box__header.checkout-note-box__header--pink {
  background: linear-gradient(135deg, #ff71d8, #e02bbf) !important;
  background-color: #ff71d8 !important;
  color: #ffffff !important;
}

body.theme-sims-kitchen .checkout-note-box__header {
  background-size: 200% 200% !important;
}

/* gift voucher css */
.gift-voucher-box {
  --gv-bg: #e02bbf;
  --gv-color: #ffffff;
  --gv-border: rgba(224, 43, 191, .35);
  --gv-radius: 12px;
  --gv-input-bg: #ffffff;
  --gv-input-color: #111111;
  --gv-input-border: rgba(0, 0, 0, .15);
  --gv-btn-bg: #ffffff;
  --gv-btn-color: #e02bbf;
  --gv-btn-border: #ffffff;
  --gv-btn-hover: #fdf2fb;
  --gv-status-bg: rgba(255, 255, 255, .16);
  --gv-status-border: rgba(255, 255, 255, .28);
  width: 100%;
  background: var(--gv-bg);
  color: var(--gv-color);
  border: 1px solid var(--gv-border);
  border-radius: var(--gv-radius);
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .12);
}

.gift-voucher-box__body {
  padding: 1.5rem;
}

.gift-voucher-box__title {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: inherit;
}

.gift-voucher-box__form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.gift-voucher-box__input,
.gift-voucher-box__button {
  min-height: 46px;
  border-radius: 0 !important;
}

.gift-voucher-box__input {
  background: var(--gv-input-bg) !important;
  color: var(--gv-input-color) !important;
  border: 1px solid var(--gv-input-border) !important;
  box-shadow: none !important;
  padding: .75rem 1rem;
  text-transform: none;
}

.gift-voucher-box__input::placeholder {
  color: rgba(31, 31, 31, .7);
}

.gift-voucher-box__input:focus {
  border-color: var(--gv-btn-border) !important;
  box-shadow: none !important;
}

.gift-voucher-box__status {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: .75rem;
  padding: .875rem 1rem;
  background: var(--gv-status-bg);
  border: 1px solid var(--gv-status-border);
  border-radius: var(--gv-radius);
}

.gift-voucher-box__status-label,
.gift-voucher-box__meta {
  display: block;
  color: inherit;
  text-transform: none;
}

.gift-voucher-box__status-label {
  font-weight: 700;
}

.gift-voucher-box__meta {
  font-size: .92rem;
}

.gift-voucher-box__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: .75rem 1rem;
  background: var(--gv-btn-bg) !important;
  color: var(--gv-btn-color) !important;
  border: 1px solid var(--gv-btn-border) !important;
  font-weight: 700;
  text-transform: none;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.gift-voucher-box__button:hover,
.gift-voucher-box__button:focus {
  background: var(--gv-btn-hover) !important;
  color: var(--gv-btn-color) !important;
  border-color: var(--gv-btn-hover) !important;
  box-shadow: none !important;
}

.gift-voucher-box__button:disabled {
  opacity: .65;
  cursor: not-allowed;
}

/* End migrated checkout styles for sims-kitchen */
/* Cart component theme overrides */
.cart-component-shell--sims-kitchen {
  --cart-shell-bg: #E02BBF;
  --cart-shell-text: #ffffff;
  --cart-shell-muted: rgba(255, 255, 255, 0.84);
  --cart-shell-border: rgba(255, 255, 255, 0.18);
  --cart-heading-color: #ffffff;
  --cart-button-primary-bg: #ffffff;
  --cart-button-primary-text: #000000;
  --cart-button-secondary-bg: #f6c7dc;
  --cart-button-secondary-text: #000000;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen {
  background: linear-gradient(180deg, rgba(224, 43, 191, 0.98), rgba(194, 35, 165, 0.98)) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 45px rgba(124, 21, 103, 0.14) !important;
  color: #ffffff !important;
  overflow: hidden;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__heading,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__item-title,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__meta,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__summary,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__empty,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__qty,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__toppings,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__action,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__trash-icon {
  color: #ffffff !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__heading {
  font-size: 1.55rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__item {
  border-bottom-color: rgba(255, 255, 255, 0.18) !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__meta,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__toppings {
  color: rgba(255, 255, 255, 0.84) !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button {
  border-radius: 14px !important;
  font-weight: 700 !important;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12);
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout {
  background: #ffffff !important;
  color: #000000 !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--clear {
  background: #f6c7dc !important;
  color: #000000 !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout *,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--clear * {
  color: #000000 !important;
  fill: #000000 !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout .cart-component__spinner,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--clear .cart-component__spinner {
  color: currentColor !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__heading {
  color: #ffffff !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout:hover,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout:focus,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout:active {
  color: #000000 !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout *,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout .visually-hidden {
  color: #000000 !important;
  fill: #000000 !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout span,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout .spinner-border,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout .spinner-border span {
  color: #000000 !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__heading,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__heading * {
  color: #ffffff !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__heading,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__heading span,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__heading strong,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__heading i {
  color: #ffffff !important;
  fill: #ffffff !important;
}

body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout *,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout span,
body.theme-sims-kitchen .cart-component-shell--sims-kitchen .cart-component__button--checkout .visually-hidden {
  color: #000000 !important;
  fill: #000000 !important;
}

/* Checkout Apply Coupon CSS */
.checkout-coupon-btn,
.checkout-coupon-btn-apply,
.checkout-coupon-btn-remove {
  min-height: 48px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.checkout-coupon-btn:hover,
.checkout-coupon-btn-apply:hover,
.checkout-coupon-btn-remove:hover {
  transform: translateY(-1px);
}

.checkout-coupon-btn-apply {
  background: #e02bbf;
  border: 1px solid #e02bbf;
  color: #ffffff;
}

.checkout-coupon-btn-remove {
  background: transparent;
  border: 1px solid #e02bbf;
  color: #e02bbf;
}

/* Checkout Apply Coupon CSS */
.checkout-apply-coupon--sims-kitchen .checkout-apply-coupon__panel {
  background: linear-gradient(180deg, #ff71d8 0%, #e02bbf 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 24px !important;
  box-shadow: 0 18px 36px rgba(124, 21, 103, 0.18) !important;
  color: #ffffff !important;
}

.checkout-apply-coupon--sims-kitchen .checkout-apply-coupon__title {
  color: #ffffff !important;
}

.checkout-apply-coupon--sims-kitchen .checkout-apply-coupon__input {
  background: rgba(255, 255, 255, 0.98) !important;
  color: #171717 !important;
  border: 1px solid rgba(255, 255, 255, 0.36) !important;
  border-radius: 14px !important;
  box-shadow: none !important;
}

.checkout-apply-coupon--sims-kitchen .checkout-apply-coupon__input::placeholder {
  color: rgba(23, 23, 23, 0.56);
}

.checkout-apply-coupon--sims-kitchen .checkout-coupon-btn-apply {
  background: #ffffff !important;
  border: 1px solid #ffffff !important;
  color: #111111 !important;
  font-weight: 700 !important;
}

.checkout-apply-coupon--sims-kitchen .checkout-coupon-btn-remove {
  background: #f6c7dc !important;
  border: 1px solid #f6c7dc !important;
  color: #111111 !important;
  font-weight: 700 !important;
}

.checkout-apply-coupon--sims-kitchen .checkout-apply-coupon__btn {
  border-radius: 14px !important;
}

:root {
  --terms-page-bg: #ffffff;
  --terms-primary: #e02bbf;
  --terms-accent: #ffffff;
  --terms-banner-text: #ffffff;
  --terms-link-color: #000000;
  --terms-table-head-bg: #f0f0f0;
}

/* Shared terms and policies pages */
.term_and_conditions_section {
  background-color: var(--terms-page-bg, #fff);
  padding: var(--terms-fixed-header-offset, 0) 0 0;
}

.term_and_conditions_section_title_box {
  border-bottom: 0.2rem solid var(--terms-primary, #000);
}

.term_and_conditions_section_title_box h1 {
  color: var(--terms-primary, #000);
  font-size: 36px;
  font-weight: 900;
}

.term_and_conditions_section_title_box_left_content h6,
.term_and_conditions_section_title_box_left_content_common h6,
.term_and_conditions_section_title_box_right_content h6,
.term_and_conditions_section .subheading,
.term_and_conditions_section .sub-heading,
.term_and_conditions_section .section-title,
.term_and_conditions_section .terms-section-heading {
  color: var(--terms-primary, #000);
  line-height: 1.4;
}

.term_and_conditions_section_title_box_left_content h6,
.term_and_conditions_section_title_box_left_content_common h6,
.term_and_conditions_section_title_box_right_content h6 {
  font-size: 28px;
}

.term_and_conditions_section_title_box_left_content p,
.term_and_conditions_section_title_box_right_content p {
  font-size: 16px;
  line-height: 1.7;
}

.term_and_conditions_section_title_box_left_content a,
.term_and_conditions_section_title_box_left_content_common_link,
.term-policy-btn {
  align-items: center;
  background-color: var(--terms-primary, #000) !important;
  border: 1px solid var(--terms-primary, #000) !important;
  border-radius: 10px;
  color: var(--terms-accent, #fff) !important;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  height: 3rem;
  justify-content: center;
  text-decoration: none;
}

.term_and_conditions_section_title_box_left_content a {
  width: 12rem;
}

.term_and_conditions_section_title_box_left_content_common_link,
.term-policy-btn {
  width: 100% !important;
}

.term_and_conditions_section_title_box_right_container {
  border: 10px solid var(--terms-primary, #000);
  background-color: var(--terms-content-bg, transparent);
  overflow-wrap: anywhere;
}

.term_and_conditions_section_title_box_right_content {
  padding: 1rem;
}

.term_and_conditions_section_title_box_right_content ul,
.refund-policy-container ul,
.privacy-policy-container ul,
.gift-voucher-policy-container ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.term_and_conditions_section_title_box_right_content p,
.refund-policy-container p,
.privacy-policy-container p,
.gift-voucher-policy-container p {
  margin-bottom: 0.75rem;
}

.terms-content-banner,
.term_and_conditions_section .heading-highlight,
.term_and_conditions_section .section-heading,
.term_and_conditions_section .policy-header {
  background-color: var(--terms-primary, #000);
  color: var(--terms-banner-text, #fff) !important;
  display: block;
  font-weight: 700;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
}

.terms-content-banner span {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
  padding: 0;
}

.term_and_conditions_section_title_box_right_content .terms-lucky-draw-heading {
  font-size: 1.5rem;
  line-height: 1.25;
  white-space: nowrap;
}

.term_and_conditions_section .subheading,
.term_and_conditions_section .sub-heading,
.term_and_conditions_section .section-title,
.term_and_conditions_section .terms-section-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1rem;
}

.terms-plain-link {
  color: var(--terms-link-color, #000);
  text-decoration: none;
}

.terms-table-head {
  background-color: var(--terms-table-head-bg, #f0f0f0);
}

.terms-lucky-draw-version-line {
  color: var(--terms-primary, #000);
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.terms-lucky-draw-note,
.terms-lucky-draw-warning,
.terms-lucky-draw-footer {
  border-radius: 6px;
  margin: 1rem 0;
  padding: 0.85rem 1rem;
}

.terms-lucky-draw-note {
  background-color: color-mix(in srgb, var(--terms-primary, #000) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--terms-primary, #000) 35%, transparent);
}

.terms-lucky-draw-warning {
  background-color: #fff3f3;
  border: 1px solid #f5c6c6;
  color: #7a1a1a;
}

.terms-lucky-draw-note strong,
.terms-lucky-draw-footer strong {
  display: block;
  margin-bottom: 0.25rem;
}

.terms-lucky-draw-table th {
  background-color: var(--terms-primary, #000) !important;
  color: var(--terms-banner-text, #fff) !important;
}

.terms-lucky-draw-footer {
  background-color: var(--terms-table-head-bg, #f0f0f0);
  font-size: 0.92rem;
}

@media (max-width: 767.98px) {
  .term_and_conditions_section {
    padding: var(--terms-fixed-header-offset-mobile, var(--terms-fixed-header-offset, 0)) 0 0;
  }

  .term_and_conditions_section_title_box h1 {
    font-size: 30px;
  }

  .term-sidebar {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .term_and_conditions_section_title_box_right_container {
    border-width: 6px;
  }

  .term_and_conditions_section_title_box_right_content .terms-lucky-draw-heading {
    font-size: 1.25rem;
    white-space: normal;
  }
}

.order-history-page--central {
  --oh-bg: #ffffff;
  --oh-surface: #ffffff;
  --oh-primary: #e02bbf;
  --oh-accent: #fde6f8;
  --oh-text: #171017;
  --oh-muted: #6f5d6b;
  --oh-border: #f4bce7;
  --oh-head: #e02bbf;
  --oh-head-text: #ffffff;
  --oh-button: #e02bbf;
  --oh-button-hover: #c81aa6;
  --oh-cash: #111111;
  --oh-card: #0f8f5f;
  --oh-delay: #f6c7dc;
  --oh-delay-text: #171017;
  --oh-schedule: #ff57d0;
}

/* ==============================
Order History Page CSS
============================== */
.order-history-page--central {
  background: var(--oh-bg);
  color: var(--oh-text);
  min-height: 80vh;
  padding: 3rem 1rem;
}

.order-history-page--central .order-history-wrapper {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.order-history-page--central .order-history-card {
  background: var(--oh-surface);
  border: 1px solid var(--oh-border);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.order-history-page--central .order-history-card__body {
  padding: 1.5rem;
}

.order-history-page--central .order-history-card__body--table {
  padding: 0;
}

.order-history-page--central .order-history-card__header {
  background: var(--oh-head);
  color: var(--oh-head-text);
  padding: 1rem 1.25rem;
}

.order-history-page--central .order-history-title {
  color: inherit;
  font-weight: 700;
  margin: 0;
}

.order-history-page--central .order-history-title--loyalty {
  color: var(--oh-primary);
  margin-bottom: 1rem;
  text-align: center;
}

.order-history-page--central .order-history-copy {
  color: var(--oh-text);
  margin-bottom: .75rem;
  text-align: center;
  text-transform: none;
}

.order-history-page--central .order-history-copy--last {
  margin-bottom: 0;
}

.order-history-page--central .order-history-points,
.order-history-page--central .order-history-points-value {
  color: var(--oh-primary);
  font-weight: 800;
}

.order-history-page--central .order-history-points {
  font-size: 1.35rem;
}

.order-history-page--central .order-history-table-wrap {
  overflow-x: auto;
  width: 100%;
}

.order-history-page--central .order-history-table {
  color: var(--oh-text);
  margin-bottom: 0;
  min-width: 760px;
  vertical-align: middle;
}

.order-history-page--central.order-history-page--sims-kitchen .order-history-table {
  --bs-table-bg: #ffffff;
  --bs-table-striped-bg: #fff7fd;
  --bs-table-striped-color: var(--oh-text);
  --bs-table-color: var(--oh-text);
}

.order-history-page--central .order-history-table thead th {
  background: var(--oh-accent);
  border-bottom: 1px solid var(--oh-border);
  color: var(--oh-text);
  font-weight: 700;
  padding: .95rem 1rem;
  white-space: nowrap;
}

.order-history-page--central.order-history-page--sims-kitchen .order-history-table thead th {
  background: #fde6f8;
  color: #171017;
}

.order-history-page--central .order-history-table tbody td,
.order-history-page--central .order-history-table tfoot td {
  border-color: var(--oh-border);
  color: var(--oh-text);
  padding: 1rem;
}

.order-history-page--central .order-history-status-cell {
  min-width: 240px;
}

.order-history-page--central .order-history-status {
  color: var(--oh-text);
  display: inline-block;
  font-weight: 700;
  margin-right: .35rem;
}

.order-history-page--central .order-history-status--pending,
.order-history-page--central .order-history-status--processing {
  color: var(--oh-delay-text);
}

.order-history-page--central .order-history-status--completed,
.order-history-page--central .order-history-status--delivered,
.order-history-page--central .order-history-status--paid {
  color: var(--oh-card);
}

.order-history-page--central .order-history-status--cancelled,
.order-history-page--central .order-history-status--canceled {
  color: var(--oh-cash);
}

.order-history-page--central .order-history-badge {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: .75rem;
  font-weight: 700;
  gap: .25rem;
  line-height: 1.2;
  margin: .2rem .25rem .2rem 0;
  padding: .35rem .55rem;
  vertical-align: middle;
  white-space: nowrap;
}

.order-history-page--central .order-history-badge--cash {
  background: var(--oh-cash);
  color: #fff;
}

.order-history-page--central .order-history-badge--card {
  background: var(--oh-card);
  color: #fff;
}

.order-history-page--central .order-history-badge--delay {
  background: var(--oh-delay);
  color: var(--oh-delay-text);
}

.order-history-page--central .order-history-badge--schedule {
  background: var(--oh-schedule);
  color: #fff;
}

.order-history-page--central .order-history-badge--schedule i,
.order-history-page--central .order-history-badge--schedule span {
  color: inherit;
}

.order-history-page--central .order-history-reject-reason {
  color: var(--oh-cash);
  font-weight: 700;
  margin-top: .45rem;
}

.order-history-page--central .order-history-action-btn {
  align-items: center;
  background: transparent;
  border: 1px solid var(--oh-button);
  border-radius: 6px;
  color: var(--oh-button);
  display: inline-flex;
  font-size: .875rem;
  font-weight: 700;
  gap: .35rem;
  justify-content: center;
  min-height: 2.1rem;
  padding: .35rem .7rem;
  text-decoration: none;
  white-space: nowrap;
}

.order-history-page--central .order-history-action-btn:hover,
.order-history-page--central .order-history-action-btn:focus {
  background: var(--oh-button-hover);
  border-color: var(--oh-button-hover);
  color: #fff;
  text-decoration: none;
}

.order-history-page--central .order-history-empty {
  color: var(--oh-muted);
  padding: 2rem 1rem;
  text-align: center;
}

.order-history-page--central .order-history-pagination {
  padding: 1rem;
}

.order-history-page--central .order-history-pagination .pagination {
  flex-wrap: wrap;
  gap: .35rem;
  justify-content: center;
  margin-bottom: 0;
}

.order-history-page--central .order-history-pagination .page-link {
  border-color: var(--oh-border);
  color: var(--oh-button);
}

.order-history-page--central .order-history-pagination .page-item.active .page-link {
  background: var(--oh-button);
  border-color: var(--oh-button);
  color: #fff;
}

@media (max-width: 767.98px) {
  .order-history-page--central {
    padding: 2rem .75rem;
  }

  .order-history-page--central .order-history-card__body {
    padding: 1.15rem;
  }

  .order-history-page--central .order-history-card__body--table {
    padding: 0;
  }

  .order-history-page--central .order-history-table {
    min-width: 680px;
  }

  .order-history-page--central .order-history-table thead th,
  .order-history-page--central .order-history-table tbody td,
  .order-history-page--central .order-history-table tfoot td {
    padding: .85rem;
  }

  .order-history-page--central .order-history-status-cell {
    min-width: 220px;
  }
}

/* Sims Kitchen Order History final theme overrides */
body.theme-sims-kitchen .order-history-page--central,
.order-history-page--central.order-history-page--sims-kitchen {
  --oh-bg: #ffffff;
  --oh-surface: #ffffff;
  --oh-primary: #e02bbf;
  --oh-accent: #fde6f8;
  --oh-text: #171017;
  --oh-muted: #6f5d6b;
  --oh-border: #f4bce7;
  --oh-head: #e02bbf;
  --oh-head-text: #ffffff;
  --oh-button: #e02bbf;
  --oh-button-hover: #c81aa6;
  --oh-cash: #111111;
  --oh-card: #0f8f5f;
  --oh-delay: #f6c7dc;
  --oh-delay-text: #171017;
  --oh-schedule: #ff57d0;
  background: #ffffff !important;
  color: #171017 !important;
}

body.theme-sims-kitchen .order-history-page--central .order-history-card__header,
.order-history-page--central.order-history-page--sims-kitchen .order-history-card__header {
  background: #e02bbf !important;
  color: #ffffff !important;
}

body.theme-sims-kitchen .order-history-page--central .order-history-title--loyalty,
body.theme-sims-kitchen .order-history-page--central .order-history-points,
body.theme-sims-kitchen .order-history-page--central .order-history-points-value,
.order-history-page--central.order-history-page--sims-kitchen .order-history-title--loyalty,
.order-history-page--central.order-history-page--sims-kitchen .order-history-points,
.order-history-page--central.order-history-page--sims-kitchen .order-history-points-value {
  color: #e02bbf !important;
}

/* Card */
.sims-image-card {
    overflow: hidden;
    border: 1px solid #ddd;
    height: 100%;
}

/* Image wrapper */
.sims-image-card__media {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    overflow: hidden;
}

/* Image */
.sims-image-card__media img {
    width: 100%;
    height: 270px;
    object-fit: cover; /* image crop hoke card fill karegi */
    display: block;
}

/* Card body */
.sims-image-card .card-body {
    text-align: center;
}

/* Title */
.sims-image-card__title {
    color: #000 !important;
    text-decoration: none !important;
    font-weight: 500;
    display: block;
    text-align: center;
}

.sims-image-card__title:hover {
    color: #000 !important;
}

body.theme-sims-kitchen .order-history-page--central .order-history-table,
.order-history-page--central.order-history-page--sims-kitchen .order-history-table {
  --bs-table-bg: #ffffff;
  --bs-table-striped-bg: #fff7fd;
  --bs-table-striped-color: #171017;
  --bs-table-color: #171017;
  color: #171017 !important;
}

body.theme-sims-kitchen .order-history-page--central .order-history-table thead th,
.order-history-page--central.order-history-page--sims-kitchen .order-history-table thead th {
  background: #fde6f8 !important;
  border-color: #f4bce7 !important;
  color: #171017 !important;
}

body.theme-sims-kitchen .order-history-page--central .order-history-table tbody td,
body.theme-sims-kitchen .order-history-page--central .order-history-table tfoot td,
.order-history-page--central.order-history-page--sims-kitchen .order-history-table tbody td,
.order-history-page--central.order-history-page--sims-kitchen .order-history-table tfoot td {
  border-color: #f4bce7 !important;
  color: #171017 !important;
}

body.theme-sims-kitchen .order-history-page--central .order-history-action-btn,
.order-history-page--central.order-history-page--sims-kitchen .order-history-action-btn {
  border-color: #e02bbf !important;
  color: #e02bbf !important;
}

body.theme-sims-kitchen .order-history-page--central .order-history-action-btn:hover,
body.theme-sims-kitchen .order-history-page--central .order-history-action-btn:focus,
.order-history-page--central.order-history-page--sims-kitchen .order-history-action-btn:hover,
.order-history-page--central.order-history-page--sims-kitchen .order-history-action-btn:focus {
  background: #c81aa6 !important;
  border-color: #c81aa6 !important;
  color: #ffffff !important;
}

body.theme-sims-kitchen .order-history-page--central .order-history-badge--cash,
.order-history-page--central.order-history-page--sims-kitchen .order-history-badge--cash {
  background: #111111 !important;
  color: #ffffff !important;
}

body.theme-sims-kitchen .order-history-page--central .order-history-badge--delay,
.order-history-page--central.order-history-page--sims-kitchen .order-history-badge--delay {
  background: #f6c7dc !important;
  color: #171017 !important;
}

/* Sims Kitchen full cart quantity controls */
body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__action-strip {
  align-items: center;
  display: inline-flex;
  gap: 0.25rem;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__qty-btn {
  align-items: center;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  line-height: 1;
  padding: 0 !important;
  width: 28px;
}



body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__qty-btn img,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__qty-icon {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: block;
  height: 24px !important;
  object-fit: contain;
  width: 24px !important;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__qty-value,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__remove-link,
body.theme-sims-kitchen .full-cart-shell--sims-kitchen .checkout-trash-icon {
  color: #ffffff !important;
}

body.theme-sims-kitchen .full-cart-shell--sims-kitchen .full-cart__remove-link {
  align-items: center;
  display: inline-flex;
  line-height: 1;
  text-decoration: none;
}

body.theme-sims-kitchen .sims-checkout-page .full-cart-shell {
  display: block !important;
  min-height: 0 !important;
  overflow: visible !important;
  filter: none !important;
  background: linear-gradient(180deg, #e02bbf 0%, #c81aa6 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 22px !important;
  box-shadow: 0 18px 40px rgba(124, 21, 103, 0.22) !important;
  color: #ffffff !important;
}

body.theme-sims-kitchen .sims-checkout-page .full-cart-shell *,
body.theme-sims-kitchen .sims-checkout-page .full-cart-shell p,
body.theme-sims-kitchen .sims-checkout-page .full-cart-shell span,
body.theme-sims-kitchen .sims-checkout-page .full-cart-shell li,
body.theme-sims-kitchen .sims-checkout-page .full-cart-shell h6,
body.theme-sims-kitchen .sims-checkout-page .full-cart-shell a,
body.theme-sims-kitchen .sims-checkout-page .full-cart-shell i {
  color: #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
}

body.theme-sims-kitchen .sims-checkout-page .full-cart-shell .full-cart__title {
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
}

body.theme-sims-kitchen .sims-checkout-page .full-cart-shell .border-bottom,
body.theme-sims-kitchen .sims-checkout-page .full-cart-shell .border-top {
  border-color: rgba(255, 255, 255, 0.28) !important;
}

body.theme-sims-kitchen .sims-checkout-page .full-cart-shell .dish_list_content {
  min-height: 0 !important;
}

body.theme-sims-kitchen .sims-checkout-page .full-cart-shell .full-cart__qty-btn {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
  border-radius: 50% !important;
  box-shadow: none !important;
  color: #e02bbf !important;
  height: 24px !important;
  position: relative;
  width: 24px !important;
}

body.theme-sims-kitchen .sims-checkout-page .full-cart-shell .full-cart__qty-icon {
  display: none !important;
  height: 24px !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: 24px !important;
}

body.theme-sims-kitchen .sims-checkout-page .full-cart-shell .full-cart__qty-btn::before {
  align-items: center;
  background: #ffffff;
  border-radius: 50%;
  color: #e02bbf !important;
  content: "+";
  display: flex;
  font-size: 18px;
  font-weight: 900;
  inset: 0;
  justify-content: center;
  line-height: 1;
  position: absolute;
}

body.theme-sims-kitchen .sims-checkout-page .full-cart-shell .full-cart__qty-btn--minus::before {
  content: "-";
  font-size: 20px;
  padding-bottom: 2px;
}

body.theme-sims-kitchen .sims-checkout-page .full-cart-shell .checkout-back-link,
body.theme-sims-kitchen .sims-checkout-page .full-cart-shell .full-cart__lucky-draw-btn {
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 14px !important;
  color: #e02bbf !important;
  font-weight: 900;
}

body.theme-sims-kitchen .sims-checkout-page .full-cart-shell .checkout-back-link *,
body.theme-sims-kitchen .sims-checkout-page .full-cart-shell .full-cart__lucky-draw-btn * {
  color: #e02bbf !important;
}

/* Shared member profile */
:root {
  --profile-bg: #ffffff;
  --profile-surface: #ffffff;
  --profile-accent: #e02bbf;
  --profile-accent-dark: #c81aa6;
  --profile-text: #2b1d12
}

.profile-page {
  min-height: auto !important;
  margin-top: 24px !important;
  padding: 32px 0 40px !important;
  background: var(--profile-bg) !important;
  color: var(--profile-text) !important
}

.profile-page .about_section_child_2 {
  width: 100% !important;
  max-width: 1140px !important;
  margin: 0 auto !important;
  background: transparent !important
}

.profile-page .update-section {
  height: 100% !important;
  overflow: hidden !important;
  border: 1px solid color-mix(in srgb, var(--profile-accent) 18%, transparent) !important;
  border-radius: 16px !important;
  background: var(--profile-surface) !important;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .09) !important
}

.profile-page .profile-form-card {
  max-width: 600px !important
}

.profile-page .update-section .card-body {
  padding: 24px !important;
  background: transparent !important
}

.profile-page h2,
.profile-page h5,
.profile-page label,
.profile-page .marketing-consent-text {
  color: var(--profile-text) !important
}

.profile-page h2 {
  font-size: clamp(1.55rem, 3vw, 2rem) !important;
  font-weight: 700 !important
}

.profile-page h5 {
  margin-bottom: 16px !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important
}

.profile-page .profile-option-btn {
  min-height: 44px !important;
  border: 1px solid color-mix(in srgb, var(--profile-accent) 45%, transparent) !important;
  border-radius: 10px !important;
  background: transparent !important;
  color: var(--profile-accent) !important;
  font-weight: 600 !important;
  transition: background-color .2s ease, color .2s ease, transform .2s ease !important
}

.profile-page .profile-option-btn:hover,
.profile-page .profile-option-btn:focus,
.profile-page .profile-option-btn.active {
  border-color: var(--profile-accent) !important;
  background: var(--profile-accent) !important;
  color: #fff !important;
  transform: translateY(-1px)
}

.profile-page .field-group {
  margin-bottom: 18px !important
}

.profile-page .form-label {
  display: block !important;
  margin-bottom: 8px !important;
  font-weight: 600 !important
}

.profile-page .form-control {
  min-height: 46px !important;
  border: 1px solid color-mix(in srgb, var(--profile-text) 20%, transparent) !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: var(--profile-text) !important;
  box-shadow: none !important
}

.profile-page .form-control:focus {
  border-color: var(--profile-accent) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--profile-accent) 18%, transparent) !important
}

.profile-page .update-btn {
  min-height: 46px !important;
  border: 1px solid var(--profile-accent) !important;
  border-radius: 10px !important;
  background: var(--profile-accent) !important;
  color: #fff !important;
  font-weight: 700 !important
}

.profile-page .update-btn:hover,
.profile-page .update-btn:focus {
  border-color: var(--profile-accent-dark) !important;
  background: var(--profile-accent-dark) !important;
  color: #fff !important
}

.profile-page #field-marketing input[type=checkbox] {
  width: 18px !important;
  height: 18px !important;
  margin: 3px 8px 0 0 !important;
  accent-color: var(--profile-accent) !important;
  vertical-align: top !important
}

.profile-page .marketing-consent-text {
  display: inline !important;
  font-size: .94rem !important;
  line-height: 1.6 !important
}

@media(max-width:767.98px) {
  .profile-page {
    padding: 28px 12px !important
  }

  .profile-page .update-section .card-body {
    padding: 20px !important
  }

  .profile-page .profile-form-card {
    max-width: none !important
  }
}
body,
.theme-sims-kitchen .order-history-page {
    --order-history-primary: #e02bbf;
    --order-history-primary-contrast: #ffffff;
    --order-history-accent: #fb7185;
    --order-history-bg: #fff1f2;
    --order-history-surface: #ffffff;
    --order-history-text: #2b1d12;
    --order-history-muted: #5f3f2c;
    --order-history-border: rgba(224, 43, 191, 0.22);
}

.theme-sims-kitchen .order-history-card-header,
.theme-sims-kitchen .order-history-page .card-bg {
    background: #e02bbf !important;
    color: #ffffff !important;
}

.theme-sims-kitchen .order-history-loyalty-card {
    background: #fff1f2 !important;
    border-color: rgba(224, 43, 191, 0.25) !important;
}

.theme-sims-kitchen .order-history-page h4,
.theme-sims-kitchen .order-history-page h5,
.theme-sims-kitchen .order-history-page .point {
    color: #e02bbf !important;
}

.theme-sims-kitchen .order-history-table thead th {
    background: #fff1f2 !important;
    color: #2b1d12 !important;
}

.theme-sims-kitchen .order-history-view-btn {
    border-color: #e02bbf !important;
    color: #e02bbf !important;
}

.theme-sims-kitchen .order-history-view-btn:hover,
.theme-sims-kitchen .order-history-view-btn:focus,
.theme-sims-kitchen .order-history-page .page-item.active .page-link,
.theme-sims-kitchen .order-history-page .active > .page-link {
    background: #e02bbf !important;
    border-color: #e02bbf !important;
    color: #ffffff !important;
}

/* Sims Kitchen gift voucher pages */
body.theme-sims-kitchen .gift-voucher-page {
  min-height: calc(100vh - 120px);
  padding: clamp(2rem, 4vw, 4.5rem) 0;
  background:
    radial-gradient(circle at top, rgba(224, 43, 191, 0.16), transparent 34%),
    linear-gradient(180deg, #fff1f2 0%, #ffffff 52%, #fff7fd 100%) !important;
  color: #2b1d12 !important;
}

body.theme-sims-kitchen .term_and_conditions_section.gift-voucher-page {
  margin-top: 0 !important;
}

body.theme-sims-kitchen .gift-voucher-page > h1,
body.theme-sims-kitchen .gift-voucher-card h1,
body.theme-sims-kitchen .gift-voucher-title {
  color: #e02bbf !important;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
}

body.theme-sims-kitchen .gift-voucher-card {
  overflow: hidden;
  border: 1px solid rgba(224, 43, 191, 0.22) !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  color: #2b1d12 !important;
  box-shadow: 0 18px 45px rgba(224, 43, 191, 0.12) !important;
}

body.theme-sims-kitchen .gift-voucher-card:not(:has(.gift-voucher-table-wrap)) {
  padding: clamp(1.25rem, 3vw, 2rem);
}

body.theme-sims-kitchen .gift-voucher-kicker {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: rgba(224, 43, 191, 0.12);
  color: #e02bbf !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.theme-sims-kitchen .gift-voucher-subtitle,
body.theme-sims-kitchen .gift-voucher-card .text-muted,
body.theme-sims-kitchen .gift-voucher-card small {
  color: #5f3f2c !important;
}

body.theme-sims-kitchen .gift-voucher-card .form-label,
body.theme-sims-kitchen .gift-voucher-card .form-check-label,
body.theme-sims-kitchen .gift-voucher-form label {
  color: #2b1d12 !important;
  font-weight: 700;
}

body.theme-sims-kitchen .gift-voucher-card .form-control,
body.theme-sims-kitchen .gift-voucher-form .form-control,
body.theme-sims-kitchen .gift-voucher-card-element {
  min-height: 46px;
  border: 1px solid rgba(224, 43, 191, 0.24) !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  color: #2b1d12 !important;
  box-shadow: none !important;
}

body.theme-sims-kitchen .gift-voucher-card textarea.form-control {
  min-height: 116px;
}

body.theme-sims-kitchen .gift-voucher-card .form-control:focus,
body.theme-sims-kitchen .gift-voucher-form .form-control:focus,
body.theme-sims-kitchen .gift-voucher-card-element:focus {
  border-color: #e02bbf !important;
  box-shadow: 0 0 0 0.22rem rgba(224, 43, 191, 0.16) !important;
}

body.theme-sims-kitchen .gift-voucher-switch,
body.theme-sims-kitchen .gift-voucher-terms {
  padding: 1rem;
  border: 1px solid rgba(224, 43, 191, 0.16);
  border-radius: 14px;
  background: #fff1f2;
}

body.theme-sims-kitchen .gift-voucher-switch .form-check-input,
body.theme-sims-kitchen .gift-voucher-terms .form-check-input {
  border-color: rgba(224, 43, 191, 0.45) !important;
  box-shadow: none !important;
}

body.theme-sims-kitchen .gift-voucher-switch .form-check-input:checked,
body.theme-sims-kitchen .gift-voucher-terms .form-check-input:checked {
  border-color: #e02bbf !important;
  background-color: #e02bbf !important;
}

body.theme-sims-kitchen .gift-voucher-terms a {
  color: #e02bbf !important;
  font-weight: 800;
}

body.theme-sims-kitchen .gift-voucher-submit,
body.theme-sims-kitchen .gift-voucher-pay,
body.theme-sims-kitchen .gift-voucher-search-btn,
body.theme-sims-kitchen .gift-voucher-action,
body.theme-sims-kitchen .gift-voucher-form .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.58rem 1rem;
  border: 1px solid #e02bbf !important;
  border-radius: 12px !important;
  background: #e02bbf !important;
  color: #ffffff !important;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: none !important;
}

body.theme-sims-kitchen .gift-voucher-submit:hover,
body.theme-sims-kitchen .gift-voucher-submit:focus,
body.theme-sims-kitchen .gift-voucher-pay:hover,
body.theme-sims-kitchen .gift-voucher-pay:focus,
body.theme-sims-kitchen .gift-voucher-search-btn:hover,
body.theme-sims-kitchen .gift-voucher-search-btn:focus,
body.theme-sims-kitchen .gift-voucher-action:hover,
body.theme-sims-kitchen .gift-voucher-action:focus,
body.theme-sims-kitchen .gift-voucher-form .btn-primary:hover,
body.theme-sims-kitchen .gift-voucher-form .btn-primary:focus {
  border-color: #c81aa6 !important;
  background: #c81aa6 !important;
  color: #ffffff !important;
}

body.theme-sims-kitchen .gift-voucher-submit:disabled,
body.theme-sims-kitchen .gift-voucher-pay:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

body.theme-sims-kitchen .gift-voucher-action {
  min-height: 34px;
  padding: 0.42rem 0.72rem;
  border-color: rgba(224, 43, 191, 0.34) !important;
  background: #fff1f2 !important;
  color: #e02bbf !important;
  font-size: 0.86rem;
}

body.theme-sims-kitchen .gift-voucher-action:hover,
body.theme-sims-kitchen .gift-voucher-action:focus {
  background: #e02bbf !important;
  color: #ffffff !important;
}

body.theme-sims-kitchen .gift-voucher-table-wrap {
  overflow-x: auto;
}

body.theme-sims-kitchen .gift-voucher-table {
  min-width: 760px;
  margin: 0;
  border-color: rgba(224, 43, 191, 0.18) !important;
  color: #2b1d12 !important;
}

body.theme-sims-kitchen .gift-voucher-table thead th {
  border-color: rgba(224, 43, 191, 0.18) !important;
  background: #e02bbf !important;
  color: #ffffff !important;
  font-weight: 800;
  white-space: nowrap;
}

body.theme-sims-kitchen .gift-voucher-table tbody td,
body.theme-sims-kitchen .gift-voucher-table tfoot td {
  border-color: rgba(224, 43, 191, 0.14) !important;
  background: #ffffff !important;
  color: #2b1d12 !important;
  vertical-align: middle;
}

body.theme-sims-kitchen .gift-voucher-table tbody tr:nth-child(even) td {
  background: #fff7fd !important;
}

body.theme-sims-kitchen .gift-voucher-table tfoot td {
  background: #fff1f2 !important;
  font-weight: 800;
}

body.theme-sims-kitchen .gift-voucher-page .pagination {
  margin-bottom: 0;
}

body.theme-sims-kitchen .gift-voucher-page .page-link {
  border-color: rgba(224, 43, 191, 0.2) !important;
  background: #ffffff !important;
  color: #e02bbf !important;
}

body.theme-sims-kitchen .gift-voucher-page .page-item.active .page-link,
body.theme-sims-kitchen .gift-voucher-page .active > .page-link {
  border-color: #e02bbf !important;
  background: #e02bbf !important;
  color: #ffffff !important;
}

body.theme-sims-kitchen .gift-voucher-form {
  max-width: 620px;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(224, 43, 191, 0.22);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(224, 43, 191, 0.12);
}

body.theme-sims-kitchen .gift-voucher-form .btn-secondary {
  border-color: rgba(224, 43, 191, 0.28) !important;
  background: #fff1f2 !important;
  color: #e02bbf !important;
  font-weight: 800;
}

body.theme-sims-kitchen #termsModal .modal-content,
body.theme-sims-kitchen #paymentModal .modal-content {
  overflow: hidden;
  border: 1px solid rgba(224, 43, 191, 0.22) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 45px rgba(224, 43, 191, 0.16);
}

body.theme-sims-kitchen #termsModal .modal-header,
body.theme-sims-kitchen #paymentModal .modal-header {
  border-bottom: 0;
  background: #e02bbf;
  color: #ffffff;
}

body.theme-sims-kitchen #termsModal .modal-title,
body.theme-sims-kitchen #paymentModal .modal-title {
  color: #ffffff !important;
  font-weight: 800;
}

body.theme-sims-kitchen #termsModal .modal-body,
body.theme-sims-kitchen #paymentModal .modal-body,
body.theme-sims-kitchen #termsModal .modal-footer {
  background: #ffffff;
  color: #2b1d12;
}

body.theme-sims-kitchen .gift-voucher-success-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: #e02bbf;
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 767.98px) {
  body.theme-sims-kitchen .gift-voucher-card:not(:has(.gift-voucher-table-wrap)),
  body.theme-sims-kitchen .gift-voucher-form {
    padding: 1rem;
    border-radius: 14px !important;
  }

body.theme-sims-kitchen .gift-voucher-page .d-flex.align-items-center.justify-content-between {
    align-items: flex-start !important;
    flex-direction: column;
    gap: 1rem;
  }
}

/* Sims Kitchen gallery video page */
body.theme-sims-kitchen .sims-gallery-page {
  min-height: 80vh;
  padding: clamp(2rem, 5vw, 4.5rem) 0 clamp(2.5rem, 6vw, 5rem);
  background:
    radial-gradient(circle at top left, rgba(224, 43, 191, 0.18), transparent 34%),
    linear-gradient(180deg, #fff1f2 0%, #ffffff 48%, #fff7fd 100%) !important;
}

body.theme-sims-kitchen .sims-gallery-inner {
  max-width: 1160px;
}

body.theme-sims-kitchen .sims-gallery-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

body.theme-sims-kitchen .sims-gallery-tabs {
  overflow: hidden;
  border: 1px solid rgba(224, 43, 191, 0.24);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(224, 43, 191, 0.13);
}

body.theme-sims-kitchen .sims-gallery-tabs .nav-link {
  min-width: 126px;
  border: 0 !important;
  border-radius: 999px;
  color: #e02bbf !important;
  font-weight: 800;
  padding: 0.72rem 1.35rem;
}

body.theme-sims-kitchen .sims-gallery-tabs .nav-link.active,
body.theme-sims-kitchen .sims-gallery-tabs .nav-link:hover,
body.theme-sims-kitchen .sims-gallery-tabs .nav-link:focus {
  background: #e02bbf !important;
  color: #ffffff !important;
}

body.theme-sims-kitchen .sims-gallery-heading {
  margin-bottom: 2rem;
  text-align: center;
}

body.theme-sims-kitchen .sims-gallery-heading span {
  display: inline-flex;
  margin-bottom: 0.6rem;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: rgba(224, 43, 191, 0.12);
  color: #e02bbf;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.theme-sims-kitchen .sims-gallery-heading h1 {
  margin: 0;
  color: #2b1d12;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
}

body.theme-sims-kitchen .sims-video-grid {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

body.theme-sims-kitchen .sims-video-card {
  overflow: hidden;
  border: 1px solid rgba(224, 43, 191, 0.2) !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 42px rgba(224, 43, 191, 0.14);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.theme-sims-kitchen .sims-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(224, 43, 191, 0.2);
}

body.theme-sims-kitchen .sims-video-frame {
  aspect-ratio: 16 / 9;
  background: #2b1d12;
  overflow: hidden;
  position: relative;
}

body.theme-sims-kitchen .sims-video-frame iframe,
body.theme-sims-kitchen .sims-video-frame object,
body.theme-sims-kitchen .sims-video-frame embed,
body.theme-sims-kitchen .sims-video-frame video {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

body.theme-sims-kitchen .sims-video-card .card-body {
  padding: 1rem 1.1rem 1.15rem;
  background: linear-gradient(180deg, #ffffff 0%, #fff7fd 100%);
}

body.theme-sims-kitchen .sims-video-card .card-title {
  margin: 0;
  color: #2b1d12 !important;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

body.theme-sims-kitchen .sims-gallery-empty {
  border: 1px dashed rgba(224, 43, 191, 0.35);
  border-radius: 18px;
  background: #ffffff;
  color: #e02bbf;
  padding: 3rem 1rem;
  text-align: center;
}

body.theme-sims-kitchen .sims-gallery-empty i {
  display: block;
  font-size: 2.4rem;
  margin-bottom: 0.7rem;
}

body.theme-sims-kitchen .sims-gallery-empty p {
  margin: 0;
  color: #5f3f2c;
  font-weight: 700;
}

@media (max-width: 575.98px) {
  body.theme-sims-kitchen .sims-gallery-tabs {
    width: 100%;
  }

  body.theme-sims-kitchen .sims-gallery-tabs .nav-item {
    flex: 1 1 0;
  }

  body.theme-sims-kitchen .sims-gallery-tabs .nav-link {
    min-width: 0;
    width: 100%;
    padding-inline: 0.75rem;
  }
}
