/* ========== CHECKOUT PAGE STYLES ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: #f5f5f5;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ========== SCARCITY BANNER ========== */
.co-scarcity-banner {
  background: linear-gradient(135deg, #3D0C11, #6B1527, #8B1A34);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: co-scarcity-glow 3s ease-in-out infinite;
  box-shadow: 0 2px 12px rgba(107,21,39,0.4);
}
@keyframes co-scarcity-glow {
  0%,100% { box-shadow: 0 2px 12px rgba(107,21,39,0.4); }
  50% { box-shadow: 0 2px 20px rgba(107,21,39,0.7), 0 0 40px rgba(107,21,39,0.2); }
}
.co-scarcity-banner .co-siren {
  display: inline-block;
  animation: co-siren-flash 0.8s ease-in-out infinite alternate;
  font-size: 16px;
}
@keyframes co-siren-flash {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0.5; transform: scale(1.15); }
}
.co-scarcity-banner .co-scount {
  font-size: 18px;
  font-weight: 900;
  color: #FFD54F;
  text-shadow: 0 0 8px rgba(255,213,79,0.5);
  display: inline-block;
  min-width: 24px;
}
.co-scarcity-banner .co-scount.co-sbounce {
  animation: co-sbounce 0.3s ease;
}
@keyframes co-sbounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); color: #FF5252; }
  100% { transform: scale(1); }
}
@media (max-width: 749px) {
  .co-scarcity-banner { font-size: 12px; padding: 8px 12px; }
  .co-scarcity-banner .co-scount { font-size: 16px; }
}

/* ========== HEADER ========== */
.co-topbar {
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.co-header {
  background: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-bottom: 1px solid #e0e0e0;
}
.co-header .co-lock { font-size: 20px; }
.co-header h1 {
  font-size: 22px;
  font-weight: 800;
  color: #0d2b06;
  letter-spacing: -0.3px;
}
.co-trust-bar {
  background: #fff;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  font-weight: 600;
  color: #555;
}
.co-trust-bar span { display: flex; align-items: center; gap: 6px; }

/* ========== URGENCY BAR (inline inside card) ========== */
.co-urgency-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFF5F5;
  border: 1px solid #FFCDD2;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
}
.co-urgency-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.co-urgency-icon { font-size: 28px; }
.co-urgency-text { font-size: 14px; color: #c62828; }
.co-urgency-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
}
.co-timer {
  display: inline-flex;
  gap: 3px;
}
.co-timer-sep { background: none !important; color: #333 !important; font-weight: 800; padding: 0 !important; min-width: auto !important; }
.co-timer span {
  background: #c62828;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 16px;
  min-width: 36px;
  text-align: center;
}

/* ========== MAIN LAYOUT ========== */
.co-main {
  max-width: 1200px;
  margin: 24px auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 24px;
  align-items: start;
}

/* ========== CARDS ========== */
.co-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}
.co-card h2 {
  font-size: 18px;
  font-weight: 800;
  color: #0d2b06;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.co-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0d2b06;
  margin-bottom: 16px;
}

