/* ══════════════════════════════════════════════════════════════
   SHOP PAGE — varalion-shop-blue design
   Loaded only on WooCommerce shop/archive pages
   ══════════════════════════════════════════════════════════════ */

/* ── Reset Kadence wrappers on shop page ── */
body.varalion-shop .content-area {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
body.varalion-shop #inner-wrap {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}
body.varalion-shop .woocommerce-products-header,
body.varalion-shop .woocommerce-result-count,
body.varalion-shop .woocommerce-ordering {
  display: none !important;
}

/* ── Shop Page Header ── */
.vrl-shop-header {
  background: #1C3258;
  color: #fff;
  padding: 56px 40px 48px;
  position: relative;
  overflow: hidden;
}
.vrl-shop-header::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 60px
  );
}
.vrl-shop-header-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.vrl-shop-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #fff;
}
.vrl-shop-header p {
  font-size: 15px;
  color: rgba(247,248,250,0.65);
  max-width: 520px;
  line-height: 1.65;
  font-weight: 300;
}
.vrl-shop-badges {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 24px;
}
.vrl-shop-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(247,248,250,0.8);
  border-radius: 2px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Shop Trust Bar ── */
.vrl-shop-trust-bar {
  background: #c9a84c;
  padding: 10px 40px;
  display: flex; gap: 32px; align-items: center;
  justify-content: center; flex-wrap: wrap;
}
.vrl-shop-trust-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f1f36;
  display: flex; align-items: center; gap: 6px;
}
.vrl-shop-trust-dot {
  width: 5px; height: 5px;
  background: #0f1f36;
  border-radius: 50%;
  opacity: 0.5;
}

/* ── Shop Container ── */
.vrl-shop-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 40px 80px;
}

/* ── Section Label ── */
.vrl-shop-section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7f99;
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}
.vrl-shop-section-label::after {
  content: '';
  flex: 1; height: 1px;
  background: #e2e8f0;
}

/* ── Product Grid ── */
.vrl-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2px;
  background: rgba(10,18,35,0.1);
}

