/** Shopify CDN: Minification failed

Line 1249:2 Unexpected "{"
Line 1249:3 Expected identifier but found "%"
Line 1250:2 Expected identifier but found "<"

**/
/* =============================================================================
   LOFTIVO THEME — Unified Stylesheet
   Extracted from: index.html, product.html, collection.html,
                   cart.html, about.html, contact.html
   ============================================================================= */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --black: #111111;
  --white: #FFFFFF;
  --copper: #B87333;
  --grey-light: #EBEBEB;
  --charcoal: #2A2A2A;
  --olive: #3A3A2A;
  --grey-mid: #999;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'DM Sans', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }



/* ===== HEADER — Combine Style ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 4vw, 60px);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.site-header.scrolled {
  background: rgba(17,17,17,0.97);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.site-header.scrolled .nav-link,
.site-header.scrolled .nav-link--has-dropdown,
.site-header.scrolled .nav-chevron,
.site-header.scrolled .header-icon svg,
.site-header.scrolled .logo-text {
  color: var(--white);
}
.site-header.scrolled .header-icon svg { stroke: var(--white); }

.site-header--dark {
  background: rgba(17,17,17,0.97);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.site-header--dark .nav-link,
.site-header--dark .nav-link--has-dropdown,
.site-header--dark .header-icon svg,
.site-header--dark .logo-text {
  color: var(--white);
}
.site-header--dark .header-icon svg { stroke: var(--white); }

/* Header left: logo + nav (Combine style — left-aligned) */
.header-left {
  display: flex;
  align-items: center;
  gap: 0;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.4s var(--ease-out);
  flex-shrink: 0;
  margin-right: 40px;
}

/* Nav — left-aligned after logo (Combine style) */
.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  transition: color var(--transition-interactive), opacity var(--transition-interactive);
  white-space: nowrap;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-link--home { display: flex; align-items: center; }
.nav-link--home svg { stroke: #fff; transition: stroke 0.3s; }
.site-header.scrolled .nav-link--home svg { stroke: var(--white); }
.nav-link--has-dropdown { display: inline-flex; align-items: center; gap: 4px; }
.nav-chevron { transition: transform 0.2s; }
.nav-link--uppercase { text-transform: uppercase; }
.nav-link:hover { opacity: 0.7; }

/* Mega menu dropdown */
.nav-dropdown-wrap { position: relative; }
.mega-menu {
  position: fixed;
  top: 80px;
  left: 0; right: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 999;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.mega-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px clamp(20px, 4vw, 60px);
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 40px;
}
.mega-menu-links { display: flex; flex-direction: column; }
.mega-menu-link--all {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
  text-decoration: none;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.mega-menu-link--all:hover { color: var(--copper); }
.mega-menu-group { margin-bottom: 20px; }
.mega-menu-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
  margin-bottom: 10px;
  display: block;
}
.mega-menu-link {
  font-family: var(--font-body);
  font-size: 15px;
  color: #666;
  text-decoration: none;
  display: block;
  padding: 4px 0;
  transition: color 0.15s;
}
.mega-menu-link:hover { color: var(--black); }
.mega-menu-featured { display: flex; gap: 24px; }
.mega-menu-card { flex: 1; }
.mega-menu-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}
.mega-menu-card-label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: #999;
  margin-bottom: 2px;
}
.mega-menu-card-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--black);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.mega-menu-card-title:hover { text-decoration-thickness: 2px; }

/* Mobile hamburger */
.header-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header-hamburger svg { stroke: #fff; }
.site-header.scrolled .header-hamburger svg { stroke: var(--white); }

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  overflow-y: auto;
}
.mobile-menu-overlay.open { transform: translateX(0); }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--grey-light);
}
.mobile-menu-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
}
.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-close svg { stroke: var(--black); }
.mobile-menu-nav {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
}
.mobile-menu-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-menu-link svg { stroke: var(--black); }
.mobile-menu-link:last-child { border-bottom: none; }

/* Announcement bar */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.header-icon {
  position: relative;
  display: flex;
  align-items: center;
}
.header-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  transition: color var(--transition-interactive), stroke var(--transition-interactive);
}
.header-icon:hover svg { opacity: 0.7; }
.cart-badge {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--copper);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ===== HERO SLIDESHOW ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--black);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  animation: heroFadeIn 0.8s ease-out;
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.05) 100%
  );
}
.hero-content {
  position: absolute;
  bottom: clamp(60px, 10vh, 120px);
  left: clamp(24px, 5vw, 80px);
  color: #fff;
  z-index: 2;
}
.hero-tag {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
  opacity: 0.85;
}
.hero-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 90px);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.hero-btn {
  display: inline-block;
  padding: 16px 44px;
  background: #fff;
  color: var(--black);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background var(--transition-interactive), transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.hero-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.hero-btn:active { transform: translateY(0); }

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition-interactive), transform var(--transition-interactive);
}
.hero-dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* ===== SECTION SHARED ===== */
.section { padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px); }
.section-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 48px;
  letter-spacing: -0.3px;
}

