/*
Theme Name: Jinseng Plus
Theme URI: https://spmartbd.online
Author: spmartbd
Author URI: https://spmartbd.online
Description: Professional WooCommerce landing theme for Jinseng Plus product.
Version: 1.0.15
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jinseng
Requires Plugins: woocommerce
*/

/* ─── Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Hind Siliguri", "Noto Sans Bengali", sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ─── CSS Variables ─── */
:root {
  --primary: oklch(0.42 0.12 150);
  --primary-dark: oklch(0.32 0.1 150);
  --primary-foreground: oklch(0.985 0.01 130);
  --secondary: oklch(0.95 0.04 130);
  --secondary-foreground: oklch(0.3 0.08 150);
  --accent: oklch(0.82 0.16 95);
  --accent-foreground: oklch(0.25 0.06 150);
  --background: oklch(0.985 0.012 130);
  --foreground: oklch(0.22 0.05 150);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.22 0.05 150);
  --muted: oklch(0.95 0.025 130);
  --muted-foreground: oklch(0.48 0.05 150);
  --border: oklch(0.9 0.03 140);
  --input: oklch(0.9 0.03 140);
  --ring: oklch(0.42 0.12 150);
  --radius: 0.875rem;
  --shadow-elegant: 0 20px 50px -20px oklch(0.42 0.12 150 / 0.45);
  --gradient-hero: linear-gradient(160deg, oklch(0.42 0.12 150), oklch(0.32 0.1 150));
}

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ─── Top bar ─── */
.top-bar {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: var(--primary-foreground);
  padding: 1.75rem 0 2.5rem;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.hero-blob-1 { left: -2.5rem; top: -2.5rem; width: 10rem; height: 10rem; background: rgba(233,196,106,0.2); }
.hero-blob-2 { right: -2.5rem; top: 5rem; width: 8rem; height: 8rem; background: rgba(255,255,255,0.1); }
.hero-title {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.4;
  text-wrap: balance;
  text-align: center;
}
@media (min-width: 640px) {
  .hero-title { font-size: 2.25rem; }
}
.hero-accent { color: var(--accent); }
.hero-title .hl-accent { color: var(--accent); background: color-mix(in oklab, var(--accent) 20%, transparent); padding: 0.05em 0.35em; border-radius: 0.375rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 0.375rem 1.25rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0.75rem auto 0;
  box-shadow: 0 0 20px -4px rgba(233,196,106,0.6);
}
.hero-img-wrap {
  margin-top: 1.5rem;
  border-radius: 1rem;
  border: 4px solid rgba(233,196,106,0.8);
  background: white;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
}
.hero-img-wrap img { width: 100%; }
.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  box-shadow: 0 0 30px -5px rgba(233,196,106,0.6);
  position: relative;
  overflow: hidden;
}
.btn-accent:hover {
  background: var(--accent-foreground);
  color: var(--accent);
  box-shadow: 0 0 50px -2px rgba(233,196,106,0.8);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--primary-foreground);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  box-shadow: 0 10px 30px -10px rgba(45,106,79,0.5);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-full { width: 100%; }

/* shimmer */
.btn-shimmer::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmer 2s infinite;
}
@keyframes shimmer {
  100% { transform: translateX(200%); }
}

/* ─── Cards ─── */
.card-grid {
  display: grid;
  gap: 0.75rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  margin-top: -1.5rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
}
.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(232,245,233,0.6);
  padding: 0.75rem;
  transition: background 0.2s;
}
.trust-card:hover { background: rgba(232,245,233,1); }
.trust-card svg, .trust-card .icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 0.125rem;
}
.trust-card h3 { font-weight: 700; font-size: 0.9375rem; }
.trust-card p { font-size: 0.8125rem; color: var(--muted-foreground); }

