/* ============================================================
   DARKSTEEL — Hlavní stylesheet
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--silver);
  font-family: var(--font-primary);
  font-weight: 300;
  cursor: crosshair;
  overflow-x: hidden;
}

/* GRAIN OVERLAY */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ============ NAV ============ */
.ds-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139,0,0,0.3);
  transition: border-color 0.3s;
}

.ds-nav.scrolled { border-bottom-color: rgba(139,0,0,0.5); }

.nav-logo {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 6px;
  color: var(--white);
  text-decoration: none;
  position: relative;
}

.nav-logo span { color: var(--ember); }

.nav-logo::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--ember), transparent);
}

/* Custom logo image */
.nav-logo .custom-logo { height: 40px; width: auto; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

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

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

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links .current-menu-item > a { color: var(--white); }
.nav-links .current-menu-item > a::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cart, .nav-account {
  position: relative;
  cursor: pointer;
  color: var(--steel);
  transition: color 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-cart:hover, .nav-account:hover { color: var(--white); }

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--ember);
  color: white;
  font-family: var(--font-mono);
  font-size: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ============ HAMBURGER / MOBILE ============ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 1px;
  background: var(--silver);
  display: block;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay */
.ds-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.ds-mobile-overlay.open { opacity: 1; pointer-events: all; }

/* Mobile menu */
.ds-mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--coal);
  border-left: 1px solid var(--blood);
  z-index: 1200;
  padding: 80px 32px 40px;
  transition: right 0.4s cubic-bezier(0.23,1,0.32,1);
  overflow-y: auto;
}

.ds-mobile-menu.open { right: 0; }

.ds-mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--steel);
  font-size: 20px;
  cursor: pointer;
}

.ds-mobile-links { list-style: none; }

.ds-mobile-links a {
  display: block;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--silver);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--anvil);
  text-transform: uppercase;
  transition: color 0.2s;
}

.ds-mobile-links a:hover { color: var(--ember); }

.ds-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(139,0,0,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(0,0,0,0.8) 0%, transparent 60%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(139,0,0,0.4) 30%, rgba(139,0,0,0.4) 70%, transparent);
  z-index: 2;
  transform: skewX(-3deg);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px;
  position: relative;
  z-index: 3;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--ember);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: heroIn 0.8s 0.2s both;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--ember);
}

.hero-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(72px, 8vw, 120px);
  line-height: 0.88;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 24px;
  animation: heroIn 0.8s 0.4s both;
}

.hero-title .line2 {
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,200,200,0.3);
  display: block;
}

.hero-title .line3 {
  color: var(--ember);
  display: block;
}

.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--steel);
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 48px;
  border-left: 2px solid var(--blood);
  padding-left: 20px;
  animation: heroIn 0.8s 0.6s both;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  animation: heroIn 0.8s 0.8s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--anvil);
  animation: heroIn 0.8s 1s both;
}

.stat-val {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  display: block;
  line-height: 1;
}

.stat-val span { color: var(--ember); }

.stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--steel-dim);
  margin-top: 4px;
  display: block;
}

.hero-right {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-product-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(139,0,0,0.08) 0%, transparent 70%);
}

.ring-showcase {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroIn 1s 0.5s both;
}

.ring-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,0,0,0.15) 0%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
}

.ring-svg {
  width: 300px;
  height: 300px;
  filter: drop-shadow(0 0 30px rgba(139,0,0,0.4)) drop-shadow(0 20px 40px rgba(0,0,0,0.8));
  animation: float 4s ease-in-out infinite;
}

.hero-product-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  filter: drop-shadow(0 0 30px rgba(139,0,0,0.4));
  animation: float 4s ease-in-out infinite;
}

.ring-tags {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ring-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--steel-dim);
  background: rgba(22,22,22,0.9);
  border: 1px solid var(--iron);
  padding: 4px 10px;
}

/* ============ MARQUEE ============ */
.marquee-strip {
  background: var(--blood);
  padding: 12px 0;
  overflow: hidden;
  border-top: 1px solid #6b0000;
  border-bottom: 1px solid #6b0000;
}