/* ===== PRODUCT GRID (Homepage & Cart recommendations) ===== */
.products-section { background: var(--white); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.product-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.product-card {
  position: relative;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 12px rgba(255, 255, 255, 0.1);
}
.product-card-img {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  position: relative;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-card-img img {
  transform: scale(1.04);
}
.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-placeholder svg {
  width: 80%;
  height: 80%;
}
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  background: var(--black);
  color: #fff;
  z-index: 2;
}
.product-badge.sale {
  background: var(--copper);
}
.product-info {
  padding: 16px 20px 20px;
  background: #fff;
}
.product-name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}
.product-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.product-tag {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--grey-mid);
  background: var(--white);
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.2px;
}
.product-stars {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.product-stars svg {
  width: 13px;
  height: 13px;
  fill: var(--copper);
}
.product-review-count {
  font-size: 11px;
  color: var(--grey-mid);
  margin-left: 6px;
}

/* ===== PROMO GRID 2x2 ===== */
.promo-section { padding:  clamp(20px, 5vw, 80px); padding-bottom: clamp(60px, 8vw, 100px); }

.promo-inner {
  max-width: 85%;
  margin: 0 auto;
  padding: 0 20px;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.promo-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;


}
.promo-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.promo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.promo-card:hover .promo-card-img img {
  transform: scale(1.04);
}
.promo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(0,0,0,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 3vw, 40px);
  color: #ffffff;
}
.promo-card-tag {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.75;
  font-weight: 400;
}
.promo-card-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.15;
  margin-bottom: 16px;
}
.promo-btn {
  display: inline-block;
  align-self: flex-start;
  padding: 10px 28px;
  border: 1.5px solid #fff;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background var(--transition-interactive), color var(--transition-interactive), transform var(--transition-interactive);
}
.promo-btn:hover {
  background: #fff;
  color: var(--black);
  transform: translateY(-1px);
}

/* ===== COLLECTIONS PHOTO SCROLL ===== */
.collections-section {
  background: #ffffff;
  overflow: hidden;
}
/* ===== Collections — horizontal flex scroll ===== */
.collections-scroll {
  display: flex;
 flex-direction: column;
  gap: 2px;
  overflow-x: hidden;
  padding-bottom: 16px;
  scrollbar-width: auto;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.collections-scroll::-webkit-scrollbar { display: ; }
.collection-item {
  flex-shrink: 0;
  width: 25%;
  scroll-snap-align: start;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.collection-img-wrap {
  width: 450px;
  height: 450px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(#ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
}
.collection-img-wrap img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.collection-item:hover .collection-img-wrap img {
  transform: scale(1.06);
}
.collection-label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: var(--black);
  text-align: center;
}
.collection-count {
  font-family: var(--font-body);
  font-size: 12px;
  text-align: center;
  color: var(--grey-mid);
  margin-top: 3px;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.features-image {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}
.features-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.features-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: clamp(40px, 5vw, 64px) clamp(20px, 5vw, 80px);
}
.feature-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.feature-item:last-child {
  border-right: none;
}
.feature-item:first-child {
  border-top: none;
}
.feature-icon {
  font-size: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  font-family: var(--font-heading);
  margin: 0 auto 16px;
}
.feature-text {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.2px;
}

/* ===== MARQUEE ===== */
.marquee {
  background: var(--black);
  color: var(--white);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: flex;
  animation: marquee-scroll 25s linear infinite;
}
.marquee-content {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding-right: 60px;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== BRAND STATEMENT ===== */
.brand-section {
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: clamp(80px, 12vw, 160px) clamp(24px, 8vw, 160px);
}
.brand-heading {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.2;
  margin-bottom: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.5px;
}
.brand-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto 40px;
}
.brand-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background var(--transition-interactive), border-color var(--transition-interactive), transform var(--transition-interactive);
  max-width: max-content;
}
.brand-btn:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 80px) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: clamp(24px, 4vw, 60px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.footer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 29px;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
  opacity: 0.65;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-interactive), background var(--transition-interactive);
}
.footer-social:hover {
  border-color: var(--copper);
  background: rgba(184,115,51,0.12);
}
.footer-social svg {
  width: 16px; height: 16px;
  fill: #fff;
}
.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 13px;
  opacity: 0.65;
  transition: opacity var(--transition-interactive), color var(--transition-interactive);
}
.footer-links a:hover { opacity: 1; color: var(--copper); }

.footer-contact p {
  font-size: 13px;
  opacity: 0.65;
  line-height: 1.7;
}
.footer-contact a {
  opacity: 0.65;
  font-size: 13px;
  transition: opacity var(--transition-interactive), color var(--transition-interactive);
}
.footer-contact a:hover { opacity: 1; color: var(--copper); }

