/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brighter fashion look: light base + navy accents */
  --bg-page: #eef2f7;
  --bg-panel: #f5f7fa;
  --navy: #1e2a3a;
  --navy-deep: #141c28;
  --accent-gold: #c49a50;
  --accent-gold-dark: #a67c38;
  --border-soft: #c5d0de;
  --text-on-light: #1e2a3a;
  --text-muted: #5a6b7d;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-on-light);
  line-height: 1.5;
  background-color: var(--bg-page);
  overflow-x: hidden;
  width: 100%;
  min-width: 0;
}

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

/* Header */
.header {
  background-color: var(--navy);
  padding: 16px 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f5f7fa;
}

.header-admin-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(245, 247, 250, 0.9);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.header-admin-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

/* Main Content */
.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-page);
  padding: 64px 24px 40px;
  width: 100%;
  max-width: 100%;
}

.page-title {
  text-align: center;
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin: 0 0 20px 0;
  line-height: 1.2;
  font-family: "Merriweather", Georgia, serif;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Index hero title – blocky 50s airline style with depth */
.page-title-hero {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow:
    2px 2px 0 rgba(0, 0, 0, 0.08),
    4px 4px 0 rgba(0, 0, 0, 0.06),
    6px 6px 12px rgba(0, 0, 0, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.4);
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 36px;
}

/* Category tabs (New vs Repurposed) */
.drum-tabs {
  width: 100%;
  max-width: 1125px;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 8px auto 22px;
}

.drum-tab {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(197, 208, 222, 0.95);
  background: rgba(255, 255, 255, 0.65);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 14px rgba(12, 23, 38, 0.08);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease;
}

.drum-tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(12, 23, 38, 0.12);
}