.marquee-inner {
  display: flex;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.85);
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.marquee-item::after { content: '✦'; font-size: 8px; opacity: 0.6; }

/* ============ SECTION HEADER ============ */
.section-head {
  text-align: center;
  padding: 80px 48px 48px;
  position: relative;
}

.section-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--ember);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.section-kicker::before,
.section-kicker::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--ember);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}

.section-title em {
  color: transparent;
  -webkit-text-stroke: 1px var(--ember);
  font-style: normal;
}

/* ============ BUTTONS ============ */
.btn-primary {
  background: var(--ember);
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s;
}

.btn-primary:hover { background: var(--fire); color: var(--white); }
.btn-primary:hover::before { transform: translateX(0); }

.btn-ghost {
  background: transparent;
  color: var(--steel);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 24px;
  border: 1px solid var(--iron);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-ghost:hover {
  border-color: var(--ember);
  color: var(--white);
}

.ds-btn-sm { padding: 10px 20px; font-size: 9px; }

/* ============ PRODUCT GRID ============ */
.products {
  padding: 0 48px 80px;
  background: var(--void);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.product-card {
  position: relative;
  background: var(--coal);
  overflow: hidden;
  cursor: pointer;
}

.product-card:first-child { grid-row: span 2; }

.product-img {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: var(--forge);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card:first-child .product-img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 500px;
}

.product-art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}

.product-card:hover .product-art-img { transform: scale(1.08); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.product-card:hover .product-overlay { opacity: 1; }

.product-quick-add {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  transition: all 0.3s;
  white-space: nowrap;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 4px;
  background: var(--ember);
  color: white;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  z-index: 5;
  text-transform: uppercase;
}

.product-card:hover .product-quick-add {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-quick-add:hover { background: var(--fire); }
.product-quick-add.loading { opacity: 0.6; cursor: wait; }

.product-info {
  padding: 16px 20px 20px;
  position: relative;
}

.product-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--ember);
  color: white;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 2px;
  padding: 3px 8px;
}

.product-name {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 4px;
  text-decoration: none;
  display: block;
}

.product-name:hover { color: var(--ember); }

.product-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--steel-dim);
  margin-bottom: 12px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
}

.product-price del {
  font-size: 12px;
  color: var(--steel-dim);
  margin-left: 8px;
  font-weight: 300;
}

.product-price ins { text-decoration: none; }

.size-dots { display: flex; gap: 4px; }

.size-dot {
  width: 20px;
  height: 20px;
  border: 1px solid var(--iron);
  font-family: var(--font-mono);
  font-size: 7px;
  color: var(--steel-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.size-dot:hover, .size-dot.active {
  border-color: var(--ember);
  color: var(--white);
  background: rgba(192,57,43,0.1);
}

.ds-shop-cta {
  text-align: center;
  padding: 48px 0 0;
}

/* ============ CATEGORIES ============ */
.categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 2px 0;
}

.cat-item {
  position: relative;
  background: var(--forge);
  padding: 48px 40px;
  overflow: hidden;
  cursor: pointer;
  border-top: 2px solid transparent;
  transition: border-color 0.3s;
  text-decoration: none;
  display: block;
}

.cat-item:hover { border-top-color: var(--ember); }

.cat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,0,0,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.cat-item:hover::before { opacity: 1; }

.cat-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--ember);
  margin-bottom: 16px;
}

.cat-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 12px;
}

.cat-desc {
  font-size: 13px;
  color: var(--steel-dim);
  font-weight: 300;
  line-height: 1.7;
  max-width: 260px;
}

.cat-arrow {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-size: 24px;
  color: var(--iron);
  transition: all 0.3s;
}

.cat-item:hover .cat-arrow {
  color: var(--ember);
  transform: translate(4px, -4px);
}

