/* Commerce theme — Fignoc layout + OurShopsZim brand bridge */
:root {
  /* Brand — Fignoc Navy + Red (from logo) */
  --primary: #0A2472;        /* Fignoc deep navy */
  --primary-light: #163190;  /* Fignoc mid navy */
  --accent: #E63946;         /* Fignoc red */
  --accent-dark: #c72535;
  --accent-light: #F87171;
  --red: #E63946;
  --red-dark: #c72535;
  --blue: #0A2472;
  --blue-dark: #071A5E;
  --blue-light: #2952CC;
  --green: #007600;
  --green-bg: #F0FFF0;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-50: #F8F8F8;
  --gray-100: #F3F3F3;
  --gray-200: #DDDDDD;
  --gray-300: #C6C6C6;
  --gray-400: #AAAAAA;
  --gray-500: #888888;
  --gray-600: #555555;
  --gray-700: #333333;
  --gray-800: #1A1A1A;
  --gray-900: #0D0D0D;

  /* Layout */
  --max-width: 1500px;
  --header-height: 60px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.08);
  --shadow-sm: 0 2px 5px rgba(0,0,0,.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.15);
  --shadow-product: 0 2px 8px rgba(0,0,0,.1);
  --shadow-lift: 0 14px 44px rgba(10,36,114,0.18);
  --shadow-soft: 0 10px 30px rgba(10,36,114,0.10);

  /* Borders */
  --border: 1px solid var(--gray-200);
  --border-focus: 2px solid var(--accent);
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --radius-btn: 14px;

  /* Typography */
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;

  /* Transitions */
  --transition: all 0.18s ease;
  --transition-slow: all 0.35s ease;
  --ease-out: cubic-bezier(.16,1,.3,1);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  background: transparent;
}
/* Phones: one product per row */
@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr; gap: 0.85rem; }
}

