@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;900&family=Share+Tech+Mono&family=Rajdhani:wght@300;400;600&display=swap');

/* ============================================
   EDL DESIGN SYSTEM — v4
   exploit@design:~# 
   ============================================ */

:root {
  --edl-bg:        #080808;
  --edl-bg-2:      #0a0a0a;
  --edl-bg-3:      #0c0c0c;
  --edl-bg-4:      #111111;
  --edl-red:       #cc1a1a;
  --edl-red-hover: #e01f1f;
  --edl-red-dim:   rgba(180,20,20,0.3);
  --edl-red-faint: rgba(180,20,20,0.08);
  --edl-text:      #e8e8e8;
  --edl-text-2:    #aaaaaa;
  --edl-text-3:    #666666;
  --edl-text-4:    #444444;
  --edl-text-5:    #333333;
  --edl-border:    rgba(180,20,20,0.2);
  --edl-border-2:  rgba(180,20,20,0.4);
  --edl-font-head: 'Cinzel', serif;
  --edl-font-mono: 'Share Tech Mono', monospace;
  --edl-font-body: 'Rajdhani', sans-serif;
}

/* ============================================
   RESET + BASE
   ============================================ */

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

html { scroll-behavior: smooth; }

body {
  background: var(--edl-bg);
  color: var(--edl-text);
  font-family: var(--edl-font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--edl-red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--edl-red-hover); }

img { max-width: 100%; height: auto; display: block; }

/* ============================================
   NAVIGATION
   ============================================ */

.edl-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  background: rgba(8,8,8,0.95);
  border-bottom: 1px solid var(--edl-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: padding 0.3s;
}

.edl-nav.scrolled { padding: 12px 48px; }

.edl-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.edl-nav-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.edl-nav-logo-text {
  font-family: var(--edl-font-head);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--edl-red);
  text-transform: uppercase;
}

.edl-nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.edl-nav-links a {
  font-family: var(--edl-font-mono);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--edl-text-3);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.edl-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--edl-red);
  transition: width 0.3s;
}

.edl-nav-links a:hover { color: var(--edl-red); }
.edl-nav-links a:hover::after { width: 100%; }

.edl-nav-cart {
  font-family: var(--edl-font-mono);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--edl-text-3);
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--edl-border);
  transition: all 0.2s;
}

.edl-nav-cart:hover {
  color: var(--edl-red);
  border-color: var(--edl-red);
}

.edl-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.edl-nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--edl-text-3);
  transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */

.edl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 48px 80px;
  text-align: center;
}

.edl-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(140,10,10,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(100,0,0,0.12) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(180,20,20,0.025) 40px, rgba(180,20,20,0.025) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(180,20,20,0.025) 40px, rgba(180,20,20,0.025) 41px);
  pointer-events: none;
}

.edl-hero-content {
  position: relative;
  max-width: 860px;
  width: 100%;
}

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

.edl-hero-tag {
  font-family: var(--edl-font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--edl-red);
  text-transform: lowercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: edlFadeUp 0.9s ease 0.1s forwards;
}

.edl-hero-title {
  font-family: var(--edl-font-head);
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  color: #f0f0f0;
  margin-bottom: 18px;
  opacity: 0;
  animation: edlFadeUp 0.9s ease 0.3s forwards;
}

.edl-hero-title span { color: var(--edl-red); }

.edl-hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--edl-text-3);
  letter-spacing: 2px;
  margin-bottom: 40px;
  opacity: 0;
  animation: edlFadeUp 0.9s ease 0.5s forwards;
}

.edl-hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  opacity: 0;
  animation: edlFadeUp 0.9s ease 0.7s forwards;
}

.edl-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: edlFadeUp 0.9s ease 1.2s forwards;
}

.edl-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--edl-red));
  animation: edlScrollPulse 2s ease infinite;
}

@keyframes edlScrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

.edl-scroll-label {
  font-family: var(--edl-font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--edl-text-5);
  text-transform: uppercase;
}

/* ============================================
   BUTTONS
   ============================================ */

.edl-btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--edl-red);
  color: #fff;
  font-family: var(--edl-font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.edl-btn-primary:hover {
  background: var(--edl-red-hover);
  color: #fff;
  transform: translateY(-2px);
}

.edl-btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--edl-text-3);
  font-family: var(--edl-font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--edl-dim);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.edl-btn-ghost:hover {
  border-color: var(--edl-red);
  color: var(--edl-red);
  transform: translateY(-2px);
}

