/* =========================================================================
   DA COUNTRY CLUB — SHARED STYLESHEET
   =========================================================================
   Used by both index.html and product.html. Editing colors, fonts, or any
   shared component (nav, footer, buttons) here updates every page at once.

   FILE MAP (this project):
     /index.html            - landing page (video hero + storefront sections)
     /product.html           - product detail page
     /css/styles.css        - this file — all styles, shared across pages
     /js/main.js             - all interactive behavior, shared across pages
     /assets/images/         - logos + product photos
     /assets/video/          - hero background video

   TABLE OF CONTENTS (search for these markers):
     [1]  COLOR PALETTE & RESET
     [2]  TOP NAV (product page)
     [3]  HERO (landing page video section)
     [4]  SEARCH OVERLAY
     [5]  SHARED SECTION HEADINGS
     [6]  PRODUCT GRID
     [7]  EDITORIAL BANNER
     [8]  GALLERY STRIP
     [9]  FOOTER
     [10] PRODUCT PAGE — gallery, buy box, accordion, fit slider, style-with
   ========================================================================= */


/* =========================================================================
   [1] COLOR PALETTE & RESET
   This is the one place to re-theme the whole site. Every color below is
   used via var(--name) — change a value here, it updates everywhere.
   ========================================================================= */
:root {
  /* --- core palette (from brand reference) --- */
  --green:  #1b4821;   /* deep green — logo, primary accent */
  --beige:  #e4e0d4;   /* page background */
  --butter: #eeeca8;   /* highlight accent */
  --black:  #000000;   /* body text, buttons, high-contrast elements */
  --white:  #ffffff;   /* card backgrounds, button text on dark */

  /* --- semantic aliases: what each color DOES on this site ---
     Change these if you want light/dark roles to swap without
     touching every component's CSS. */
  --bg:         var(--beige);            /* page background */
  --bg-raised:  var(--white);            /* cards/panels sitting above bg */
  --fg:         var(--black);            /* primary text */
  --fg-muted:   rgba(0,0,0,0.6);         /* secondary text */
  --fg-faint:   rgba(0,0,0,0.4);         /* tertiary text / placeholders */
  --line:       rgba(0,0,0,0.14);        /* hairline borders/dividers */
  --accent:     var(--green);            /* links, buttons, emphasis */
  --accent-soft:var(--butter);           /* hover highlight */

  /* on dark surfaces (hero video, footer, buttons) text flips to light */
  --fg-on-dark:       var(--white);
  --fg-on-dark-muted: rgba(255,255,255,0.7);
  --line-on-dark:     rgba(255,255,255,0.18);

  --font-display: 'Archivo Black', sans-serif;   /* headings, section titles */
  --font-body:    'Space Grotesk', sans-serif;   /* nav, body copy, UI */
  --font-script:  'Georgia', serif;               /* italic editorial captions */

  --nav-h: 76px;
}

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

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
}

a { color: inherit; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }


/* =========================================================================
   [2] TOP NAV (product page — persistent bar, not the hero overlay)
   ========================================================================= */
.topnav {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px);
  background: rgba(228,224,212,0.92); /* --beige at 92% opacity */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topnav__logo {
  height: 30px;
  width: auto;
  display: block;
}

.topnav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 36px);
  list-style: none;
}

.topnav__links a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color 0.2s ease;
}

.topnav__links a:hover,
.topnav__links a.is-active {
  color: var(--fg);
}

.topnav__icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topnav__icons button {
  background: none;
  border: none;
  color: var(--fg);
  cursor: pointer;
  padding: 4px;
  display: flex;
}

.topnav__icons svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

@media (max-width: 780px) {
  .topnav__links { display: none; }
}

/* breadcrumb (product page) */
.breadcrumb {
  padding: 20px clamp(20px, 4vw, 56px) 0;
  font-size: 12px;
  color: var(--fg-faint);
  letter-spacing: 0.04em;
}

.breadcrumb a {
  text-decoration: none;
  transition: color 0.2s ease;
}

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


/* =========================================================================
   [3] HERO (landing page video section)
   Full-viewport video background, logo + menu overlaid mid-left. The
   hero itself stays dark (the video needs a dark vignette to keep the
   white nav text legible) even though the rest of the site is beige.
   ========================================================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--black); /* letterboxing while video loads */
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg video,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%; /* nudge focal point down/up here if needed */
}

/* fallback gradient — only shown if the video fails to load (see main.js) */
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(228,224,212,0.10), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(27,72,33,0.35), transparent 55%),
    linear-gradient(180deg, #000000 0%, #0a120a 50%, #000000 100%);
  display: none; /* toggled on by main.js if <video> errors */
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%);
}

