/* =========================================================
   ZERALVO ATELIER - LUXURY MINIMALIST CHECKOUT CSS
   ========================================================= */

.checkout-page-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 20px 80px;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
}

/* ---------------------------------------------------------
   Header & Stepper
   --------------------------------------------------------- */
.checkout-header-section {
  margin-bottom: 36px;
}

.checkout-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #888888;
  margin-bottom: 12px;
}

.checkout-breadcrumb a {
  color: #666666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.checkout-breadcrumb a:hover {
  color: #111111;
}

.checkout-breadcrumb .current {
  color: #111111;
  font-weight: 600;
}

.checkout-title-wrap h1 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: #111111;
}

.checkout-title-wrap p {
  font-size: 13px;
  color: #666666;
  margin: 0 0 24px;
}

.checkout-stepper {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  width: fit-content;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #888888;
  font-size: 12px;
  font-weight: 600;
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.step-item.passed .step-num {
  background: #2e7d32;
  color: #ffffff;
}

.step-item.passed .step-label {
  color: #2e7d32;
}

.step-item.active .step-num {
  background: #111111;
  color: #ffffff;
}

.step-item.active .step-label {
  color: #111111;
  font-weight: 700;
}

.step-divider {
  width: 32px;
  height: 1px;
  background: #e0e0e0;
}

/* ---------------------------------------------------------
   Grid Layout (2 Columns)
   --------------------------------------------------------- */
.checkout-grid-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: start;
}

/* ---------------------------------------------------------
   Left Column: Form Cards
   --------------------------------------------------------- */
.checkout-form-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checkout-main-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checkout-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.card-badge {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #111111;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  margin: 0;
  flex: 1;
}

/* Member quick banner */
.member-quick-banner {
  background: #faf8f5;
  border: 1px solid #ebdcd0;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.member-info-txt strong {
  display: block;
  font-size: 13px;
  color: #3d2b1f;
  margin-bottom: 2px;
}

.member-info-txt span {
  font-size: 11px;
  color: #7a6352;
}

.btn-member-login {
  padding: 8px 16px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 6px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.btn-member-login:hover {
  opacity: 0.85;
}

/* Form fields */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group.full-width {
  margin-bottom: 16px;
}

.input-group label {
  font-size: 12px;
  font-weight: 700;
  color: #333333;
}

.input-group label .req {
  color: #d32f2f;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  color: #111111;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  border-color: #111111;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.input-hint {
  font-size: 11px;
  color: #888888;
}

.saved-address-select {
  padding: 6px 12px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  font-size: 12px;
  font-family: inherit;
  background: #ffffff;
  color: #333333;
}

/* Payment Options Grid */
.payment-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.payment-option-card {
  border: 2px solid #eaeaea;
  border-radius: 12px;
  padding: 18px;
  cursor: pointer;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: all 0.2s ease;
  background: #fafafa;
}

.payment-option-card:hover {
  border-color: #bbbbbb;
  background: #ffffff;
}

.payment-option-card.selected {
  border-color: #111111;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.payment-option-card input[type="radio"] {
  margin-top: 3px;
  accent-color: #111111;
  cursor: pointer;
}

.option-content {
  flex: 1;
}

.option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.option-header strong {
  font-size: 13px;
  color: #111111;
}

.option-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #fdf3e7;
  color: #d97706;
  padding: 2px 6px;
  border-radius: 4px;
}

.option-tag.security {
  background: #e8f5e9;
  color: #2e7d32;
}

.option-content p {
  font-size: 11px;
  line-height: 1.45;
  color: #666666;
  margin: 0;
}

/* Legal consents & Submit */
.consent-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: #555555;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #111111;
  cursor: pointer;
}

.consent-label a {
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-label a:hover {
  color: #b08d57;
}

.btn-complete-order {
  width: 100%;
  height: 54px;
  background: #111111;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-complete-order:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
}

.btn-complete-order:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.order-status-msg {
  font-size: 12px;
  color: #d32f2f;
  margin-top: 12px;
  text-align: center;
  font-weight: 600;
}

/* ---------------------------------------------------------
   Right Column: Sticky Order Summary
   --------------------------------------------------------- */
.checkout-sidebar-column {
  position: sticky;
  top: 24px;
}

.order-summary-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.summary-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.summary-card-header h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0;
  color: #111111;
}

.summary-edit-cart {
  font-size: 12px;
  color: #666666;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.summary-edit-cart:hover {
  color: #111111;
}

/* Items list */
.summary-items-list {
  max-height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 4px;
  margin-bottom: 20px;
}

.summary-item-row {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #f5f5f5;
}

.summary-item-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.summary-item-img {
  width: 54px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  background: #f5f5f5;
  border: 1px solid #eaeaea;
}

