:root {
  --brand-gold: #c9a227;
  --brand-gold-light: #e4c65e;
  --brand-gold-dark: #8f7318;
  --brand-silver: #c6cad1;
  --brand-silver-light: #f2f3f5;
  --brand-silver-dark: #888d96;
  --brand-black: #0d0d0f;
  --brand-charcoal: #1c1c20;
  --text-muted: rgba(28, 28, 32, 0.7);
  --border: rgba(0, 0, 0, 0.1);
  --gradient-gold: linear-gradient(120deg, var(--brand-gold-dark), var(--brand-gold) 30%, var(--brand-gold-light) 50%, var(--brand-gold) 70%, var(--brand-gold-dark));
  --gradient-silver: linear-gradient(120deg, var(--brand-silver-dark), var(--brand-silver) 30%, var(--brand-silver-light) 50%, var(--brand-silver) 70%, var(--brand-silver-dark));
}

.logo-mark {
  background: var(--brand-black);
  padding: 6px;
  overflow: hidden;
  border: 1px solid transparent;
  background-image: linear-gradient(var(--brand-black), var(--brand-black)),
    linear-gradient(135deg, var(--brand-gold-light), var(--brand-silver-light) 50%, var(--brand-gold));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--brand-black);
  background: #ffffff;
  line-height: 1.5;
}

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

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

.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text .name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--brand-black);
}

.brand-text .tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--brand-gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-charcoal);
  transition: color 0.15s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--brand-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav a:hover {
  color: var(--brand-gold);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Desktop "Shop" dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-charcoal);
  padding: 0;
  transition: color 0.15s ease;
}

.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--brand-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.dropdown-toggle svg {
  width: 13px;
  height: 13px;
  transition: transform 0.25s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.nav-dropdown:hover .dropdown-toggle,
.nav-dropdown.open .dropdown-toggle {
  color: var(--brand-gold);
}

.nav-dropdown:hover .dropdown-toggle::after,
.nav-dropdown.open .dropdown-toggle::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown:hover .dropdown-toggle svg,
.nav-dropdown.open .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 190px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.16, 0.84, 0.44, 1),
    visibility 0.2s ease;
  z-index: 60;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #fff;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--brand-charcoal);
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.dropdown-menu a:hover {
  background: rgba(201, 162, 39, 0.1);
  color: var(--brand-gold);
  transform: translateX(3px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease,
    transform 0.15s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.97);
}

.btn-primary {
  background: var(--gradient-gold);
  background-size: 250% 100%;
  background-position: 0% 0%;
  color: var(--brand-black);
  transition: background-position 0.6s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  background-position: 100% 0%;
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.35);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  transition: background 0.3s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn-outline:hover {
  border-color: transparent;
  background: var(--gradient-silver);
  color: var(--brand-black);
}

.btn-outline-dark {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--brand-black);
  transition: background 0.3s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn-outline-dark:hover {
  border-color: transparent;
  background: var(--gradient-gold);
  color: var(--brand-black);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  background: #1eb857;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp svg {
  width: 16px;
  height: 16px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: none;
  cursor: pointer;
  align-items: center;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--brand-black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  padding: 0 24px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  border-top: 0 solid var(--border);
  transition: max-height 0.35s cubic-bezier(0.16, 0.84, 0.44, 1), opacity 0.25s ease,
    padding 0.35s ease;
}

.mobile-nav.open {
  max-height: 420px;
  opacity: 1;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}

.mobile-nav > * {
  transform: translateX(-8px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav.open > * {
  transform: translateX(0);
  opacity: 1;
}

.mobile-nav.open > *:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.open > *:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.open > *:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.open > *:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav.open > *:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav.open > *:nth-child(6) { transition-delay: 0.3s; }

/* Mobile "Shop" accordion */
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-charcoal);
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.mobile-dropdown-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--brand-gold);
}

.mobile-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.mobile-dropdown.open .mobile-dropdown-toggle {
  color: var(--brand-gold);
}