.drum-tab.active,
.drum-tab[aria-selected="true"] {
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* Hero carousel - full width */
.hero-carousel {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-top: 24px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-carousel-inner {
  position: relative;
  width: 100%;
  padding-top: 42%;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero-carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-carousel-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  padding: 48px 64px;
  box-sizing: border-box;
}

/* Wright logo: scale 1.41, slight shift left */
.hero-carousel-slide:first-child .hero-carousel-img {
  transform: scale(1.41) translateX(-2%);
}

.hero-carousel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.hero-carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.hero-carousel-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.hero-carousel-dot.active {
  background: #fff;
}

/* Category sections under hero */
.category-section {
  width: 100%;
  max-width: 1125px;
  margin: 48px auto 0;
  padding: 0 8px;
}

.category-heading {
  font-family: "Lora", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
  color: var(--navy);
  margin: 0 0 0.5em 0;
}

/* Giveaway page content */
.giveaway-content {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.giveaway-intro,
.giveaway-cta {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 1em 0;
}
.giveaway-cta {
  margin-bottom: 0;
}

/* Giveaway page: form and entrants list */
.giveaways-content {
  text-align: center;
}
.giveaways-section {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 16px;
}
.giveaway-form {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
  margin-bottom: 24px;
}
.giveaway-form .form-group {
  margin-bottom: 20px;
}
.giveaway-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy, #1a1a1a);
  margin-bottom: 6px;
}
.giveaway-form input,
.giveaway-form select {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}
.giveaway-form-row {
  display: flex;
  gap: 16px;
}
.giveaway-form-row .form-group {
  flex: 1;
}
.giveaway-note {
  font-size: 0.9rem;
  color: var(--text-muted, #666);
  margin: 0 0 12px 0;
}
.giveaway-error {
  color: #c0392b;
  font-size: 0.9rem;
  margin: 0 0 12px 0;
}
.giveaways-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: var(--navy, #2c3e50);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
}
.giveaways-btn:hover {
  background-color: #1a252f;
}
.giveaways-btn-link {
  background-color: transparent;
  color: var(--navy, #2c3e50);
  border: 2px solid currentColor;
}
.giveaways-btn-link:hover {
  background-color: var(--navy, #2c3e50);
  color: #fff;
}
.giveaway-back-wrap {
  margin-bottom: 32px;
}
.giveaway-entrants-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #eee;
  text-align: left;
}
.giveaway-entrants-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--navy, #1a1a1a);
}
.giveaway-entrants-note {
  font-size: 0.9rem;
  color: var(--text-muted, #555);
  margin: 0 0 16px 0;
}
.giveaway-entrants-list {
  list-style: none;
  max-height: 200px;
  overflow-y: auto;
  padding: 0;
  margin: 0;
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fafafa;
}
.giveaway-entrant-item {
  padding: 8px 12px;
  font-size: 1rem;
  border-bottom: 1px solid #eee;
}
.giveaway-entrant-item:last-child {
  border-bottom: none;
}
.giveaway-entrants-empty {
  color: var(--text-muted, #666);
  font-size: 0.95rem;
  margin: 0;
}
.required {
  color: #c0392b;
}

/* Other Builds page */
.other-builds-page .category-section {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.other-builds-intro {
  text-align: center;
  margin-bottom: 48px;
}

.page-index .other-builds-preview-story {
  width: 100%;
  max-width: 1125px;
  margin: 14px auto 18px;
}

.page-index .other-builds-preview-story .other-build-card-body {
  padding: 18px 18px 20px;
}

.page-index .other-builds-preview-story .other-build-card-title {
  font-size: 1.25rem;
}

.page-index .other-builds-preview-story .other-build-card-img-wrap {
  background: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}

.page-index .other-builds-preview-story .other-build-card-img {
  display: block;
}

.other-build-card-text-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.other-builds-preview-links {
  margin-top: 10px;
}

.other-builds-preview-sep {
  margin: 0 10px;
  color: var(--text-muted);
}

.other-builds-heading {
  font-family: "Lora", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 16px 0;
  letter-spacing: 0.04em;
}

.other-builds-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-on-light);
  margin: 0 0 12px 0;
}

.other-builds-cta {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin: 0;
  text-decoration: none;
  display: inline-block;
}

.other-builds-cta:hover {
  text-decoration: underline;
}

.other-builds-stories {
  margin-bottom: 48px;
}

.other-build-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 10px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 12px 24px rgba(0, 0, 0, 0.1),
    0 24px 48px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-soft);
  margin-bottom: 24px;
}

.other-build-card:last-child {
  margin-bottom: 0;
}

.other-build-card-with-img {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0;
  overflow: hidden;
}

.other-build-card-img-wrap {
  width: 100%;
  background: var(--bg-panel);
}

.other-build-card-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.other-build-card-body {
  padding: 0 24px 28px 24px;
}

.other-build-card-with-img .other-build-card-title,
.other-build-card-with-img .other-build-card-subtitle,
.other-build-card-with-img .other-build-card-text {
  margin-top: 0;
}

@media (min-width: 640px) {
  .other-build-card-with-img {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .other-build-card-with-img .other-build-card-body {
    padding: 28px 24px 28px 0;
  }
  .other-build-card-img-right .other-build-card-body {
    padding: 28px 0 28px 24px;
  }
  .other-build-card-img-right .other-build-card-img-wrap {
    border-right: 16px solid #fff;
    box-sizing: border-box;
  }
}

.other-build-card-title {
  font-family: "Lora", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 4px 0;
  letter-spacing: 0.03em;
}

.other-build-card-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 14px 0;
  font-style: italic;
}

.other-build-card-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-on-light);
  margin: 0;
}

.other-builds-contact {
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}

.other-builds-contact-intro {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 24px 0;
}

.other-builds-form {
  background: #fff;
  padding: 28px 24px;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-soft);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Wright Stuff page */
.wright-stuff-page .category-section {
  max-width: 1125px;
  margin-left: auto;
  margin-right: auto;
}

.wright-stuff-nav {
  width: 100%;
  max-width: 1125px;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 6px auto 26px;
  flex-wrap: wrap;
}

.wright-stuff-nav-link {
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(197, 208, 222, 0.9);
  background: linear-gradient(180deg, rgba(30, 42, 58, 0.96), rgba(20, 28, 40, 0.98));
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(12, 23, 38, 0.16);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.wright-stuff-nav-link:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(196, 154, 80, 0.98), rgba(166, 124, 56, 0.98));
  border-color: rgba(166, 124, 56, 0.65);
  color: #141c28;
  box-shadow: 0 14px 30px rgba(12, 23, 38, 0.18);
}

.wright-stuff-nav-link:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(196, 154, 80, 0.25),
    0 0 0 6px rgba(30, 42, 58, 0.25),
    0 14px 30px rgba(12, 23, 38, 0.18);
}

.wright-stuff-section {
  scroll-margin-top: 90px;
  margin-top: 28px;
}

