@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Lora:ital,wght@0,400;0,600;1,400&family=Oswald:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   WOUNDS OF EARTH BACKSTAGE OFFICIAL STORE STYLESHEET
   ========================================================================== */
:root {
  --shop-bg-white: #ffffff;
  --shop-bg-dark: #000000;
  --shop-accent-red: #e43b2f;
  --shop-accent-blue: #0084ff;
  --shop-text-dark: #121212;
  --shop-text-muted: #6b7280;
  --shop-font-heading: 'Oswald', sans-serif;
  --shop-font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

body.shop-page {
  background-color: #ffffff;
  color: var(--shop-text-dark);
  font-family: var(--shop-font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   1. ANNOUNCEMENT BAR
   ========================================================================== */
.shop-announcement-bar {
  background-color: #000000;
  color: #ffffff;
  font-family: var(--shop-font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 16px;
  border-bottom: 1px solid #1a1a1a;
  font-weight: 500;
}

/* ==========================================================================
   2. DEDICATED SHOP HEADER & NAV (MATCHING SCREENSHOT 1)
   ========================================================================== */
.shop-header {
  background-color: #000000;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.75);
}

.shop-header-container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

/* Logo: Red & White 3-Line Stacked Backstage Club */
.shop-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.shop-brand-stacked-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
}

.shop-brand-title {
  font-family: var(--shop-font-heading);
  font-weight: 700;
  color: var(--shop-accent-red);
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(228, 59, 47, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1;
}

.shop-brand-wounds {
  font-size: 1.5rem;
  line-height: 0.92;
  letter-spacing: 0.08em;
}

.shop-brand-of {
  font-size: 0.72rem;
  color: var(--shop-accent-red);
  letter-spacing: 0.22em;
  padding: 0;
  margin: 3px 0;
  line-height: 1;
  text-align: center;
}

.shop-brand-earth {
  font-size: 1.5rem;
  line-height: 0.92;
  letter-spacing: 0.08em;
}

.shop-brand-subtitle {
  font-family: var(--shop-font-heading);
  font-size: 0.62rem;
  color: #ffffff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 5px;
  font-weight: 600;
  text-align: center;
}

/* Navigation Menu (2-Row Balanced) */
.shop-nav-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shop-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.shop-nav-item {
  position: relative;
}

.shop-nav-link {
  font-family: var(--shop-font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: #ffffff;
  text-transform: uppercase;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.shop-nav-link:hover {
  color: var(--shop-accent-red);
}

.shop-dropdown-chevron {
  font-size: 0.65rem;
  transition: transform 0.2s ease;
}

.shop-nav-item:hover .shop-dropdown-chevron {
  transform: rotate(180deg);
}

.shop-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #0d0e10;
  border-top: 2px solid var(--shop-accent-red);
  min-width: 210px;
  list-style: none;
  padding: 10px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 100;
}

.shop-nav-item:hover .shop-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.shop-dropdown-menu li a {
  display: block;
  padding: 8px 18px;
  color: #d0d0d0;
  font-family: var(--shop-font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.shop-dropdown-menu li a:hover {
  background-color: rgba(228, 59, 47, 0.15);
  color: #ffffff;
  padding-left: 22px;
}

/* Utilities (Currency, Search, Account, Cart) */
.shop-utilities {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.shop-currency-select {
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: var(--shop-font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  outline: none;
}

.shop-currency-select option {
  background-color: #121212;
  color: #ffffff;
}

.shop-util-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: color 0.2s ease;
}

.shop-util-btn:hover {
  color: var(--shop-accent-red);
}

.shop-util-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.shop-cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background-color: var(--shop-accent-red);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   3. HERO SLIDESHOW BANNER (4 DYNAMIC SLIDES)
   ========================================================================== */
.shop-slideshow-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.shop-slide {
  display: none;
  min-height: 500px;
  align-items: center;
  padding: 50px 24px;
}

.shop-slide.active {
  display: flex;
}

/* Slide 1: Vinyl Album (Cream/Off-White) */
.shop-slide-1 {
  background-color: #ece8df;
  color: #101010;
}

/* Slide 2: Accessories (Deep Crimson Gradient) */
.shop-slide-2 {
  background: linear-gradient(135deg, #701018 0%, #300408 100%);
  color: #ffffff;
}

/* Slide 3: Tour Apparel (Dark Rock Charcoal) */
.shop-slide-3 {
  background: linear-gradient(135deg, #1f2228 0%, #0d0e10 100%);
  color: #ffffff;
}

/* Slide 4: 50th Anniversary Boxset (Navy & Gold Sparkle) */
.shop-slide-4 {
  background: linear-gradient(135deg, #0f1c2e 0%, #06090e 100%);
  color: #ffffff;
}

.shop-slide-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.shop-slide-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.shop-slide-media img {
  max-height: 400px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.45));
  border-radius: 4px;
}

.shop-slide-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.shop-slide-title {
  font-family: var(--shop-font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.shop-slide-desc {
  font-family: var(--shop-font-heading);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 25px;
  opacity: 0.9;
}

.b-shop-cta {
  display: inline-block;
  background-color: var(--shop-accent-red);
  color: #ffffff;
  font-family: var(--shop-font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 38px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.b-shop-cta:hover {
  background-color: #c92f24;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(228, 59, 47, 0.4);
}

.b-shop-cta-white {
  background-color: #ffffff;
  color: #000000;
}

.b-shop-cta-white:hover {
  background-color: #f0f0f0;
  color: var(--shop-accent-red);
}

/* Slideshow Controls Bar */
.shop-slide-controls {
  background-color: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  gap: 16px;
}

.slide-ctrl-arrow {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 10px;
}

.slide-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.slide-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slide-dot.active {
  background-color: #ffffff;
}

/* ==========================================================================
   4. FEATURED PRODUCTS (16 PRODUCTS GRID ON PURE WHITE BACKGROUND)
   ========================================================================== */
.shop-featured-section {
  background-color: #ffffff;
  padding: 65px 24px 85px;
}

.shop-container-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.shop-section-heading {
  text-align: center;
  font-family: var(--shop-font-heading);
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 50px;
}

.shop-products-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.shop-item-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.shop-item-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 2px;
}

.shop-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.shop-item-card:hover .shop-item-img {
  transform: scale(1.05);
}

.shop-soldout-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #000000;
  color: #ffffff;
  font-family: var(--shop-font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 5;
}

.shop-item-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.shop-item-title {
  font-family: var(--shop-font-heading);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 6px;
  line-height: 1.3;
}

.shop-item-title a:hover {
  color: var(--shop-accent-red);
}

.shop-item-rating {
  font-size: 0.82rem;
  color: #121212;
  margin-bottom: 6px;
}

.shop-item-rating span {
  color: #666666;
  font-size: 0.78rem;
}

.shop-item-price {
  font-family: var(--shop-font-body);
  font-size: 0.96rem;
  font-weight: 600;
  color: #111111;
}

/* ==========================================================================
   5. SKY BLUE CATEGORY PROMO CARDS (2x3 GRID FROM SCREENSHOTS 2 & 3)
   ========================================================================== */
.shop-promo-banners-section {
  background-color: #ffffff;
  padding: 0 24px 70px;
}

.shop-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.shop-sky-card {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  overflow: hidden;
  border-radius: 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-sky-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.shop-sky-text {
  font-family: var(--shop-font-heading);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.shop-sky-arrow {
  color: var(--shop-accent-red);
  font-size: 1.2em;
}

/* ==========================================================================
   6. 3 MEMBER COLLECTION SPLIT BANNERS (TALLER 540PX HEIGHT!)
   ========================================================================== */
.shop-members-split-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.shop-member-col {
  position: relative;
  height: 540px; /* TALLER PROPORTIONAL PORTRAIT HEIGHT */
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 35px;
}

.shop-member-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.shop-member-col:hover .shop-member-bg {
  transform: scale(1.06);
}

/* Color Tint Overlays */
.member-tint-red {
  background: rgba(180, 20, 20, 0.72);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.member-tint-gold {
  background: rgba(160, 130, 20, 0.72);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.member-tint-green {
  background: rgba(20, 140, 60, 0.72);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.shop-member-name {
  position: relative;
  z-index: 10;
  font-family: var(--shop-font-heading);
  font-size: clamp(2.4rem, 3.8vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.9);
}

/* Blue Divider Bar */
.shop-blue-bar {
  height: 10px;
  background-color: var(--shop-accent-blue);
  width: 100%;
}

/* ==========================================================================
   7. DEDICATED SHOP FOOTER
   ========================================================================== */
.shop-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 65px 24px 45px;
  text-align: center;
}

.shop-footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.shop-footer-newsletter-title {
  color: var(--shop-accent-red);
  font-family: var(--shop-font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.shop-newsletter-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto 35px;
  border: 1px solid #333333;
  background: #000000;
}

.shop-newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 18px;
  color: #ffffff;
  font-size: 1rem;
  outline: none;
}

.shop-newsletter-input::placeholder {
  color: #777777;
}

.shop-newsletter-submit {
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 0 20px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.shop-newsletter-submit:hover {
  color: var(--shop-accent-red);
}

/* Social icons */
.shop-social-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.shop-social-icon-link {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.shop-social-icon-link:hover {
  color: var(--shop-accent-red);
}

.shop-social-svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Policy links */
.shop-policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  list-style: none;
  margin-bottom: 30px;
}

.shop-policy-links li a {
  color: #999999;
  font-family: var(--shop-font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.shop-policy-links li a:hover {
  color: #ffffff;
}

.shop-copyright {
  color: #777777;
  font-size: 0.85rem;
  margin-bottom: 25px;
}

.shop-partner-logo {
  font-family: var(--shop-font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--shop-accent-red);
  text-transform: lowercase;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (SHOP PAGE)
   ========================================================================== */
@media (max-width: 1100px) {
  .shop-nav-menu {
    gap: 12px;
  }
  .shop-nav-link {
    font-size: 0.82rem;
  }
  .shop-products-grid-4col {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop-member-col {
    height: 420px;
  }
}

@media (max-width: 850px) {
  .shop-header-container {
    height: auto;
    padding: 12px 16px;
    flex-wrap: wrap;
  }
  .shop-nav-wrapper {
    display: none;
  }
  .shop-slide-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .shop-slide-content {
    align-items: center;
  }
  .shop-promo-grid {
    grid-template-columns: 1fr;
  }
  .shop-members-split-section {
    grid-template-columns: 1fr;
  }
  .shop-member-col {
    height: 320px;
  }
}

@media (max-width: 600px) {
  .shop-products-grid-4col {
    grid-template-columns: 1fr;
  }
}