.mobile-dropdown.open .mobile-dropdown-toggle svg {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-left: 12px;
  transition: max-height 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.mobile-dropdown.open .mobile-dropdown-menu {
  max-height: 200px;
}

.menu-toggle span:nth-child(1) {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav a {
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-charcoal);
  border-radius: 8px;
}

.mobile-nav a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--brand-gold);
}

.mobile-dropdown-menu a {
  font-size: 0.85rem;
  padding: 8px 12px;
  color: rgba(28, 28, 32, 0.75);
}

.mobile-nav .btn {
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
  .header-actions .btn-primary {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--brand-black);
  color: #fff;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 96px 0;
}

.hero-content {
  max-width: 640px;
}

.hero-content .pill,
.hero-content h1,
.hero-content p {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
}

.pill {
  display: inline-block;
  background: rgba(201, 162, 39, 0.15);
  color: var(--brand-gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: 999px;
  padding: 6px 16px;
}

.hero .pill {
  animation: fadeInUp 0.7s ease both;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 20px 0 0;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero h1 span {
  background: linear-gradient(100deg, var(--brand-gold-light), var(--brand-gold) 40%, var(--brand-silver-light) 55%, var(--brand-gold) 70%, var(--brand-gold-light));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

@media (min-width: 860px) {
  .hero h1 {
    font-size: 3rem;
  }
}

/* Shop by category (horizontal scroll) */
.category-scroll-section {
  background: #fafafa;
}

.category-scroll-wrap {
  position: relative;
  margin-top: 48px;
}

.category-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 4px 4px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.category-card {
  position: relative;
  flex: 0 0 auto;
  width: 240px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 0.84, 0.44, 1), box-shadow 0.3s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.2);
}

.category-card.cat-new {
  --card-accent: var(--brand-gold);
  background: linear-gradient(160deg, #3a3116, var(--brand-black) 70%);
}

.category-card.cat-helmets {
  --card-accent: var(--brand-silver);
  background: linear-gradient(160deg, #232327, var(--brand-black) 70%);
}

.category-card.cat-gear {
  --card-accent: var(--brand-gold);
  background: linear-gradient(160deg, #2c2519, var(--brand-black) 70%);
}

.category-card.cat-accessories {
  --card-accent: var(--brand-silver);
  background: linear-gradient(160deg, #1e1e22, #050505 70%);
}

.category-card.cat-shoes {
  --card-accent: var(--brand-gold);
  background: linear-gradient(160deg, #24201f, var(--brand-black) 70%);
}

.category-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.category-card:hover .category-card-video {
  transform: scale(1.06);
}

.category-card.has-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.85));
  z-index: 1;
}

.category-card-icon {
  position: absolute;
  top: 30px;
  width: 64px;
  height: 64px;
  color: rgba(255, 255, 255, 0.18);
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.16, 0.84, 0.44, 1), color 0.35s ease;
}

.category-card-icon svg {
  width: 100%;
  height: 100%;
}

.category-card:hover .category-card-icon {
  transform: scale(1.12) rotate(-6deg);
  color: var(--card-accent, var(--brand-gold));
}

.category-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

.category-card-body h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.category-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.category-card-cta svg {
  width: 13px;
  height: 13px;
  transition: transform 0.2s ease;
}

.category-card:hover .category-card-cta {
  background: var(--card-accent, var(--brand-gold));
  border-color: var(--card-accent, var(--brand-gold));
  color: var(--brand-black);
}

.category-card:hover .category-card-cta svg {
  transform: translateX(3px);
}

.scroll-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--brand-charcoal);
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  z-index: 5;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.scroll-arrow svg {
  width: 18px;
  height: 18px;
}

.scroll-arrow:hover {
  background: var(--brand-gold);
  color: var(--brand-black);
}

.scroll-arrow-left {
  left: -18px;
}

.scroll-arrow-right {
  right: -18px;
}

@media (min-width: 860px) {
  .scroll-arrow {
    display: flex;
  }
}

/* Section headings */
.section {
  padding: 80px 0;
}

.section:nth-of-type(even) {
  background: #fafafa;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--brand-gold);
}

.section-head h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 12px 0 0;
}

