/* ---------- Wrapper ---------- */
.delish-subscription-wrapper {
  max-width: 420px;
  background: #ffffff;
  border-radius: 20px;
  padding: 14px; /* reduced */
}

/* ---------- Product Card ---------- */
.ds-product-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 12px; /* reduced */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* ---------- Image Wrapper (HEIGHT CONTROL) ---------- */
.ds-product-image-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 330px; /* DESKTOP HEIGHT */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Image (CENTERED + BIGGER, NO CUT) ---------- */
.ds-product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* no crop */
  object-position: center; /* KEY: center focus */
  display: block;
}

/* ---------- Discount Badge ---------- */
.ds-sale-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffdb4f;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 10px 15px;
  border-radius: 25px;
  z-index: 1;
  height: 50px;
  width: 50px;
}

/* ---------- Content ---------- */
.ds-product-content {
  padding: 10px 2px 2px;
}

.ds-product-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  margin: 6px 0;
}

/* ---------- Price ---------- */
.ds-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.ds-sale-price {
  font-size: 17px;
  font-weight: 700;
}

.ds-regular-price {
  font-size: 13px;
  text-decoration: line-through;
  color: #b8eb8c;
}

.ds-unit-text {
  font-size: 11px;
  color: #9aa0a6;
}

/* =================================================
   TABLET (≤ 1024px)
   ================================================= */
/* Tablet */
@media (max-width: 1024px) {
  .ds-product-image-wrap {
    height: 180px;
  }

  .ds-product-title {
    font-size: 16px;
  }

  .ds-sale-price {
    font-size: 16px;
  }
}

/* =================================================
   MOBILE (≤ 480px)
   ================================================= */
@media (max-width: 480px) {
  .delish-subscription-wrapper {
    padding: 10px;
    border-radius: 16px;
  }

  .ds-product-card {
    padding: 10px;
    border-radius: 16px;
  }

  /* Mobile */

  .ds-product-image-wrap {
    height: 160px;
  }

  .ds-product-title {
    font-size: 15px;
  }

  .ds-sale-price {
    font-size: 15px;
  }

  .ds-regular-price {
    font-size: 12px;
  }

  .ds-unit-text {
    font-size: 10px;
  }
}

/* ===============================
   Subscription Instructions Card
   =============================== */