.summary-item-details strong {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 4px;
}

.summary-item-details small {
  display: block;
  font-size: 11px;
  color: #888888;
}

.summary-item-price {
  font-size: 13px;
  font-weight: 700;
  color: #111111;
}

/* Coupon Wrap */
.summary-coupon-wrap {
  margin-bottom: 20px;
  padding: 12px;
  background: #fafafa;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
}

.coupon-input-group {
  display: flex;
  gap: 8px;
}

.coupon-input-group input {
  flex: 1;
  height: 38px;
  box-sizing: border-box;
  padding: 0 12px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  font-size: 12px;
  font-family: inherit;
  outline: none;
  background: #ffffff;
}

.coupon-input-group input:focus {
  border-color: #111111;
}

.coupon-input-group button {
  padding: 0 16px;
  height: 38px;
  background: #111111;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

/* Totals Wrap */
.summary-totals-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #666666;
}

.summary-line strong {
  color: #111111;
  font-weight: 600;
}

.summary-line.cargo-free .text-free {
  color: #2e7d32;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.summary-divider {
  height: 1px;
  background: #eaeaea;
  margin: 4px 0;
}

.summary-line.grand-total {
  font-size: 15px;
  color: #111111;
  font-weight: 700;
}

.summary-line.grand-total .total-amount {
  font-size: 20px;
  font-weight: 800;
  color: #111111;
}

/* ---------------------------------------------------------
   Payment Stage Card (Havale & PayTR)
   --------------------------------------------------------- */
.payment-stage-container {
  margin-top: 40px;
}

.payment-stage-card {
  background: #ffffff;
  border: 2px solid #b08d57;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(176, 141, 87, 0.08);
}

.payment-stage-header {
  text-align: center;
  margin-bottom: 24px;
}

.stage-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #b08d57;
  text-transform: uppercase;
}

.payment-stage-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: #111111;
  margin: 6px 0;
}

.payment-stage-header p {
  font-size: 13px;
  color: #666666;
  margin: 0;
}

.payment-stage-footer {
  margin-top: 24px;
  text-align: center;
}

.btn-track-order {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Mobile Bar (hidden on desktop) */
.mobile-order-summary-bar {
  display: none;
}

.mobile-order-summary-content {
  display: none;
}

/* ---------------------------------------------------------
   Responsive Breakpoints
   --------------------------------------------------------- */
@media (max-width: 960px) {
  .checkout-grid-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .checkout-sidebar-column {
    order: 2;
    position: static;
  }

  .checkout-stepper {
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
  }

  .payment-options-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile sticky drawer bar */
  .mobile-order-summary-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fbfbfb;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 20px;
    cursor: pointer;
  }

  .mobile-summary-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #111111;
  }

  .mobile-summary-total {
    font-size: 15px;
    font-weight: 800;
    color: #111111;
  }

  .mobile-order-summary-content {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
  }

  .mobile-order-summary-content[hidden] {
    display: none;
  }

  .mobile-summary-breakdown {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .checkout-page-container {
    padding: 20px 14px 60px;
  }

  .checkout-title-wrap h1 {
    font-size: 24px;
  }

  .checkout-stepper {
    padding: 12px 14px;
    gap: 8px;
  }

  .step-label {
    font-size: 10px;
  }

  .step-divider {
    width: 14px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .checkout-card {
    padding: 18px 14px;
    border-radius: 12px;
  }
}

/* =========================================================
   LUXURY CART STYLES (ZERALVO ATELIER)
   ========================================================= */
.cart-page-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.cart-items-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.cart-items-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 20px;
}

.cart-items-card-header h2 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #111111;
  margin: 0;
}

.cart-count-badge {
  font-size: 12px;
  font-weight: 800;
  color: #b08d57;
  background: #fffdfa;
  border: 1px solid #fef3c7;
  padding: 4px 12px;
  border-radius: 20px;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-page-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  transition: all 0.2s ease;
}

.cart-page-item:hover {
  border-color: #111111;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.cart-item-image-wrap {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #eaeaea;
  display: block;
}