.wright-stuff-heading {
  font-family: "Lora", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px 0;
  letter-spacing: 0.03em;
  text-align: center;
}

.wright-stuff-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 auto 18px;
  text-align: center;
  max-width: 760px;
}

.wright-stuff-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  width: 100%;
}

.wright-stuff-card {
  background: #fff;
  border: 1px solid rgba(197, 208, 222, 0.85);
  border-radius: 12px;
  padding: 18px 18px;
  box-shadow: 0 10px 26px rgba(12, 23, 38, 0.08);
}

.wright-stuff-card-title {
  font-family: "Lora", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px 0;
}

.wright-stuff-card-text {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.wright-stuff-giveaway-status {
  display: inline-block;
  margin-left: 8px;
  font-weight: 700;
  color: #7a8796;
}

.wright-stuff-card-disabled {
  background: rgba(245, 247, 250, 0.75);
  border-color: rgba(197, 208, 222, 0.95);
  box-shadow: none;
  opacity: 0.7;
  filter: grayscale(1);
}

.wright-stuff-card-disabled .wright-stuff-inline-link {
  color: #7a8796;
  text-decoration: none;
  pointer-events: none;
}

.wright-stuff-inline-link {
  color: var(--accent-gold-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Pro Tips embeds */
.pro-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  width: 100%;
}

.pro-tip-card {
  background: #fff;
  border: 1px solid rgba(197, 208, 222, 0.85);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(12, 23, 38, 0.08);
}

.pro-tip-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #0b0f16;
}

.pro-tip-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.pro-tip-body {
  padding: 14px 16px 16px;
}

.pro-tip-title {
  font-family: "Lora", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px 0;
}

.pro-tip-link {
  margin: 0;
}

.pro-tip-link a {
  color: var(--accent-gold-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.other-builds-form .form-group {
  margin-bottom: 18px;
}

.other-builds-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.other-builds-form input,
.other-builds-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  background: #fff;
  box-sizing: border-box;
  font-family: inherit;
}

.other-builds-form textarea {
  resize: vertical;
  min-height: 100px;
}

.other-builds-submit {
  margin-top: 8px;
  cursor: pointer;
}

/* Hide Giveaway link/section when giveaways disabled (set by JS) */
.giveaway-section-hidden {
  display: none !important;
}

@media (max-width: 600px) {
  .giveaway-form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* Index page: section titles use same blocky 50s font as hero */
.page-index .category-heading {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 1.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow:
    1px 1px 0 rgba(0, 0, 0, 0.06),
    2px 2px 6px rgba(0, 0, 0, 0.08);
}

.category-heading-link {
  color: inherit;
  text-decoration: none;
}

.category-heading-link:hover {
  text-decoration: underline;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.product-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(12, 23, 38, 0.09);
  border: 1px solid rgba(197, 208, 222, 0.85);
  padding: 16px 16px 0;
  position: relative;
}

.product-card-soldout {
  opacity: 0.92;
}

.product-soldout-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20, 28, 40, 0.88);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.product-soldout-text {
  margin: 0 12px 12px;
  font-weight: 700;
  color: #a12121;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 12px 12px 4px;
}

.product-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 12px 12px;
}

.product-sizes {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 12px 8px;
}

.drums-display-container.product-grid {
  display: grid;
}

/* Detail pages: one drum per section, stacked vertically */
.drums-display-container.product-grid[data-show-details="true"] {
  grid-template-columns: 1fr;
  gap: 48px;
}

.drums-display-container.product-grid[data-show-details="true"] .product-card {
  max-width: 100%;
}

.product-image-link {
  display: block;
  width: 100%;
}

.product-image-link .product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.product-image.product-image-contain {
  object-fit: contain;
  background: #fff;
  padding: 10px;
}

.product-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--border-soft);
  display: block;
}

/* Index: 3 across, larger drum images */
.drums-display-container.drums-index.product-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .drums-display-container.drums-index.product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .drums-display-container.drums-index.product-grid {
    grid-template-columns: 1fr;
  }
}

.drums-display-container.drums-index .product-card {
  text-align: center;
}