.newsletter-form {
  display: flex;
  margin-top: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color var(--transition-interactive);
}
.newsletter-form:focus-within { border-color: var(--copper); }
.newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 20px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-submit {
  padding: 12px 18px;
  color: #fff;
  display: flex;
  align-items: center;
  transition: color var(--transition-interactive);
}
.newsletter-submit:hover { color: var(--copper); }
.newsletter-submit svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: 0.5;
}
.footer-attribution {
  text-align: center;
  padding: 12px 0 20px;
  font-size: 11px;
  opacity: 0.4;
}
.footer-attribution a {
  transition: opacity var(--transition-interactive);
}
.footer-attribution a:hover { opacity: 0.8; }

/* =============================================================================
   PRODUCT PAGE STYLES
   ============================================================================= */
.product-page {
  padding-top: 80px;
}

/* ===== Combine-style: stacked images left, sticky info right ===== */
.product-layout-combine {
  display: grid;
  grid-template-columns:50% 50%;
  gap: 0;
  min-height: calc(100vh - 80px);
}

/* Left: 2-column image grid (Combine style) */
.product-images-grid {
  padding: clamp(10px, 2.5vw, 15px);
  padding-right: none;
  display: block;
  grid-template-columns: 1fr 0fr;
  gap: 8px;
  align-content: start;
}
.product-grid-img {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
}
.product-grid-img img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1/1;
  object-fit: contain;
  padding: 12px;
}
.product-grid-img--first {
  grid-column: 4 / 3;
}
.product-grid-img--first img {
  aspect-ratio: 4/3;
  padding: 20px;
}
.product-image-placeholder {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
}

/* Right: sticky info panel — stays while scrolling through images */
.product-info-sticky {
  position: sticky;
  top: 10px;
  height: fit-content;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  padding: clamp(24px, 3vw, 40px);
  scrollbar-width: none;
  scrollbar-color: #ddd transparent;
}
.product-info-sticky::-webkit-scrollbar { width: 4px; }
.product-info-sticky::-webkit-scrollbar-thumb { background: #fff; border-radius: 2px; }
.product-info-inner { max-width: none; }



/* Legacy gallery classes (keep for backward compat) */
.product-layout {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0;
  min-height: calc(100vh - 80px);
}
.product-gallery {
  padding: clamp(24px, 3vw, 40px);
  padding-right: 0;
}
.gallery-main {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  margin-bottom: 12px;
}
.gallery-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.product-info-panel {
  padding: clamp(24px, 3vw, 40px);
  position: sticky;
  top: 80px;
  height: fit-content;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

/* Vendor */
.pdp-vendor {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 12px;
}
.pdp-vendor:hover { color: var(--copper); }

/* Price compare */
.pdp-price-compare {
  text-decoration: line-through;
  opacity: 0.5;
  font-weight: 400;
  font-size: 18px;
  margin-right: 8px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--grey-mid);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a {
  transition: color var(--transition-interactive);
}
.breadcrumb a:hover {
  color: var(--black);
}
.breadcrumb-sep {
  font-size: 10px;
  opacity: 0.5;
}

/* Product Title & Price */
.pdp-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.pdp-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--black);
  margin-bottom: 16px;
}
.pdp-price-box {
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 16px 18px;
  margin-bottom: 16px;
  background: #ffffff;
}

.pdp-price-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #777;
  margin-bottom: 6px;
}
/* Ramka ceny */
.pdp-price {
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 16px 18px;
  max-width: 180px;      /* zawęź kartę */
  background: #ffffff;
}

/* Ramka wokół wariantów */
.variant-group {
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 1x 1px;
  margin-bottom: 16px;
  background: #ffffff;
}
@media (max-width: 768px) {
  
  .variant-group {
    max-width: 370px;
    margin-left: 1px;
    margin-right: a1pxuto;
  }
}
/* Stars */
.pdp-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 20px;
}
.pdp-stars svg {
  width: 20px;
  height: 20opx;
  fill: var(--copper);
}
.pdp-review-count {
  font-size: 13px;
  color: var(--grey-mid);
  margin-left: 8px;
}

/* Description */
.pdp-description {
  font-family: var(--font-heading);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 28px;
  font-weight: 300;
}

/* Variant Labels */
.variant-label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--black);
}

