/* styles.css - Luma style demo */
:root {
  --max-w: 1200px;
  --accent: #1e73be;
  --muted: #7a7a7a;
  --border: #e6e6e6;
  --container-pad: 20px;
  --radius: 6px;
  --shadow: 0 6px 18px rgba(18, 18, 18, 0.06);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  color: #222;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 30px var(--container-pad);
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-header .logo {
  font-weight: 700;
  font-size: 20px;
  color: #1f2d3d;
  text-decoration: none;
}
.site-header .accent {
  color: var(--accent);
  margin-left: 6px;
  font-weight: 700;
}
.main-nav {
  display: flex;
  gap: 14px;
  margin-left: 24px;
  flex: 1;
}
.main-nav a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  padding: 8px;
}
.main-nav a:hover {
  color: var(--accent);
}
.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
/* ---------- Dropdown menu styles ---------- */

/* position the nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-item {
  position: relative;
}
.nav-link {
  color: #555;
  text-decoration: none;
  padding: 14px 10px;
  display: inline-block;
}

/* toggle button next to item (small) */
.dropdown-toggle {
  background: transparent;
  border: 0;
  padding: 8px 6px;
  cursor: pointer;
  color: #555;
  font-size: 12px;
  line-height: 1;
}

/* dropdown container */
.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 200px;
  background: #f5f5f5;
  border: 1px solid #e2e2e2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  padding: 10px;
  border-radius: 4px;
  display: none;
  z-index: 60;
}

/* inner list */
.dropdown ul {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}
.dropdown ul li {
  margin: 0;
}
.dropdown ul li a {
  display: block;
  padding: 8px 14px;
  color: #444;
  text-decoration: none;
  white-space: nowrap;
}
.dropdown ul li a:hover {
  background: #fff;
  color: var(--accent);
}

/* show dropdown on hover (desktop) */
@media (hover: hover) and (pointer: fine) {
  .nav-item:hover > .dropdown {
    display: block;
  }
  .nav-item:hover > .dropdown-toggle {
    color: var(--accent);
  }
}

/* wide multi-column dropdown for Community */
.dropdown-wide {
  min-width: 420px;
  padding: 16px;
}
.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.dropdown-grid ul {
  padding: 0;
}

@media (max-width: 800px) {
  /* hide desktop inline nav on small screens */
  .main-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: inline-block;
  }

  /* mobile dropdowns shown inline when toggled open */
  .dropdown {
    position: relative;
    top: 0;
    left: 0;
    display: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .dropdown ul li a {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
  .mobile-nav {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 10px 20px;
  }
  .mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}

/* utility: open class used by JS */
.nav-item.open > .dropdown {
  display: block !important;
}
.nav-item.open > .dropdown-toggle {
  color: var(--accent) !important;
}

/* mobile menu button */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 0;
  font-size: 20px;
  margin-left: 8px;
  cursor: pointer;
}

/* make sure dropdowns are visually consistent with header */
.dropdown ul li a {
  color: #333;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}
.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 8px 12px;
}
.btn.small {
  padding: 6px 10px;
  font-size: 13px;
}
.btn.outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border);
}