.section-head p {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Product cards */
.product-grid {
  display: grid;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  background: #fff;
  transition: transform 0.25s cubic-bezier(0.16, 0.84, 0.44, 1), box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.product-thumb {
  position: relative;
  width: 100%;
  height: 140px;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
}

.product-thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 45%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(201, 162, 39, 0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
}

.product-card:hover .product-thumb::after {
  left: 130%;
}

.product-card .product-thumb {
  background: #fafafa;
}

.new-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  background: var(--gradient-silver);
  color: var(--brand-black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(136, 141, 150, 0.4);
}

.brand-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--brand-gold);
  color: var(--brand-black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(201, 162, 39, 0.35);
}

.product-thumb svg {
  width: 56px;
  height: 56px;
  color: var(--brand-charcoal);
  transition: transform 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.product-card:hover .product-thumb svg {
  transform: scale(1.1);
  color: var(--brand-gold);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.product-card:hover .product-thumb img {
  transform: scale(1.06);
}

.product-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.product-card p {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-grow: 1;
}

.product-card .price {
  margin: 16px 0 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-black);
}

.product-card .price span {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.product-card .btn {
  margin-top: 16px;
  align-self: flex-start;
}

/* Reviews */
.review-grid {
  display: grid;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .review-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.review-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  background: #fff;
  transition: transform 0.25s cubic-bezier(0.16, 0.84, 0.44, 1), box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--brand-gold);
}

.review-stars svg {
  width: 15px;
  height: 15px;
}

.review-quote {
  margin: 16px 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--brand-charcoal);
  flex-grow: 1;
}

.review-author {
  margin: 20px 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-black);
}

.review-source {
  margin: 2px 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Why choose us */
.why {
  background: var(--brand-charcoal);
  color: #fff;
}

.why-inner {
  display: grid;
  gap: 40px;
}

.why h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 12px 0 0;
}

.why p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.why-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--brand-gold);
  color: var(--brand-black);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: transform 0.2s ease;
}

.why-list li:hover .why-check {
  transform: scale(1.15);
}

@media (min-width: 860px) {
  .why-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* CTA */
.cta {
  padding: 80px 0;
  text-align: center;
  background: var(--brand-black);
  color: #fff;
}

.cta h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
}