.vrl-shop-card {
  background: #f7f8fa;
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  transition: background 0.2s;
  position: relative;
  animation: vrlShopFadeUp 0.5s ease both;
}
.vrl-shop-card:nth-child(1) { animation-delay: 0.05s; }
.vrl-shop-card:nth-child(2) { animation-delay: 0.15s; }
.vrl-shop-card:nth-child(3) { animation-delay: 0.25s; }
.vrl-shop-card:hover { background: #f0f3f8; }

.vrl-shop-card.featured {
  background: #1C3258;
  color: #f7f8fa;
}
.vrl-shop-card.featured:hover { background: #223f6e; }

@keyframes vrlShopFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Product Tags ── */
.vrl-shop-tag-row {
  display: flex; gap: 6px; align-items: center;
  margin-bottom: 18px;
}
.vrl-shop-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}
.tag-popular { background: #c9a84c; color: #0f1f36; }
.tag-ruo { border: 1px solid rgba(10,18,35,0.2); color: #6b7f99; }
.tag-ruo-light { border: 1px solid rgba(255,255,255,0.25); color: rgba(247,248,250,0.6); }

/* ── Product Name ── */
.vrl-shop-product-name {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 4px;
}
.vrl-shop-full-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #6b7f99;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.featured .vrl-shop-full-name { color: rgba(247,248,250,0.5); }

.vrl-shop-desc {
  font-size: 14px;
  line-height: 1.65;
  color: #2d3f57;
  margin-bottom: 24px;
  flex: 1;
  font-weight: 400;
}
.featured .vrl-shop-desc { color: rgba(247,248,250,0.75); }

/* ── Purity Strip ── */
.vrl-shop-purity-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: #e2e8f0;
  margin-bottom: 24px;
}
.featured .vrl-shop-purity-strip { background: rgba(255,255,255,0.12); }

.vrl-shop-purity-cell {
  background: #eef0f5;
  padding: 10px 12px;
}
.featured .vrl-shop-purity-cell { background: rgba(255,255,255,0.07); }

.vrl-shop-purity-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7f99;
  margin-bottom: 3px;
}
.featured .vrl-shop-purity-label { color: rgba(247,248,250,0.45); }

.vrl-shop-purity-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: #2563c8;
}
.featured .vrl-shop-purity-value { color: #7eb8f7; }

/* ── Price ── */
.vrl-shop-price-row {
  display: flex; align-items: baseline;
  gap: 8px; margin-bottom: 8px;
}
.vrl-shop-price {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #0f1f36;
  letter-spacing: -0.02em;
}
.vrl-shop-price .woocommerce-Price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.featured .vrl-shop-price,
.featured .vrl-shop-price .woocommerce-Price-amount { color: #f7f8fa; }

.vrl-shop-price-unit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #6b7f99;
  letter-spacing: 0.04em;
}
.featured .vrl-shop-price-unit { color: rgba(247,248,250,0.5); }

.vrl-shop-price-note {
  font-size: 12px;
  color: #6b7f99;
  margin-bottom: 20px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
}
.featured .vrl-shop-price-note { color: rgba(247,248,250,0.45); }

/* ── Buttons ── */
.vrl-shop-btn-primary {
  display: block; width: 100%;
  padding: 14px 20px;
  background: #2563c8;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  border: none; cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s, transform 0.1s;
  text-transform: uppercase;
  box-shadow: none;
}
.vrl-shop-btn-primary:hover { background: #1a52b0; transform: translateY(-1px); color: #fff; }
.vrl-shop-btn-primary:active { transform: translateY(0); }

.featured .vrl-shop-btn-primary {
  background: #c9a84c;
  color: #0f1f36;
}
.featured .vrl-shop-btn-primary:hover { background: #d4b86a; color: #0f1f36; }

.vrl-shop-btn-secondary {
  display: block; width: 100%;
  padding: 12px 20px;
  background: transparent;
  color: #2d3f57;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(10,18,35,0.2);
  cursor: pointer;
  border-radius: 4px;
  margin-top: 8px;
  transition: all 0.2s;
  box-shadow: none;
}
.vrl-shop-btn-secondary:hover {
  background: #eef0f5;
  border-color: #6b7f99;
  color: #0f1f36;
}
.featured .vrl-shop-btn-secondary {
  border-color: rgba(255,255,255,0.2);
  color: rgba(247,248,250,0.7);
}
.featured .vrl-shop-btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: #f7f8fa;
}

/* ── Why Varalion (Trust Section) ── */
.vrl-shop-trust-section {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid #e2e8f0;
}
.vrl-shop-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.vrl-shop-trust-icon {
  width: 36px; height: 36px;
  background: #eef2fb;
  border: 1px solid rgba(37,99,200,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 16px;
}
.vrl-shop-trust-block h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: #0f1f36;
}
.vrl-shop-trust-block p {
  font-size: 13px;
  color: #2d3f57;
  line-height: 1.65;
}

/* ── Research Teaser ── */
.vrl-shop-research-teaser {
  margin-top: 56px;
  background: #1C3258;
  border-radius: 4px;
  padding: 32px 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.vrl-shop-research-teaser h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.vrl-shop-research-teaser p {
  font-size: 14px;
  color: rgba(247,248,250,0.7);
  max-width: 440px;
}
.vrl-shop-btn-gold {
  display: inline-block;
  padding: 12px 24px;
  background: #c9a84c;
  color: #0f1f36;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s;
  box-shadow: none;
}
.vrl-shop-btn-gold:hover { background: #d4b86a; color: #0f1f36; }

/* ── Compliance Note ── */
.vrl-shop-compliance {
  margin-top: 48px;
  padding: 20px 24px;
  background: #eef0f5;
  border-left: 3px solid #c9a84c;
  border-radius: 0 4px 4px 0;
}
.vrl-shop-compliance p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #6b7f99;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
.vrl-shop-compliance strong { color: #2d3f57; font-weight: 500; }

/* No products message */
.vrl-shop-no-products {
  text-align: center;
  padding: 60px 20px;
  font-size: 16px;
  color: #6b7f99;
}

/* ── Shop Responsive ── */
@media (max-width: 768px) {
  .vrl-shop-header { padding: 40px 20px; }
  .vrl-shop-trust-bar { padding: 10px 20px; gap: 16px; }
  .vrl-shop-container { padding: 36px 20px 60px; }
  .vrl-shop-grid { grid-template-columns: 1fr; }
  .vrl-shop-research-teaser { flex-direction: column; }
}