.ds-instructions-card {
  margin-top: 16px;
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.ds-instructions-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ===============================
   Instructions – Icon Style
   =============================== */

.ds-instructions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ds-instructions-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

/* Green circular "i" icon */
.ds-instructions-list li::before {
  content: "i";
  position: absolute;
  left: 0;
  top: 2px;
  width: 15px;
  height: 15px;
  background: #12a058; /* Delish green */
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}

/* Mobile */
@media (max-width: 480px) {
  .ds-instructions-list li {
    font-size: 12.5px;
    padding-left: 30px;
  }

  .ds-instructions-list li::before {
    width: 18px;
    height: 18px;
    font-size: 12px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .ds-instructions-card {
    padding: 14px;
    border-radius: 16px;
  }

  .ds-instructions-title {
    font-size: 14px;
  }

  .ds-instructions-list li {
    font-size: 12.5px;
    padding-left: 30px;
  }

  .ds-instructions-list li::before {
    width: 18px;
    height: 18px;
    font-size: 12px;
  }
}

/* ===============================
   Duration & Calendar (Column 1)
   =============================== */

.ds-duration-card {
  margin-top: 16px;
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.ds-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.ds-select,
.ds-duration-card input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 25px;
  border: 1px solid #ddd;
  font-size: 13px;
}
/* ===== Custom Dropdown ===== */
.ds-select {
  background-color: #f7faf4;
  border: 1px solid #12a058;
  color: #0f5132;
  font-weight: 600;
}

.ds-select:focus {
  outline: none;
  border-color: #0b8a45;
  box-shadow: 0 0 0 2px rgba(18, 160, 88, 0.15);
}

.ds-date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

/* Calendar */
.ds-week-calendar {
  margin-top: 16px;
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

/* ===== Date Picker Input ===== */
.ds-duration-card input[type="date"],
.ds-duration-card input[type="text"] {
  background-color: #f7faf4;
  border: 1px solid #12a058;
  color: #0f5132;
  font-weight: 600;
  border-radius: 25px;
}

.ds-duration-card input:focus {
  outline: none;
  border-color: #0b8a45;
  box-shadow: 0 0 0 2px rgba(18, 160, 88, 0.15);
}

.ds-week-header {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  margin-bottom: 12px;
}

#ds-week-title {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #0f5132;
}

.ds-arrow {
  all: unset; /* 🔑 KEY LINE */
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #12a058;
  background: #e6f3ec;
  transition:
    background 0.2s ease,
    transform 0.1s ease;
}

/* Hover */
.ds-arrow:hover {
  background: #12a058;
  color: #ffffff;
}

/* Active (click) */
.ds-arrow:active {
  transform: scale(0.92);
}

/* Disabled */
.ds-arrow:disabled {
  background: #e0e0e0;
  color: #9e9e9e;
  cursor: not-allowed;
  transform: none;
}

.ds-week-days {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
}

.ds-day {
  width: 48px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  user-select: none;
  background: #e6f3ec;
  color: #0f5132;
  font-weight: 600;
}

.ds-weekday {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 4px;
}

.ds-date {
  font-size: 15px;
  font-weight: 700;
}

/* Scheduled delivery days */
.ds-day.active {
  background: #12a058;
  color: #ffffff;
}

/* Buffer / usable days */
.ds-day.buffer {
  background: #dff1e7;
  color: #2e7d32;
}

@media (max-width: 1024px) {
  .ds-duration-card {
    padding: 14px;
    border-radius: 18px;
  }

  .ds-select,
  .ds-duration-card input {
    padding: 9px 10px;
    font-size: 13px;
  }

  .ds-date-row {
    gap: 10px;
  }

  .ds-week-calendar {
    padding: 14px;
    border-radius: 18px;
  }

  .ds-week-days {
    gap: 8px;
  }

  .ds-day {
    min-width: 50px;
    padding: 9px 0;
    border-radius: 14px;
    font-size: 11.5px;
  }
}

@media (max-width: 480px) {
  .ds-duration-card {
    padding: 14px;
    border-radius: 16px;
  }

  .ds-label {
    font-size: 12.5px;
  }

  .ds-select,
  .ds-duration-card input {
    padding: 9px 10px;
    font-size: 12.5px;
    border-radius: 10px;
  }

  /* Stack dates vertically on mobile */
  .ds-date-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ds-week-calendar {
    padding: 14px;
    border-radius: 16px;
  }

  .ds-week-header {
    font-size: 14px;
  }

  .ds-arrow {
    font-size: 18px;
  }

  .ds-week-days {
    gap: 8px;
  }

  .ds-day {
    min-width: 46px;
    padding: 8px 0;
    border-radius: 12px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .ds-day {
    width: 44px;
    height: 52px;
    border-radius: 12px;
  }

  .ds-weekday {
    font-size: 10.5px;
  }

  .ds-date {
    font-size: 14px;
  }

  .ds-arrow {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}

.ds-layout {
  display: grid;
  grid-template-columns: 360px minmax(520px, 1fr) 360px;
  gap: 28px;
  align-items: flex-start;
}

.ds-col-middle {
  width: 100%;
  max-width: 720px;
}
.ds-slot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 12px;
}

.ds-col-middle .ds-section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

/*------------------------------------------------------------------------------------------------*/
/*----------------------------Middle Column ------------------------------------------------------*/
/*------------------------------------------------------------------------------------------------*/

/* ======================================================
   DELISH – TIME SLOT COLUMN (COLUMN 2)
   ====================================================== */

.ds-col-middle {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
}

/* ---------- TITLES ---------- */

.ds-section-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}

.ds-section-subtitle {
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
}

/* ---------- SLOT GROUP ---------- */

.ds-slot-group {
  margin-bottom: 18px;
}

.ds-slot-group-title {
  font-size: 14px;
  font-weight: 600;
  color: #006633; /* Main Green */
  margin-bottom: 10px;
}

/* ---------- SLOT GRID ---------- */

.ds-slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- SLOT PILL ---------- */

.ds-slot {
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
  border: 1.5px solid #ffd84f; /* Dark Yellow */
  color: #111;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* Hover */
.ds-slot:hover {
  background: #fff0db; /* Light Pink */
}

/* Active / Selected */
.ds-slot.active {
  background: #ffd84f;
  border-color: #ffd84f;
  font-weight: 600;
}

/* Disabled slot */
.ds-slot.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ---------- SELECTED CONFIGURATIONS ---------- */

.ds-selected-slots {
  margin-top: 22px;
}

.ds-selected-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Selected slots container */
#ds-selected-slots-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- SELECTED SLOT CARD ---------- */

.ds-selected-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #f7fbf3; /* Light Green background */
  border: 1px solid #b8eb8c;
  min-width: 260px;
}

/* Slot info */
.ds-slot-info small {
  display: block;
  font-size: 11px;
  color: #666;
}

.ds-slot-info strong {
  font-size: 14px;
  font-weight: 600;
}

/* ---------- QTY CONTROLS ---------- */

.ds-qty-control {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

/* Buttons */
.ds-qty-control button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: #ffd84f;
  color: #111;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Hover */
.ds-qty-control button:hover {
  background: #ffdb4f;
}

/* Disabled minus */
.ds-qty-control button:disabled {
  background: #eee;
  color: #aaa;
  cursor: not-allowed;
}

/* Qty input */
.ds-qty-control input {
  width: 42px;
  height: 28px;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 13px;
}

/* Remove slot */
.qty-remove {
  font-size: 16px;
  margin-left: 6px;
  cursor: pointer;
  color: #999;
}

.qty-remove:hover {
  color: #e74c3c;
}

/* ---------- MOQ NOTE ---------- */

.ds-moq-note {
  font-size: 12px;
  color: #e74c3c;
  margin-top: 8px;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */

/* ---------- TABLET ---------- */
@media (max-width: 1024px) {
  .ds-slot {
    font-size: 12px;
    padding: 6px 12px;
  }

  .ds-selected-card {
    min-width: 100%;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
  .ds-col-middle {
    padding: 16px;
  }

  .ds-slot-grid {
    gap: 8px;
  }

  .ds-slot {
    font-size: 12px;
    padding: 6px 10px;
  }

  #ds-selected-slots-list {
    flex-direction: column;
  }

  .ds-selected-card {
    width: 100%;
  }
}

/* =========================
   COUPON SECTION
========================= */
.ds-coupon-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.ds-coupon-input-wrap {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.ds-coupon-input-wrap input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.ds-coupon-input-wrap button {
  padding: 10px 14px;
  border-radius: 8px;
  background: #006633;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* =========================
   COUPON LIST
========================= */
.ds-coupon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ds-coupon-pill {
  border: 1px dashed #ffdb4f;
  background: #fffceb;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  min-width: 160px;
  transition: all 0.2s ease;
}

.ds-coupon-pill:hover {
  background: #fff0db;
}

.ds-coupon-pill.active {
  border: 1px solid #006633;
  background: #e9f6ef;
}

.ds-coupon-code {
  font-weight: 700;
  color: #006633;
}

.ds-coupon-desc {
  font-size: 12px;
  color: #555;
}

.ds-coupon-status {
  font-size: 11px;
  color: #12a058;
}

/* =========================
   TABLET VIEW
========================= */
@media (min-width: 768px) and (max-width: 1024px) {
  .ds-coupon-card {
    padding: 16px;
  }

  /* Input stays inline */
  .ds-coupon-input-wrap input {
    font-size: 14px;
  }

  .ds-coupon-input-wrap button {
    font-size: 14px;
    padding: 10px 16px;
  }

  /* 2 coupons per row */
  .ds-coupon-list {
    gap: 10px;
  }

  .ds-coupon-pill {
    min-width: calc(50% - 6px);
  }
}

/* =========================
   MOBILE VIEW
========================= */
@media (max-width: 767px) {
  /* Coupon Card */
  .ds-coupon-card {
    padding: 14px;
    border-radius: 12px;
  }

  /* Input + Button Stack */
  .ds-coupon-input-wrap {
    flex-direction: column;
  }

  .ds-coupon-input-wrap input,
  .ds-coupon-input-wrap button {
    width: 100%;
  }

  .ds-coupon-input-wrap button {
    padding: 12px;
    font-size: 14px;
  }

  /* Coupon Pills */
  .ds-coupon-list {
    gap: 8px;
  }

  .ds-coupon-pill {
    min-width: 100%;
    padding: 10px;
  }

  .ds-coupon-code {
    font-size: 14px;
  }

  .ds-coupon-desc {
    font-size: 11px;
  }

  .ds-coupon-status {
    font-size: 11px;
  }
}

.ds-coupon-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.ds-coupon-item {
  border: 1px dashed #12a058;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  background: #f7fff6;
  transition: all 0.2s ease;
}

.ds-coupon-item:hover {
  background: #eaffea;
  transform: translateY(-2px);
}

.ds-coupon-code {
  font-weight: 700;
  color: #006633;
}

.ds-coupon-desc {
  font-size: 13px;
  color: #555;
  margin: 4px 0;
}

.ds-coupon-meta {
  font-size: 12px;
  color: #12a058;
}

/*---------------------------------------------------------------------------------------*/
/*------------------------------- Third Column ------------------------------------------*/
/*---------------------------------------------------------------------------------------*/

.ds-col-right {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
}

.ds-address-card,
.ds-address-form-card {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
}

.ds-address-display p {
  margin: 4px 0;
  font-size: 14px;
}

.ds-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ds-form-grid input {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.ds-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.ds-btn-primary {
  background: #006633;
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  border: none;
}

.ds-btn-outline {
  border: 1px solid #006633;
  background: #fff;
  color: #006633;
  padding: 2px 14px;
  border-radius: 10px;
}

.ds-btn-link {
  background: none;
  border: none;
  color: #666;
}

.ds-address-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

/* Mobile */
@media (max-width: 768px) {
  .ds-form-grid {
    grid-template-columns: 1fr;
  }
}

.ds-summary-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  margin-top: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.ds-summary-block p {
  font-size: 14px;
  margin: 6px 0;
}

.ds-summary-subtitle {
  font-size: 14px;
  margin-bottom: 6px;
}

.ds-summary-slots ul {
  padding-left: 16px;
  font-size: 13px;
}

.ds-price-row {
  display: flex;
  justify-content: flex-start;
  font-size: 14px;
  margin: 8px 0;
}

.ds-price-row.ds-strike s {
  color: #999;
  margin-right: 6px;
}

.ds-grand-total {
  font-size: 16px;
  font-weight: 700;
}

.ds-terms {
  font-size: 12px;
  margin: 12px 0;
}

.ds-start-btn {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border-radius: 12px;
}

.ds-start-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Mobile */
@media (max-width: 768px) {
  .ds-summary-card {
    margin-top: 12px;
  }
}

/* ================================
   TERMS & START SUBSCRIPTION
================================ */

.ds-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  font-size: 13px;
  color: #444;
}

.ds-terms input[type="checkbox"] {
  margin-top: 3px;
  accent-color: #006633;
  cursor: pointer;
}

.ds-terms a {
  color: #006633;
  font-weight: 600;
  text-decoration: underline;
}

.ds-terms a:hover {
  color: #12a058;
}

/* BUTTON */
.ds-start-btn {
  width: 100%;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 999px;
  background: #ffdb4f;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: not-allowed;
  opacity: 0.55;
  transition: all 0.25s ease;
}

.ds-start-btn.active {
  cursor: pointer;
  opacity: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.ds-start-btn.active:hover {
  background: #fee042;
  transform: translateY(-1px);
}

/* ================================
   TERMS MODAL
================================ */

.ds-terms-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.ds-terms-modal.active {
  display: flex;
}

.ds-terms-box {
  background: #fff;
  width: 90%;
  max-width: 520px;
  border-radius: 16px;
  padding: 20px;
}

.ds-terms-box h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.ds-terms-box p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  max-height: 260px;
  overflow-y: auto;
}

.ds-terms-actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.ds-terms-actions button {
  padding: 8px 14px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.ds-btn-cancel {
  background: #eee;
}

.ds-btn-accept {
  background: #006633;
  color: #fff;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {
  .ds-start-btn {
    font-size: 14px;
    padding: 13px;
  }

  .ds-terms {
    font-size: 12px;
  }
}

/* ======================================================
   COUPONS
====================================================== */

.ds-coupon-list {
  margin-top: 12px;
}

.ds-coupon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px dashed #cfcfcf;
  padding: 10px 12px;
  margin-bottom: 8px;
  border-radius: 6px;
  background: #fff;
}

.ds-coupon-item.applied {
  border-color: #12a058;
  background: #f3fff6;
}

.ds-coupon-left strong {
  display: block;
  font-size: 14px;
}

.ds-coupon-left small {
  font-size: 12px;
  color: #777;
}

.ds-coupon-right {
  text-align: right;
}

.ds-coupon-amount {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.ds-apply-btn {
  background: #006633;
  color: #fff;
  border: none;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.ds-apply-btn:hover {
  opacity: 0.9;
}

.ds-coupon-status.applied {
  color: #12a058;
  font-weight: 600;
  font-size: 13px;
}

.ds-view-all {
  text-align: center;
  font-size: 13px;
  color: #006633;
  cursor: pointer;
  margin-top: 6px;
}

.ds-bill-summary {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
}

.ds-price-row {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
}

.ds-price-row s {
  color: #999;
  margin-right: 6px;
}

.ds-grand-total {
  font-size: 18px;
  font-weight: 700;
}

.ds-muted-text {
  color: #999;
}

.ds-summary-slots ul {
  padding-left: 18px;
}

.product_cat-subscription .add_to_cart_button,
.product_cat-subscription .ajax_add_to_cart {
  display: none !important;
}

.ds-slot-disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}
