/* ═══════════════════════════════════════════
   MAVIOO TOYS — Global CSS v2.0
   Brand: #371760 (deep violet) / #7c3aed (purple)
   Ultra Premium UI/UX
═══════════════════════════════════════════ */

:root {
  --bg:     #fbfafd;
  --ink:    #120a1e;
  --line:   #e9e3f2;
  --brand:  #371760;
  --accent: #7c3aed;
  --light:  #a855f7;
  --soft:   rgba(55,23,96,0.06);
  --glow:   0 20px 60px rgba(55,23,96,0.18);
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* ── Selection highlight ── */
::selection {
  background: rgba(124,58,237,0.20);
  color: var(--ink);
}

/* ── Scrollbar (WebKit) ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(124,58,237,0.30); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: rgba(124,58,237,0.50); }

/* ── Focus rings ── */
:focus-visible {
  outline: 2px solid rgba(124,58,237,0.60);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ── Line clamp utilities ── */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ════════════════════════════════════════
   WOOCOMMERCE — PRICE
════════════════════════════════════════ */
.woo-price .woocommerce-Price-amount,
.woo-price .amount,
.woo-price bdi {
  font-size: inherit !important;
  font-weight: inherit !important;
  color: inherit !important;
}
.woo-price ins {
  text-decoration: none !important;
  font-weight: 900 !important;
}
.woo-price del {
  opacity: 0.45;
  font-size: 0.75em !important;
  margin-right: 0.375rem;
  font-weight: 400 !important;
}
.woo-price del .woocommerce-Price-amount {
  color: rgba(18,10,30,0.45) !important;
}

/* ════════════════════════════════════════
   WOOCOMMERCE — BUTTONS (Add to Cart etc.)
════════════════════════════════════════ */
.single_add_to_cart_button,
button.single_add_to_cart_button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 3.25rem !important;
  border-radius: 1rem !important;
  background: linear-gradient(135deg, #371760, #7c3aed) !important;
  color: #fff !important;
  font-size: 0.9375rem !important;
  font-weight: 800 !important;
  font-family: 'Inter', sans-serif !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 12px 36px rgba(55,23,96,0.30) !important;
  transition: transform 0.15s ease, box-shadow 0.20s ease !important;
  margin-top: 0.75rem !important;
  letter-spacing: 0.01em !important;
  position: relative !important;
  overflow: hidden !important;
}
.single_add_to_cart_button::after,
button.single_add_to_cart_button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,0.20) 50%, transparent 75%);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
}
.single_add_to_cart_button:hover,
button.single_add_to_cart_button:hover {
  box-shadow: 0 20px 56px rgba(55,23,96,0.40) !important;
  transform: translateY(-2px) scale(1.01) !important;
}
.single_add_to_cart_button:hover::after,
button.single_add_to_cart_button:hover::after {
  transform: translateX(100%);
}
.single_add_to_cart_button:active,
button.single_add_to_cart_button:active {
  transform: scale(0.97) !important;
  box-shadow: 0 8px 24px rgba(55,23,96,0.25) !important;
}