/* Color Swatches */
.color-swatches {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition-interactive), transform var(--transition-interactive);
  position: relative;
}
.color-swatch::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  transition: border-color var(--transition-interactive);
}
.color-swatch.active::after {
  border-color: var(--black);
}
.color-swatch:hover { transform: scale(1.1); }
.swatch-black { background: #1a1a1a; }
.swatch-graphite { background: #4a4a4a; }
.swatch-white { background: #e8e8e8; border-color: var(--grey-light); }

/* Wrapper wariantów – zostawiamy kartę */
.variant-group {
  /* nic tu nie zmieniamy, jeśli ramka już jest OK */
  {% for option in product.options_with_values %}
  <div class="variant-group">
    ...
  </div>

<div class="pdp-price-box">
  <p class="pdp-price-label">Cena</p>
  <div class="pdp-price">
    ...
  </div>
  
</div>

}
.pdp-price-box {
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 16px 18px;
  margin-bottom: 16px;
  background: #ffffff;
}

.pdp-price-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #777;
  margin-bottom: 6px;
}

.variant-group {
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 20px 18px;
  margin-bottom: 16px;
  background: #ffffff;
}

/* nagłówek typu "Wybierz szerokość" itp. */
.variant-label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

/* Pigułki wariantów jako „slider” */

.size-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.size-pill {
  flex: 0 0 auto;               /* nie rozciągaj na całą szerokość */
  min-width: 72px;              /* możesz zmienić */
  padding: 8px 14px;
  border-radius: 999px;
}

/* To samo dla kolorów (jeśli są w rzędzie) */

.color-swatches {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.color-swatch {
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .size-pills {
    justify-content: flex-start;   /* lewo, z przewijaniem */
  }
}

/* Size Pills */
.size-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}
.size-pill {
  padding: 10px 22px;
  border: 1.5px solid var(--grey-light);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--grey-mid);
  cursor: pointer;
  transition: border-color var(--transition-interactive), color var(--transition-interactive), background var(--transition-interactive);
}
.size-pill:hover {
  border-color: var(--black);
  color: var(--black);
}
.size-pill.active {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}

/* Quantity Stepper */
.quantity-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.quantity-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--grey-light);
  border-radius: 50px;
  overflow: hidden;
}
.qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  transition: background var(--transition-interactive);
}
.qty-btn:hover {
  background: var(--grey-light);
}
.qty-value {
  width: 44px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--black);
}

/* Add to Cart Button */
.add-to-cart {
  width: 100%;
  padding: 18px 40px;
  background: var(--black);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition-interactive), transform var(--transition-interactive), box-shadow var(--transition-interactive);
  margin-bottom: 32px;
}
.add-to-cart:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.add-to-cart:active {
  transform: translateY(0);
}

/* PDP Features Grid */
.pdp-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--grey-light);
}
.pdp-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pdp-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pdp-feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--black);
  fill: none;
  stroke-width: 1.5;
}
.pdp-feature-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: #555;
  line-height: 1.4;
}

/* Accordion */
.accordion {
  border-top: 1px solid var(--grey-light);
}
.accordion-item {
  border-bottom: 1px solid var(--grey-light);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: var(--black);
  cursor: pointer;
  transition: opacity var(--transition-interactive);
}
.accordion-trigger:hover {
  opacity: 0.7;
}
.accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}
.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--black);
  transition: transform 0.3s var(--ease-out);
}
.accordion-icon::before {
  width: 12px; height: 1.5px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.accordion-icon::after {
  width: 1.5px; height: 12px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.accordion-item.open .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.accordion-inner {
  padding-bottom: 20px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  font-weight: 300;
}
.accordion-inner ul {
  padding-left: 0;
}
.accordion-inner li {
  padding: 3px 0;
  position: relative;
  padding-left: 16px;
}
.accordion-inner li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-weight: 500;
}

/* Related Products */
.related-section {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--grey-light);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Product card compact variant (related, rec) */
.pc-info {
  padding: 16px 20px 20px;
  background: #fff;
}
.pc-name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}
.pc-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
}
.pc-stars {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.pc-stars svg {
  width: 13px;
  height: 13px;
  fill: var(--copper);
}
.pc-review-count {
  font-size: 11px;
  color: var(--grey-mid);
  margin-left: 6px;
}
.pc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.pc-tag {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--grey-mid);
  background: var(--grey-light);
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.2px;
}

/* =============================================================================
   COLLECTION PAGE STYLES
   ============================================================================= */

/* Hero Banner */
.collection-hero {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: var(--black);
}
.collection-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.collection-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.25) 50%,
    rgba(0,0,0,0.15) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.collection-hero-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.3px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.collection-hero-count {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  opacity: 0.7;
  letter-spacing: 0.5px;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 80px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: var(--white);
  gap: 16px;
  flex-wrap: wrap;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.filter-select {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 36px 10px 16px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 50px;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  transition: border-color var(--transition-interactive);
}
.filter-select:hover,
.filter-select:focus {
  border-color: var(--black);
  outline: none;
}

/* Grid Toggles */
.grid-toggles {
  display: flex;
  gap: 6px;
}
.grid-toggle-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-interactive), background var(--transition-interactive);
}
.grid-toggle-btn:hover {
  border-color: var(--black);
}
.grid-toggle-btn.active {
  background: var(--black);
  border-color: var(--black);
}
.grid-toggle-btn.active svg {
  stroke: #fff;
}
.grid-toggle-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--black);
  fill: none;
  stroke-width: 1.5;
}