/* ─── Section heading badge ─── */
.section-heading {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  border-radius: 9999px;
  color: var(--primary-foreground);
  background: linear-gradient(120deg, var(--primary), var(--primary-dark), var(--primary));
  background-size: 200% 200%;
  animation: border-flow 5s linear infinite;
  box-shadow: 0 12px 30px -12px rgba(45,106,79,0.6), inset 0 0 0 1px rgba(233,196,106,0.4);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
@keyframes border-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ─── Glow border ─── */
.glow-border {
  position: relative;
  border-radius: 1rem;
  padding: 3px;
  background: linear-gradient(120deg, var(--primary), var(--accent), var(--primary), var(--accent));
  background-size: 300% 300%;
  animation: border-flow 4s linear infinite;
  box-shadow: 0 18px 45px -18px rgba(45,106,79,0.6);
}
.glow-border-inner {
  border-radius: calc(1rem - 3px);
  background: var(--card);
  overflow: hidden;
}

/* ─── Trust statement ─── */
.trust-statement {
  border-radius: 1rem;
  border-left: 4px solid var(--primary);
  background: var(--card);
  padding: 1.25rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--background);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ─── Benefits ─── */
.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  background: var(--card);
  padding: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}
.benefit-item:hover { box-shadow: 0 8px 20px -6px rgba(0,0,0,0.1); transform: translateX(6px); }
.benefit-item .check { width: 1.25rem; height: 1.25rem; flex-shrink: 0; color: var(--accent); margin-top: 0.125rem; }

/* ─── Usage ─── */
.usage-box {
  border-radius: 1rem;
  border: 1px solid rgba(45,106,79,0.25);
  background: rgba(45,106,79,0.05);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}
.usage-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 0.75rem;
  border-left: 4px solid var(--primary);
  background: var(--card);
  padding: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  margin-bottom: 0.75rem;
}
.usage-step.alt { border-left-color: var(--accent); }
.step-num {
  width: 1.75rem; height: 1.75rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 700;
  flex-shrink: 0; margin-top: 0.125rem;
}
.usage-step.alt .step-num { background: var(--accent); color: var(--accent-foreground); }

/* ─── Price box ─── */
.price-box {
  text-align: center;
  color: var(--primary-foreground);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) {
  .price-box { padding: 2rem; }
}
.price-box .bg-particle {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(-10px) translateX(-5px); }
  50% { transform: translateY(10px) translateX(5px); }
}
.price-strike { font-size: 1.125rem; text-decoration: line-through; opacity: 0.8; }
.price-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 800;
}
.price-circle {
  position: relative;
  width: 6rem; height: 6rem;
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 640px) {
  .price-circle { width: 7rem; height: 7rem; }
}
.price-circle .ring-dashed {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 3px dashed var(--accent);
  animation: ring-spin 8s linear infinite;
}
.price-circle .ring-pulse {
  position: absolute; inset: 0.25rem;
  border-radius: 50%;
  border: 3px solid #ef4444;
  animation: glow-pulse 1.5s infinite;
}
@keyframes ring-spin { 100% { transform: rotate(360deg); } }
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); opacity: 0.4; }
  50% { box-shadow: 0 0 22px 4px rgba(239,68,68,0.7); opacity: 1; }
}
.price-circle span { position: relative; z-index: 1; font-size: 1.875rem; font-weight: 900; color: var(--accent); text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
@media (min-width: 640px) {
  .price-circle span { font-size: 2.25rem; }
}
.countdown { display: flex; justify-content: center; gap: 0.75rem; margin-top: 1.25rem; }
.count-card {
  min-width: 70px;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  padding: 0.75rem 0.5rem;
  text-align: center;
  backdrop-filter: blur(4px);
}
.count-card .num { font-size: 1.875rem; font-weight: 800; }
.count-card .lbl { font-size: 0.625rem; font-weight: 600; text-transform: uppercase; opacity: 0.8; margin-top: 0.25rem; }
.guarantee-text {
  display: inline-block;
  border: 2px dashed var(--accent);
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  font-weight: 800;
  color: var(--accent);
  margin-top: 1.25rem;
  animation: gentle-pulse 2s infinite;
}
@keyframes gentle-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* ─── Heartfelt note ─── */
.heartfelt {
  border-radius: 1rem;
  border: 2px dashed var(--accent);
  background: var(--card);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

/* ─── Order / Checkout ─── */
.order-section {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.12);
  overflow: hidden;
}
.order-header {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 1rem 1.5rem;
  text-align: center;
}
.order-header h2 { font-size: 1.35rem; line-height: 1.2; font-weight: 800; }
.order-highlight {
  display: inline-block;
  background: oklch(0.82 0.16 95 / 0.22);
  color: var(--accent);
  border-radius: 0.5rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 0.5rem;
}
.order-body { padding: 1.5rem; }
.order-product-card {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: oklch(0.95 0.04 130 / 0.42);
  padding: 1rem;
}
.order-product-top {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 0.75rem;
  min-height: auto;
}
.order-product-img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.55rem;
  object-fit: cover;
}
.order-product-info { align-self: center; min-width: 0; }
.order-product-title { font-size: 1rem; line-height: 1.35; font-weight: 700; color: var(--foreground); }
.order-product-price, .font-num { font-family: Arial, "Noto Sans Bengali", "Hind Siliguri", sans-serif; font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; letter-spacing: 0; }
.order-product-price { margin-top: 0.15rem; font-size: 1rem; line-height: 1.2; font-weight: 900; color: var(--primary); }
.qty-wrap { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.25rem; }
.qty-label { color: var(--muted-foreground); font-size: 0.75rem; font-weight: 700; line-height: 1.1; }
.checkout-form-wrap { margin-top: 0; }