/* Hero */
.hero {
  background: #fafafa;
  padding: 32px 0 48px;
}
.hero-inner {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-text {
  flex: 1;
  min-width: 300px;
}
.hero-text .eyebrow {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 1px;
}
.hero-text h1 {
  font-size: 40px;
  margin: 6px 0 10px;
  line-height: 1.05;
}
.lead {
  color: var(--muted);
  margin-bottom: 12px;
}
.hero-image {
  flex: 1;
  min-width: 320px;
}
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

/* Tiles */
.category-tiles .tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.tile img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.tile-body {
  position: absolute;
  left: 16px;
  bottom: 12px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.tile-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

/* Promises */
.promises {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 36px auto;
  padding: 18px 0;
  align-items: center;
}
.promise {
  text-align: center;
  flex: 1;
}
.promise .icon {
  font-size: 28px;
  margin-bottom: 8px;
}

/* Featured products */
.section-title {
  text-align: center;
  font-size: 20px;
  margin: 10px 0 22px;
  letter-spacing: 1px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.product {
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: 6px;
  text-align: center;
  background: #fff;
}
.product img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 12px;
}
.product h3 {
  font-size: 14px;
  margin: 6px 0;
  color: #333;
}
.price {
  color: var(--muted);
  font-weight: 700;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.blog-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
}
.blog-card h4 {
  margin: 8px 0 0;
  font-size: 16px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 26px 0;
  background: #fafafa;
  margin-top: 36px;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.footer-nav a {
  color: var(--muted);
  margin-right: 12px;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  .header-inner {
    justify-content: space-between;
  }
  .hero-inner {
    flex-direction: column-reverse;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tiles {
    grid-template-columns: repeat(1, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .promises {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 18px;
  }
  .hero-text h1 {
    font-size: 28px;
  }
  .product-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* ===== Blog / Experiences page tweaks ===== */

/* hero-experiences - large image full-width centered */
.hero-experiences {
  background-image: url("https://picsum.photos/seed/hero2/1300/420");
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  color: #fff;
  position: relative;
}
.hero-experiences::after {
  /* subtle dark overlay */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}
.hero-experiences .container {
  position: relative;
  z-index: 1;
}
.hero-ex_content {
  max-width: 720px;
  margin-left: 10px;
}
.hero-ex_title {
  font-size: 48px;
  letter-spacing: 1px;
  margin: 8px 0 0;
  color: #fff;
  font-weight: 800;
}

/* spacing utility for main content */
.content-spacing {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* blog-grid 3-column layout (feature cards) */
.blog-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* blog-card */
.blog-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}
.blog-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.blog-caption {
  background: #f1f1f1;
  padding: 18px;
}
.blog-caption h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

/* article list below */
.article-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.article-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-bottom: 1px solid #f0f0f0;
}
.article-item img {
  width: 140px;
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
}
.article-body h4 {
  margin: 0 0 6px;
  font-size: 16px;
}
.article-body .muted {
  color: var(--muted);
  font-size: 13px;
}

/* responsive adjustments */
@media (max-width: 1024px) {
  .blog-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .hero-ex_title {
    font-size: 32px;
  }
  .blog-grid-3 {
    grid-template-columns: 1fr;
  }
  .article-list {
    grid-template-columns: 1fr;
  }
}
/* ===== Men page specific styles ===== */

.hero-men {
  background-color: #fff;
  padding: 26px 0 0;
}
.hero-men-inner {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hero-men-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.hero-men-text {
  position: absolute;
  left: 70px;
  top: 60px;
  color: #fff;
  z-index: 2;
  max-width: 640px;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}
.hero-men .eyebrow {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 6px;
}
.hero-men-text h1 {
  font-size: 32px;
  line-height: 1.05;
  margin: 0 0 12px;
  font-weight: 800;
  color: #fff;
}

/* Featured products grid (compact) */
.men-products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}
.product-compact {
  text-align: center;
  padding: 10px;
}
.product-compact img {
  width: 120px;
  height: 160px;
  object-fit: cover;
  margin: 0 auto 10px;
  display: block;
}
.prod-title {
  font-size: 13px;
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
}
.prod-price {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

/* Promo tiles */
.promo-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}
.promo {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.promo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.promo-overlay {
  position: absolute;
  left: 22px;
  bottom: 22px;
  color: #fff;
  z-index: 3;
  text-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}
.promo-overlay h3 {
  font-size: 22px;
  margin: 0 0 10px;
  font-weight: 800;
}

/* Reuse blog-grid and blog-card styles already in CSS */

/* Responsive adjustments */
@media (max-width: 1200px) {
  .men-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .hero-men-text {
    left: 30px;
    top: 30px;
    max-width: 420px;
  }
  .men-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .promo-tiles {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .hero-men-text {
    left: 18px;
    top: 18px;
  }
  .men-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-compact img {
    width: 100px;
    height: 140px;
  }
}
@media (max-width: 420px) {
  .men-products-grid {
    grid-template-columns: 1fr;
  }
  .hero-men-text h1 {
    font-size: 20px;
  }
}
/* ===== Women page specific styles ===== */

.hero-women {
  background-color: #fff;
  padding: 26px 0 0;
}
.hero-women-inner {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hero-women-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.hero-women-text {
  position: absolute;
  left: 70px;
  top: 60px;
  color: #fff;
  z-index: 2;
  max-width: 720px;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}
.hero-women .eyebrow {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 6px;
}
.hero-women-text h1 {
  font-size: 32px;
  line-height: 1.05;
  margin: 0 0 12px;
  font-weight: 800;
  color: #fff;
}

/* Featured products grid for Women */
.women-products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}
.women-products-grid .product-compact {
  text-align: center;
  padding: 10px;
}
.women-products-grid .product-compact img {
  width: 120px;
  height: 160px;
  object-fit: cover;
  margin: 0 auto 10px;
  display: block;
}
.women-products-grid .prod-title {
  font-size: 13px;
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
}
.women-products-grid .prod-price {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

/* reuse .promo-tiles, .product-compact, .blog-grid already defined earlier */

/* responsive */
@media (max-width: 1200px) {
  .women-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .hero-women-text {
    left: 30px;
    top: 30px;
    max-width: 420px;
  }
  .women-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .promo-tiles {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .hero-women-text {
    left: 18px;
    top: 18px;
  }
  .women-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-compact img {
    width: 100px;
    height: 140px;
  }
}
@media (max-width: 420px) {
  .women-products-grid {
    grid-template-columns: 1fr;
  }
  .hero-women-text h1 {
    font-size: 20px;
  }
}
/* ===== Equipment page specific styles ===== */

.hero-equipment {
  background-color: #fff;
  padding: 26px 0 0;
}
.hero-equipment-inner {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hero-equipment-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.hero-equipment-text {
  position: absolute;
  left: 70px;
  top: 60px;
  color: #fff;
  z-index: 2;
  max-width: 720px;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}
.hero-equipment .eyebrow {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 14px;
  letter-spacing: 1px;
}
.hero-equipment-text h1 {
  font-size: 34px;
  line-height: 1.05;
  margin: 0 0 12px;
  font-weight: 800;
  color: #fff;
}

/* compact equipment product row */
.equipment-products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}
.equip-compact {
  text-align: center;
  padding: 10px;
}
.equip-compact img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin: 0 auto 10px;
  display: block;
  border-radius: 6px;
  background: #fff;
}
.equip-title {
  font-size: 13px;
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
  min-height: 36px;
}
.equip-price {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

/* gallery tiles */
.gallery-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}
.gallery-large img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* small thumb row */
.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.thumb-row img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* Top picks section */
.top-picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
  align-items: stretch;
}
.top-pick {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.top-pick img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.top-pick-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.top-pick-body h3 {
  margin: 0;
  font-size: 18px;
}
.top-pick-body .muted {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

/* CTA buttons in top picks */
.top-pick-body .btn.small {
  align-self: flex-start;
}

/* Responsiveness */
@media (max-width: 1200px) {
  .equipment-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .equipment-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-tiles {
    grid-template-columns: 1fr;
  }
  .thumb-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .top-picks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .equipment-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .thumb-row {
    grid-template-columns: 1fr;
  }
  .top-picks-grid {
    grid-template-columns: 1fr;
  }
  .hero-equipment-text {
    left: 18px;
    top: 18px;
    max-width: 90%;
  }
  .hero-equipment-text h1 {
    font-size: 20px;
  }
}
/* ===== About page tweaks ===== */

.hero-about {
  padding: 30px 0 10px;
  position: relative;
}
.hero-about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.hero-about-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
.hero-about-overlay {
  position: absolute;
  left: 0;
  top: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.hero-about-title {
  max-width: 1000px;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.55);
  padding: 6px 12px;
}

/* two-column about layout */
.about-section {
  padding-bottom: 48px;
}
.about-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: start;
}
.about-left {
  padding-top: 6px;
}
.about-links {
  list-style: disc;
  margin: 0;
  padding-left: 18px;
}
.about-links li {
  margin: 10px 0;
}
.about-links a {
  color: var(--accent);
  text-decoration: none;
}
.about-body {
  color: #333;
}
.lead-italic {
  font-style: italic;
  color: #222;
  margin-bottom: 14px;
  font-size: 16px;
}

/* responsive */
@media (max-width: 900px) {
  .hero-about-title {
    font-size: 22px;
    padding: 6px 10px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-left {
    order: 2;
    margin-top: 10px;
  }
  .about-body {
    order: 1;
  }
}

/* keep footer spacing similar to other pages */
.site-footer {
  margin-top: 36px;
}
.contact-wrap {
  max-width: 980px;
  margin: 32px auto;
  padding: 0 20px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.contact-left p {
  color: var(--muted);
}
label {
  display: block;
  margin: 10px 0 6px;
  font-weight: 700;
  font-size: 13px;
}
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.submit-row {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.cs-wrap {
  max-width: 1100px;
  margin: 28px auto;
  padding: 0 20px;
  color: #333;
  line-height: 1.6;
}
.shipping-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}
.shipping-table th,
.shipping-table td {
  border: 1px solid #eee;
  padding: 8px;
  text-align: left;
}
.section {
  margin-top: 20px;
}
/* small page-specific tweaks */
.doc {
  max-width: 1100px;
  margin: 32px auto;
  padding: 0 20px;
  color: #333;
  line-height: 1.6;
}
.doc h2 {
  margin-top: 28px;
}
.cookie-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 16px;
}
.cookie-table th,
.cookie-table td {
  border: 1px solid #e9e9e9;
  padding: 8px;
  text-align: left;
  font-size: 13px;
}
.muted {
  color: var(--muted);
}
/* product-page css */
/* === products-page specific (paste at the end of luma-static/css/styles.css) === */

/* catalog layout */
.catalog-wrap {
  margin-top: 12px;
}
.catalog-filters {
  font-size: 14px;
}
.men-products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 34px;
  align-items: start;
}
.product-compact {
  text-align: center;
  padding: 10px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.product-compact:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
.product-compact img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 10px;
}
.prod-title {
  font-size: 13px;
  margin-top: 6px;
}
.prod-price {
  color: var(--muted);
  margin-top: 6px;
  font-weight: 700;
}

/* product grid responsive */
@media (max-width: 1200px) {
  .men-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .catalog-wrap {
    grid-template-columns: 1fr;
  }
  .catalog-filters {
    position: relative;
    order: 2;
    margin-top: 12px;
  }
  .men-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .men-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .product-compact img {
    width: 92px;
    height: 92px;
  }
}
/* === Men-product category tiles (append to luma-static/css/styles.css) === */

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin: 18px 0 40px;
  align-items: stretch;
}

.cat-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  text-decoration: none;
  color: inherit;
  min-height: 260px;
  background: #f8f8f8;
  border: 1px solid #eee;
}
.cat-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.cat-card:hover img {
  transform: scale(1.03);
}

.cat-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  pointer-events: none; /* allow clicks to pass to anchor */
}
.cat-title {
  margin-top: 8px;
  font-weight: 800;
  font-size: 34px;
  color: #fff;
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}
.cat-cta {
  align-self: flex-start;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 3px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  pointer-events: auto;
}
.cat-cta .cta-arrow {
  font-weight: 900;
  font-size: 18px;
  margin-left: 6px;
}

/* lighten overlay area so text remains readable */
.cat-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.25) 100%
  );
  pointer-events: none;
}

/* small screens */
@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .cat-card img {
    height: 320px;
  }
  .cat-title {
    font-size: 26px;
  }
  .cat-cta {
    padding: 10px 12px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .cat-card img {
    height: 220px;
  }
  .cat-title {
    font-size: 20px;
  }
}
/* === product grid/styles (append if not already present) === */
.catalog-wrap {
  margin-top: 12px;
}
.catalog-filters {
  font-size: 14px;
}
.men-products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 34px;
  align-items: start;
}
.product-compact {
  text-align: center;
  padding: 10px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.product-compact:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
.product-compact img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 10px;
}
.prod-title {
  font-size: 13px;
  margin-top: 6px;
}
.prod-price {
  color: var(--muted);
  margin-top: 6px;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .men-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .catalog-wrap {
    grid-template-columns: 1fr;
  }
  .catalog-filters {
    position: relative;
    order: 2;
    margin-top: 12px;
  }
  .men-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .men-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .product-compact img {
    width: 92px;
    height: 92px;
  }
}
/* === product details page styles (append) === */

.product-page {
  padding-top: 8px;
  padding-bottom: 40px;
}

.product-main .main-image {
  border: 1px solid #eee;
  padding: 12px;
  background: #fff;
}
.product-main .main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.thumbs .thumb {
  width: 80px;
  height: 92px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid #eee;
  padding: 4px;
  background: #fff;
}
.thumbs .thumb:hover {
  transform: scale(0.98);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.product-info .product-title {
  font-size: 28px;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
  font-weight: 800;
}
.product-info .muted {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.option-group .swatch-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.swatch {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  outline: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.swatch.selected {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.5);
}

.sizes-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.size-btn {
  padding: 8px 12px;
  border: 1px solid #cfd7dc;
  background: #fff;
  cursor: pointer;
  border-radius: 3px;
}
.size-btn.selected {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 12px 18px;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 700;
}
.btn.primary .arrow {
  margin-left: 8px;
}

.related-grid {
  display: flex;
  gap: 18px;
  margin-top: 6px;
}
.related-card {
  text-align: center;
  width: 180px;
}
.related-card img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.related-title {
  font-size: 13px;
  margin-top: 8px;
}
.related-price {
  color: var(--muted);
  margin-top: 6px;
  font-weight: 700;
}

/* responsive */
@media (max-width: 1100px) {
  .product-main {
    grid-template-columns: 1fr;
  }
  .product-main .main-image img {
    max-width: 640px;
    margin: 0 auto;
  }
  .related-grid {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
/* === Cart Page Styles === */
.cart-page {
  padding: 40px 0;
}
.page-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 40px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.cart-table th,
.cart-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
  text-align: left;
  font-size: 14px;
}
.cart-table img {
  width: 100px;
  border: 1px solid #eee;
  border-radius: 4px;
}
.cart-item-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cart-item-title {
  font-weight: 700;
}
.cart-item-sub {
  font-size: 13px;
  color: var(--muted);
}

.cart-summary {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 20px;
}
.summary-row {
  font-size: 18px;
  font-weight: 700;
}

.recommendations {
  text-align: center;
  margin-top: 60px;
}
.recommendations h2 {
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 12px;
}
.recommendations p {
  color: var(--muted);
}

.qty-input {
  width: 50px;
  text-align: center;
  border: 1px solid #ccc;
  padding: 6px;
  border-radius: 3px;
}
.remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  font-size: 18px;
}
.remove-btn:hover {
  color: red;
}
/* === Checkout page styles === */
.checkout-grid .card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
}
.checkout-forms input,
.checkout-forms select {
  width: 100%;
  padding: 10px;
  border: 1px solid #e3e6e8;
  border-radius: 3px;
  margin-bottom: 6px;
  box-sizing: border-box;
}
.checkout-forms h3,
.order-summary h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 700;
}
.order-summary .cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
}
.order-summary .cart-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border: 1px solid #eee;
  padding: 4px;
  background: #fff;
}
.order-summary .cart-item .meta {
  font-size: 13px;
  color: var(--muted);
}
.order-summary .cart-item .price {
  font-weight: 700;
  margin-left: auto;
} /* === Order Review page tweaks === */
.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
}
#orderItems .cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
}
#orderItems .cart-item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border: 1px solid #eee;
  padding: 6px;
  background: #fff;
}
#orderItems .cart-item .meta {
  color: var(--muted);
  font-size: 13px;
}
#placeOrderBtn {
  margin-top: 6px;
}
/* Cart badge in header */
.header-actions .cart-badge {
  display: inline-block;
  background: #1f6fb8;
  color: #fff;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  line-height: 20px;
  vertical-align: middle;
  margin-left: 6px;
}