/* ── Alt button (view cart, etc.) ── */
.woocommerce a.button.alt,
.woocommerce button.button.alt {
  background: linear-gradient(135deg, #371760, #7c3aed) !important;
}
.woocommerce a.button:not(.alt):not(.checkout-button) {
  background: white !important;
  color: #371760 !important;
  border: 2px solid rgba(55,23,96,0.20) !important;
  box-shadow: none !important;
}
.woocommerce a.button:not(.alt):not(.checkout-button):hover {
  background: rgba(55,23,96,0.05) !important;
  border-color: rgba(55,23,96,0.35) !important;
  box-shadow: none !important;
}

/* ════════════════════════════════════════
   WOOCOMMERCE — QUANTITY INPUT
════════════════════════════════════════ */
.quantity {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  margin-bottom: 0 !important;
}
.quantity input[type="number"],
.quantity .qty {
  height: 3rem !important;
  border-radius: 1rem !important;
  border: 2px solid rgba(233,227,242,0.95) !important;
  padding: 0 1rem !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  font-family: 'Inter', sans-serif !important;
  width: 5.5rem !important;
  text-align: center !important;
  background: #fff !important;
  color: #120a1e !important;
  outline: none !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  -moz-appearance: textfield !important;
}
.quantity input[type="number"]::-webkit-outer-spin-button,
.quantity input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity input[type="number"]:focus,
.quantity .qty:focus {
  border-color: rgba(55,23,96,0.40) !important;
  box-shadow: 0 0 0 3px rgba(55,23,96,0.08) !important;
}

/* ════════════════════════════════════════
   WOOCOMMERCE — NOTICES & ALERTS
════════════════════════════════════════ */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: 1.25rem !important;
  border-left: none !important;
  border: 1px solid rgba(55,23,96,0.15) !important;
  padding: 1rem 1.5rem !important;
  font-size: 0.875rem !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  margin-bottom: 1.5rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
}
.woocommerce-message {
  background: rgba(55,23,96,0.06) !important;
  color: #371760 !important;
  border-color: rgba(55,23,96,0.18) !important;
}
.woocommerce-info {
  background: rgba(124,58,237,0.06) !important;
  color: #4c1d95 !important;
  border-color: rgba(124,58,237,0.18) !important;
}
.woocommerce-error {
  background: rgba(220,38,38,0.05) !important;
  color: #dc2626 !important;
  border-color: rgba(220,38,38,0.15) !important;
  list-style: none !important;
  margin: 0 0 1.5rem !important;
  padding: 1rem 1.5rem !important;
}
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  display: none !important; /* remove default WC icons */
}
.woocommerce-message .button,
.woocommerce-info .button {
  margin-left: auto !important;
  width: auto !important;
  height: 2.25rem !important;
  padding: 0 1rem !important;
  font-size: 0.8125rem !important;
  border-radius: 0.75rem !important;
  margin-top: 0 !important;
}

/* ════════════════════════════════════════
   WOOCOMMERCE — PAGINATION
════════════════════════════════════════ */
.woocommerce-pagination ul {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.5rem !important;
  justify-content: center !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 2.75rem !important;
  min-width: 2.75rem !important;
  padding: 0 0.875rem !important;
  border-radius: 0.875rem !important;
  border: 2px solid rgba(233,227,242,0.95) !important;
  background: #fff !important;
  color: rgba(18,10,30,0.80) !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  font-family: 'Inter', sans-serif !important;
  text-decoration: none !important;
  transition: all 0.20s ease !important;
}
.woocommerce-pagination ul li a:hover {
  border-color: rgba(55,23,96,0.30) !important;
  color: #371760 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(55,23,96,0.12) !important;
}
.woocommerce-pagination ul li span.current {
  background: linear-gradient(135deg, #371760, #7c3aed) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 8px 24px rgba(55,23,96,0.28) !important;
}

/* ════════════════════════════════════════
   WOOCOMMERCE — FORM FIELDS
════════════════════════════════════════ */
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea,
.woocommerce-account input.input-text,
.woocommerce-account select {
  height: 3rem !important;
  border-radius: 1rem !important;
  border: 2px solid rgba(233,227,242,0.95) !important;
  padding: 0 1rem !important;
  font-size: 0.9375rem !important;
  font-family: 'Inter', sans-serif !important;
  background: rgba(251,250,253,0.90) !important;
  color: #120a1e !important;
  outline: none !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: border-color 0.20s, box-shadow 0.20s, background 0.20s !important;
}
.woocommerce form .form-row textarea {
  height: auto !important;
  padding: 0.875rem 1rem !important;
  min-height: 120px !important;
}
.woocommerce-checkout .form-row input:focus,
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce-account input.input-text:focus {
  border-color: rgba(55,23,96,0.40) !important;
  box-shadow: 0 0 0 4px rgba(55,23,96,0.08) !important;
  background: #fff !important;
}
.woocommerce form .form-row label {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  color: rgba(18,10,30,0.55) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.07em !important;
  font-family: 'Inter', sans-serif !important;
  margin-bottom: 0.5rem !important;
  display: block !important;
}

/* ── Place Order button ── */
#place_order {
  height: 3.5rem !important;
  border-radius: 1rem !important;
  background: linear-gradient(135deg, #371760, #7c3aed) !important;
  color: #fff !important;
  font-size: 1.0625rem !important;
  font-weight: 900 !important;
  font-family: 'Inter', sans-serif !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 14px 44px rgba(55,23,96,0.32) !important;
  transition: transform 0.15s, box-shadow 0.20s !important;
  width: 100% !important;
  margin-top: 1.5rem !important;
  letter-spacing: 0.02em !important;
  position: relative !important;
  overflow: hidden !important;
}
#place_order::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
#place_order:hover {
  box-shadow: 0 20px 60px rgba(55,23,96,0.42) !important;
  transform: translateY(-2px) !important;
}
#place_order:hover::after {
  transform: translateX(100%);
}
#place_order:active {
  transform: scale(0.98) !important;
}

