/* Gothic-Veil brand layer: medieval romantic gothic styling */
:root {
  --gv-black: #070606;
  --gv-ink: #0d0b0b;
  --gv-panel: #141111;
  --gv-stone: #1c1a18;
  --gv-line: rgba(178, 154, 107, 0.28);
  --gv-red: #641010;
  --gv-red-soft: rgba(100, 16, 16, 0.76);
  --gv-ivory: #f0eadc;
  --gv-muted: #b4aa9a;
  --gv-metal: #b29a6b;
  --gv-silver: #c7c0b4;
  --gv-hero-image: url("https://img-va.myshopline.com/image/store/1780731296509/0644cf02aaf3426a944d764d4826b967.webp");
}

html,
body {
  background:
    radial-gradient(circle at 50% -10%, rgba(100, 16, 16, 0.32), transparent 34rem),
    linear-gradient(180deg, #090707 0%, #050505 100%);
  color: var(--gv-ivory);
}

.header-section,
.footer,
.shopline-section,
[class*="color-scheme"] {
  color: var(--gv-ivory);
}

.header-section {
  background:
    linear-gradient(180deg, rgba(10, 8, 8, 0.98), rgba(4, 4, 4, 0.98));
  border-bottom: 1px solid var(--gv-line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

.header__logo,
.header__logo a {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gv-ivory);
  text-shadow: 0 0 18px rgba(178, 154, 107, 0.22);
}

.header-section a,
.footer a {
  transition: color 180ms ease, text-shadow 180ms ease;
}

.header-section a:hover,
.footer a:hover {
  color: var(--gv-metal);
  text-shadow: 0 0 12px rgba(184, 166, 120, 0.24);
}

.gv-style-rail {
  background:
    linear-gradient(90deg, rgba(100, 16, 16, 0.18), transparent 24%, transparent 76%, rgba(100, 16, 16, 0.18)),
    #070606;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid var(--gv-line);
  overflow-x: auto;
  scrollbar-width: none;
}

.gv-style-rail::-webkit-scrollbar {
  display: none;
}

.gv-style-rail__inner {
  display: flex;
  gap: 22px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  white-space: nowrap;
}

.gv-style-rail a {
  color: var(--gv-silver);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.gv-style-rail a:hover {
  color: var(--gv-metal);
}

.gv-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(0, 0, 0, 0)),
    var(--gv-black);
  color: var(--gv-ivory);
  padding: clamp(34px, 5vw, 72px) clamp(16px, 4vw, 56px);
}

.gv-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(178, 154, 107, 0.08), transparent 34rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 92px);
  opacity: 0.5;
}

.gv-section > * {
  position: relative;
  z-index: 1;
}

.gv-section + .gv-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gv-section__head {
  max-width: 980px;
  margin: 0 auto clamp(22px, 3vw, 36px);
  text-align: center;
}

.gv-kicker {
  color: var(--gv-metal);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 800;
}

.gv-section__head h2 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 0.06em;
  text-shadow: 0 0 24px rgba(100, 16, 16, 0.38);
}

.gv-section__head p {
  color: var(--gv-muted);
  max-width: 720px;
  margin: 12px auto 0;
  line-height: 1.55;
}

.gv-product-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.gv-product-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    var(--gv-panel);
  border: 1px solid rgba(178, 154, 107, 0.24);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.44);
  min-width: 0;
}

.gv-product-media {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(100, 16, 16, 0.2), transparent 58%),
    #050505;
}

.gv-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 380ms ease, filter 380ms ease;
}

.gv-product-card:hover .gv-product-media img {
  transform: scale(1.04);
  filter: contrast(1.06) saturate(0.94);
}

.gv-quick-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 8px 12px;
  background: var(--gv-red-soft);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.gv-product-info {
  padding: 14px 14px 16px;
}

.gv-product-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
  color: var(--gv-ivory);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.28;
}

.gv-product-title:hover {
  color: var(--gv-metal);
}

.gv-product-meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gv-product-price {
  color: var(--gv-metal);
  font-weight: 900;
  white-space: nowrap;
}

.gv-button,
.gv-product-cta,
.gv-view-all {
  color: #fff;
  background: var(--gv-red);
  border: 1px solid rgba(185, 185, 185, 0.82);
  border-radius: 0;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 9px 12px;
  transition: box-shadow 250ms ease, background 250ms ease, color 250ms ease;
}

.gv-button:hover,
.gv-product-cta:hover,
.gv-view-all:hover {
  background: #090909;
  color: #fff;
  box-shadow: 0 0 18px rgba(156, 20, 20, 0.48), 0 0 10px rgba(210, 210, 210, 0.18);
}