/* ========== BUNDLE SELECTOR ========== */
.co-bundle {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.co-bundle:hover { border-color: #a5d6a7; background: #fafff9; }
.co-bundle.selected {
  border-color: #1B5E20;
  background: linear-gradient(135deg, #f0fff0, #e8f5e9);
  box-shadow: 0 0 0 1px #1B5E20;
}
.co-bundle input[type="radio"] {
  width: 20px; height: 20px;
  accent-color: #1B5E20;
  flex-shrink: 0;
}
.co-bundle-img {
  width: 72px; height: 72px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.co-bundle-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.co-bundle-info { flex: 1; }
.co-bundle-title { font-weight: 700; font-size: 15px; color: #333; margin-bottom: 2px; }
.co-bundle-bonuses { font-size: 13px; color: #2E7D32; font-weight: 600; }
.co-bundle-shipping { font-size: 12px; color: #1B5E20; font-weight: 600; margin-top: 2px; }
.co-bundle-shipping::before { content: "🚚 "; }
.co-bundle-price { flex-shrink: 0; display: flex; align-items: center; gap: 10px; }
.co-bundle-price .co-badge-off { order: 1; }
.co-bundle-price .co-bundle-nums { order: 2; text-align: right; }
.co-bundle-original { text-decoration: line-through; color: #c62828; font-size: 18px; font-weight: 800; opacity: 1; }
.co-bundle-final { font-size: 24px; font-weight: 800; color: #1B5E20; text-shadow: 0 1px 2px rgba(27,94,32,0.1); }
.co-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.co-badge-off { background: linear-gradient(135deg, #c62828, #e53935); color: #fff; font-size: 12px; padding: 4px 12px; }
.co-badge-popular { background: #FF6F00; color: #fff; font-size: 12px; animation: co-badge-pulse 1.5s ease-in-out infinite; }
.co-badge-best { background: #c62828; color: #fff; font-size: 12px; animation: co-badge-pulse 1.5s ease-in-out infinite; }
@keyframes co-badge-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }

/* ========== PAYMENT METHOD ========== */
.co-payment-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
}
.co-payment-tab {
  flex: 1;
  padding: 14px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid #e0e0e0;
  background: #fafafa;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.co-payment-tab:first-child { border-radius: 8px 0 0 8px; }
.co-payment-tab:last-child { border-radius: 0 8px 8px 0; }
.co-payment-tab.active {
  background: #fff;
  border-color: #1B5E20;
  color: #1B5E20;
}
.co-payment-content { display: none; }
.co-payment-content.active { display: block; }
.co-payment-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 16px 0;
  flex-wrap: wrap;
}
.co-payment-icons img,
.co-payment-icons .co-pay-icon {
  height: 32px;
  border-radius: 4px;
  border: 1px solid #eee;
  padding: 4px 8px;
  background: #fff;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  color: #333;
}
.co-ssl-note {
  text-align: center;
  font-size: 13px;
  color: #777;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ========== FORM ========== */
.co-step-label {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1B5E20;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e8f5e9;
}
.co-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.co-form-full { margin-bottom: 12px; }
.co-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
.co-input:focus {
  outline: none;
  border-color: #1B5E20;
  box-shadow: 0 0 0 3px rgba(27,94,32,0.1);
}
.co-input::placeholder { color: #aaa; }
.co-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  font-size: 14px;
  color: #555;
}
.co-checkbox-row input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: #1B5E20;
}
select.co-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* ========== CTA BUTTON ========== */
.co-cta-btn {
  display: block;
  width: 100%;
  padding: 20px 32px;
  background: linear-gradient(135deg, #0D1B2A, #1A3A5C);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(13,27,42,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: co-pulse 2.5s ease-in-out infinite;
}
.co-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(13,27,42,0.6);
}
.co-cta-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: co-shimmer 3s ease-in-out infinite;
}
@keyframes co-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(13,27,42,0.4); }
  50% { box-shadow: 0 6px 36px rgba(13,27,42,0.6), 0 0 60px rgba(26,58,92,0.2); }
}
@keyframes co-shimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}
.co-cta-sub {
  text-align: center;
  font-size: 13px;
  color: #777;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ========== SECURITY BADGES ========== */
.co-security-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.co-security-badge {
  width: 80px; height: 40px;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #999;
  text-align: center;
}

/* ========== RIGHT COLUMN ========== */
.co-sidebar { position: sticky; top: 20px; }

/* Order Summary */
.co-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.co-summary-total-top {
  font-size: 24px;
  font-weight: 800;
  color: #0d2b06;
}
.co-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.co-summary-line:last-child { border-bottom: none; }
.co-summary-product {
  display: flex;
  gap: 12px;
  align-items: center;
}
.co-summary-thumb {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #f7faf7, #edf7ed);
  border: 1px dashed rgba(27,94,32,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  position: relative;
}
.co-summary-qty {
  position: absolute;
  top: -6px; right: -6px;
  background: #1B5E20;
  color: #fff;
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.co-summary-name { font-size: 14px; font-weight: 600; color: #333; }
.co-summary-price-col { text-align: right; }
.co-summary-original { text-decoration: line-through; color: #c62828; font-size: 16px; font-weight: 800; opacity: 1; }
.co-summary-discount { color: #c62828; font-size: 12px; font-weight: 800; background: #FFF0F0; padding: 2px 8px; border-radius: 4px; }
.co-summary-final { font-size: 18px; font-weight: 800; color: #1B5E20; }
.co-summary-shipping {
  color: #1B5E20;
  font-weight: 800;
  font-size: 14px;
  background: #e8f5e9;
  padding: 4px 12px;
  border-radius: 6px;
  display: inline-block;
}
.co-summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 2px solid #0d2b06;
  margin-top: 8px;
}
.co-summary-total span:first-child { font-size: 16px; font-weight: 800; color: #333; }
.co-summary-total span:last-child { font-size: 24px; font-weight: 800; color: #1B5E20; }

/* ========== GUARANTEE ========== */
.co-guarantee {
  background: linear-gradient(135deg, #0D1B2A, #1A3A5C);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
.co-guarantee-badge {
  width: 80px; height: 80px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, #D4AF37, #F0D060);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(212,175,55,0.4);
}
.co-guarantee-badge .co-g-num {
  font-size: 28px;
  font-weight: 800;
  color: #0D1B2A;
  line-height: 1;
}
.co-guarantee-badge .co-g-label {
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0D1B2A;
}
.co-guarantee h3 {
  font-size: 16px;
  font-weight: 800;
  color: #F0D060;
  margin-bottom: 8px;
}
.co-guarantee p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

/* ========== WHAT'S INCLUDED ========== */
.co-accordion {
  border: none;
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff, #f8faf8);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease;
}
.co-accordion:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1), 0 2px 6px rgba(0,0,0,0.06);
}
.co-accordion-header {
  padding: 16px 20px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: background 0.2s;
  color: #0d2b06;
  letter-spacing: -0.2px;
}
.co-accordion-header:hover { background: rgba(27,94,32,0.04); }
.co-accordion-arrow {
  font-size: 11px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27,94,32,0.08);
  border-radius: 50%;
  color: #1B5E20;
}
.co-accordion.open .co-accordion-arrow { transform: rotate(180deg); background: #1B5E20; color: #fff; }
.co-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.co-accordion.open .co-accordion-body { max-height: 500px; }
.co-accordion-content {
  padding: 4px 20px 18px;
  font-size: 14px;
  line-height: 1.75;
  color: #333;
}
.co-accordion-content li {
  margin-bottom: 10px;
  padding-left: 4px;
  position: relative;
}
.co-checklist {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.co-check-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}
.co-check-item:last-child { border-bottom: none; }
.co-check-item::first-letter { color: #2E7D32; }

/* ========== TESTIMONIALS - PREMIUM ========== */
.co-reviews-title {
  font-size: 16px;
  font-weight: 800;
  color: #0d2b06;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e8f5e9;
  letter-spacing: -0.3px;
}
.co-review {
  padding: 18px 20px;
  border: none;
  border-radius: 14px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #ffffff, #f8faf8);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  border-left: 3px solid #2E7D32;
}
.co-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
}
.co-review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.co-review-name { font-weight: 800; font-size: 14px; color: #1a1a1a; }
.co-review-verified {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.3px;
}
.co-review-stars { color: #F9A825; font-size: 15px; letter-spacing: 2px; margin-bottom: 4px; }
.co-review-text {
  font-size: 13.5px;
  color: #444;
  line-height: 1.7;
  font-style: italic;
  position: relative;
  padding-left: 16px;
}
.co-review-text::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 24px;
  color: #2E7D32;
  font-weight: 800;
  font-style: normal;
}

/* ========== DELIVERY ========== */
.co-delivery {
  background: #FFF8E1;
  border: 1px solid #FFE082;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
  text-align: center;
}
.co-delivery-title { font-weight: 700; font-size: 14px; color: #E65100; }
.co-delivery-dates { font-weight: 800; font-size: 16px; color: #333; margin: 4px 0; }
.co-delivery-note { font-size: 12px; color: #888; }

/* ========== IMAGE PLACEHOLDERS ========== */
.checkout-img-placeholder {
  background: linear-gradient(135deg, #f7faf7, #edf7ed);
  border: 2px dashed rgba(27,94,32,0.25);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.placeholder-icon { font-size: 32px; }
.placeholder-label { font-weight: 700; font-size: 13px; color: #2E7D32; }
.placeholder-desc { font-size: 11px; color: #888; }

/* ========== FOOTER ========== */
.co-footer {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 24px 16px;
  text-align: center;
  margin-top: 40px;
}
.co-footer-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}
.co-footer-text { font-size: 12px; color: #999; }
.co-footer-text a { color: #1B5E20; text-decoration: none; }

/* ========== MOBILE STICKY CTA ========== */
.co-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0D1B2A, #1A3A5C);
  padding: 12px 16px;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(13,27,42,0.3);
}
.co-mobile-cta a {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
}
.co-mobile-cta .co-mobile-sub {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .co-main {
    grid-template-columns: 1fr;
    padding: 0 12px;
    margin: 16px auto;
    gap: 16px;
  }
  .co-sidebar { position: static; }
  .co-card { padding: 20px 16px; }
  .co-header h1 { font-size: 18px; }
  .co-trust-bar { gap: 16px; font-size: 12px; flex-wrap: wrap; }
  .co-urgency-inline { flex-direction: column; gap: 8px; text-align: center; }
  .co-urgency-left { justify-content: center; }
  .co-urgency-right { justify-content: center; }
  .co-bundle { padding: 12px; gap: 10px; }
  .co-bundle-img { width: 48px; height: 48px; font-size: 22px; }
  .co-bundle-title { font-size: 13px; }
  .co-bundle-final { font-size: 18px; }
  .co-form-row { grid-template-columns: 1fr; }
  .co-cta-btn { font-size: 16px; padding: 18px 24px; }
  .co-mobile-cta { display: block; }
  .co-summary-total-top { font-size: 20px; }
  body { padding-bottom: 70px; }
}

@media (max-width: 400px) {
  .co-trust-bar { gap: 8px; font-size: 11px; }
  .co-bundle-img { width: 40px; height: 40px; font-size: 18px; }
  .co-timer span { font-size: 14px; padding: 3px 6px; min-width: 30px; }
}