/* Collection Section */
.collection-section {
  padding: clamp(32px, 5vw, 60px) clamp(20px, 5vw, 80px);
  background: var(--white);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: clamp(40px, 5vw, 64px);
}
.pagination-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  color: var(--black);
  border: 1px solid rgba(0,0,0,0.15);
  transition: background var(--transition-interactive), color var(--transition-interactive), border-color var(--transition-interactive);
}
.pagination-btn:hover {
  border-color: var(--black);
}
.pagination-btn.active {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}
.pagination-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* =============================================================================
   CART PAGE STYLES
   ============================================================================= */
.cart-page {
  padding-top: 72px;
}

.cart-header {
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 80px) 0;
}
.cart-header h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.3px;
}
.cart-header .cart-count {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey-mid);
  margin-top: 6px;
}

/* Free shipping bar */
.free-shipping-bar {
  margin: 24px clamp(20px, 5vw, 80px);
  padding: 14px 24px;
  background: var(--black);
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.free-shipping-bar svg {
  width: 20px;
  height: 20px;
  stroke: var(--copper);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* Cart layout */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(32px, 4vw, 60px);
  padding: 32px clamp(20px, 5vw, 80px) clamp(60px, 8vw, 100px);
}

/* Cart items */
.cart-items {
  display: flex;
  flex-direction: column;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto auto;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.cart-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.08);
}

.cart-item-img {
  width: 100px;
  height: 100px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--grey-light);
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-item-name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.2px;
}
.cart-item-variant {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--grey-mid);
}
.cart-item-unit-price {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--grey-mid);
  margin-top: 4px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 50px;
  overflow: hidden;
}
.cart-item-qty button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--black);
  transition: background var(--transition-interactive);
}
.cart-item-qty button:hover {
  background: var(--grey-light);
}
.cart-item-qty span {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  min-width: 32px;
  text-align: center;
}

.cart-item-total {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  min-width: 80px;
  text-align: right;
}

.cart-item-remove {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition-interactive);
}
.cart-item-remove:hover {
  background: var(--grey-light);
}
.cart-item-remove svg {
  width: 18px;
  height: 18px;
  stroke: var(--grey-mid);
  fill: none;
  stroke-width: 1.5;
}

/* Summary panel */
.cart-summary {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  padding: 32px;
  position: sticky;
  top: 104px;
  height: fit-content;
}
.cart-summary h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 14px;
}
.cart-summary-row .label {
  font-family: var(--font-body);
  color: var(--grey-mid);
}
.cart-summary-row .value {
  font-family: var(--font-heading);
  font-weight: 500;
}
.cart-summary-row.shipping .value {
  color: #2a7a2a;
  font-weight: 500;
}
.cart-summary-row.total {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 16px;
  margin-bottom: 24px;
}
.cart-summary-row.total .label {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--black);
}
.cart-summary-row.total .value {
  font-weight: 700;
  font-size: 20px;
}

.checkout-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--black);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  text-align: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-interactive), transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
#cartCheckoutForm { margin: 0; }
.checkout-btn:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.continue-shopping {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-mid);
  transition: color var(--transition-interactive);
}
.continue-shopping:hover {
  color: var(--black);
}

/* Cart Recommendations */
.cart-recommendations {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.cart-recommendations .section-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 36px;
  letter-spacing: -0.3px;
}
.rec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* =============================================================================
   ABOUT PAGE STYLES
   ============================================================================= */

/* About Hero */
.about-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 420px;
  max-height: 640px;
  overflow: hidden;
  background: var(--black);
}
.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.2) 40%,
    rgba(0,0,0,0.1) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 80px);
}
.about-hero-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(36px, 6vw, 68px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

/* About Sections */
.about-section {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
}

/* Two-column story */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-story-text h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 24px;
  letter-spacing: -0.3px;
  line-height: 1.15;
}
.about-story-text p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.8;
  color: rgba(17,17,17,0.7);
}
.about-story-img {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* Stats */
.about-stats {
  background: var(--black);
  color: #fff;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 60px);
  text-align: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.stat-label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
}

/* About Feature Icons */
.about-features {
  background: var(--grey-light);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
}
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  text-align: center;
}
.about-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.about-feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.about-feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
}
.about-feature-label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
}

/* =============================================================================
   CONTACT PAGE STYLES
   ============================================================================= */
.contact-page {
  padding-top: 72px;
}