/* Homepage: cap columns so cards never feel cramped */
.product-grid--home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 1200px) {
  .product-grid--home { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .product-grid--home { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .product-grid--home { grid-template-columns: 1fr; }
}
.product-card {
  background: var(--white);
  padding: 0;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(10, 36, 114, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(10,36,114,0.20), rgba(230,57,70,0.22), rgba(10,36,114,0.12));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .18s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}
.product-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(10, 36, 114, 0.14), 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(230, 57, 70, 0.2);
}
.product-card:hover::before { opacity: 1; }
.product-card-badge {
  position: absolute;
  top: .6rem;
  left: .6rem;
  background: var(--red);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  padding: .15rem .45rem;
  border-radius: var(--radius-sm);
  z-index: 2;
  text-transform: uppercase;
}
.product-card-badge.badge-new { background: var(--green); }
.product-card-badge.badge-bulk { background: var(--accent); color: var(--primary); }
.out-of-stock {
  position: absolute;
  top: .6rem;
  right: .6rem;
  background: var(--gray-500);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  padding: .15rem .45rem;
  border-radius: var(--radius-sm);
  z-index: 2;
}
.product-image {
  aspect-ratio: 1;
  height: auto;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 0;
  cursor: pointer;
  position: relative;
}
.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 220px at 20% 0%, rgba(255,255,255,0.22) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .25s var(--ease-out);
  pointer-events: none;
}
.product-card:hover .product-image::after { opacity: 1; }
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .75rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover .product-image img { transform: scale(1.06); }
.image-fallback {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: linear-gradient(135deg, #F0F3FF, #E8EDFF);
  border-radius: var(--radius-sm);
  color: #8899CC;
  font-size: .75rem;
  text-align: center;
  padding: 1rem;
}
.image-fallback i { font-size: 2rem; color: #B8C4E8; display: block; margin-bottom: .3rem; }
.image-fallback strong { color: #5566AA; font-size: .8rem; display: block; font-weight: 600; }
.image-fallback-large { min-height: 220px; }
.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 1.15rem;
  gap: 0.15rem;
}
.product-title {
  font-size: 0.98rem;
  font-weight: 750;
  color: var(--gray-800);
  line-height: 1.35;
  margin-bottom: 0.35rem;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Homepage / shop — product card actions */
.product-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
}
.btn-add-to-cart {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, #0A2472 0%, #163190 45%, #071A5E 100%);
  color: #fff;
  border: none;
  padding: 0.55rem 0.75rem;
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 14px 32px rgba(10, 36, 114, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.btn-add-to-cart:disabled,
.btn-add-to-cart[aria-busy="true"] {
  opacity: 0.85;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: 0 10px 24px rgba(10, 36, 114, 0.12);
  filter: grayscale(0.08);
}
.btn-add-to-cart:hover:not(:disabled) {
  background: linear-gradient(180deg, #E63946 0%, #c72535 100%);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
  transform: translateY(-1px);
}
.btn-add-to-cart:active:not(:disabled) {
  transform: translateY(0);
}
.btn-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  color: var(--primary);
  border: 1px solid rgba(10, 36, 114, 0.15);
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease, color 0.2s ease;
  box-shadow: 0 12px 28px rgba(10,36,114,0.10);
  white-space: nowrap;
}
.btn-view:hover {
  border-color: rgba(230, 57, 70, 0.45);
  color: var(--accent-dark);
  box-shadow: 0 4px 14px rgba(10, 36, 114, 0.12);
  transform: translateY(-1px);
}

.product-card .product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1e293b;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.45);
}
.product-card .product-badge.bundle {
  background: linear-gradient(135deg, #E63946 0%, #9f1020 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(230, 57, 70, 0.45);
}
.product-card .product-badge.out-of-stock {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  color: #fff;
  left: auto;
  right: 10px;
  box-shadow: 0 2px 8px rgba(71, 85, 105, 0.4);
}

.product-image .image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #eef2ff 0%, #dde4ff 100%);
  color: #0a2472;
}
.product-image .image-placeholder i {
  font-size: 2.35rem;
  opacity: 0.55;
}
.image-placeholder__brand {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a2472;
  opacity: 0.5;
}
.product-category {
  font-size: .72rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .3px;
  font-weight: 600;
  margin-bottom: .2rem;
}
.product-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.3;
  margin-bottom: .35rem;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-name a { color: inherit; }
.product-name a:hover { color: var(--blue); }

/* Star rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-bottom: .35rem;
}
.stars { color: var(--accent); font-size: .78rem; }
.rating-count { font-size: .72rem; color: var(--blue); }

/* Price */
.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: .2rem;
}
.product-price .currency { font-size: .75rem; vertical-align: super; font-weight: 400; }
.bulk-price {
  font-size: .75rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: .3rem;
  display: block;
}
.price-tag-free { color: var(--green); font-weight: 700; font-size: .82rem; }

/* Stock indicator */
.stock-info {
  font-size: .78rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: .5rem;
}
.stock-info.low { color: var(--red); }

.product-card-actions { margin-top: auto; padding-top: .5rem; }

/* ===================================
   BUTTONS — Amazon style
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.3;
}

.btn-primary {
  background: linear-gradient(135deg, #ff4d5a 0%, #E63946 35%, #c72535 100%);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: 0 14px 36px rgba(230, 57, 70, 0.28);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff6270 0%, #E63946 40%, #a01f2b 100%);
  color: #fff;
  box-shadow: 0 18px 54px rgba(230, 57, 70, 0.34);
}

.btn-outline {
  background: transparent;
  border-color: var(--gray-300);
  color: var(--gray-700);
}

.btn-outline:hover {
  background: var(--gray-50);
  border-color: var(--gray-500);
  color: var(--gray-800);
}

.btn-block { width: 100%; }

.btn-sm {
  font-size: 0.82rem;
  padding: 0.5rem 0.8rem;
  border-radius: 12px;
}

/* ===================================
   PRODUCT DETAIL + UTILITY PAGES
   =================================== */
.utility-page-hero {
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem 0;
  border-bottom: 3px solid var(--red);
}
.utility-page-hero-success { background: var(--green); }
.utility-page-hero-danger { background: var(--red-dark); }
.utility-page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}
.utility-page-hero h1 {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: .3rem;
}
.utility-page-hero p { color: rgba(255,255,255,.8); margin: 0; font-size: .88rem; }
.utility-page-hero .hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: var(--radius-full);
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.utility-hero-note {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: .85rem 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  display: flex;
  flex-direction: column;
  gap: .2rem;
  min-width: 200px;
}
.utility-hero-note strong { color: var(--white); font-size: .88rem; }
.success-note { background: rgba(255,255,255,.15); }
.danger-note { background: rgba(0,0,0,.15); }
.utility-page-section { background: var(--gray-100); }
.checkout-page-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 1.5rem;
  align-items: start;
}
.utility-main-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.product-page-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.product-media-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  position: sticky;
  top: 130px;
}
.product-buy-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.product-detail-image {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--gray-50); border-radius: var(--radius-sm);
}
.product-detail-image img { width:100%; height:100%; object-fit:contain; padding:1rem; }
.product-detail-image img {
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(10,36,114,0.10);
  background: #fff;
}
.product-page-label-row { display: flex; gap: .4rem; margin-bottom: .5rem; flex-wrap: wrap; }
.product-page-pill {
  padding: .2rem .65rem;
  background: var(--gray-100);
  border: var(--border);
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: 600;
  color: var(--gray-600);
}
.product-page-pill-light { background: var(--accent); color: var(--primary); border-color: var(--accent-dark); }
.pricing-block { padding: .75rem 0; border-top: var(--border); border-bottom: var(--border); margin: .75rem 0; }
.retail-price { font-size: 1.8rem; font-weight: 400; color: var(--gray-800); }
.bulk-price-info { font-size: .83rem; color: var(--green); font-weight: 600; margin-top: .25rem; }
.bulk-price-info small { display: block; color: var(--gray-500); font-weight: 400; font-size: .78rem; }
.bulk-price-info a { color: var(--blue); font-weight: 700; }
.bulk-price-info a:hover { color: var(--accent-dark); text-decoration: underline; }
.product-buy-actions { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.product-quantity-selector { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.card-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.product-main-cta, .product-secondary-cta { flex: 1; }
.support-note { font-size: .78rem; color: var(--gray-500); margin-top: .75rem; }
.inline-link { color: var(--blue); }
.product-hook { font-size: .88rem; color: var(--gray-500); font-style: italic; margin-bottom: .75rem; }
.product-description { font-size: .88rem; color: var(--gray-600); line-height: 1.7; margin-bottom: .75rem; }
.product-meta-stacked { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; margin-bottom: .75rem; }
.product-meta-card {
  background: var(--gray-50);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: .5rem .6rem;
  font-size: .78rem;
}
.product-meta-card strong { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .3px; color: var(--gray-500); font-weight: 700; margin-bottom: .15rem; }
.product-meta-card span { color: var(--gray-700); font-weight: 500; }
.mini-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin: .75rem 0; }
.mini-trust-card {
  background: var(--gray-50);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: .6rem;
  font-size: .75rem;
}
.mini-trust-card strong { display: block; font-weight: 700; color: var(--gray-700); margin-bottom: .15rem; font-size: .78rem; }
.mini-trust-card span { color: var(--gray-500); line-height: 1.4; }
.product-card-link { text-decoration: none; color: inherit; }
.product-card-link:hover .product-name { color: var(--blue); }
.product-card-link:focus-visible { border-radius: var(--radius-md); }

/* Related-products grid: keep cards readable */
.related-section .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1200px) {
  .related-section .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .related-section .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .related-section .product-grid { grid-template-columns: 1fr; }
}

