/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #CC0000;
  --red-dark: #990000;
  --red-light: #FF3333;
  --white: #FFFFFF;
  --off-white: #F8F8F8;
  --light-gray: #EEEEEE;
  --mid-gray: #999999;
  --dark-gray: #444444;
  --black: #171717;
  --shadow: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.12);
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  overflow: hidden;
  position: relative;
}

.announcement-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  padding: 10px 0;
}

.announcement-track:hover {
  animation-play-state: paused;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 3rem;
}

.announcement-item span.dot {
  color: var(--red);
  font-size: 1rem;
}

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

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

ul {
  list-style: none;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding: 0 2.5rem;
  height: 110px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 3rem;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Push links rightward (close to logo) by auto-margining the search icon */
.nav-left .nav-search-btn {
  margin-right: auto;
}

.nav-left > a,
.nav-item > a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-gray);
  transition: color var(--transition);
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.nav-left > a:hover,
.nav-left > a.active,
.nav-item > a:hover,
.nav-item > a.active {
  color: var(--black);
}

/* ===== MEGA MENU ===== */
.nav-item {
  position: static;
}

.megamenu {
  position: fixed;
  top: calc(88px + 34px); /* navbar height + announcement bar */
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.megamenu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.megamenu-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 380px;
}

.megamenu-categories {
  border-right: 1px solid var(--light-gray);
  padding: 2rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.megamenu-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 1.2rem;
}

.megamenu-cat-list {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
}

.megamenu-cat-list li a {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--mid-gray);
  padding: 0.3rem 0;
  transition: color 0.15s ease;
  letter-spacing: -0.3px;
}

.megamenu-cat-list li a:hover,
.megamenu-cat-list li.active a {
  color: var(--black);
}

.megamenu-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  border-top: 1px solid var(--light-gray);
  padding-top: 1.2rem;
  margin-top: 1.2rem;
  transition: color var(--transition);
}

.megamenu-view-all:hover {
  color: var(--red);
}

.megamenu-products-wrap {
  padding: 2rem;
  overflow: hidden;
}

.megamenu-products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.megamenu-products-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.megamenu-see-all {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--transition);
}

.megamenu-see-all:hover {
  color: var(--red);
}

.megamenu-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.megamenu-product-card {
  cursor: pointer;
  transition: transform 0.15s ease;
}

.megamenu-product-card:hover {
  transform: translateY(-2px);
}

.megamenu-product-image {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 0.7rem;
  overflow: hidden;
}

.megamenu-product-name {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.megamenu-product-price {
  font-size: 0.85rem;
  color: var(--mid-gray);
  font-weight: 500;
}

/* Overlay behind megamenu */
.megamenu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.megamenu-overlay.visible {
  opacity: 1;
}

.nav-logo {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--black);
  text-align: center;
  justify-self: center;
}

.nav-logo img {
  height: 110px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

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

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}

/* Push account/cart icons to far right */
.nav-right .nav-icons-group {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-right-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-gray);
  transition: color var(--transition);
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.nav-right-link:hover,
.nav-right-link.active {
  color: var(--black);
}

.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
  font-family: inherit;
}

.nav-icon-btn:hover {
  color: var(--red);
}

.nav-icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-icon-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -7px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

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

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ===== HERO ===== */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0000 0%, #111111 50%, #1a0000 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 2.2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  margin-left: 1rem;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--dark-gray);
}

/* ===== SECTIONS ===== */
section {
  padding: 4rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.section-header h2 span {
  color: var(--red);
}

.section-header p {
  color: var(--mid-gray);
  font-size: 1rem;
}

.underline-red {
  display: inline-block;
  border-bottom: 3px solid var(--red);
  padding-bottom: 2px;
}

/* ===== PRODUCT GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.product-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image.placeholder {
  font-size: 3rem;
  color: var(--mid-gray);
}

.product-info {
  padding: 1rem 1.2rem 1.3rem;
}

.product-category {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.product-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.3rem;
}

.product-size {
  font-size: 0.82rem;
  color: var(--mid-gray);
  margin-bottom: 0.8rem;
}

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

.product-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
}

.add-to-cart-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}

.add-to-cart-btn:hover {
  background: var(--red-dark);
}

.add-to-cart-btn.added {
  background: #22c55e;
}

/* ===== CATEGORIES STRIP ===== */
.categories-strip {
  background: var(--white);
  padding: 4rem 2rem 5rem;
}

.categories-strip .section-header {
  text-align: left;
  margin-bottom: 2.5rem;
  padding: 0;
}

.categories-strip .section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

.categories-strip .section-header h2 span {
  color: inherit;
}

.categories-strip .section-header p {
  display: none;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.category-card {
  text-decoration: none;
  color: var(--black);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.category-card:hover .category-card-image img {
  transform: scale(1.04);
}

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

.category-card-image {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  background: #efefef;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.category-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.2rem;
}

.category-name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.3px;
}

.category-arrow {
  font-size: 1.1rem;
  color: #888;
  transition: transform 0.2s ease;
}

@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== BANNER ===== */
.promo-banner {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 2.5rem 2rem;
}

.promo-banner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 0.6rem;
}

.promo-banner p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.promo-banner .btn {
  background: var(--white);
  color: var(--red);
}

.promo-banner .btn:hover {
  background: var(--off-white);
}

/* ===== CART ===== */
.page-title {
  padding: 3rem 2rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.page-title h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.5px;
}

.page-title h1 span {
  color: var(--red);
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem 4rem;
  align-items: start;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 1.2rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  padding: 1.2rem;
}

.cart-item-image {
  width: 90px;
  height: 120px;
  border-radius: 6px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--mid-gray);
  overflow: hidden;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.cart-item-details .category {
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.4rem;
}

.cart-item-details .size {
  font-size: 0.82rem;
  color: var(--mid-gray);
  margin-bottom: 0.8rem;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--light-gray);
  background: var(--white);
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--dark-gray);
}