/* ════════════════════════════════════════
   WOOCOMMERCE — CART TABLE
════════════════════════════════════════ */
.woocommerce-cart-form table.cart,
.woocommerce table.shop_table {
  border-collapse: separate !important;
  border-spacing: 0 !important;
  width: 100% !important;
  border-radius: 1.5rem !important;
  border: 1px solid rgba(233,227,242,0.95) !important;
  overflow: hidden !important;
  background: #fff !important;
  font-family: 'Inter', sans-serif !important;
  box-shadow: 0 8px 32px rgba(17,8,28,0.06) !important;
}
.woocommerce-cart-form table.cart th,
.woocommerce table.shop_table th {
  font-size: 0.6875rem !important;
  font-weight: 800 !important;
  color: rgba(18,10,30,0.42) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.09em !important;
  padding: 1.125rem 1.25rem !important;
  border-bottom: 1px solid rgba(233,227,242,0.95) !important;
  background: rgba(251,250,253,0.80) !important;
}
.woocommerce-cart-form table.cart td,
.woocommerce table.shop_table td {
  padding: 1.125rem 1.25rem !important;
  border-bottom: 1px solid rgba(233,227,242,0.95) !important;
  font-size: 0.9375rem !important;
  vertical-align: middle !important;
}
.woocommerce-cart-form table.cart tr:last-child td {
  border-bottom: none !important;
}
/* Cart product image */
.woocommerce-cart-form table.cart td.product-thumbnail img {
  border-radius: 12px !important;
  width: 72px !important;
  height: 72px !important;
  object-fit: cover !important;
}
/* Remove button in cart */
.woocommerce-cart-form table.cart td.product-remove a {
  color: rgba(18,10,30,0.35) !important;
  font-size: 1.1rem !important;
  transition: color 0.15s !important;
}
.woocommerce-cart-form table.cart td.product-remove a:hover {
  color: #ef4444 !important;
}

/* ── Cart totals box ── */
.woocommerce-cart .cart_totals {
  background: white !important;
  border-radius: 1.5rem !important;
  border: 1px solid rgba(233,227,242,0.95) !important;
  padding: 1.75rem !important;
  box-shadow: 0 12px 48px rgba(17,8,28,0.08) !important;
}
.woocommerce-cart .cart_totals h2 {
  font-size: 1.125rem !important;
  font-weight: 900 !important;
  color: #120a1e !important;
  margin-bottom: 1.25rem !important;
  font-family: 'Inter', sans-serif !important;
  padding-bottom: 0.75rem !important;
  border-bottom: 1px solid rgba(233,227,242,0.95) !important;
}

/* ── Update cart button ── */
.woocommerce-cart-form [name="update_cart"] {
  height: 2.75rem !important;
  border-radius: 0.875rem !important;
  font-size: 0.875rem !important;
  padding: 0 1.25rem !important;
  width: auto !important;
  background: white !important;
  color: #371760 !important;
  border: 2px solid rgba(55,23,96,0.20) !important;
  box-shadow: none !important;
  margin-top: 0.5rem !important;
}
.woocommerce-cart-form [name="update_cart"]:hover {
  border-color: rgba(55,23,96,0.40) !important;
  background: rgba(55,23,96,0.04) !important;
}