.cat-icon { font-size: 48px; margin-bottom: 20px; display: block; transition: filter 0.3s; filter: grayscale(1); }
.cat-item:hover .cat-icon { filter: none; }
.cat-icon-img { width: 64px; height: 64px; object-fit: contain; margin-bottom: 20px; display: block; }

/* ============ STORY ============ */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: var(--coal);
  position: relative;
}

.story-left {
  background: linear-gradient(135deg, var(--forge) 0%, var(--coal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.story-left::before {
  content: 'DARKSTEEL';
  position: absolute;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 120px;
  letter-spacing: -4px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.03);
  transform: rotate(-10deg);
  user-select: none;
  white-space: nowrap;
}

.story-emblem {
  width: 200px;
  height: 200px;
  border: 2px solid var(--blood);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  position: relative;
}

.story-emblem::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(139,0,0,0.3);
}

.story-emblem-inner {
  transform: rotate(-45deg);
  font-size: 64px;
  filter: drop-shadow(0 0 20px rgba(139,0,0,0.6));
}

.story-right {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--anvil);
}

.story-right .section-kicker { justify-content: flex-start; }
.story-right .section-kicker::after { display: none; }

.story-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 48px;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1px;
  margin: 16px 0 24px;
}

.story-body {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--steel);
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 440px;
}

.story-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.story-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--steel);
}

.story-features li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--ember);
  flex-shrink: 0;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 80px 48px;
  background: var(--void);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.testi-card {
  background: var(--coal);
  padding: 32px;
  border-top: 2px solid var(--blood);
  position: relative;
}

.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 4px; margin-bottom: 16px; }

.testi-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 20px;
}

.testi-author {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--ember);
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-author::before { content: '—'; color: var(--iron); }

.testi-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 80px;
  font-family: var(--font-serif);
  color: rgba(139,0,0,0.08);
  line-height: 1;
  pointer-events: none;
}

/* ============ NEWSLETTER ============ */
.newsletter {
  background: var(--forge);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--blood);
  border-bottom: 1px solid var(--blood);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 100% 50%, rgba(139,0,0,0.06), transparent);
  pointer-events: none;
}

.nl-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 40px;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.nl-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--steel);
  line-height: 1.8;
}

.nl-form { display: flex; gap: 0; position: relative; z-index: 1; }

.nl-input {
  flex: 1;
  background: var(--coal);
  border: 1px solid var(--iron);
  border-right: none;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  padding: 16px 20px;
  outline: none;
  transition: border-color 0.3s;
}

.nl-input::placeholder { color: var(--steel-dim); }
.nl-input:focus { border-color: var(--ember); }

.nl-btn {
  background: var(--ember);
  color: white;
  border: none;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 4px;
  padding: 16px 28px;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.nl-btn:hover { background: var(--fire); }

.nl-disclaimer {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--steel-dim);
  margin-top: 12px;
  letter-spacing: 2px;
}

/* ============ FOOTER ============ */
.ds-footer {
  background: var(--coal);
  padding: 64px 48px 32px;
  border-top: 1px solid var(--anvil);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 6px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand-name span { color: var(--ember); }

.footer-brand-desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--steel-dim);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 12px; }

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--iron);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-dim);
  font-size: 12px;
  font-family: var(--font-mono);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  text-transform: uppercase;
}

.social-btn:hover { border-color: var(--ember); color: var(--ember); }

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--ember);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--anvil);
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a, .footer-contact li span {
  font-size: 13px;
  color: var(--steel-dim);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 300;
}

.footer-links a::before { content: '›'; color: var(--blood); font-size: 16px; }
.footer-links a:hover { color: var(--silver); }
.footer-contact li { list-style: none; }
.footer-contact li span { cursor: default; }

.footer-payment { margin-top: 24px; }

.footer-badges-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }

.footer-bottom {
  border-top: 1px solid var(--anvil);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--iron);
}

.footer-badges { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

.footer-legal {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--steel-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal:hover { color: var(--ember); }

.badge {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--steel-dim);
  border: 1px solid var(--anvil);
  padding: 4px 8px;
}

/* ============ BLOG ============ */
.ds-page-wrapper {
  padding-top: 64px;
  background: var(--void);
  min-height: 70vh;
}

.ds-page-inner { max-width: 1400px; margin: 0 auto; padding: 0 48px; }

.ds-blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding-bottom: 80px;
}