.qty-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.qty-num {
  font-weight: 700;
  min-width: 24px;
  text-align: center;
}

.cart-item-price {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

.cart-item-price .price {
  font-size: 1.15rem;
  font-weight: 800;
}

.remove-btn {
  background: none;
  border: none;
  color: var(--mid-gray);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  transition: color var(--transition);
  text-decoration: underline;
}

.remove-btn:hover {
  color: var(--red);
}

.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--mid-gray);
}

.cart-empty .empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.cart-empty h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

/* ===== ORDER SUMMARY ===== */
.order-summary {
  background: var(--off-white);
  border-radius: 10px;
  padding: 1.8rem;
  border: 1px solid var(--light-gray);
  position: sticky;
  top: 88px;
}

.order-summary h2 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-gray);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
  color: var(--dark-gray);
}

.summary-line.total {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  border-top: 1px solid var(--light-gray);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.summary-line.total span:last-child {
  color: var(--red);
}

.checkout-btn {
  display: block;
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: background var(--transition);
  text-align: center;
}

.checkout-btn:hover {
  background: var(--red-dark);
}

.checkout-btn:disabled {
  background: var(--mid-gray);
  cursor: not-allowed;
}

.promo-input-wrap {
  display: flex;
  gap: 0.5rem;
  margin: 1.2rem 0;
}

.promo-input-wrap input {
  flex: 1;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition);
}

.promo-input-wrap input:focus {
  border-color: var(--red);
}

.promo-input-wrap button {
  background: var(--dark-gray);
  color: var(--white);
  border: none;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

/* ===== CHECKOUT ===== */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem 4rem;
  align-items: start;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-section {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  padding: 1.8rem;
}

.form-section-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.form-section-title span.step {
  background: var(--red);
  color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark-gray);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--light-gray);
  border-radius: 6px;
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
  color: var(--black);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--red);
}

.form-group input.error,
.form-group select.error {
  border-color: #e53e3e;
}

.error-msg {
  font-size: 0.75rem;
  color: #e53e3e;
  display: none;
}

.error-msg.visible {
  display: block;
}

.card-icons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.place-order-btn {
  display: block;
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 1.1rem;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 0.5rem;
}

.place-order-btn:hover {
  background: var(--red-dark);
}

/* ===== ORDER SUCCESS ===== */
.success-page {
  max-width: 560px;
  margin: 4rem auto;
  text-align: center;
  padding: 0 2rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.8rem;
}

.success-page h1 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.8rem;
}

.success-page p {
  color: var(--mid-gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.order-number {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.order-number strong {
  color: var(--red);
  font-size: 1.1rem;
}

/* ===== SHOP FILTERS ===== */
.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--light-gray);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  transition: all var(--transition);
  color: var(--dark-gray);
}

.filter-tab:hover,
.filter-tab.active {
  border-color: var(--red);
  color: var(--red);
  background: #fff5f5;
}

.sort-select {
  padding: 0.45rem 0.9rem;
  border: 1.5px solid var(--light-gray);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  color: var(--dark-gray);
  font-family: inherit;
}

.results-count {
  font-size: 0.85rem;
  color: var(--mid-gray);
  font-weight: 600;
}

/* ===== PRODUCT PAGE ===== */
.product-image-link,
.product-name-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem 0;
  font-size: 0.82rem;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb a {
  color: var(--mid-gray);
  transition: color var(--transition);
}

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

.breadcrumb-sep {
  color: var(--light-gray);
}

.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
  align-items: start;
}

