.btn-header {
  background: linear-gradient(90deg, #3fd0c9 0%, #70f07f 100%);
  color: #051c2d !important;
  font-family: "Urbanist", sans-serif;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 10px;
  border: none;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: pointer;
  text-decoration: none;
}
.btn-header:hover {
  background: linear-gradient(90deg, #6ff081 0.1%, #42d2c4 99.9%);
}
/* ══ CART PAGE ══ */
.cart-shell {
  background: var(--off-white);
  padding: 20px 0 40px;
}
.cart-hdr {
  padding: 20px 0;
  margin-bottom: 8px;
}
.cart-hdr h1 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 4px 0;
}
.cart-hdr h1 i {
  color: var(--teal);
  font-size: 1.5rem;
}
.cart-hdr p {
  font-size: 0.9rem;
  color: var(--gray-lt);
  margin: 0;
}

/* ══ CART LAYOUT (desktop: items left + sticky summary right) ══ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 16px;
  align-items: start;
}
.cart-left {
  min-width: 0;
}

/* ══ CART ITEMS ══ */
.cart-items {
  margin-bottom: 0;
}
.cart-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 8px;
  display: grid;
  grid-template-columns: 70px 1fr 120px;
  gap: 12px;
  align-items: center;
}
.item-img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--off-white);
  grid-column: 1;
  grid-row: 1 / span 2;
}
.item-content {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.item-cat {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--teal-dark);
}
.item-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}
.item-desc {
  font-size: 0.77rem;
  color: var(--gray-lt);
  line-height: 1.4;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.item-link {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 0.73rem;
  color: var(--teal-dark);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s;
}
.item-link:hover {
  color: var(--teal);
}

/* ══ QUANTITY & OPTIONS SECTION ══ */
.qty-section {
  grid-column: 2;
  grid-row: 2;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.qty-selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid #3fd0c9;
  border-radius: 20px;
  padding: 5px 8px;
  background-color: #fff;
  width: fit-content;
}
.qty-btn {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s;
  border-radius: 3px;
  padding: 0;
}
.qty-btn:hover {
  background-color: var(--off-white);
}
.qty-btn.trash {
  color: #dc2626;
  font-size: 13px;
}
.qty-btn.trash:hover {
  background-color: #fef2f2;
}
.qty-number {
  font-family: "Urbanist", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  min-width: 20px;
  text-align: center;
}

/* ══ WARNING MESSAGE ══ */
.group-warning {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 6px 8px;
  border-radius: 5px;
  font-size: 0.7rem;
  line-height: 1.3;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
}
.group-warning.show {
  display: flex;
  align-items: center;
  gap: 4px;
}
.group-warning i {
  margin: 0;
  font-size: 0.75rem;
  flex-shrink: 0;
  color: #dc2626;
}
.group-warning a {
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

/* ══ QUANTITY & ID TOGETHER ══ */
.qty-and-id {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

/* ══ ID CARD ADD-ON ══ */
.id-card-section {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
}
.id-card-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--teal);
}
.id-card-label {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  white-space: nowrap;
}
.id-card-qty-selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid #3fd0c9;
  border-radius: 20px;
  padding: 5px 8px;
  background-color: #fff;
  width: fit-content;
}
.id-card-qty-selector .qty-btn {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s;
  border-radius: 3px;
  padding: 0;
}
.id-card-qty-selector .qty-btn:hover {
  background-color: var(--off-white);
}
.id-card-qty-selector .qty-number {
  font-family: "Urbanist", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  min-width: 20px;
  text-align: center;
}

/* ══ PRICE SECTION ══ */
.price-section {
  grid-column: 3;
  grid-row: 1 / span 2;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-end;
  min-width: 100px;
}
.price-label {
  font-family: "Urbanist", sans-serif;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-lt);
  font-weight: 700;
}
.price-base {
  font-family: "Urbanist", sans-serif;
  font-size: 0.75rem;
  color: var(--gray-lt);
  text-decoration: line-through;
}
.price-main {
  font-family: "Urbanist", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy);
}

/* ══ CART SUMMARY SIDEBAR ══ */
.cart-summary {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  position: -webkit-sticky;
  position: sticky;
  top: 76px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 100;
}

.coupon-input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.75rem;
  font-family: "Lato", sans-serif;
  background: var(--off-white);
}
.coupon-input:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
}
.coupon-btn {
  padding: 8px 12px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.coupon-btn:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.summary-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 0.85rem;
}
.summary-row.total {
  font-family: "Urbanist", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 12px;
  margin-top: 4px;
}
.summary-label {
  color: var(--gray-lt);
  font-size: 0.8rem;
}
.summary-value {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}