/* Quantity stepper */
.qty-stepper {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border: 2px solid oklch(0.42 0.12 150 / 0.3);
  background: var(--card);
  padding: 0.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.qty-stepper button {
  border-radius: 0.5rem;
  background: var(--secondary);
  color: var(--primary);
  width: 1.75rem;
  height: 1.75rem;
  font-size: 1rem;
  font-weight: 800;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.qty-stepper button:hover { background: var(--primary); color: var(--primary-foreground); }
.qty-stepper.is-updating { opacity: 0.65; pointer-events: none; }
.qty-stepper button svg { width: 1rem; height: 1rem; }
.qty-value {
  width: 2.55rem;
  height: 2.15rem;
  border-radius: 0.5rem;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 0;
  text-align: center;
  font-family: "Noto Sans Bengali", "Hind Siliguri", sans-serif;
  font-size: 1.45rem;
  line-height: 2.15rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) {
  .qty-value { width: 2.75rem; height: 2.3rem; font-size: 1.6rem; line-height: 2.3rem; }
  .qty-stepper button { padding: 0; }
  .qty-stepper button svg { width: 1.25rem; height: 1.25rem; }
}

/* WooCommerce checkout overrides */
.woocommerce-form-coupon-toggle,
.woocommerce-form-login-toggle,
.woocommerce-form-coupon,
.woocommerce-form-login,
.checkout_coupon,
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info:not(.woocommerce-error),
.order-body .woocommerce-message,
.order-body .woocommerce-info:not(.woocommerce-error),
.order-body > .woocommerce-info,
#ship-to-different-address,
#order_review_heading,
.woocommerce-checkout-review-order-table { display: none !important; }

.woocommerce-checkout-review-order-table:has(#shipping_method),
.woocommerce-checkout-review-order-table:has(.shipping) { display: none !important; }

/* Quantity stepper — Lovable-style horizontal row */
.qty-stepper { flex-wrap: nowrap !important; }
.qty-stepper button { display: flex !important; flex: 0 0 auto; width: 1.75rem !important; height: 1.75rem !important; padding: 0 !important; line-height: 1 !important; }

/* Custom totals block inside product card */
.order-totals { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.32rem; font-size: 0.9rem; }
.order-totals > div { margin: 0; }
.order-totals dt, .order-totals dd { margin: 0; }
.order-totals dd { min-width: 7.5rem; text-align: right; font-weight: 900; }
.order-delivery-row { background: oklch(0.42 0.12 150 / 0.1); border-radius: 0.45rem; padding: 0.25rem 0.5rem; margin-left: -0.5rem !important; margin-right: -0.5rem !important; }
.order-total-row { border-top: 1px solid var(--border); padding-top: 0.5rem; font-size: 1rem; font-weight: 800; color: var(--primary); }
.woocommerce-checkout #customer_details { margin: 0 0 1rem !important; }
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 { float: none !important; width: 100% !important; }
.woocommerce-checkout #customer_details h3,
.woocommerce-checkout #order_review_heading { display: none; }
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper { margin-top: 1.05rem; }
.woocommerce-checkout .form-row {
  float: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce-checkout label {
  display: block;
  font-size: 0.875rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
  color: var(--foreground);
}
.woocommerce-checkout .required { color: #ef4444; }
.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea.input-text,
.woocommerce-checkout select {
  width: 100% !important;
  border-radius: 0.55rem !important;
  border: 1px solid oklch(0.82 0.045 135) !important;
  background: var(--background) !important;
  color: var(--foreground) !important;
  padding: 0.76rem 1rem !important;
  font-size: 1rem !important;
  line-height: 1.45 !important;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.woocommerce-checkout textarea.input-text { min-height: 5.9rem; resize: vertical; }
.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout textarea.input-text:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px oklch(0.42 0.12 150 / 0.2) !important;
}
.woocommerce-checkout #order_review { margin-top: 0; }
.woocommerce table.shop_table {
  border: 1px solid var(--border) !important;
  border-radius: 0.75rem !important;
  background: var(--secondary) !important;
  border-collapse: separate !important;
  overflow: hidden;
}
.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
  padding: 0.6rem 0.75rem !important;
  border: 0 !important;
  border-bottom: 1px solid var(--border) !important;
}
.woocommerce table.shop_table tr:last-child td,
.woocommerce table.shop_table tr:last-child th { border-bottom: 0 !important; }
.woocommerce-checkout-review-order-table tfoot th { text-align: left; color: var(--primary); font-weight: 700; }
.woocommerce-checkout-review-order-table tfoot td { text-align: right; color: var(--primary); font-weight: 800; }
.woocommerce-checkout #payment {
  border-radius: 0 !important;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
}
.woocommerce-checkout #payment ul.payment_methods { border-bottom: 0 !important; padding: 0 !important; }
.woocommerce-checkout .wc_payment_method { margin: 0 !important; position: relative !important; }
.woocommerce-checkout #payment .wc_payment_methods { border-radius: 0.85rem !important; border: 1px solid var(--border) !important; background: oklch(0.97 0.005 130) !important; padding: 0.9rem 1rem !important; margin-top: 1rem !important; box-shadow: none !important; }
/* Cash on delivery card — match provided reference */
.woocommerce-checkout #payment .wc_payment_method > input[type="radio"] { position: absolute !important; opacity: 0 !important; pointer-events: none !important; }
.woocommerce-checkout #payment .wc_payment_method > label { display: flex !important; align-items: center !important; gap: 0.55rem !important; font-weight: 800 !important; color: var(--foreground) !important; font-size: 1rem !important; cursor: pointer !important; line-height: 1.35 !important; margin: 0 !important; }
.woocommerce-checkout #payment .payment_method_cod { border-radius: 0.65rem !important; }
.woocommerce-checkout #payment .payment_method_cod > input[type="radio"] + label::before { content: "" !important; display: none !important; }
.woocommerce-checkout #payment div.payment_box { background: transparent !important; color: var(--muted-foreground) !important; border-radius: 0 !important; padding: 0.45rem 0 0 2.1rem !important; margin: 0 !important; font-size: 0.9rem !important; line-height: 1.55 !important; }
.woocommerce-checkout #payment div.payment_box::before { display: none !important; }
.woocommerce-checkout .woocommerce-privacy-policy-text { font-size: 0.8rem; line-height: 1.55; color: var(--muted-foreground); margin-top: 0.75rem; }
.woocommerce-checkout button#place_order {
  width: 100% !important;
  float: none !important;
  border-radius: 9999px !important;
  background: var(--accent) !important;
  color: var(--accent-foreground) !important;
  padding: 1rem 1.5rem !important;
  font-size: 1.08rem !important;
  font-weight: 800 !important;
  border: none !important;
  margin-top: 1rem !important;
  box-shadow: 0 0 30px -5px rgba(233,196,106,0.7) !important;
  transition: all 0.3s ease !important;
  animation: cta-pulse 2s ease-in-out infinite !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
}
.woocommerce-checkout button#place_order::before { content: '' !important; position: absolute !important; inset: 0 !important; transform: translateX(-110%) skewX(-15deg) !important; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent) !important; animation: checkout-shimmer 2.1s linear infinite !important; pointer-events: none !important; }
.woocommerce-checkout button#place_order:hover {
  box-shadow: 0 0 50px -2px var(--accent) !important;
  transform: translateY(-2px) !important;
  animation-play-state: paused !important;
}
.woocommerce-checkout button#place_order:active {
  transform: translateY(0) scale(0.98) !important;
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 22px -6px rgba(233,196,106,0.6); transform: scale(1); }
  50% { box-shadow: 0 0 42px -2px rgba(233,196,106,0.9); transform: scale(1.015); }
}
@keyframes checkout-shimmer { 100% { transform: translateX(130%) skewX(-15deg); } }