/* Image gallery */
.product-gallery {
  position: sticky;
  top: 108px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-main-image {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  overflow: hidden;
}

.product-thumbnails {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  padding-bottom: 0.3rem;
  scrollbar-width: thin;
  scrollbar-color: var(--light-gray) transparent;
}

.product-thumb {
  width: 72px;
  height: 96px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  flex-shrink: 0;
}

.product-thumb.active {
  border-color: var(--black);
}

/* Product details */
.product-details {
  padding-top: 0.5rem;
}

.product-detail-category {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.6rem;
}

.product-detail-name {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.rating-num {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
}

.rating-count {
  font-size: 0.82rem;
  color: var(--mid-gray);
}

.product-detail-price {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 1.6rem;
  color: var(--black);
}

.product-divider {
  border: none;
  border-top: 1px solid var(--light-gray);
  margin: 1.5rem 0;
}

/* Size selector */
.option-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  color: var(--dark-gray);
}

.option-label span {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--mid-gray);
}

.size-options {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.size-btn {
  padding: 0.6rem 1.1rem;
  border: 1.5px solid var(--light-gray);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  color: var(--dark-gray);
  transition: all var(--transition);
  font-family: inherit;
}

.size-btn:hover {
  border-color: var(--black);
  color: var(--black);
}

.size-btn.active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

/* Qty + Add to Cart */
.atc-row {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  align-items: stretch;
}

.qty-picker {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.qty-picker button {
  width: 42px;
  height: 52px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--dark-gray);
  transition: background var(--transition);
  font-family: inherit;
}

.qty-picker button:hover {
  background: var(--off-white);
}

.qty-picker .qty-val {
  width: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  border-left: 1px solid var(--light-gray);
  border-right: 1px solid var(--light-gray);
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.atc-btn {
  flex: 1;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  font-family: inherit;
  height: 52px;
  letter-spacing: 0.2px;
}

.atc-btn:hover {
  background: var(--dark-gray);
}

.buy-now-btn {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  font-family: inherit;
  height: 52px;
  letter-spacing: 0.2px;
  margin-bottom: 1.5rem;
}

.buy-now-btn:hover {
  background: var(--red-dark);
}

/* Shipping info */
.shipping-info {
  background: var(--off-white);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.shipping-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.87rem;
  color: var(--dark-gray);
}

.shipping-row .icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.shipping-row strong {
  color: var(--black);
}

/* Description accordion */
.accordion {
  border-top: 1px solid var(--light-gray);
}

.accordion-item {
  border-bottom: 1px solid var(--light-gray);
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  color: var(--black);
  font-family: inherit;
  transition: color var(--transition);
}

.accordion-trigger:hover {
  color: var(--red);
}

.accordion-trigger .chevron {
  font-size: 1rem;
  transition: transform 0.2s ease;
  color: var(--mid-gray);
}

.accordion-item.open .chevron {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding-bottom: 1.2rem;
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.7;
}

.accordion-item.open .accordion-body {
  display: block;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--off-white);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  padding: 4rem 2rem;
}

.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-header h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 0.4rem;
}

.faq-header p {
  color: var(--mid-gray);
  font-size: 0.95rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
}

.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  color: var(--black);
  font-family: inherit;
  transition: color var(--transition);
}

.faq-trigger:hover {
  color: var(--red);
}

.faq-chevron {
  font-size: 1rem;
  color: var(--mid-gray);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-body {
  display: none;
  padding-bottom: 1.2rem;
  font-size: 0.88rem;
  color: var(--dark-gray);
  line-height: 1.75;
}

.faq-item.open .faq-body {
  display: block;
}

@media (max-width: 700px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Related products */
.related-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.related-section h2 {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-gray);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
  color: var(--white);
}

.testimonials-left {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonials-eyebrow {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.testimonials-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 1.8rem;
}

.testimonials-heading em {
  font-style: normal;
  color: var(--red);
}

.testimonials-rating-summary {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.testimonials-stars {
  color: #f59e0b;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.testimonials-rating-text {
  font-size: 0.88rem;
  color: #aaaaaa;
}

.testimonials-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid #333;
  padding-top: 2rem;
}

.testimonials-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--white);
}

.stat-label {
  font-size: 0.82rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Carousel (right column) */
.testimonials-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
}

.tcarousel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 360px;
}

.tcarousel-hint {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #888;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  user-select: none;
}

.tcarousel-arrow {
  font-size: 1.1rem;
  color: #555;
}

.tcarousel-stack {
  position: relative;
  width: 100%;
  height: 340px;
}

/* Individual review card */
.tcard {
  position: absolute;
  inset: 0;
  background: var(--white);
  color: var(--black);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  cursor: grab;
  user-select: none;
  will-change: transform;
}