/* ══ BUTTONS ══ */
.btn-checkout {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #3fd0c9 0%, #70f07f 100%);
  color: #051c2d;
  font-family: "Urbanist", sans-serif;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 8px;
}
.btn-checkout:hover {
  background: linear-gradient(90deg, #6ff081 0.1%, #42d2c4 99.9%);
}

.btn-continue-shopping {
  display: block;
  width: 100%;
  background: #fff;
  color: var(--navy);
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-continue-shopping:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

/* ══ EMPTY CART ══ */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 12px;
}
.empty-state i {
  font-size: 3.5rem;
  color: var(--border);
  margin-bottom: 16px;
}
.empty-state h2 {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.empty-state p {
  font-size: 0.9rem;
  color: var(--gray-lt);
  margin-bottom: 20px;
}

/* ══ UPSELL SECTION ══ */
.upsell-section {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.upsell-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.upsell-title i {
  background: linear-gradient(90deg, #3fd0c9 0%, #70f07f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.upsell-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition:
    all 0.2s,
    border-color 0.2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.upsell-card:hover {
  box-shadow: 0 12px 36px rgba(11, 27, 44, 0.1);
  transform: translateY(-3px);
  border-color: transparent;
}
.upsell-img {
  width: 100%;
  height: 140px;
  background: var(--off-white);
  object-fit: cover;
  display: block;
  aspect-ratio: 16/9;
}
.upsell-body {
  padding: 13px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 5px;
}
.upsell-meta {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.upsell-meta-sep {
  color: var(--border);
  font-weight: 300;
}
.upsell-meta-dur {
  color: var(--gray-lt);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}
.upsell-meta-dur i {
  font-size: 0.58rem;
}
.upsell-name {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 0.91rem;
  color: var(--navy);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.43em;
}
.upsell-desc {
  font-size: 0.77rem;
  color: var(--gray-lt);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.31em;
}
.upsell-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 18px;
}
.upsell-stars {
  color: #f59e0b;
  font-size: 0.64rem;
  letter-spacing: 0.5px;
}
.upsell-rating-num {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 0.73rem;
  color: var(--gray);
}
.upsell-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 11px;
  margin-top: auto;
  border-top: 1px solid var(--border);
  gap: 6px;
}
.upsell-price {
  font-family: "Urbanist", sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--navy);
}
.upsell-ctas {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.upsell-info-btn {
  padding: 7px 13px;
  background: var(--off-white);
  color: var(--navy);
  font-family: "Urbanist", sans-serif;
  font-weight: 800;
  font-size: 0.71rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.upsell-info-btn:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}
.upsell-cart-btn {
  padding: 7px 13px;
  background: linear-gradient(90deg, #3fd0c9 0%, #70f07f 100%);
  color: #051c2d;
  font-family: "Urbanist", sans-serif;
  font-weight: 800;
  font-size: 0.71rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.upsell-cart-btn:hover {
  background: linear-gradient(90deg, #6ff081 0.1%, #42d2c4 99.9%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(63, 208, 201, 0.28);
}

/* ══ RESPONSIVE ══ */

/* Large screens < 1200px: keep 2-column grid, narrow the summary column */
@media (max-width: 1199px) {
  .cart-layout {
    grid-template-columns: 1fr 300px;
  }
  .cart-summary {
    position: -webkit-sticky;
    position: sticky;
    width: auto;
  }
  .cart-left {
    margin-right: 0;
  }
}

/* Tablets < 992px: narrower summary column */
@media (max-width: 991px) {
  .cart-layout {
    grid-template-columns: 1fr 260px;
  }
  .cart-summary {
    width: auto;
  }
  .cart-left {
    margin-right: 0;
  }
}

/* Tablets 768–1199px: move qty row to full-width second row to prevent overflow
   (ID card qty selector makes the row too wide at these widths) */
@media (min-width: 768px) and (max-width: 1199px) {
  .cart-item {
    grid-template-rows: auto auto;
    align-items: start;
    row-gap: 0;
  }
  .item-img {
    grid-column: 1;
    grid-row: 1;
  }
  .item-content {
    grid-column: 2;
    grid-row: 1;
  }
  .price-section {
    grid-column: 3;
    grid-row: 1;
    min-width: 0;
    align-items: flex-end;
    gap: 1px;
  }
  .price-label {
    display: none;
  }
  .qty-section {
    grid-column: 1 / -1;
    grid-row: 2;
    border-top: 1px solid var(--border);
    padding-top: 8px;
    margin-top: 8px;
  }
}

/* Mobile < 768px: summary moves to fixed bottom bar */
@media (max-width: 767px) {
  /* Header nav: fix link height inside collapsed menu */
  .site-header .nav-link {
    height: auto;
    padding: 10px 16px !important;
    border-bottom: none;
    border-left: 3px solid transparent;
  }
  .site-header .nav-link:hover {
    border-bottom: none;
    border-left-color: var(--teal);
    background: rgba(255, 255, 255, 0.06);
  }
  .navbar-collapse {
    padding: 8px 0 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4px;
  }

  /* Cart header */
  .cart-hdr h1 {
    font-size: 1.4rem;
  }

  /* Cart items: compact 3-col */
  .cart-item {
    grid-template-columns: 56px 1fr auto;
    grid-template-rows: auto auto auto;
    gap: 0;
    row-gap: 0;
    column-gap: 10px;
    padding: 10px;
    align-items: start;
  }
  .item-img {
    width: 56px;
    height: 56px;
    grid-column: 1;
    grid-row: 1;
  }
  .item-content {
    grid-column: 2;
    grid-row: 1;
    gap: 3px;
  }
  .item-title {
    font-size: 0.88rem;
  }
  .item-desc {
    display: none;
  } /* hide description on mobile to reduce bulk */

  /* Price: reset span, sit top-right */
  .price-section {
    grid-column: 3;
    grid-row: 1;
    min-width: 0;
    align-items: flex-end;
    gap: 1px;
  }
  .price-label {
    display: none;
  }
  .price-main {
    font-size: 0.9rem;
  }

  /* Qty + ID card: full-width second row */
  .qty-section {
    grid-column: 1 / -1;
    grid-row: 2;
    border-top: 1px solid var(--border);
    padding-top: 8px;
    margin-top: 8px;
    gap: 6px;
  }
  .qty-and-id {
    flex-wrap: nowrap;
    gap: 6px;
    align-items: center;
  }
  .id-card-label {
    white-space: nowrap;
    font-size: 0.68rem;
  }
  .id-card-section {
    flex-wrap: nowrap;
    gap: 4px;
  }

  /* Warning: third row */
  .group-warning {
    font-size: 0.68rem;
  }

  /* Mobile: collapse to single column */
  .cart-layout {
    grid-template-columns: 1fr;
  }

  /* Cart left: no extra padding needed — space for sticky bar handled by body */
  .cart-left {
    margin-right: 0;
    padding-bottom: 0;
  }
  body {
    padding-bottom: 80px;
  }

  /* Summary: flows naturally as scrollable page content */
  .cart-summary {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 12px !important;
    max-height: none !important;
    border: 1px solid var(--border) !important;
    box-shadow: none !important;
    padding: 16px;
    margin-top: 12px;
  }

  /* Upsell */
  .upsell-section {
    margin-top: 20px;
    padding-top: 16px;
  }
  .upsell-title {
    font-size: 0.95rem;
  }
}

/* Small phones < 576px */
@media (max-width: 575px) {
  .cart-hdr {
    padding: 14px 0;
  }
  .cart-hdr h1 {
    font-size: 1.25rem;
    gap: 8px !important;
  }

  .cart-item {
    padding: 10px;
    column-gap: 8px;
  }
  .item-img {
    width: 50px;
    height: 50px;
  }
  .item-title {
    font-size: 0.84rem;
  }

  .qty-btn {
    width: 22px;
    height: 22px;
    font-size: 13px;
  }
  .qty-number {
    font-size: 12px;
  }
  .qty-selector {
    padding: 4px 6px;
    gap: 4px;
  }

  .id-card-label {
    font-size: 0.65rem;
  }
  .id-card-qty-selector {
    padding: 2px 3px;
    gap: 2px;
  }

  .id-card-qty-selector .qty-btn {
    font-size: 12px;
  }

  .cart-summary {
    padding: 14px;
  }
  .btn-checkout {
    font-size: 0.72rem;
    padding: 10px 12px;
  }
  .btn-continue-shopping {
    font-size: 0.72rem;
    padding: 8px 12px;
  }
}

/* ══ MOBILE STICKY CHECKOUT BAR ══ */
.cart-mobile-bar {
  display: none; /* desktop: hidden */
}
@media (max-width: 767px) {
  .cart-mobile-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
    padding: 12px 20px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }
  .cart-mobile-bar-label {
    font-family: "Urbanist", sans-serif;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 700;
    margin-bottom: 1px;
  }
  .cart-mobile-bar-total {
    font-family: "Urbanist", sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: #fff;
    line-height: 1;
  }
  .btn-checkout-mobile {
    background: linear-gradient(90deg, #3fd0c9 0%, #70f07f 100%);
    color: #051c2d;
    font-family: "Urbanist", sans-serif;
    font-weight: 900;
    font-size: 0.82rem;
    padding: 14px 22px;
    border-radius: 10px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    box-shadow: 0 5px 18px rgba(63, 208, 201, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-checkout-mobile:hover {
    background: linear-gradient(90deg, #6ff081 0.1%, #42d2c4 99.9%);
    transform: translateY(-1px);
  }
}

/* ══ TOAST NOTIFICATION ══ */
.toast-container-custom {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  pointer-events: none;
  width: max-content;
  max-width: calc(100vw - 32px);
}
.toast-custom {
  background: #fff;
  border: 2px solid var(--teal);
  border-radius: 10px;
  padding: 12px 18px;
  box-shadow: 0 8px 24px rgba(11, 27, 44, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.85rem;
  pointer-events: auto;
  animation: slideUp 0.3s ease-out;
  white-space: normal;
  word-break: break-word;
}
.toast-custom i {
  color: var(--teal);
  font-size: 1rem;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(20px);
  }
}
.toast-custom.removing {
  animation: slideDown 0.3s ease-out forwards;
}

/* ══ REMOVAL TOAST ══ */
.removal-toast {
  background: #fff;
  border: 2px solid #fecaca;
  border-radius: 10px;
  padding: 12px 18px;
  box-shadow: 0 8px 24px rgba(11, 27, 44, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.85rem;
  pointer-events: auto;
  animation: slideUp 0.3s ease-out;
  white-space: normal;
  word-break: break-word;
}
.removal-toast i {
  color: #dc2626;
  font-size: 1rem;
  flex-shrink: 0;
}
.removal-toast-content {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
.removal-toast-undo {
  color: #dc2626;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.15s;
  margin-left: 2px;
}
.removal-toast-undo:hover {
  color: #991b1b;
}
.removal-toast-close {
  background: none;
  border: none;
  color: #dc2626;
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.15s;
}
.removal-toast-close:hover {
  color: #991b1b;
}
.removal-toast.removing {
  animation: slideDown 0.3s ease-out forwards;
}

/* ══ CROSS-SELL MODAL ══ */
.cs-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 27, 44, 0.6);
  backdrop-filter: blur(2px);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cs-overlay.open {
  display: flex;
}

.cs-modal {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px 28px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(11, 27, 44, 0.25);
  position: relative;
  text-align: center;
  animation: csSlideIn 0.25s ease-out;
}
@keyframes csSlideIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cs-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--gray-lt);
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 6px;
  transition:
    background 0.15s,
    color 0.15s;
}
.cs-close:hover {
  background: var(--off-white);
  color: var(--navy);
}

.cs-badge {
  display: inline-block;
  background: linear-gradient(90deg, #3fd0c9 0%, #70f07f 100%);
  color: #051c2d;
  font-family: "Urbanist", sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.cs-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
}
.cs-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cs-price-new {
  font-family: "Urbanist", sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--navy);
}
.cs-price-old {
  font-family: "Urbanist", sans-serif;
  font-size: 0.95rem;
  color: var(--gray-lt);
  text-decoration: line-through;
}
.cs-desc {
  font-size: 0.85rem;
  color: var(--gray-lt);
  line-height: 1.5;
  margin-bottom: 24px;
}
.cs-btn-add {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #3fd0c9 0%, #70f07f 100%);
  color: #051c2d;
  font-family: "Urbanist", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  margin-bottom: 10px;
}
.cs-btn-add:hover {
  background: linear-gradient(90deg, #6ff081 0.1%, #42d2c4 99.9%);
  transform: translateY(-1px);
}
.cs-btn-skip {
  display: block;
  width: 100%;
  background: #fff;
  color: var(--gray-lt);
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 11px 20px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition:
    border-color 0.15s,
    color 0.15s;
}
.cs-btn-skip:hover {
  border-color: var(--gray-lt);
  color: var(--navy);
}

@media (max-width: 575px) {
  .cs-modal {
    padding: 28px 20px 22px;
  }
  .cs-title {
    font-size: 1.1rem;
  }
  .cs-price-new {
    font-size: 1.35rem;
  }
}
