/* ============================
   CART STYLES - DuQuintal
   ============================ */

/* Cart Toggle Button */
.cart-toggle-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cart-toggle-btn:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--color-gold);
  box-shadow: 0 4px 12px rgba(212, 168, 67, 0.3);
}

/* Scrolled/Solid States */
.header.scrolled .cart-toggle-btn,
.header.solid .cart-toggle-btn {
  color: var(--color-primary);
  background: rgba(23, 95, 49, 0.08);
  border-color: rgba(23, 95, 49, 0.2);
}

.header.scrolled .cart-toggle-btn:hover,
.header.solid .cart-toggle-btn:hover {
  color: white;
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(23, 95, 49, 0.25);
}

/* Pulsing highlight when cart has items */
.cart-toggle-btn.has-items {
  border-color: var(--color-gold);
  animation: cart-pulse 2s infinite alternate;
}

@keyframes cart-pulse {
  0% { box-shadow: 0 0 0 rgba(212, 168, 67, 0); }
  100% { box-shadow: 0 0 10px rgba(212, 168, 67, 0.6); }
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  background: var(--color-primary);
  color: white;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  animation: badge-pop 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes badge-pop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

/* Cart Overlay */
.cart-overlay {
  display: none !important;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: var(--color-surface);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  transition: right 0.38s cubic-bezier(0.4,0,0.2,1);
}

.cart-drawer.open {
  right: 0;
}

/* Sidebar Non-blocking transition on Desktop */
@media (min-width: 992px) {
  body {
    transition: padding-right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  }
  body.cart-open {
    padding-right: 400px;
  }
  body.cart-open .whatsapp-float {
    right: 428px !important;
  }
  .header {
    transition: all 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.cart-drawer-header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
}

.cart-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}

.cart-close-btn:hover { background: rgba(255,255,255,0.25); }

/* Cart Items List */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--color-text-muted);
  text-align: center;
  padding: 40px 20px;
}

.cart-empty-icon { font-size: 3.5rem; margin-bottom: 16px; opacity: 0.5; }

.cart-empty h4 {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 8px;
}

.cart-empty p { font-size: 0.88rem; }

/* Cart Item Card */
.cart-item {
  display: flex;
  gap: 14px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px;
  align-items: flex-start;
  animation: fadeIn 0.3s ease;
  transition: box-shadow var(--transition);
}

.cart-item:hover { box-shadow: var(--shadow-sm); }

.cart-item-img {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  background: var(--color-surface-alt);
  flex-shrink: 0;
  padding: 4px;
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-item-brand {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.cart-item-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-display);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
}

.qty-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.qty-display {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  min-width: 24px;
  text-align: center;
}

.cart-item-remove {
  margin-left: auto;
  color: var(--color-text-muted);
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  align-self: flex-start;
}

.cart-item-remove:hover {
  color: #ef4444;
  background: rgba(239,68,68,0.08);
}

/* Cart Footer */
.cart-footer {
  border-top: 1px solid var(--color-border);
  padding: 20px 24px;
  background: var(--color-bg);
  flex-shrink: 0;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.cart-subtotal-label {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.cart-subtotal-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.cart-total-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}

.cart-total-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-display);
}

.cart-checkout-btn {
  width: 100%;
  padding: 15px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
  margin-bottom: 10px;
}

.cart-checkout-btn:hover {
  background: #20ba5a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.cart-clear-btn {
  width: 100%;
  padding: 10px;
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.cart-clear-btn:hover {
  background: var(--color-surface-alt);
  color: var(--color-text);
}

/* Add to cart feedback */
.add-to-cart-toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-secondary);
  color: white;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

.add-to-cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Checkout Modal Overlay */
.checkout-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
  padding: 20px;
}

.checkout-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Checkout Modal Card - Compact for single screen */
.checkout-modal-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 860px;
  width: 100%;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modal-slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-slide-up {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Header */
.checkout-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1.5px solid var(--color-border);
  background: var(--color-surface-alt);
}

.checkout-modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-text);
  font-weight: 700;
}

.checkout-modal-close {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.checkout-modal-close:hover {
  color: var(--color-secondary);
}

/* Form Body */
.checkout-modal-body {
  padding: 14px 20px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.checkout-two-columns {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
  width: 100%;
  align-items: start;
}

.checkout-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.checkout-form-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
}

.checkout-form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.checkout-form-group input,
.checkout-select {
  padding: 7px 10px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-text);
  background: var(--color-surface);
  transition: border-color var(--transition);
}

.checkout-form-group input:focus,
.checkout-select:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* Delivery Toggles */
.checkout-toggle-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: var(--color-surface-alt);
  padding: 3px;
  border-radius: var(--radius-sm);
}