.cta p {
  max-width: 560px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.cta .btn-primary {
  animation: pulse-glow 2.6s ease-in-out infinite;
}

.cta .btn:hover {
  animation-play-state: paused;
}

/* Product detail page */
.product-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-link:hover h3 {
  color: var(--brand-gold);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.breadcrumb a:hover {
  color: var(--brand-gold);
}

.breadcrumb .current {
  color: var(--brand-black);
  font-weight: 600;
}

.product-detail {
  display: grid;
  gap: 48px;
  margin-top: 32px;
}

@media (min-width: 860px) {
  .product-detail {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.product-detail-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background: linear-gradient(160deg, var(--brand-charcoal), var(--brand-black) 70%);
  overflow: hidden;
}

.product-detail-media svg {
  width: 40%;
  height: 40%;
  color: rgba(255, 255, 255, 0.35);
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-media.is-zoomable {
  cursor: zoom-in;
}

.product-detail-media.is-zoomable img {
  transition: transform 0.15s ease;
  will-change: transform;
}

.product-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.product-gallery-thumb {
  flex: 1 1 0;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 2px solid transparent;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: var(--brand-charcoal);
  transition: border-color 0.2s ease, opacity 0.2s ease;
  opacity: 0.7;
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-gallery-thumb:hover {
  opacity: 1;
}

.product-gallery-thumb.active {
  border-color: var(--brand-gold);
  opacity: 1;
}

.product-detail-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--brand-black);
}

.product-detail-badge.gold {
  background: var(--brand-gold);
  box-shadow: 0 4px 10px rgba(201, 162, 39, 0.35);
}

.product-detail-badge.silver {
  background: var(--gradient-silver);
  box-shadow: 0 4px 10px rgba(136, 141, 150, 0.4);
}

.product-detail-category {
  color: var(--brand-gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-detail-info h1 {
  margin: 12px 0 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.product-detail-desc {
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.product-highlights {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--brand-charcoal);
}

.product-detail-sizes {
  margin: 28px 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-black);
}

.product-detail-sizes span {
  font-weight: 500;
  color: var(--text-muted);
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.product-detail-section {
  padding-top: 40px;
}

.category-head {
  margin-top: 24px;
  max-width: none;
  text-align: left;
}

.is-hidden {
  display: none;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  background: none;
  border: 1px solid var(--border);
  color: var(--brand-charcoal);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.filter-chip:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

.filter-chip.active {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: var(--brand-black);
}

.category-head + .filter-row + .product-grid {
  margin-top: 32px;
}

.product-not-found {
  text-align: center;
  padding: 40px 0;
}

/* About page extras */
.origin {
  display: grid;
  gap: 48px;
  align-items: center;
}

.origin h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 12px 0 0;
}

.origin p {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.origin-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fafafa;
}

.origin-badge .logo-mark {
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
}

.founder-photo {
  display: flex;
  justify-content: center;
}

.founder-photo img {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
  transition: transform 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.founder-photo img:hover {
  transform: translateY(-6px);
}

.founder-name {
  margin: 12px 0 0;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.founder-title {
  margin: 4px 0 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

@media (min-width: 860px) {
  .origin {
    grid-template-columns: 1fr 1fr;
  }
}

.values-grid {
  display: grid;
  gap: 32px;
  margin-top: 56px;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  background: #fff;
  transition: transform 0.25s cubic-bezier(0.16, 0.84, 0.44, 1), box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.value-card p {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.mission-section {
  background: #fafafa;
}

.centered-copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.centered-copy p {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pillar-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 32px 0 0;
}

.pillar {
  display: inline-block;
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--brand-black);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pillar:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: var(--brand-black);
  transform: translateY(-2px);
}

.highlight {
  color: var(--brand-black);
  font-weight: 700;
}

.pair-grid {
  display: grid;
  gap: 32px;
  margin-top: 56px;
}

@media (min-width: 860px) {
  .pair-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.brand-signoff {
  text-align: center;
  padding: 64px 0 0;
}

.signoff-name {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--brand-black);
}

.signoff-tagline {
  margin: 10px 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-gold);
}

/* Footer */
.site-footer {
  background: var(--brand-black);
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 48px;
  padding: 64px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand .logo-mark {
  width: 44px;
  height: 44px;
}

.footer-brand span {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.footer-about {
  margin: 16px 0 0;
  max-width: 320px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

.social-icon:hover {
  transform: translateY(-3px);
  color: #fff;
}

.social-icon.facebook:hover {
  background: #1877f2;
}

.social-icon.instagram:hover {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

.social-icon.tiktok:hover {
  background: #010101;
}

.social-icon.whatsapp:hover {
  background: #25d366;
}

.footer-col h3 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.footer-col ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul a,
.footer-col ul li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col ul a:hover {
  color: var(--brand-gold-light);
}

.footer-note {
  margin-top: 12px;
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.phone-link {
  font-weight: 600;
  transition: color 0.15s ease;
}

.phone-link:hover {
  color: var(--brand-gold-light);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.whatsapp-link svg {
  width: 13px;
  height: 13px;
}

.whatsapp-link:hover {
  background: #25d366;
  color: #fff;
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 0.84, 0.44, 1),
    transform 0.7s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.4s; }
.delay-6 { transition-delay: 0.48s; }

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.45);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(201, 162, 39, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