/* ============================================
   MARQUEE
   ============================================ */

.edl-marquee-bar {
  border-top: 1px solid var(--edl-border);
  border-bottom: 1px solid var(--edl-border);
  padding: 14px 0;
  overflow: hidden;
  background: var(--edl-bg-2);
}

.edl-marquee-track {
  display: flex;
  gap: 48px;
  animation: edlMarquee 25s linear infinite;
  width: max-content;
}

@keyframes edlMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.edl-marquee-item {
  font-family: var(--edl-font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(180,20,20,0.75);
  text-transform: uppercase;
  white-space: nowrap;
}

.edl-marquee-dot {
  color: rgba(180,20,20,0.45);
  margin: 0 10px;
}

/* ============================================
   SECTIONS
   ============================================ */

.edl-section {
  padding: 80px 48px;
}

.edl-section-dark {
  background: var(--edl-bg-2);
  border-top: 1px solid rgba(180,20,20,0.1);
}

.edl-section-label {
  font-family: var(--edl-font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--edl-red);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.edl-section-title {
  font-family: var(--edl-font-head);
  font-size: 28px;
  font-weight: 600;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.edl-divider {
  width: 52px;
  height: 2px;
  background: var(--edl-red);
  margin-bottom: 44px;
}

/* ============================================
   COLLECTIONS GRID
   ============================================ */

.edl-collections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: var(--edl-red-faint);
}

.edl-collection-card {
  background: var(--edl-bg-3);
  padding: 36px 28px;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.edl-collection-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(180,20,20,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.edl-collection-card:hover {
  background: var(--edl-bg-4);
  border-color: var(--edl-border-2);
  transform: translateY(-4px);
}

.edl-collection-card:hover::before { opacity: 1; }

.edl-collection-num {
  font-family: var(--edl-font-mono);
  font-size: 10px;
  color: rgba(180,20,20,0.4);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.edl-collection-name {
  font-family: var(--edl-font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--edl-text-2);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.edl-collection-card:hover .edl-collection-name { color: var(--edl-red); }

.edl-collection-desc {
  font-size: 13px;
  font-weight: 300;
  color: #888;
  line-height: 1.65;
  margin-bottom: 18px;
}

.edl-collection-meta {
  font-family: var(--edl-font-mono);
  font-size: 9px;
  color: #777;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.edl-collection-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  font-family: var(--edl-font-mono);
  font-size: 18px;
  color: rgba(180,20,20,0.3);
  transition: all 0.3s;
}

.edl-collection-card:hover .edl-collection-arrow {
  color: var(--edl-red);
  transform: translateX(5px);
}

/* ============================================
   TAROT SERIES GRID
   ============================================ */

.edl-tarot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 18px;
  max-width: 1100px;
}

.edl-tarot-card {
  position: relative;
  background: #0f0f0f;
  border: 1px solid rgba(180,20,20,0.15);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  aspect-ratio: 2 / 3;
  text-decoration: none;
  display: block;
}

.edl-tarot-card:hover {
  transform: translateY(-12px) scale(1.04);
  border-color: var(--edl-red);
  box-shadow: 0 28px 56px rgba(180,20,20,0.28), 0 0 0 1px rgba(180,20,20,0.45);
}

.edl-tarot-card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 16px 12px;
}

.edl-tarot-num {
  font-family: var(--edl-font-head);
  font-size: 12px;
  color: var(--edl-red);
  letter-spacing: 2px;
  align-self: flex-start;
}

.edl-tarot-art {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 8px 0;
}

.edl-tarot-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.edl-tarot-card:hover .edl-tarot-art img { transform: scale(1.05); }

.edl-tarot-art-placeholder {
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(180,20,20,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: rgba(180,20,20,0.3);
  transition: all 0.4s;
}

.edl-tarot-card:hover .edl-tarot-art-placeholder {
  border-color: rgba(180,20,20,0.7);
  color: rgba(180,20,20,0.7);
}

.edl-tarot-name {
  font-family: var(--edl-font-head);
  font-size: 9px;
  font-weight: 600;
  color: var(--edl-text-2);
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.3s;
}

.edl-tarot-card:hover .edl-tarot-name { color: #ff4444; }

.edl-tarot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(180,20,20,0.14) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.edl-tarot-card:hover .edl-tarot-overlay { opacity: 1; }

.edl-tarot-price {
  position: absolute;
  bottom: 38px;
  right: 12px;
  font-family: var(--edl-font-mono);
  font-size: 9px;
  color: var(--edl-red);
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s;
}

.edl-tarot-card:hover .edl-tarot-price {
  opacity: 1;
  transform: translateY(0);
}

.edl-tarot-card.coming-soon {
  border-style: dashed;
  opacity: 0.28;
  cursor: not-allowed;
}

.edl-tarot-card.coming-soon:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(180,20,20,0.15);
}

/* ============================================
   ABOUT / TERMINAL
   ============================================ */

.edl-about-inner { max-width: 600px; }

.edl-about-text {
  font-size: 15px;
  font-weight: 300;
  color: #999;
  line-height: 1.9;
  margin-bottom: 16px;
}

.edl-about-text strong { color: #ccc; font-weight: 400; }

.edl-terminal {
  background: #0a0a0a;
  border: 1px solid rgba(180,20,20,0.18);
  padding: 20px 22px;
  margin-top: 32px;
  font-family: var(--edl-font-mono);
  font-size: 12px;
  line-height: 2.1;
}

.edl-terminal-line { color: #444; }
.edl-terminal-prompt { color: var(--edl-red); }
.edl-terminal-green { color: #2d7a2d; }
.edl-terminal-white { color: #777; }

.edl-cursor {
  display: inline-block;
  width: 7px;
  height: 13px;
  background: var(--edl-red);
  vertical-align: middle;
  animation: edlBlink 1s step-end infinite;
}

@keyframes edlBlink { 50% { opacity: 0; } }

/* ============================================
   STATS BAR
   ============================================ */

.edl-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--edl-red-faint);
  border: 1px solid rgba(180,20,20,0.08);
  margin-top: 48px;
  max-width: 600px;
}

.edl-stat {
  background: var(--edl-bg-2);
  padding: 22px 16px;
  text-align: center;
}

.edl-stat-number {
  font-family: var(--edl-font-head);
  font-size: 20px;
  font-weight: 900;
  color: var(--edl-red);
  display: block;
}

.edl-stat-label {
  font-family: var(--edl-font-mono);
  font-size: 8px;
  letter-spacing: 2px;
  color: #3a3a3a;
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
}

/* ============================================
   WOOCOMMERCE OVERRIDES
   ============================================ */

.woocommerce-page,
.woocommerce { background: var(--edl-bg) !important; color: var(--edl-text) !important; }

.woocommerce ul.products li.product { background: var(--edl-bg-3) !important; border: 1px solid var(--edl-border) !important; transition: all 0.3s; }
.woocommerce ul.products li.product:hover { border-color: var(--edl-red) !important; transform: translateY(-4px); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--edl-font-head) !important; color: var(--edl-text) !important; font-size: 13px !important; letter-spacing: 1px !important; }
.woocommerce ul.products li.product .price { color: var(--edl-red) !important; font-family: var(--edl-font-mono) !important; }

.woocommerce div.product .product_title { font-family: var(--edl-font-head) !important; color: var(--edl-text) !important; }
.woocommerce div.product p.price { color: var(--edl-red) !important; font-family: var(--edl-font-mono) !important; font-size: 20px !important; }
.woocommerce div.product .woocommerce-product-gallery { background: #111 !important; }

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--edl-red) !important;
  color: #fff !important;
  font-family: var(--edl-font-mono) !important;
  font-size: 10px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  padding: 14px 28px !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%) !important;
  transition: background 0.2s !important;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover { background: var(--edl-red-hover) !important; }

.woocommerce-cart table.cart,
.woocommerce-checkout #order_review { background: var(--edl-bg-3) !important; border: 1px solid var(--edl-border) !important; }

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  background: #111 !important;
  border: 1px solid var(--edl-border) !important;
  color: var(--edl-text) !important;
  font-family: var(--edl-font-mono) !important;
  font-size: 12px !important;
  border-radius: 0 !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus { border-color: var(--edl-red) !important; outline: none !important; }

.woocommerce-breadcrumb { font-family: var(--edl-font-mono) !important; font-size: 10px !important; color: var(--edl-text-4) !important; letter-spacing: 2px !important; }
.woocommerce-breadcrumb a { color: var(--edl-red) !important; }

/* ============================================
   FOOTER
   ============================================ */

.edl-footer {
  border-top: 1px solid var(--edl-border);
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #040404;
  flex-wrap: wrap;
  gap: 16px;
}

.edl-footer-brand {
  font-family: var(--edl-font-mono);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--edl-text-5);
  text-transform: uppercase;
}

.edl-footer-brand span { color: var(--edl-red); }

.edl-footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.edl-footer-links a {
  font-family: var(--edl-font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--edl-text-5);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.edl-footer-links a:hover { color: var(--edl-red); }

.edl-footer-terminal {
  font-family: var(--edl-font-mono);
  font-size: 12px;
  color: var(--edl-text-5);
}

.edl-footer-terminal span { color: var(--edl-red); }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .edl-nav { padding: 14px 20px; }
  .edl-nav-links { display: none; }
  .edl-nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(8,8,8,0.98); padding: 20px; border-bottom: 1px solid var(--edl-border); }
  .edl-nav-toggle { display: flex; }
  .edl-hero { padding: 100px 20px 60px; }
  .edl-section { padding: 56px 20px; }
  .edl-collections { grid-template-columns: 1fr 1fr; }
  .edl-tarot-grid { grid-template-columns: repeat(2, 1fr); }
  .edl-stats { grid-template-columns: repeat(2, 1fr); }
  .edl-footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .edl-hero-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .edl-collections { grid-template-columns: 1fr; }
  .edl-tarot-grid { grid-template-columns: repeat(2, 1fr); }
  .edl-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   COLLECTION / SHOP PAGE — PORTRAIT 2x2 GRID
   ============================================ */

/* Override WooCommerce default grid */
.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove WooCommerce's own column classes */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

/* Portrait image container — 2:3 ratio */
.woocommerce ul.products li.product a.woocommerce-loop-product__link,
.woocommerce-page ul.products li.product a.woocommerce-loop-product__link {
    display: block !important;
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
    width: 100% !important;
    height: 0 !important;
    padding-bottom: 133% !important; /* 2:3 portrait ratio */
    object-fit: contain !important;
    background: #0f0f0f !important;
    position: relative !important;
    display: block !important;
}

/* Fix padding-bottom trick for object-fit */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    padding-bottom: 0 !important;
    object-fit: contain !important;
    background: #0f0f0f !important;
    padding: 16px !important;
    box-sizing: border-box !important;
}

/* Create the portrait aspect ratio box */
.woocommerce ul.products li.product .woocommerce-loop-product__link::before,
.woocommerce-page ul.products li.product .woocommerce-loop-product__link::before {
    content: '' !important;
    display: block !important;
    padding-top: 133% !important; /* 3:2 = portrait */
}

/* Product info below image */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Cinzel', serif !important;
    color: #e8e8e8 !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 14px 16px 4px !important;
    margin: 0 !important;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
    color: #cc1a1a !important;
    font-family: 'Share Tech Mono', monospace !important;
    font-size: 14px !important;
    padding: 0 16px 4px !important;
    display: block !important;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
    margin: 0 16px 16px !important;
    display: inline-block !important;
}

/* Remove bullet points */
.woocommerce-page ul.products li::before,
.woocommerce ul.products li::before {
    display: none !important;
    content: none !important;
}

/* Responsive — single column on mobile */
@media (max-width: 600px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: 1fr !important;
    }
}

/* Constrain custom logo in nav */
.edl-nav-logo .custom-logo-link,
.edl-nav-logo .custom-logo-link img,
.edl-nav-logo img {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    object-fit: contain !important;
    display: block !important;
}

/* Make sure logo doesn't bleed outside nav */
.edl-nav-logo {
    max-height: 48px;
    overflow: hidden;
}

/* Fix site title showing alongside logo */
.edl-nav .site-title { display: none; }

/* ============================================
   NAV STICKY FIX + LOGO SIZE FIX v2
   ============================================ */

/* Force sticky nav */
#edl-nav,
nav.edl-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
}