/* ════════════════════════════════════════
   WOOCOMMERCE — CHECKOUT SECTIONS
════════════════════════════════════════ */
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  background: white !important;
  border-radius: 1.5rem !important;
  border: 1px solid rgba(233,227,242,0.95) !important;
  padding: 2rem !important;
  box-shadow: 0 12px 48px rgba(17,8,28,0.07) !important;
  margin-bottom: 1.5rem !important;
}
.woocommerce-checkout h3 {
  font-size: 1.125rem !important;
  font-weight: 900 !important;
  font-family: 'Inter', sans-serif !important;
  color: #120a1e !important;
  margin-bottom: 1.5rem !important;
  padding-bottom: 0.875rem !important;
  border-bottom: 1px solid rgba(233,227,242,0.95) !important;
}
.woocommerce-checkout .col2-set {
  display: grid !important;
  gap: 1.5rem !important;
}
@media (min-width: 768px) {
  .woocommerce-checkout .col2-set {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ── Checkout payment methods ── */
.woocommerce-checkout #payment {
  background: white !important;
  border-radius: 1.5rem !important;
  border: 1px solid rgba(233,227,242,0.95) !important;
  padding: 1.75rem !important;
  box-shadow: 0 12px 48px rgba(17,8,28,0.07) !important;
}
.woocommerce-checkout #payment ul.payment_methods {
  border-bottom: 1px solid rgba(233,227,242,0.95) !important;
  padding-bottom: 1rem !important;
  margin-bottom: 1rem !important;
  list-style: none !important;
  padding-left: 0 !important;
}
.woocommerce-checkout #payment ul.payment_methods li {
  padding: 0.75rem 0 !important;
  border-bottom: 1px solid rgba(233,227,242,0.60) !important;
}
.woocommerce-checkout #payment ul.payment_methods li:last-child {
  border-bottom: none !important;
}
.woocommerce-checkout #payment ul.payment_methods li label {
  font-weight: 700 !important;
  font-size: 0.9375rem !important;
  color: #120a1e !important;
  cursor: pointer !important;
}

/* ════════════════════════════════════════
   WOOCOMMERCE — MY ACCOUNT PAGE
════════════════════════════════════════ */
.woocommerce-MyAccount-navigation {
  background: white !important;
  border-radius: 1.5rem !important;
  border: 1px solid rgba(233,227,242,0.95) !important;
  padding: 1rem !important;
  overflow: hidden !important;
  box-shadow: 0 8px 32px rgba(17,8,28,0.06) !important;
}
.woocommerce-MyAccount-navigation ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce-MyAccount-navigation ul li a {
  display: block !important;
  padding: 0.75rem 1rem !important;
  border-radius: 0.875rem !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  font-family: 'Inter', sans-serif !important;
  color: rgba(18,10,30,0.70) !important;
  text-decoration: none !important;
  transition: all 0.20s !important;
}
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--is-active a {
  background: rgba(55,23,96,0.07) !important;
  color: #371760 !important;
  font-weight: 700 !important;
}

/* ── My account content area ── */
.woocommerce-MyAccount-content {
  background: white !important;
  border-radius: 1.5rem !important;
  border: 1px solid rgba(233,227,242,0.95) !important;
  padding: 2rem !important;
  box-shadow: 0 8px 32px rgba(17,8,28,0.06) !important;
}

/* ── Order table in My Account ── */
.woocommerce-orders-table {
  border-radius: 1.25rem !important;
  overflow: hidden !important;
}

/* ════════════════════════════════════════
   WOOCOMMERCE — ORDER CONFIRMATION
════════════════════════════════════════ */
.woocommerce-order {
  padding: 2rem !important;
  background: white !important;
  border-radius: 2rem !important;
  border: 1px solid rgba(233,227,242,0.95) !important;
  box-shadow: 0 20px 80px rgba(17,8,28,0.08) !important;
}
.woocommerce-order-overview {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 2rem !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
}
.woocommerce-order-overview li {
  background: rgba(55,23,96,0.05) !important;
  border-radius: 1rem !important;
  padding: 1rem 1.25rem !important;
  font-size: 0.875rem !important;
  font-family: 'Inter', sans-serif !important;
}
.woocommerce-order-overview li strong {
  display: block !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: #371760 !important;
  margin-top: 0.25rem !important;
}
.woocommerce-thankyou-order-received {
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  color: #371760 !important;
  padding: 1.5rem !important;
  background: rgba(55,23,96,0.06) !important;
  border-radius: 1.25rem !important;
  margin-bottom: 1.5rem !important;
  border: 1px solid rgba(55,23,96,0.15) !important;
}