.cart-item-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-tag {
  font-size: 10px;
  font-weight: 800;
  color: #b08d57;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-item-title {
  font-size: 14px;
  font-weight: 700;
  color: #111111;
  text-decoration: none;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-item-title:hover {
  color: #b08d57;
}

.cart-item-code {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}

.cart-item-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.cart-item-stepper {
  display: inline-flex;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.cart-item-stepper button {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.cart-item-stepper button:hover {
  background: #e2e8f0;
}

.cart-item-stepper span {
  min-width: 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
}

.btn-item-delete {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border: 1px solid #fee2e2;
  background: #fff5f5;
  border-radius: 6px;
  color: #ef4444;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-item-delete:hover {
  background: #fee2e2;
}

.cart-item-price-column {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cart-item-unit-price {
  font-size: 11px;
  color: #64748b;
}

.cart-item-line-total {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #111111;
}

/* Empty State */
.cart-empty-view {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.cart-empty-view h2 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #111111;
  margin: 0 0 8px;
}

.cart-empty-view p {
  font-size: 13px;
  color: #666666;
  max-width: 380px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.btn-start-shopping {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.btn-start-shopping:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Order Summary Card */
.cart-summary-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  position: sticky;
  top: 90px;
}

.cart-summary-card h3 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #111111;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.summary-rows-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.summary-row-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #555555;
}

.summary-row-line strong {
  color: #111111;
  font-weight: 700;
}

.summary-row-line.highlight-free {
  color: #059669;
  font-weight: 700;
}

.summary-row-line.highlight-free span:last-child {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #059669;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 800;
}

.summary-total-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 16px 0;
}

.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

.summary-total-row span {
  font-size: 14px;
  font-weight: 700;
  color: #111111;
}

.summary-total-row strong {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #111111;
}

.btn-checkout-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 52px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-checkout-cta:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-continue-link {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  text-decoration: underline;
  margin-top: 14px;
  transition: color 0.2s ease;
}

.btn-continue-link:hover {
  color: #111111;
}

/* Coupon Form */
.cart-coupon-wrap {
  margin: 18px 0;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px dashed #cbd5e1;
}

.coupon-input-group {
  display: flex;
  gap: 8px;
}

.coupon-input-group input {
  flex: 1;
  height: 38px;
  padding: 0 12px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #ffffff;
  outline: none;
}

.coupon-input-group input:focus {
  border-color: #111111;
}

.btn-apply-coupon {
  padding: 0 14px;
  height: 38px;
  background: #1e293b;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.coupon-feedback {
  font-size: 11px;
  font-weight: 600;
  margin-top: 6px;
}

/* Trust Badges in Cart */
.cart-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #475569;
}

.trust-badge-item span:first-child {
  font-size: 16px;
}

/* Mobile Sticky Bar */
.mobile-cart-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 99;
}

.mobile-cart-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mobile-cart-sticky-total {
  display: flex;
  flex-direction: column;
}

.mobile-cart-sticky-total span {
  font-size: 10px;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 700;
}

.mobile-cart-sticky-total strong {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #111111;
}

.btn-mobile-sticky-checkout {
  flex: 1;
  height: 44px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Recommendations Section */
.cart-recommendations-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #f0f0f0;
}

.cart-rec-header {
  margin-bottom: 24px;
}

.cart-rec-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #b08d57;
  text-transform: uppercase;
}

.cart-rec-header h2 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #111111;
  margin: 4px 0 0;
}

.cart-rec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cart-rec-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.cart-rec-card:hover {
  border-color: #111111;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.cart-rec-img-link {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background: #f8fafc;
  overflow: hidden;
}

.cart-rec-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cart-rec-card:hover .cart-rec-img-link img {
  transform: scale(1.05);
}

.cart-rec-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: 8px;
}

.cart-rec-cat {
  font-size: 10px;
  color: #888888;
  text-transform: uppercase;
  font-weight: 700;
}

.cart-rec-title {
  font-size: 13px;
  font-weight: 700;
  color: #111111;
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}

.cart-rec-title-link {
  text-decoration: none;
}

.cart-rec-price {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #111111;
}

.btn-cart-rec-add {
  width: 100%;
  height: 40px;
  background: #111111;
  color: #ffffff;
  border: 1px solid #111111;
  border-radius: 6px;
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-cart-rec-add:hover {
  background: #2a2a2a;
}

.btn-cart-rec-add.added {
  background: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
  opacity: 1 !important;
  cursor: default;
}

@media (max-width: 900px) {
  .cart-page-layout {
    grid-template-columns: 1fr;
  }
  .cart-rec-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.cart-item-stock-notice {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: #d97706;
  background: #fef3c7;
  padding: 2px 8px;
  border-radius: 4px;
  margin: 4px 0;
  width: fit-content;
}

.cart-item-stepper button.is-max-stock {
  opacity: 0.45;
  cursor: not-allowed;
  background: #f1f5f9;
}


@media (max-width: 600px) {
  .cart-page-item {
    grid-template-columns: 70px 1fr;
    gap: 12px;
    padding: 14px;
  }
  .cart-item-image-wrap {
    width: 70px;
    height: 70px;
  }
  .cart-item-price-column {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
  }
  .mobile-cart-sticky-bar {
    display: block;
  }
  .cart-items-card {
    padding: 18px 14px;
    border-radius: 12px;
  }
}