/* WordPress admin bar offset */
.admin-bar #edl-nav,
.admin-bar nav.edl-nav {
    top: 32px !important;
}

@media screen and (max-width: 782px) {
    .admin-bar #edl-nav,
    .admin-bar nav.edl-nav {
        top: 46px !important;
    }
}

/* Logo size — multiple selectors for specificity */
nav.edl-nav .edl-nav-logo img,
nav.edl-nav .edl-nav-logo .custom-logo,
nav.edl-nav .edl-nav-logo .custom-logo-link img,
#edl-nav .custom-logo,
#edl-nav .custom-logo-link img,
.edl-nav-logo .custom-logo {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    min-width: unset !important;
    min-height: unset !important;
    object-fit: contain !important;
}

.edl-nav-logo .custom-logo-link {
    display: flex !important;
    align-items: center !important;
    width: 40px !important;
    height: 40px !important;
    overflow: hidden !important;
}

/* ============================================
   REVIEWS — DARK THEME FIX
   ============================================ */

/* Fix star rating rendering */
.woocommerce .star-rating {
    color: #cc1a1a !important;
    font-family: star !important;
}

.woocommerce p.stars a {
    color: #cc1a1a !important;
}

.woocommerce p.stars a::before {
    color: #cc1a1a !important;
}