.tcard:active { cursor: grabbing; }

.tcard-photo {
  width: 100%;
  height: 150px;
  flex-shrink: 0;
  overflow: hidden;
}

.tcard-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.tcard-body {
  padding: 1.2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  overflow: hidden;
}

.tcarousel-dots {
  display: flex;
  gap: 8px;
  margin-top: 0.5rem;
}

.tcarousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #444;
  transition: background 0.25s ease, transform 0.25s ease;
}

.tcarousel-dot.active {
  background: var(--red);
  transform: scale(1.3);
}

.tcard-stars {
  display: flex;
  gap: 2px;
}

.tstar { font-size: 1rem; }
.tstar.full { color: #f59e0b; }
.tstar.half { color: #f59e0b; opacity: 0.6; }
.tstar.empty { color: #ddd; }

.tcard-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--dark-gray);
  font-style: italic;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.tcard--has-photo .tcard-text {
  -webkit-line-clamp: 2;
}

.tcard-author {
  border-top: 1px solid var(--light-gray);
  padding-top: 0.7rem;
  margin-top: auto;
}

.tcard-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.tcard-location {
  font-size: 0.75rem;
  color: var(--mid-gray);
}

@media (max-width: 800px) {
  .testimonials-section {
    grid-template-columns: 1fr;
  }
  .testimonials-left {
    padding: 3rem 1.5rem 1.5rem;
  }
  .testimonials-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .testimonials-right {
    padding: 2rem 1.5rem 4rem;
  }
  .tcarousel-wrap {
    width: 300px;
  }
  .tcarousel-stack {
    height: 280px;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.contact-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 0.6rem;
}

.contact-hero h1 span {
  color: var(--red);
}

.contact-hero p {
  color: var(--mid-gray);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--light-gray);
  border-radius: 6px;
  font-size: 0.92rem;
  outline: none;
  resize: vertical;
  font-family: inherit;
  color: var(--black);
  transition: border-color var(--transition);
}

.contact-form textarea:focus {
  border-color: var(--red);
}

.contact-submit-btn {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  font-family: inherit;
  margin-top: 0.5rem;
}

.contact-submit-btn:hover {
  background: var(--dark-gray);
}

.contact-submit-btn:disabled {
  background: var(--mid-gray);
  cursor: not-allowed;
}

.contact-success {
  text-align: center;
  padding: 3rem 1rem;
}

.contact-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.contact-success p {
  color: var(--mid-gray);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  padding: 1.4rem;
}

.contact-info-icon {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.contact-info-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.contact-info-card p {
  font-size: 0.87rem;
  color: var(--dark-gray);
  line-height: 1.5;
}

.contact-info-note {
  color: var(--mid-gray) !important;
  font-size: 0.8rem !important;
  margin-top: 0.2rem;
}

@media (max-width: 750px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .contact-info-card {
    flex: 1;
    min-width: 200px;
  }
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--off-white);
  padding: 5rem 2rem;
  border-top: 1px solid var(--light-gray);
}

.faq-inner {
  max-width: 780px;
  margin: 0 auto;
}

.faq-header {
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.faq-header h2 em {
  font-style: normal;
  color: var(--red);
}

.faq-header p {
  color: var(--mid-gray);
  font-size: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--black);
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #ccc;
  position: relative;
  transition: border-color 0.2s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-icon::before {
  width: 10px; height: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px; height: 10px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question[aria-expanded="true"] .faq-icon {
  border-color: var(--red);
}

.faq-question[aria-expanded="true"] .faq-icon::before {
  background: var(--red);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer > p {
  padding-bottom: 1.4rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--dark-gray);
}

.faq-answer > p a {
  color: var(--red);
  text-decoration: underline;
}

/* ===== FOOTER ===== */
footer {
  margin-top: auto;
  background: var(--black);
  color: #aaaaaa;
  padding: 3rem 2rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 80px;
  width: auto;
  display: block;
  margin-left: -12px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.87rem;
  color: #aaaaaa;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--red);
}

.footer-bottom {
  border-top: 1px solid #222222;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--black);
  color: var(--white);
  padding: 0.9rem 1.4rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 999;
  max-width: 320px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast .toast-icon {
  color: #22c55e;
  font-size: 1.1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 0 1rem;
    grid-template-columns: auto 1fr auto;
  }

  .nav-left {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo {
    justify-self: start;
    margin-left: 0.5rem;
  }

  section {
    padding: 2.5rem 1rem;
  }

  .cart-item {
    grid-template-columns: 70px 1fr;
  }

  .cart-item-price {
    grid-column: 2;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 1rem;
    min-height: 360px;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 0.8rem;
  }
}