.drums-display-container.drums-index .product-image-link {
  display: block;
  margin: 0 auto 12px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.drums-display-container.drums-index .product-image-link .product-image,
.drums-display-container.drums-index .product-image-link .product-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.drums-display-container.drums-index .product-image-link .product-image.product-image-contain {
  object-fit: contain;
  object-position: center;
  background: #fff;
  padding: 16px;
}

.drums-display-container.drums-index .product-title {
  font-size: 1rem;
  margin: 0 12px 4px;
}

.drums-display-container.drums-index .product-price {
  font-size: 0.9rem;
  margin: 0 12px 16px;
}

.drums-more {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 8px;
}

.drums-more a {
  color: var(--navy);
  font-weight: 600;
}

.product-details {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 12px 12px;
}

/* Drum detail page: one big hero image + tiles underneath, all clickable */
.product-card-detail .product-images-detail {
  margin: 0 12px 16px;
}

.product-card-detail .product-image-hero-wrap {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.product-card-detail .product-image-hero {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--bg-panel);
}

.product-card-detail .product-image-hero.product-image-contain {
  background: #fff;
  padding: 10px;
}

.product-card-detail .product-images-tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.product-card-detail .product-tile-wrap {
  display: block;
  width: 120px;
  flex-shrink: 0;
  padding: 0;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  border: 1px solid var(--border-soft);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.product-card-detail .product-tile-wrap:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 12px rgba(30, 42, 58, 0.15);
}

.product-card-detail .product-tile-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.product-card-detail .product-tile-img.product-image-contain {
  object-fit: contain;
  background: #fff;
  padding: 8px;
}

.product-card-detail .product-title {
  font-size: 1.5rem;
  margin: 12px 12px 4px;
}

.product-card-detail .product-price {
  margin: 0 12px 4px;
}

.product-card-detail .product-details {
  margin: 0 12px 12px;
}

.product-card-detail .product-sizes {
  margin: 0 12px 4px;
}

/* Lightbox: view image at larger resolution */
.drum-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.drum-lightbox[hidden] {
  display: none;
}

.drum-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.drum-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.drum-lightbox-prev,
.drum-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}

.drum-lightbox-prev:hover,
.drum-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.35);
}

.drum-lightbox-prev {
  left: 20px;
}

.drum-lightbox-next {
  right: 20px;
}

.drum-lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 48px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

/* Footer */
.footer {
  background-color: var(--bg-panel);
  width: 100%;
}

.social-section {
  background-color: var(--navy);
  padding: 40px 24px;
  text-align: center;
}

.social-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #f5f7fa;
  color: var(--navy);
  border: 2px solid #f5f7fa;
  transition: transform 0.2s;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-link i {
  font-size: 1.25rem;
}

.subscribe-section {
  padding: 60px 24px;
  text-align: center;
  background-color: var(--bg-panel);
}

.subscribe-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.subscribe-text {
  font-size: 1rem;
  color: var(--text-on-light);
  margin-bottom: 24px;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.subscribe-fields {
  display: flex;
  gap: 12px;
  width: 100%;
}

.subscribe-fields input {
  flex: 1;
  min-width: 0;
}

.subscribe-form input {
  padding: 14px 18px;
  font-size: 1rem;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background-color: #fff;
}

.subscribe-form input::placeholder {
  color: #999;
}

.signup-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: var(--accent-gold);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.signup-btn:hover {
  background-color: var(--accent-gold-dark);
}

.footer-info {
  padding: 40px 24px 60px;
  text-align: center;
  border-top: 1px solid var(--border-soft);
  background-color: var(--bg-panel);
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.copyright {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-panel);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(30, 42, 58, 0.12);
  z-index: 1000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.cookie-accept {
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  background-color: var(--accent-gold);
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.2s;
}

.chat-widget:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 640px) {
  .header {
    padding: 12px 16px;
  }

  .header-brand {
    font-size: 0.95rem;
  }

  .main-content {
    padding: 24px 16px;
  }

  .page-title {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .hero-placeholder {
    aspect-ratio: 2 / 1;
  }

  .subscribe-section {
    padding: 32px 16px 24px;
  }

  .subscribe-heading {
    font-size: 1.5rem;
  }

  .subscribe-fields {
    flex-direction: row;
    gap: 8px;
  }

  .subscribe-fields input {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .signup-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    width: auto;
    min-width: 100px;
  }

  .footer-info {
    padding: 24px 16px 40px;
  }
}

@media (max-width: 380px) {
  .subscribe-fields {
    flex-direction: column;
  }

  .signup-btn {
    width: 100%;
  }
}