/* Fix review textarea white background */
#review_form .comment-form-comment textarea,
.woocommerce-Reviews .comment-form textarea,
#commentform textarea {
    background: #111 !important;
    border: 1px solid rgba(180,20,20,0.2) !important;
    color: #e8e8e8 !important;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 14px !important;
    border-radius: 0 !important;
    padding: 12px !important;
    width: 100% !important;
}

#review_form .comment-form-comment textarea:focus,
.woocommerce-Reviews .comment-form textarea:focus {
    border-color: #cc1a1a !important;
    outline: none !important;
}

/* Fix review form labels */
.woocommerce-Reviews .comment-form label,
#review_form label {
    font-family: 'Share Tech Mono', monospace !important;
    font-size: 10px !important;
    letter-spacing: 2px !important;
    color: #666 !important;
    text-transform: uppercase !important;
}

/* Fix review submit button */
.woocommerce-Reviews .form-submit input,
#review_form .form-submit input {
    background: #cc1a1a !important;
    color: #fff !important;
    font-family: 'Share Tech Mono', monospace !important;
    font-size: 10px !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 14px 28px !important;
    cursor: pointer !important;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%) !important;
}

/* Fix review section heading */
.woocommerce-Reviews-title,
#reviews h2 {
    font-family: 'Cinzel', serif !important;
    color: #f0f0f0 !important;
    font-size: 18px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