.contact-hero {
  text-align: center;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px) clamp(40px, 5vw, 60px);
}
.contact-hero h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.contact-hero p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--grey-mid);
  margin-top: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  padding: 0 clamp(20px, 5vw, 80px) clamp(60px, 8vw, 100px);
  max-width: 1200px;
  margin: 0 auto;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  padding: 14px 18px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 4px;
  background: #fff;
  outline: none;
  transition: border-color var(--transition-interactive);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--black);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-mid);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit-btn {
  display: inline-block;
  align-self: flex-start;
  padding: 16px 40px;
  background: var(--black);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background var(--transition-interactive), transform var(--transition-interactive), box-shadow var(--transition-interactive);
  cursor: pointer;
  border: none;
}
.form-submit-btn:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Contact info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
}
.contact-info-text h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-info-text p,
.contact-info-text a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(17,17,17,0.65);
  line-height: 1.6;
}
.contact-info-text a {
  transition: color var(--transition-interactive);
}
.contact-info-text a:hover {
  color: var(--copper);
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.contact-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-interactive), background var(--transition-interactive);
}
.contact-social:hover {
  border-color: var(--copper);
  background: rgba(184,115,51,0.08);
}
.contact-social svg {
  width: 18px;
  height: 18px;
  fill: var(--black);
}