.checkout-toggle-btn {
  padding: 7px;
  border: none;
  background: transparent;
  color: var(--color-text-light);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.checkout-toggle-btn.active {
  background: var(--color-surface);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

/* Payment Selection Grid (Checkbox/Card design) */
.checkout-payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 2px;
}

.payment-card {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 6px 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.payment-card:hover {
  border-color: var(--color-primary-light);
  background: var(--color-surface-alt);
}

.payment-card.active {
  border-color: var(--color-primary);
  background: rgba(23, 95, 49, 0.05);
  box-shadow: var(--shadow-sm);
}

.payment-card-icon {
  font-size: 1.05rem;
}

.payment-card-title {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.payment-card.active .payment-card-title {
  color: var(--color-primary);
}

/* Summary Box */
.checkout-summary-box {
  background: var(--color-surface-alt);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.checkout-summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.checkout-summary-line.total {
  border-top: 1px solid var(--color-border);
  padding-top: 6px;
  margin-top: 2px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}

.checkout-summary-line.total strong {
  color: var(--color-primary);
  font-family: var(--font-display);
}

/* Sandbox Payment Panels */
.payment-sandbox-box {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  background: #fffdf9;
  animation: fadeIn 0.3s ease;
}

.pix-sandbox-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.pix-qr-container {
  padding: 6px;
  background: white;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-border);
}

.pix-copia-cola-box {
  display: flex;
  flex-direction: column;
}

/* Expandable Pix Code block */
.expandable-pix-code {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, margin-top 0.3s ease-out;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.expandable-pix-code.expanded {
  max-height: 120px;
  margin-top: 6px;
}

/* Footer Submit Button */
.checkout-modal-footer {
  padding: 12px 20px;
  border-top: 1.5px solid var(--color-border);
  background: var(--color-surface-alt);
}

.btn-checkout-submit {
  width: 100%;
  padding: 11px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.btn-checkout-submit:hover {
  background: var(--color-primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .checkout-modal-overlay {
    padding: 10px;
  }
  .checkout-modal-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: 100%;
    max-height: 98vh;
  }
  .checkout-two-columns {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .checkout-col {
    gap: 8px;
  }
}


/* ============================
   PRODUCT DETAIL PAGE STYLES
   ============================ */

.product-page {
  padding-top: var(--nav-height);
  min-height: 100vh;
}

.breadcrumb-section {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.breadcrumb a {
  color: var(--color-text-light);
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb span { color: var(--color-text-muted); }
.breadcrumb span:last-child { color: var(--color-text); font-weight: 500; }

/* Product Detail Grid */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

/* Product Image Panel */
.product-img-panel {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.product-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-surface-alt);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.5s ease;
}

.product-img-main:hover img { transform: scale(1.04); }

/* Product Info Panel */
.product-info-panel {}

.product-info-cat {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.product-info-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.product-info-brand {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.product-info-brand strong {
  color: var(--color-primary);
  font-weight: 600;
}

.product-info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--color-surface-alt);
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
}

.product-tag.primary {
  background: rgba(124,58,30,0.08);
  color: var(--color-primary);
  border-color: rgba(124,58,30,0.2);
}

.product-info-price-box {
  background: linear-gradient(135deg, var(--color-surface-alt), #fff);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.product-info-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.product-info-price-unit {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.product-info-box {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Quantity selector */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.qty-selector-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.qty-selector-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-ctrl-btn {
  width: 40px;
  height: 40px;
  background: var(--color-surface-alt);
  border: none;
  color: var(--color-text);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-ctrl-btn:hover { background: var(--color-border); }

.qty-value {
  min-width: 50px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  border-left: 1.5px solid var(--color-border);
  border-right: 1.5px solid var(--color-border);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Action buttons */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.btn-add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-add-cart:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-add-cart:active { transform: translateY(0); }

.btn-add-cart.added {
  background: var(--color-secondary);
}

/* Product Description */
.product-description {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  margin-bottom: 24px;
}

.product-description h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.product-description p {
  font-size: 0.93rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-img-panel { position: static; }
}

@media (max-width: 480px) {
  .cart-drawer { width: 100vw; right: -100vw; }
  .cart-drawer.open { right: 0; }
}

/* Chope Promo Button inside Cart Drawer */
.cart-chope-promo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: var(--color-surface);
  color: var(--color-gold);
  border: 2px dashed var(--color-gold);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all var(--transition);
  animation: cart-chope-glow-pulse 2.5s infinite alternate;
}

.cart-chope-promo-btn:hover {
  background: var(--color-surface-alt);
  color: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.02);
}

@keyframes cart-chope-glow-pulse {
  0% { box-shadow: 0 0 0 rgba(212, 168, 67, 0); }
  100% { box-shadow: 0 0 10px rgba(212, 168, 67, 0.4); }
}

/* Chope Alert inside Checkout Modal */
.checkout-chope-alert {
  background: rgba(212, 168, 67, 0.05);
  border: 1.5px dashed var(--color-gold);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  animation: cart-chope-glow-pulse 2s infinite alternate;
}

.checkout-chope-alert-text {
  font-size: 0.85rem;
  color: var(--color-text);
  text-align: left;
  line-height: 1.4;
}

.checkout-chope-alert-btn {
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: none;
}



/* Mobile Responsive Checkout */
@media (max-width: 768px) {
  .checkout-two-columns {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .checkout-form-row {
    grid-template-columns: 1fr;
  }
}