.hero-nav {
  position: absolute;
  left: clamp(24px, 6vw, 90px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(28px, 4vh, 40px);
}

.hero-nav__logo-link {
  display: block;
}

.hero-nav__logo {
  height: clamp(46px, 6vw, 68px);
  width: auto;
  display: block;
  /* soft glow keeps the logo readable over any video frame */
  filter: drop-shadow(0 1px 10px rgba(255,255,255,0.35)) drop-shadow(0 0 2px rgba(0,0,0,0.4));
}

.hero-nav__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
}

.hero-nav__links a {
  text-decoration: none;
  color: var(--fg-on-dark);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease, letter-spacing 0.2s ease;
}

.hero-nav__links a:hover {
  color: var(--butter);
  letter-spacing: 0.09em;
}

@media (max-width: 600px) {
  .hero-nav { left: 24px; }
  .hero-nav__links a { font-size: 16px; }
  .hero-nav__logo { height: 34px; }
}


/* =========================================================================
   [4] SEARCH OVERLAY
   Full-screen overlay triggered by the "Search" nav link. Stays on a
   dark surface regardless of page theme, for contrast/focus.
   ========================================================================= */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(0,0,0,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.search-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.search-overlay__input {
  width: min(560px, 80vw);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-on-dark);
  color: var(--fg-on-dark);
  font-family: var(--font-body);
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: 0.02em;
  padding: 10px 4px;
  text-align: center;
  outline: none;
}

.search-overlay__input::placeholder {
  color: var(--fg-on-dark-muted);
}

.search-overlay__close {
  position: absolute;
  top: 28px;
  right: clamp(20px, 5vw, 56px);
  background: none;
  border: none;
  color: var(--fg-on-dark);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}


/* =========================================================================
   [5] SHARED SECTION HEADINGS
   ========================================================================= */
.section {
  padding: clamp(48px, 8vh, 96px) clamp(20px, 4vw, 56px);
}

.section__label {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: clamp(28px, 4vh, 44px);
}


/* =========================================================================
   [6] PRODUCT GRID
   5-column grid on desktop, 2-column on mobile. Each `.product-card` is
   self-contained: copy or delete one whole block to add/remove products.
   ========================================================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line); /* shows through gaps as hairline dividers */
  border-top: 1px solid var(--line);
}

.product-card {
  background: var(--bg-raised);
  padding: 20px 20px 26px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.product-card:hover {
  background: var(--beige);
}

.product-card:hover .product-card__name {
  color: var(--accent);
}

.product-card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #f3f1e8, #e9e6da); /* shows if img is slow/missing */
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%; /* tune per-photo if a crop looks off */
  display: block;
}

.product-card__name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.product-card__price {
  font-size: 13px;
  color: var(--fg-muted);
}

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


/* =========================================================================
   [7] EDITORIAL BANNER
   Two side-by-side full-bleed photos. Left panel carries a caption + CTA
   button; right is image-only. Stacks vertically on mobile.
   ========================================================================= */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.editorial__panel {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(160deg, #1f3a24, #1b4821); /* shows if img is slow/missing */
}

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

/* darkens the bottom of each panel so caption text stays legible */
.editorial__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 55%);
  z-index: 1;
}

.editorial__caption {
  position: absolute;
  left: clamp(20px, 3vw, 40px);
  bottom: clamp(20px, 3vw, 40px);
  z-index: 2;
  max-width: 380px;
  color: var(--fg-on-dark);
}

.editorial__caption-title {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 10px;
}

.editorial__caption p {
  font-size: 14px;
  color: var(--fg-on-dark-muted);
  line-height: 1.4;
  margin-bottom: 18px;
}

.editorial__btn {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 26px;
}

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


/* =========================================================================
   [8] GALLERY STRIP
   4-column photo strip (community/UGC-style content). One tile can carry
   a centered text overlay via `.gallery__tag`.
   ========================================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.gallery__item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(160deg, #f3f1e8, #e9e6da);
}

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

.gallery__tag {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0,0,0,0.35);
  color: var(--fg-on-dark);
}

.gallery__tag-title {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.gallery__tag-sub {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 6px;
}

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


/* =========================================================================
   [9] FOOTER
   Kept as a dark surface (grounds the page, matches the hero) even
   though the rest of the site is beige.
   ========================================================================= */
.footer {
  background: var(--black);
  color: var(--fg-on-dark);
  padding: clamp(48px, 7vh, 80px) clamp(20px, 4vw, 56px) 32px;
  margin-top: clamp(48px, 8vh, 96px);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer__brand-mark {
  height: 30px;
  width: auto;
  display: block;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 15px;
  text-transform: uppercase;
}

.footer__blurb {
  font-size: 14px;
  color: var(--fg-on-dark-muted);
  line-height: 1.5;
  margin-bottom: 22px;
  max-width: 320px;
}

.footer__form {
  display: flex;
  max-width: 380px;
}

.footer__form input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--line-on-dark);
  border-right: none;
  color: var(--fg-on-dark);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 12px 14px;
  outline: none;
}