/* Map placeholder */
.contact-map {
  padding: 0 clamp(20px, 5vw, 80px) clamp(60px, 8vw, 100px);
}
.map-placeholder {
  width: 100%;
  height: 360px;
  background: var(--grey-light);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--grey-mid);
}
.map-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: var(--grey-mid);
  fill: none;
  stroke-width: 1.5;
}
.map-placeholder span {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Product page: dark header since background is light */
.template-product .site-header:not(.scrolled) {
  background: rgba(17,17,17,0.97);
}
.template-product .site-header:not(.scrolled) .nav-link,
.template-product .site-header:not(.scrolled) .nav-link--has-dropdown,
.template-product .site-header:not(.scrolled) .header-icon svg,
.template-product .site-header:not(.scrolled) .logo-text,
.template-product .site-header:not(.scrolled) .nav-link--home svg,
.template-product .site-header:not(.scrolled) .header-hamburger svg {
  color: var(--white);
  stroke: var(--white);
}

/* =============================================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================================
   CART DRAWER (slide-in from right)
   ============================================================================= */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  background: #fff;
  z-index: 3001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--grey-light);
}
.cart-drawer-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cart-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}
.cart-drawer-close svg { stroke: var(--black); }
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}
.cart-drawer-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.cart-drawer-item-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: var(--grey-light);
  border-radius: 4px;
  flex-shrink: 0;
}
.cart-drawer-item-info { flex: 1; }
.cart-drawer-item-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 4px;
}
.cart-drawer-item-variant {
  font-size: 12px;
  color: var(--grey-mid);
  margin-bottom: 4px;
}
.cart-drawer-item-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
}
.cart-drawer-item-qty {
  font-size: 12px;
  color: var(--grey-mid);
  margin-top: 2px;
}
.cart-drawer-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--grey-light);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
}
.cart-drawer-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--grey-light);
  display: flex;
  gap: 10px;
}
.cart-drawer-btn {
  flex: 1;
  display: block;
  padding: 14px 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.cart-drawer-btn--outline {
  background: transparent;
  border: 1.5px solid var(--black);
  color: var(--black);
}
.cart-drawer-btn--outline:hover {
  background: var(--black);
  color: #fff;
}
.cart-drawer-btn--primary {
  background: var(--black);
  color: #fff;
  width: 100%;
}
.cart-drawer-btn--primary:hover {
  background: var(--charcoal);
}

/* =============================================================================
   RESPONSIVE BREAKPOINTS
   ============================================================================= */

 @media (max-width: 1100px) {
  .product-layout-combine,
  .product-layout {
    grid-template-columns: 55% 45%;
  }
  .pdp-features {
    grid-template-columns: 1fr;
  }
 }

 @media (max-width: 960px) {
  /* Header */
  .header-nav { display: none; }
  .header-hamburger { display: flex; }
  .mega-menu { display: none; }

  /* Homepage */
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: repeat(2, 1fr); }
  .features-image img { height: 350px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Product page */
  .product-layout-combine,
  .product-layout { grid-template-columns: 1fr; }
  .product-images-grid { grid-template-columns: 1fr 1fr; padding-right: 16px; }
  .product-grid-img--first { grid-column: 1 / -1; }
  .product-info-sticky {
    position: static;
    max-height: none;
    overflow-y: visible;
  }
  .product-gallery { padding-right: clamp(24px, 4vw, 48px); }
  .product-info-panel {
    position: static;
    max-height: none;
    padding-left: clamp(24px, 4vw, 48px);
  }
  .pdp-features { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }

  /* Collection page */
  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-group { justify-content: space-between; }
  .grid-toggles { justify-content: flex-end; }

  /* Cart page */
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .rec-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 14px;
  }
  .cart-item-qty,
  .cart-item-total,
  .cart-item-remove {
    grid-column: 2;
  }

  /* About page */
  .about-story { grid-template-columns: 1fr; }
  .about-story.reversed { direction: ltr; }
  .about-story-img { max-height: 400px; }
  .about-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .about-features-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  /* Contact page */
  .contact-layout { grid-template-columns: 1fr; }
 }

 @media (max-width: 600px) {
  /* Header */
  .site-header { height: 64px; padding: 0 16px; }
  .logo-text { font-size: 24px; letter-spacing: 4px; }
  .header-actions { gap: 14px; }
  .header-icon svg { width: 24px; height: 24px; }

  /* Hero */
  .hero { height: 75vh; min-height: 580px; }
  .hero-content { bottom: 80px; left: 20px; right: 20px; }
  .hero-tag { font-size: 11px; }
  .hero-title { font-size: 32px; }
  .hero-btn { padding: 12px 28px; font-size: 11px; }

  /* Sections */
  .section { padding: 48px 16px; }
  .section-title { font-size: 26px; margin-bottom: 32px; }

  /* Product grid */
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-grid.cols-4 { grid-template-columns: 1fr 1fr; }
  .product-info { padding: 12px 14px 14px; }
  .product-name { font-size: 12px; }
  .product-price { font-size: 13px; }

  /* Promo grid */
  .promo-section { padding: 0 16px; padding-bottom: 20px; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-card-title { font-size: 24px; }
  .promo-card-overlay { padding: 24px; }
  .promo-btn { padding: 12px 28px; font-size: 11px; }

  /* Features section */
  .features-list { grid-template-columns: 1fr 1fr; }
  .feature-item { padding: 20px 16px; }
  .features-image img { height: 250px; }

  /* Collections scroll */
  .collections-section .section { padding-right: 10px; }

  /* Brand section */
  .brand-section { padding: 60px 20px; }
  .brand-heading { font-size: 26px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Product page */
  .product-page { padding-top: 60px; }
  .product-gallery { padding: 1px; }
  .gallery-thumbs { gap: 8px; }
  .product-info-panel { padding: 20px 16px 32px; }
  .pdp-title { font-size: 26px; }
  .pdp-price { font-size: 20px; }
  .pdp-features { grid-template-columns: 1fr; }
  .related-section { padding: 48px 16px; }
  .related-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pc-info { padding: 12px 14px 14px; }
  .pc-name { font-size: 12px; }
  .pc-price { font-size: 13px; }

  /* Collection page */
  .collection-hero { height: 220px; }
  .collection-hero-title { font-size: 28px; }
  .filter-bar { padding: 16px; }
  .filter-select { font-size: 11px; padding: 8px 30px 8px 14px; }
  .collection-section { padding: 24px 16px; }

  /* Cart page */
  .cart-header { padding: 32px 16px 0; }
  .cart-header h1 { font-size: 26px; }
  .free-shipping-bar { margin: 20px 16px; padding: 12px 16px; font-size: 12px; }
  .cart-layout { padding: 20px 16px 48px; gap: 24px; }
  .cart-item {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
    padding: 20px 0;
  }
  .cart-item-img { width: 80px; height: 80px; flex-shrink: 0; }
  .cart-item-details { flex: 1; min-width: 0; }
  .cart-item-qty { order: 3; }
  .cart-item-total { order: 4; flex: 1; text-align: right; }
  .cart-item-remove { order: 5; margin-left: auto; }
  .cart-item-name { font-size: 13px; }
  .cart-recommendations { padding: 48px 16px; }
  .rec-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* About page */
  .about-hero { height: 50vh; min-height: 320px; }
  .about-hero-overlay { padding: 24px 16px; }
  .about-hero-title { font-size: 32px; }
  .about-section { padding: 48px 16px; }
  .about-story { gap: 28px; }
  .about-story-text h2 { font-size: 24px; }
  .about-story-img img { aspect-ratio: 16/10; }
  .about-stats { padding: 48px 16px; }
  .about-stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-number { font-size: 48px; }
  .about-features { padding: 48px 16px; }
  .about-features-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Contact page */
  .contact-page { padding-top: 60px; }
  .contact-hero { padding: 40px 16px 24px; }
  .contact-hero h1 { font-size: 32px; }
  .contact-layout { padding: 0 16px 48px; gap: 32px; }
  .contact-map { padding: 0 16px 48px; }
  .map-placeholder { height: 240px; }
 }

    
  .product-grid-img {
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
   }

 .product-grid-img img {
  display: block;
  width: 100%;
  height: auto;
   }

/* Lightbox */

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

 .product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
 }

 .product-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  border: none;
  padding: 0;
  }

 .product-lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
 }

 .product-lightbox__image-wrapper {
  max-width: 80vw;
  max-height: 80vh;
 }

 .product-lightbox__image {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  border-radius: 8px;
  }

 .product-lightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
 }

 .product-lightbox__nav {
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
 }

 .product-lightbox__nav--prev {
  margin-right: 8px;
 }

 .product-lightbox__nav--next {
  margin-left: 8px;
 }

 @media (max-width: 768px) {
  .product-lightbox__content {
    max-width: 100vw;
    max-height: 100vh;
  }
 }

 .product-grid-img {
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
 }

 .product-grid-img img {
  display: block;
  width: 100%;
  height: auto;
 }