.ds-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.ds-blog-card {
  background: var(--coal);
  overflow: hidden;
}

.ds-blog-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; transition: transform 0.4s; }
.ds-blog-card:hover .ds-blog-thumb img { transform: scale(1.04); }

.ds-blog-body { padding: 24px; }

.ds-blog-meta {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--ember);
  margin-bottom: 12px;
}

.ds-blog-meta a { color: var(--ember); text-decoration: none; }

.ds-blog-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.ds-blog-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.ds-blog-title a:hover { color: var(--ember); }

.ds-blog-excerpt { font-size: 14px; color: var(--steel); line-height: 1.7; margin-bottom: 20px; }

/* Pagination */
.ds-pagination { margin-top: 40px; display: flex; justify-content: center; }
.ds-pagination .nav-links { display: flex; gap: 8px; list-style: none; }
.ds-pagination .page-numbers {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--coal);
  border: 1px solid var(--iron);
  color: var(--steel);
  font-family: var(--font-mono);
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.ds-pagination .page-numbers:hover,
.ds-pagination .page-numbers.current {
  background: var(--ember);
  border-color: var(--ember);
  color: white;
}

/* Sidebar */
.ds-sidebar { padding-top: 40px; }
.ds-widget { background: var(--coal); padding: 24px; margin-bottom: 2px; border-top: 2px solid var(--blood); }
.ds-widget-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--ember);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--anvil);
}

/* 404 / Empty */
.ds-empty-state {
  text-align: center;
  padding: 80px 24px;
}
.ds-empty-state p { font-family: var(--font-serif); font-size: 20px; color: var(--steel); margin-bottom: 32px; }

/* ============ PAGE ============ */
.ds-page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 48px;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.9;
  color: var(--silver);
}

.ds-page-content h1, .ds-page-content h2 {
  font-family: var(--font-primary);
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.ds-page-content h1 { font-size: 48px; }
.ds-page-content h2 { font-size: 32px; margin-top: 48px; }
.ds-page-content p { margin-bottom: 20px; }
.ds-page-content a { color: var(--ember); }

/* ============ WC WRAPPER ============ */
.ds-wc-wrapper {
  padding-top: 64px;
  background: var(--void);
  min-height: 60vh;
}

.ds-wc-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 48px;
}

/* Breadcrumb */
.ds-breadcrumb { background: var(--coal); border-bottom: 1px solid var(--anvil); }
.ds-bc-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 48px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--steel-dim);
}
.ds-bc-inner a { color: var(--steel-dim); text-decoration: none; transition: color 0.2s; }
.ds-bc-inner a:hover { color: var(--ember); }
.ds-bc-sep { color: var(--ember); margin: 0 4px; }

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============ KEYFRAMES ============ */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50%       { transform: translateY(-16px) rotate(2deg); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50%       { opacity: 1;   transform: scale(1.05); }
}

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

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-card:first-child { grid-row: span 1; }
  .product-card:first-child .product-img { min-height: auto; }
}

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ds-blog-layout { grid-template-columns: 1fr; }
  .ds-sidebar { display: none; }
}

@media (max-width: 768px) {
  .ds-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 100px 24px 48px; }
  .hero-right { display: none; }
  .hero::after { display: none; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .categories { grid-template-columns: 1fr; }
  .story-section { grid-template-columns: 1fr; }
  .story-left { min-height: 300px; }
  .story-right { padding: 48px 24px; }
  .testi-grid { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .products, .section-head, .testimonials { padding-left: 24px; padding-right: 24px; }
  .ds-page-inner { padding: 0 24px; }
  .ds-wc-inner { padding: 40px 24px; }
  .ds-blog-grid { grid-template-columns: 1fr; }
  .ds-footer { padding: 48px 24px 24px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
}