/* ===================================
   CART PAGE (v2) — scoped overrides
   Applies only to pages using `.cart-page`
   =================================== */
.cart-page .cart-layout {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

.cart-page .cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #eef2ff;
}
.cart-page .cart-header h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0a2472;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}
.cart-page .cart-header h1 i {
  color: #e63946;
  font-size: 1.5rem;
}

.cart-page .cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.5rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 1rem;
  border: 1px solid #eef2ff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, opacity 0.2s ease;
  position: relative;
  box-shadow: 0 10px 26px rgba(10, 36, 114, 0.06);
}
.cart-page .cart-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(10, 36, 114, 0.12);
  border-color: rgba(212, 43, 43, 0.18);
}

.cart-page .cart-item-image {
  width: 100px;
  height: 100px;
  background: #f8fafc;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
}
.cart-page .cart-item-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.cart-page .cart-item-image:hover img { transform: scale(1.05); }
.cart-page .cart-item-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  background: #f8fafc;
}

.cart-page .cart-item-name {
  font-weight: 700;
  font-size: 1rem;
  color: #0a2472;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cart-page .cart-item-name-link { color: inherit; text-decoration: none; }
.cart-page .cart-item-name-link:hover { text-decoration: underline; }
.cart-page .cart-item-sku { font-size: 0.7rem; color: #64748b; margin-bottom: 0.5rem; }
.cart-page .cart-item-stock {
  font-size: 0.7rem;
  color: #10b981;
  margin-bottom: 0.5rem;
  display: inline-block;
  background: #d1fae5;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
}
.cart-page .cart-bulk-note {
  font-size: 0.7rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  display: inline-block;
  background: #fef3c7;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  margin-left: 0.5rem;
}

.cart-page .cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.cart-page .cart-action-divider { color: #cbd5e1; }

.cart-page .quantity-btn {
  width: 32px;
  height: 32px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 10px 22px rgba(10, 36, 114, 0.10);
}
.cart-page .quantity-btn:hover {
  background: #0a2472;
  color: #fff;
  border-color: #0a2472;
  transform: translateY(-1px);
}
.cart-page .quantity-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(10, 36, 114, 0.10);
}
.cart-page .quantity-btn:focus-visible {
  outline: 3px solid rgba(212, 43, 43, 0.28);
  outline-offset: 3px;
}
.cart-page .quantity-input {
  width: 60px;
  text-align: center;
  padding: 0.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-weight: 700;
  background: #fff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.cart-page .quantity-input:focus {
  outline: none;
  border-color: rgba(212, 43, 43, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 43, 43, 0.14);
}

.cart-page .cart-action-link {
  background: none;
  border: none;
  color: #64748b;
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
  padding: 0.25rem 0.35rem;
  border-radius: 10px;
}
.cart-page .cart-action-link:hover {
  color: #e63946;
  transform: translateX(2px);
  background: rgba(212, 43, 43, 0.08);
}
.cart-page .cart-action-link:active { transform: translateX(0); }
.cart-page .cart-action-link:focus-visible {
  outline: 3px solid rgba(212, 43, 43, 0.28);
  outline-offset: 3px;
}
.cart-page .cart-danger-link { color: #e63946; font-weight: 800; }

.cart-page .cart-item-price {
  text-align: right;
  min-width: 130px;
}
.cart-page .cart-item-price .price-amount {
  font-size: 1.35rem;
  font-weight: 900;
  color: #e63946;
}
.cart-page .cart-item-price .price-unit {
  font-size: 0.7rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.cart-page .cart-free-delivery {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #065f46;
  font-weight: 650;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cart-page .upsell-band {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  padding: 0.875rem 1.25rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 550;
}

/* Desktop: allow cart items list to scroll while summary stays visible */
@media (min-width: 900px) {
  .cart-page #cart-items-container {
    max-height: calc(100vh - 260px);
    overflow: auto;
    padding-right: 6px;
    scrollbar-gutter: stable;
  }
  .cart-page #cart-items-container::-webkit-scrollbar { width: 10px; }
  .cart-page #cart-items-container::-webkit-scrollbar-thumb {
    background: rgba(10,36,114,0.16);
    border-radius: 9999px;
  }
  .cart-page #cart-items-container::-webkit-scrollbar-thumb:hover {
    background: rgba(10,36,114,0.24);
  }
}

.cart-page .order-summary {
  background: #f8fafc;
  border-radius: 24px;
  padding: 1.5rem;
  position: sticky;
  top: 100px;
  border: 1px solid #eef2ff;
  transition: box-shadow 0.25s ease;
  box-shadow: 0 16px 44px rgba(10, 36, 114, 0.08);
}
.cart-page .order-summary:hover { box-shadow: 0 26px 70px rgba(10, 36, 114, 0.12); }
.cart-page .order-summary h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: #0a2472;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-page .summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 0.9rem;
}
.cart-page .summary-row.total {
  border-top: 2px solid #e2e8f0;
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-weight: 900;
  font-size: 1.15rem;
  color: #0a2472;
}

.cart-page .btn-block {
  width: 100%;
  display: block;
  text-align: center;
  padding: 0.875rem;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.25s ease;
}
.cart-page .btn-inline { display: inline-block; width: auto; padding: 0.75rem 2rem; }
.cart-page .btn-primary-custom {
  background: linear-gradient(135deg, #0a2472, #061840);
  color: #fff;
  border: none;
  text-decoration: none;
  box-shadow: 0 16px 44px rgba(10, 36, 114, 0.22), inset 0 1px 0 rgba(255,255,255,0.12);
}
.cart-page .btn-primary-custom:hover {
  background: linear-gradient(135deg, #e63946, #c72535);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(212, 43, 43, 0.32);
}
.cart-page .btn-primary-custom:active { transform: translateY(0); }
.cart-page .btn-primary-custom:focus-visible {
  outline: 3px solid rgba(212, 43, 43, 0.30);
  outline-offset: 3px;
}
.cart-page .btn-secondary-custom {
  background: transparent;
  border: 1.5px solid #e2e8f0;
  color: #475569;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(10, 36, 114, 0.10);
}
.cart-page .btn-secondary-custom:hover {
  background: #f8fafc;
  border-color: #0a2472;
  color: #0a2472;
  transform: translateY(-1px);
}
.cart-page .btn-secondary-custom:active { transform: translateY(0); }
.cart-page .btn-secondary-custom:focus-visible {
  outline: 3px solid rgba(26, 43, 94, 0.25);
  outline-offset: 3px;
}

.cart-page .summary-badge {
  border-radius: 12px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
}
.cart-page .summary-badge--success { background: #d1fae5; color: #065f46; }
.cart-page .summary-badge--warn {
  background: #fef3c7;
  color: #92400e;
  margin: 0.5rem 0;
  padding: 0.55rem 0.75rem;
  font-size: 0.75rem;
}
.cart-page .summary-secure-note {
  margin: 1rem 0;
  padding: 0.75rem;
  background: #fff8e1;
  border-radius: 12px;
  font-size: 0.75rem;
  text-align: center;
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #5b4b19;
}
.cart-page .summary-secure-sub {
  display: block;
  font-size: 0.68rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.cart-page .empty-cart {
  text-align: center;
  padding: 4rem 2rem;
  background: #f8fafc;
  border-radius: 24px;
}
.cart-page .empty-cart i {
  font-size: 5rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
}
.cart-page .empty-cart h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #0a2472;
}
.cart-page .empty-cart p {
  color: #64748b;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .cart-page .cart-layout { grid-template-columns: 1fr; gap: 1.5rem; padding: 0 1rem; margin: 1.25rem auto; }
  .cart-page .cart-item { grid-template-columns: 80px 1fr; gap: 1rem; padding: 1rem; }
  .cart-page .cart-item-price { grid-column: span 2; text-align: left; margin-top: 0.75rem; padding-left: 90px; }
  .cart-page .cart-header h1 { font-size: 1.5rem; }
  .cart-page .order-summary { position: static; }
}
@media (max-width: 480px) {
  .cart-page .cart-item-actions { flex-wrap: wrap; }
  .cart-page .cart-action-divider { display: none; }
  .cart-page .cart-item-price { padding-left: 0; }
  .cart-page .quantity-input { width: 72px; }
}

/* ─── Sticky mobile checkout bar (commercial-grade) ─── */
.cart-page .cart-sticky-bar { display: none; }

@media (max-width: 768px) {
  .cart-page .cart-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.9rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -8px 24px rgba(10, 36, 114, 0.12);
  }

  .cart-page .cart-sticky-bar__info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
  }

  .cart-page .cart-sticky-bar__label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
  }

  .cart-page .cart-sticky-bar__total {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--commerce-coral, #E63946);
  }

  .cart-page .cart-sticky-bar__cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #0a2472, #061840);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(10, 36, 114, 0.3);
    transition: transform 0.15s;
  }

  .cart-page .cart-sticky-bar__cta:active { transform: scale(0.98); }

  /* Room so the bar never hides the last content */
  .cart-page { padding-bottom: 5.5rem; }

  /* Lift the WhatsApp FAB above the bar (no JS needed) */
  body.ax-storefront:has(.cart-sticky-bar) .ax-wa-float {
    bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }
}
.btn-primary, .cta-secondary {
  background: linear-gradient(135deg, #ff4d5a 0%, #E63946 35%, #c72535 100%);
  border-color: rgba(255,255,255,0.20);
  color: #FFFFFF;
  text-shadow: 0 1px 1px rgba(0,0,0,.2);
  box-shadow: 0 14px 36px rgba(230,57,70,0.28);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ff6270 0%, #E63946 40%, #a01f2b 100%);
  color: #FFFFFF;
  box-shadow: 0 18px 54px rgba(230,57,70,0.34);
}

/* Secondary — Amazon gray */
.btn-secondary {
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, #eef2ff 100%);
  border-color: rgba(10,36,114,0.14);
  color: var(--gray-800);
  box-shadow: 0 14px 36px rgba(10,36,114,0.12);
}
.btn-secondary:hover {
  background: linear-gradient(180deg, #ffffff 0%, #e8ecff 100%);
  color: var(--gray-900);
}

/* Danger red */
.btn-danger {
  background: linear-gradient(to bottom, #FF5252, #E63946);
  color: var(--white);
  border-color: #c0392b;
}
.btn-danger:hover { background: linear-gradient(to bottom, #E63946, #c0392b); }

/* Outline */
.btn-outline {
  background: transparent;
  border-color: var(--gray-300);
  color: var(--gray-700);
}
.btn-outline:hover { background: var(--gray-50); border-color: var(--gray-500); color: var(--gray-800); }

/* Full width */
.btn-block { width: 100%; }

/* Sizes */
.btn-sm { font-size: .82rem; padding: .5rem .8rem; border-radius: 12px; }
.btn-lg { font-size: 1.02rem; padding: .82rem 1.45rem; border-radius: 16px; }

/* Glossy shine effect for premium CTAs */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.20) 45%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .55s var(--ease-out);
  pointer-events: none;
}
.btn-primary:hover::after { transform: translateX(120%); }

/* ===================================
   BREADCRUMB & UTILITIES
   =================================== */
.site-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.site-breadcrumb a { color: var(--blue); text-decoration: none; }
.site-breadcrumb a:hover { color: var(--red); text-decoration: underline; }
.site-breadcrumb .current { color: var(--gray-700); font-weight: 500; }
.breadcrumb-separator { color: var(--gray-400); font-size: 0.7rem; }

.brand-blue { color: var(--blue-dark); }
.brand-red { color: var(--red); }
.utility-muted { color: var(--gray-500); font-size: 0.83rem; }
.utility-section-center { text-align: center; }
.content-section { padding: 1.5rem 0; }
.utility-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
}

.section-title { margin-bottom: 1rem; }
.section-title h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 0.25rem; font-weight: 700; }
.section-title p { color: var(--gray-500); font-size: 0.88rem; }

.related-section {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding: 0 1rem 2rem;
}

.quantity-btn {
  width: 36px;
  height: 36px;
  background: var(--gray-100);
  border: var(--border);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover { background: var(--gray-200); }

.quantity-input {
  width: 55px;
  text-align: center;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.35rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--gray-800);
}

.quantity-input:focus { outline: none; border-color: var(--accent); }

/* Product detail thumbs */
.pdp-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.pdp-thumb {
  width: 56px;
  height: 56px;
  padding: 0;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
}

.pdp-thumb.is-active { border-color: var(--red); }

.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Harmonize axcess product grid with commerce cards */
body.ax-storefront .ax-products-panel .product-card {
  border-radius: var(--radius-lg);
}

body.ax-storefront .ax-products-panel .product-price,
body.ax-storefront .sp-price-current {
  color: var(--red);
  font-weight: 800;
}

body.ax-storefront .sp-price-was {
  font-size: 0.82rem;
  color: var(--gray-400);
  text-decoration: line-through;
  font-weight: 600;
}

body.ax-storefront .product-category {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

@media (max-width: 900px) {
  .product-page-grid { grid-template-columns: 1fr; }
  .product-media-card { position: static; }
  .mini-trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .utility-page-hero-inner { grid-template-columns: 1fr; }
  .utility-hero-note { min-width: 0; }
}

/* ─── Axcess storefront page fixes (PDP + cart) ─── */
.utility-page-hero .site-breadcrumb a,
.utility-page-hero .hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.utility-page-hero .site-breadcrumb a:hover,
.utility-page-hero .hero-breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.utility-page-hero .site-breadcrumb .current,
.utility-page-hero .hero-breadcrumb .current {
  color: rgba(255, 255, 255, 0.65);
}

.utility-page-hero .breadcrumb-separator {
  color: rgba(255, 255, 255, 0.45);
}

.utility-page-hero .brand-blue {
  color: #fff;
}

body.ax-storefront .cart-page {
  background: var(--gray-100);
  padding-bottom: 2.5rem;
}

body.ax-storefront .cart-page .cart-layout {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

body.ax-storefront .utility-page-section {
  padding: 1.5rem 0 2.5rem;
}

body.ax-storefront #product-name {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
  color: var(--gray-800);
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

body.ax-storefront .product-buy-card h1#product-name {
  display: block;
}

.product-quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-cta-row .product-main-cta,
.product-cta-row .product-secondary-cta {
  flex: 1;
  min-width: 160px;
}

body.ax-storefront .cart-page .order-summary {
  top: 1rem;
}

/* Related grid: prefer commerce cards over axcess overrides */
.related-section .product-grid {
  padding: 0;
}

body.ax-storefront .related-section .product-card {
  border: 1px solid rgba(10, 36, 114, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

body.ax-storefront .related-section .product-price {
  color: var(--red);
  font-weight: 800;
}

/* Shared commerce pagination (products + customer portal) */
.cp-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.cp-pagination--card {
  margin-top: 0;
  padding: 0.85rem 1.15rem 1.15rem;
  border-top: 1.5px solid #f1f4fb;
}

.cp-pagination--products {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.cp-pagination-summary {
  margin: 0;
  font-size: 0.8rem;
  color: #64748b;
  text-align: center;
}

.cp-pagination-summary strong {
  color: #0a2472;
  font-weight: 800;
}

.cp-pagination-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  width: 100%;
}

.cp-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 38px;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.cp-page-btn:hover:not(.is-disabled) {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #0a2472;
}

.cp-page-btn.is-disabled {
  opacity: 0.4;
  cursor: default;
}

.cp-page-numbers {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cp-page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 0.5rem;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.cp-page-num:hover {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #0a2472;
}

.cp-page-num.is-active {
  background: #0a2472;
  border-color: #0a2472;
  color: #fff;
  cursor: default;
}

.cp-page-ellipsis {
  padding: 0 0.25rem;
  color: #94a3b8;
  font-weight: 700;
  font-size: 0.85rem;
  user-select: none;
}

@media (max-width: 540px) {
  .cp-page-btn-text {
    display: none;
  }

  .cp-page-btn {
    min-width: 38px;
    padding: 0.45rem 0.65rem;
  }
}


/* ─── Shop About / Contact pages ─── */
.sc-page { background: var(--ax-bg, #f4f5f7); }
.sc-hero { position: relative; overflow: hidden; background: #fff; border-bottom: 1px solid var(--ax-border, #e2e8f0); }
.sc-hero::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 80% at 92% 10%, rgba(10,36,114,.06), transparent 55%),
             radial-gradient(ellipse 45% 60% at 4% 95%, rgba(230,57,70,.05), transparent 55%); }
.sc-hero__inner { position: relative; max-width: 880px; margin: 0 auto; padding: clamp(2rem,5vw,3.25rem) 1rem; text-align: center; }
.sc-hero__logo img { width: 72px; height: 72px; object-fit: contain; border-radius: 16px; border: 1px solid var(--ax-border,#e2e8f0); background: #f8fafc; padding: .4rem; margin-bottom: 1rem; }
.sc-eyebrow { display: inline-flex; align-items: center; gap: .4rem; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--commerce-coral,#E63946); margin-bottom: .6rem; }
.sc-hero h1 { font-size: clamp(1.6rem,4.5vw,2.4rem); font-weight: 800; color: var(--commerce-navy,#0A2472); margin: 0 0 .5rem; letter-spacing: -.02em; }
.sc-hero p { font-size: clamp(.92rem,2vw,1.05rem); color: var(--ax-muted,#475569); max-width: 600px; margin: 0 auto; line-height: 1.6; }
.sc-wrap { max-width: 880px; margin: 0 auto; padding: 1.5rem 1rem 3rem; display: flex; flex-direction: column; gap: 1rem; }
.sc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: .85rem; }
.sc-card { display: flex; flex-direction: column; gap: .25rem; background: #fff; border: 1px solid var(--ax-border,#e2e8f0); border-radius: 16px; padding: 1.1rem 1.15rem; text-decoration: none; color: inherit; box-shadow: 0 6px 20px rgba(10,36,114,.05); transition: transform .15s, box-shadow .15s, border-color .15s; }
a.sc-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(10,36,114,.1); border-color: rgba(10,36,114,.18); }
.sc-card__icon { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; margin-bottom: .35rem; }
.sc-card__icon--navy { background: #eef2ff; color: var(--commerce-navy,#0A2472); }
.sc-card__icon--coral { background: #fff0f1; color: var(--commerce-coral,#E63946); }
.sc-card__icon--green { background: #ecfdf5; color: #16a34a; }
.sc-card__label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--ax-muted,#94a3b8); }
.sc-card__value { font-size: .95rem; font-weight: 700; color: var(--commerce-navy,#0A2472); word-break: break-word; }
.sc-panel { background: #fff; border: 1px solid var(--ax-border,#e2e8f0); border-radius: 16px; padding: 1.25rem 1.35rem; box-shadow: 0 6px 20px rgba(10,36,114,.05); }
.sc-panel__head { font-size: .95rem; font-weight: 800; color: var(--commerce-navy,#0A2472); display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; }
.sc-panel__head i { color: var(--commerce-coral,#E63946); }
.sc-address { font-size: 1rem; font-weight: 600; color: #1e293b; margin: 0 0 .35rem; }
.sc-muted { font-size: .85rem; color: var(--ax-muted,#64748b); margin: 0 0 .75rem; }
.sc-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.sc-list li { display: flex; gap: .5rem; font-size: .9rem; color: #334155; line-height: 1.5; }
.sc-list li i { color: #16a34a; margin-top: .2rem; flex-shrink: 0; }
.sc-prose { font-size: .95rem; line-height: 1.7; color: #334155; }
.sc-prose p { margin: 0 0 .85rem; }
.sc-prose p:last-child { margin: 0; }
.sc-btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .7rem 1.2rem; border-radius: 999px; font-weight: 700; font-size: .88rem; text-decoration: none; border: 1.5px solid var(--ax-border,#e2e8f0); background: #fff; color: var(--commerce-navy,#0A2472); transition: all .15s; }
.sc-btn:hover { border-color: var(--commerce-navy,#0A2472); background: #f8fafc; color: var(--commerce-navy,#0A2472); }
.sc-btn--solid { background: linear-gradient(135deg, var(--commerce-coral,#E63946), var(--commerce-coral-dark,#c72535)); color: #fff; border-color: transparent; box-shadow: 0 6px 18px rgba(230,57,70,.3); }
.sc-btn--solid:hover { color: #fff; transform: translateY(-1px); }
.sc-cta { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: .25rem; }
.sc-socials { display: flex; flex-wrap: wrap; gap: .6rem; }
.sc-social { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--ax-border,#e2e8f0); color: var(--commerce-navy,#0A2472); font-size: 1.05rem; text-decoration: none; transition: all .15s; }
.sc-social:hover { background: var(--commerce-navy,#0A2472); color: #fff; border-color: var(--commerce-navy,#0A2472); transform: translateY(-2px); }
@media (max-width: 520px) { .sc-cta .sc-btn { width: 100%; } }