/* Fix "no reviews yet" text */
.woocommerce-noreviews,
.woocommerce-Reviews p {
    color: #666 !important;
    font-family: 'Share Tech Mono', monospace !important;
    font-size: 11px !important;
    letter-spacing: 1px !important;
}

/* Star rating text fix - load WC star font */
.woocommerce .star-rating span::before,
.woocommerce p.stars a::before,
.woocommerce p.stars a:hover::before {
    content: "\73\73\73\73\73" !important;
    color: #cc1a1a !important;
}


/* ============================================
   PRODUCT CARD BODY + SIZE GUIDE — v14
   ============================================ */

.edl-product-card-body {
    padding: 12px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.edl-size-guide-link {
    font-family: var(--edl-font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--edl-text-4);
    text-decoration: underline;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}

.edl-size-guide-link:hover {
    color: var(--edl-red);
}

.edl-no-thumb {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f0f0f;
    font-size: 32px;
    color: rgba(180,20,20,0.3);
}

/* ============================================
   TAROT COMING-SOON NOTIFY FORM — v14
   ============================================ */

.edl-tarot-card.coming-soon {
    cursor: default;
    position: relative;
}

.edl-tarot-notify {
    padding: 12px 14px 14px;
    border-top: 1px solid rgba(180,20,20,0.15);
    background: rgba(0,0,0,0.4);
}

.edl-tarot-notify-label {
    font-family: var(--edl-font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(180,20,20,0.6);
    margin: 0 0 8px;
    text-transform: lowercase;
}

/* Mailchimp for WP form reset inside tarot cards */
.edl-tarot-notify .mc4wp-form {
    margin: 0;
}

.edl-tarot-notify .mc4wp-form input[type="email"] {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid rgba(180,20,20,0.3);
    color: #f0f0f0;
    font-family: var(--edl-font-mono);
    font-size: 10px;
    letter-spacing: 1px;
    padding: 7px 10px;
    border-radius: 0;
    box-sizing: border-box;
    margin-bottom: 6px;
}

.edl-tarot-notify .mc4wp-form input[type="email"]:focus {
    outline: none;
    border-color: var(--edl-red);
}

.edl-tarot-notify .mc4wp-form input[type="submit"] {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(180,20,20,0.4);
    color: var(--edl-red);
    font-family: var(--edl-font-mono);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 7px 10px;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 0;
}

.edl-tarot-notify .mc4wp-form input[type="submit"]:hover {
    background: var(--edl-red);
    color: #fff;
}