/* ════════════════════════════════════════
   WOOCOMMERCE — PRODUCT TABS (single page)
════════════════════════════════════════ */
.woocommerce-tabs .tabs {
  display: flex !important;
  gap: 0.25rem !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 1.75rem !important;
  border-bottom: 2px solid rgba(233,227,242,0.95) !important;
}
.woocommerce-tabs .tabs li a {
  display: block !important;
  padding: 0.875rem 1.25rem !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  font-family: 'Inter', sans-serif !important;
  color: rgba(18,10,30,0.50) !important;
  text-decoration: none !important;
  border-bottom: 2px solid transparent !important;
  margin-bottom: -2px !important;
  transition: all 0.20s !important;
  border-radius: 0.5rem 0.5rem 0 0 !important;
}
.woocommerce-tabs .tabs li a:hover {
  color: #371760 !important;
  background: rgba(55,23,96,0.04) !important;
}
.woocommerce-tabs .tabs li.active a {
  color: #371760 !important;
  border-bottom-color: #7c3aed !important;
  background: rgba(55,23,96,0.04) !important;
}
.woocommerce-tabs .panel {
  padding: 0 !important;
}

/* ════════════════════════════════════════
   WOOCOMMERCE — STAR RATINGS
════════════════════════════════════════ */
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before {
  color: #f59e0b !important;
}
.woocommerce .star-rating {
  color: #f59e0b !important;
  letter-spacing: 0.1em !important;
}
/* Review form stars */
.woocommerce p.stars a {
  color: #f59e0b !important;
}

/* ════════════════════════════════════════
   CUSTOM LOGO SIZING
════════════════════════════════════════ */
.custom-logo-link {
  display: inline-flex !important;
  align-items: center !important;
}
.custom-logo-link img.custom-logo {
  height: 44px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain !important;
  display: block !important;
}

/* ════════════════════════════════════════
   PROSE / DESCRIPTION CONTENT
════════════════════════════════════════ */
.prose {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(18,10,30,0.75);
}
.prose h2, .prose h3, .prose h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  color: #120a1e;
  margin-top: 1.75rem;
  margin-bottom: 0.625rem;
  line-height: 1.2;
}
.prose h2 { font-size: 1.375rem; }
.prose h3 { font-size: 1.125rem; }
.prose p { margin-bottom: 1rem; }
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.prose ul li { margin-bottom: 0.375rem; }
.prose ul li::marker { color: #7c3aed; }
.prose a {
  color: #7c3aed;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose a:hover { color: #371760; }
.prose strong { font-weight: 800; color: #120a1e; }
.prose code {
  background: rgba(55,23,96,0.07);
  color: #7c3aed;
  padding: 0.15em 0.4em;
  border-radius: 0.35rem;
  font-size: 0.875em;
  font-family: monospace;
}

/* ════════════════════════════════════════
   MOBILE RESPONSIVE POLISH
════════════════════════════════════════ */
@media (max-width: 640px) {
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review,
  .woocommerce-checkout #payment,
  .woocommerce-cart .cart_totals,
  .woocommerce-MyAccount-content {
    padding: 1.25rem !important;
    border-radius: 1.25rem !important;
  }

  .woocommerce-MyAccount-navigation {
    margin-bottom: 1rem !important;
  }

  /* Stack my account on mobile */
  .woocommerce-account .woocommerce {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

/* ════════════════════════════════════════
   CART & CHECKOUT PAGE LAYOUT
════════════════════════════════════════ */
.woocommerce-checkout .woocommerce,
.woocommerce-cart .woocommerce {
  display: block;
}

/* Checkout 2-col layout on desktop */
@media (min-width: 768px) {
  .woocommerce-checkout .woocommerce > form {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.5rem;
    align-items: start;
  }
}

/* ════════════════════════════════════════
   MICRO ANIMATIONS & EXTRAS
════════════════════════════════════════ */
/* Smooth image loading */
img {
  transition: opacity 0.3s ease;
}
img[loading="lazy"] {
  opacity: 0;
}
img[loading="lazy"].loaded,
img:not([loading]) {
  opacity: 1;
}

/* Better product image aspect ratio on WC default loop */
.woocommerce ul.products li.product .woocommerce-loop-product__link img {
  border-radius: 1rem !important;
}

/* ════════════════════════════════════════
   PRINT STYLES
════════════════════════════════════════ */
@media print {
  header, footer, nav { display: none !important; }
  .woocommerce-order { box-shadow: none !important; border: 1px solid #ccc !important; }
}