@media (max-width: 480px) {
  .order-body { padding: 1.45rem 1.5rem 1.25rem; }
  .order-product-card { padding: 1.15rem 0.95rem 0.8rem; }
  .order-product-top { grid-template-columns: 3.55rem minmax(0, 1fr) 3.8rem; column-gap: 0.65rem; min-height: 9.8rem; }
  .order-product-img { width: 3.35rem; height: 3.35rem; }
  .order-product-title { font-size: 0.95rem; }
  .order-product-price { font-size: 1rem; }
  .order-totals { font-size: 0.92rem; }
  .woocommerce-checkout #payment div.payment_box,
  .woocommerce-checkout .woocommerce-privacy-policy-text { font-size: 0.92rem; }
}

/* Hide default WooCommerce notices in checkout area */
.order-body .woocommerce-error,
.order-body .woocommerce-message,
.order-body .woocommerce-info { border-radius: 0.5rem; margin-bottom: 1rem; }

/* ─── Call section ─── */
.call-section {
  border-radius: 1rem;
  border: 1px solid rgba(45,106,79,0.2);
  background: linear-gradient(135deg, rgba(45,106,79,0.1), var(--card), var(--card));
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

/* ─── Footer ─── */
.site-footer {
  margin-top: 1.75rem;
  border-top: 1px solid var(--border);
  padding: 1.25rem 1rem 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ─── Utilities ─── */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.bg-card { background: var(--card); }
.bg-muted { background: var(--muted); }
.bg-primary-light { background: rgba(45,106,79,0.1); }
.bg-accent-light { background: rgba(233,196,106,0.15); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.leading-relaxed { line-height: 1.625; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }
.w-full { width: 100%; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-\[300px\] { max-width: 300px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-primary { border-color: var(--primary); }
.border-accent { border-color: var(--accent); }
.border-dashed { border-style: dashed; }
.ring-1 { box-shadow: inset 0 0 0 1px var(--border); }
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.z-10 { position: relative; z-index: 10; }
.backdrop-blur { backdrop-filter: blur(4px); }

/* Animations */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scale-in {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.animate-fade-up { animation: fade-up 0.6s ease-out both; }
.animate-fade-in { animation: fade-in 0.6s ease-out both; }
.animate-scale-in { animation: scale-in 0.5s ease-out both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }

/* ─── Thank-you (order received) page ─── */
.thankyou-card { max-width: 32rem; margin: 0 auto; background: var(--card, #fff); border: 1.5px solid oklch(0.42 0.12 150 / 0.3); border-radius: 1.25rem; padding: 2.25rem 1.5rem; text-align: center; box-shadow: 0 20px 45px -25px oklch(0.42 0.12 150 / 0.5); }
.thankyou-check { width: 4.25rem; height: 4.25rem; margin: 0 auto 1.25rem; border-radius: 9999px; background: var(--primary); color: #fff; font-size: 2.25rem; font-weight: 900; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 28px -12px oklch(0.42 0.12 150 / 0.7); }
.thankyou-title { font-size: 1.4rem; font-weight: 900; color: var(--primary); line-height: 1.45; }
.thankyou-sub { margin-top: 0.75rem; color: var(--muted-foreground); line-height: 1.6; }
.thankyou-meta { margin: 1.5rem 0 0; display: flex; flex-direction: column; gap: 0.65rem; text-align: left; background: oklch(0.95 0.04 130 / 0.5); border: 1px solid oklch(0.42 0.12 150 / 0.2); border-radius: 0.85rem; padding: 1rem 1.15rem; }
.thankyou-meta > div { display: flex; justify-content: space-between; align-items: center; }
.thankyou-meta dt { color: var(--muted-foreground); }
.thankyou-meta dd { font-weight: 900; color: var(--foreground); }
.thankyou-actions { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; }
.page-content { max-width: 48rem; margin: 0 auto; line-height: 1.7; }