.gv-section__actions {
  text-align: center;
  margin-top: clamp(22px, 3vw, 36px);
}

.gv-view-all {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding-inline: 22px;
}

.gv-style-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gv-style-card {
  min-height: 180px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  text-decoration: none;
  background:
    radial-gradient(ellipse at 16% 12%, rgba(178, 154, 107, 0.22), transparent 30%),
    radial-gradient(ellipse at 82% 18%, rgba(100, 16, 16, 0.42), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.78)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 14px),
    linear-gradient(135deg, #27110f, #070606 62%, #180707);
  border: 1px solid var(--gv-line);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 20px 42px rgba(0, 0, 0, 0.32);
  clip-path: polygon(0 10px, 10px 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.gv-style-card h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(18px, 2vw, 26px);
}

.gv-style-card p {
  margin: 8px 0 0;
  color: #c8c8c8;
  line-height: 1.45;
}

.gv-trust-strip {
  background:
    linear-gradient(90deg, rgba(100, 16, 16, 0.22), transparent 28%, transparent 72%, rgba(100, 16, 16, 0.22)),
    #070606;
  border-top: 1px solid var(--gv-line);
  border-bottom: 1px solid var(--gv-line);
  padding: 18px 16px;
}

.gv-trust-strip__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gv-trust-item {
  color: var(--gv-silver);
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
}

.gv-trust-item a {
  color: var(--gv-metal);
  text-decoration: none;
}

.gv-trust-item a:hover {
  color: var(--gv-ivory);
}

.gv-trust-item strong {
  display: block;
  color: var(--gv-ivory);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
}

.gv-product-assurance {
  margin: 22px 0;
  padding: 16px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(100, 16, 16, 0.16), transparent 72%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid var(--gv-line);
}

[class*="slideshow"],
slideshow-component {
  position: relative;
  min-height: clamp(340px, 34vw, 500px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 3, 3, 0.1) 0%, rgba(4, 3, 3, 0.2) 52%, rgba(4, 3, 3, 0.48) 100%),
    radial-gradient(ellipse at 50% 52%, rgba(0, 0, 0, 0.38), transparent 30rem),
    var(--gv-hero-image) center 30% / cover no-repeat,
    #070606 !important;
}

[class*="slideshow"] img,
slideshow-component img {
  opacity: 0 !important;
  visibility: hidden !important;
}

[class*="slideshow"]::after,
slideshow-component::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.28) 50%, rgba(0, 0, 0, 0.1)),
    radial-gradient(ellipse at 50% 54%, rgba(0, 0, 0, 0.22), transparent 25rem);
  opacity: 0.78;
}

[class*="slideshow"] [class*="placeholder"],
[class*="slideshow"] [class*="empty"],
slideshow-component [class*="placeholder"],
slideshow-component [class*="empty"] {
  background: transparent !important;
  opacity: 0 !important;
}

.button,
button,
[class*="button"] {
  border-radius: 0;
}

.gv-product-assurance__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gv-product-assurance__item {
  color: var(--gv-muted);
  font-size: 13px;
  line-height: 1.45;
}

.gv-product-assurance__item strong {
  display: block;
  color: var(--gv-ivory);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
}

.gv-fit-notes {
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gv-fit-notes details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
}

.gv-fit-notes summary {
  cursor: pointer;
  color: var(--gv-ivory);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gv-fit-notes p {
  margin: 8px 0 0;
  color: var(--gv-muted);
  line-height: 1.55;
}

@media (max-width: 989px) {
  .gv-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gv-style-grid {
    grid-template-columns: 1fr;
  }

  .gv-trust-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .gv-section {
    padding: 30px 12px 42px;
  }

  .gv-section__head {
    text-align: left;
  }

  .gv-product-grid {
    gap: 12px;
  }

  .gv-product-info {
    padding: 11px 10px 13px;
  }

  .gv-product-title {
    min-height: 42px;
    font-size: 14px;
  }

  .gv-product-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .gv-product-cta {
    width: 100%;
    text-align: center;
  }

  .gv-product-assurance__grid {
    grid-template-columns: 1fr;
  }

  [class*="slideshow"],
  slideshow-component {
    min-height: 520px;
    background:
      linear-gradient(180deg, rgba(4, 3, 3, 0.06) 0%, rgba(4, 3, 3, 0.28) 48%, rgba(4, 3, 3, 0.74) 100%),
      radial-gradient(ellipse at 50% 54%, rgba(0, 0, 0, 0.32), transparent 20rem),
      var(--gv-hero-image) center 24% / cover no-repeat,
      #070606 !important;
  }
}