.footer__form input::placeholder {
  color: var(--fg-on-dark-muted);
}

.footer__form button {
  background: var(--butter);
  color: var(--black);
  border: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 20px;
  cursor: pointer;
}

.footer__col h4 {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 17px;
  margin-bottom: 16px;
}

.footer__col ul {
  list-style: none;
}

.footer__col a {
  display: block;
  text-decoration: none;
  font-size: 14px;
  color: var(--fg-on-dark-muted);
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--butter);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line-on-dark);
  font-size: 12px;
  color: var(--fg-on-dark-muted);
}

.footer__legal-links {
  display: flex;
  gap: 16px;
}

.footer__legal-links a {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-on-dark-muted);
}

.footer__legal-links a:hover {
  color: var(--butter);
}

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

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


/* =========================================================================
   [10] PRODUCT PAGE — gallery, buy box, accordion, fit slider, style-with
   ========================================================================= */
.product {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding: 20px clamp(20px, 4vw, 56px) 0;
  align-items: start;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.product-gallery__item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(160deg, #f3f1e8, #e9e6da);
}

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

.buy-box {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  padding-bottom: 40px;
}

.buy-box__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 14px;
}

.buy-box__rating .stars {
  color: var(--accent);
  letter-spacing: 1px;
}

.buy-box__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.buy-box__price {
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 22px;
}

.buy-box__section-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.swatch-row {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.swatch {
  width: 34px;
  height: 34px;
  border: 2px solid var(--line);
  cursor: pointer;
  background: #2a3a5a; /* "navy check"-ish placeholder tone */
}

.swatch.is-selected {
  border-color: var(--fg);
}

.size-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.size-btn {
  min-width: 52px;
  height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--fg);
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.size-btn:hover:not(:disabled) {
  border-color: var(--fg);
}

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

.size-btn:disabled {
  color: var(--fg-faint);
  border-color: var(--line);
  cursor: not-allowed;
  text-decoration: line-through;
}

.size-chart-link {
  display: block;
  text-align: right;
  font-size: 12px;
  text-decoration: underline;
  color: var(--fg-muted);
  margin-bottom: 24px;
  cursor: pointer;
}

.size-chart-link:hover {
  color: var(--fg);
}

.add-to-cart {
  width: 100%;
  padding: 18px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 16px;
  transition: opacity 0.2s ease;
}

.add-to-cart:hover {
  opacity: 0.85;
}

.payment-line {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.payment-line strong {
  color: var(--fg);
  font-weight: 600;
}

.payment-line .clearpay-badge {
  display: inline-block;
  background: rgba(27,72,33,0.14);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 3px 8px;
  border-radius: 10px;
}

.returns-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-muted);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}

.returns-line svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

/* details accordion */
.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 0;
  cursor: pointer;
}

.accordion-item__icon {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.accordion-item.is-open .accordion-item__icon {
  transform: rotate(45deg); /* + becomes x */
}

.accordion-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.is-open .accordion-item__body {
  max-height: 400px;
}

.accordion-item__content {
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
}

.accordion-item__content p {
  margin-bottom: 12px;
}

.accordion-item__content ul {
  list-style: none;
  padding-left: 0;
}

.accordion-item__content li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}

.accordion-item__content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* fit slider (static visual indicator, not interactive) */
.fit-slider {
  padding: 20px 0;
}

.fit-slider__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.fit-slider__track {
  position: relative;
  height: 3px;
  background: var(--line);
  margin-bottom: 10px;
}

.fit-slider__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--fg);
  width: 50%; /* keep in sync with .fit-slider__marker left below */
}

.fit-slider__marker {
  position: absolute;
  top: 50%;
  left: 50%; /* 50% = center ("true to size") */
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--fg);
}

.fit-slider__labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--fg-muted);
}

.fit-slider__labels .is-current {
  color: var(--fg);
  font-weight: 600;
}

/* style with (cross-sell) */
.style-with {
  padding: 24px 0 8px;
}

.style-with__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.style-with__card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  padding: 12px;
}

.style-with__card img {
  width: 64px;
  height: 80px;
  object-fit: cover;
  background: linear-gradient(160deg, #f3f1e8, #e9e6da);
}

.style-with__info {
  flex: 1;
}

.style-with__name {
  font-size: 14px;
  margin-bottom: 4px;
}

.style-with__price {
  font-size: 13px;
  color: var(--fg-muted);
}

.style-with__quick-add {
  background: transparent;
  border: 1px solid var(--fg);
  color: var(--fg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.style-with__quick-add:hover {
  background: var(--fg);
  color: var(--white);
}

@media (max-width: 900px) {
  .product { grid-template-columns: 1fr; }
  .buy-box { position: static; }
}