/* Lightbox */

 .img-modal[hidden] {
  display: none;
 } 

 .img-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
 }

 .img-modal__overlay {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(0, 0, 0, 0.75);
 }

 .img-modal__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
 }

 .img-modal__image {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 8px;
  display: block;
 }

 .img-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
 }

 .img-modal__nav {
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  }

 @media (max-width: 768px) {
  .img-modal__content {
    max-width: 100vw;
    max-height: 100vh;
  }
  .img-modal__image {
    max-width: 100vw;
    max-height: 80vh;
  }
 }

/* Przyciski w gridzie */

 .product-grid-img__btn {
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  display: block;
}

 .product-grid-img__btn img {
  display: block;
  width: 100%;
  height: 80vh;
 }

/* Mobile slider */

.gallery-mobile-controls {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.gallery-arrow {
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.gallery-progress {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: #e5e5e5;
  overflow: hidden;
}

.gallery-progress__bar {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: #111;
  transition: width 0.25s ease;
}

@media (max-width: 768px) {
  .product-images-grid[data-gallery] {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .product-images-grid[data-gallery] .gallery-track {
    display: flex;
    flex-wrap: nowrap;
  }

  .product-images-grid[data-gallery] .product-grid-img {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }

  .product-grid-img__btn img {
    width: 100%;
    height: 50vh;
    display: block;
  }
}



 @media (max-width: 768px) {
  .product-images-grid[data-gallery] {
    position: relative;
  }

  .product-images-grid[data-gallery] [data-gallery-item] {
    width: 100%;
    height: 85vh;
    display: block;
  }

  .gallery-mobile-controls {
    display: none;
  }
}
.pdp-qty-price-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 16px;
}

/* Ilość węższa, cena szerzej */
.pdp-qty-price-row .pdp-price {
  flex: 1 1 60%;
}

.pdp-qty-price-row .quantity-row {
  flex: 0 0 40%;
}



/* Na mobile, jeśli chcesz znowu jeden pod drugim:
@media (max-width: 480px) {
  .pdp-qty-price-row {
    flex-direction: column;
  }
}
*/

.home-seo {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}

.home-seo__title {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.home-seo__lead {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 8px;
}

.home-seo__more p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 6px;
}

.home-seo__toggle {
  margin-top: 8px;
  border: none;
  background: none;
  color: #111;
  font-size: 0.9rem;
  text-decoration: underline;
  cursor: pointer;
}
.product-card--combine {
  background: #f5f5f5;
  border-radius: 18px;
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card__image-link {
  display: block;
}

.product-card__image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 4 / 5;
}

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

.product-card__image {
  overflow: hidden;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

.product-card:hover .product-card__image {
  transform: scale(1.04);
}
.product-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #111;
  color: #fff;
}

.product-card__badge--sale {
  background: #e53935;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-card__price {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.product-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  line-height: 1.3;
}

.product-card__title:hover {
  text-decoration: underline;
}

.product-card__rating {
  margin-top: 2px;
}

.product-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.product-card__pill {
  border-radius: 999px;
  border: 1px solid #ddd;
  padding: 3px 10px;
  font-size: 0.75rem;
  color: #555;
}

/* Kolory */

.product-card__colors {
  margin-top: 10px;
  border-top: 1px solid #eee;
  padding-top: 8px;
}

.product-card__colors-label {
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.product-card__color-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

.product-card__color-dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #f5f5f5;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
}

.product-card__color-dot.is-active {
  border-color: #111;
}

.product-card__colors-name {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}

.promo-header {
  max-width: 1200x;
  margin: 0 auto 32px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}



.promo-header__line {
  flex: 1;
  height: 1px;
  background: #e5e5e5;
}

.promo-header__center {
  text-align: center;
}

.promo-title {
  font-size: 20px;
  font-weight: 600;
}

.promo-subtitle {
  font-size: 13px;
  color: #777;
}

.promo-link {
  font-size: 13px;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid #111;
  text-decoration: none;
  color: #111;
}
.promo-section {
  background: #ffffff;
  padding: 32px 0 20px;
}

.promo-inner {
  max-width: 85%;
  margin: 0 auto;
  padding: 0 20px;
}
/* header – minimalna wersja */
.csection-header {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto auto;
  align-items: center;
  column-gap: 24px;
  margin-bottom: 28px;
}

.csection-header__line {
  height: 1px;
  background: #e5e5e5;
}

.csection-header__center {
  text-align: left;
}

.csection-header__title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.csection-header__subtitle {
  font-size: 13px;
  color: #777;
  margin: 4px 0 0;
}

.csection-header__link {
  font-size: 13px;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid #111;
  text-decoration: none;
  color: #111;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .promo-inner {
    max-width: 100%;
    padding: 0 16px;
  }

  .csection-header {
    grid-template-columns: 1fr;
    row-gap: 10px;
    text-align: center;
  }

  .csection-header__center {
    text-align: center;
  }

  .csection-header__link {
    justify-self: center;
  }
}