/* ============================================
   BRAHG — Global Stylesheet
   Design: Ultra-minimal, blanc + cyan subtil
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

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

:root {
  --white: #ffffff;
  --off-white: #f9f9f8;
  --light-gray: #f2f2f0;
  --border: #e8e8e5;
  --text: #111111;
  --text-secondary: #888888;
  --text-light: #aaaaaa;
  --cyan: #00C8D7;
  --cyan-light: #e0f8fb;
  --cyan-dark: #008fa0;
  --black: #0a0a0a;
  --font-main: 'Outfit', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-main);
}

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity var(--transition);
}

.logo:hover .logo-img {
  opacity: 0.7;
}

.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 1rem;
}

.main-nav ul {
  display: flex;
  gap: 3.5rem;
}

.main-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 2px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}

.btn-icon:hover {
  background: var(--light-gray);
  color: var(--cyan);
}

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

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--cyan);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
}

.cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

/* ---- SEARCH BAR ---- */
.search-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: white;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
}

.search-bar.open {
  transform: translateY(0);
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  background: transparent;
  letter-spacing: 0.05em;
}

.search-bar input::placeholder {
  color: var(--text-light);
}

.search-close {
  color: var(--text-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition);
}

.search-close:hover {
  color: var(--text);
}

/* ---- POPUP NEWSLETTER ---- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 1rem;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background: white;
  max-width: 560px;
  width: 100%;
  display: flex;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(30px) scale(0.97);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-overlay.show .popup-box {
  transform: translateY(0) scale(1);
}

.popup-image {
  width: 220px;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}

.popup-content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.popup-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
}

.popup-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
}

.popup-title strong {
  display: block;
  font-weight: 400;
  color: var(--cyan);
}

.popup-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.popup-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  outline: none;
  font-family: var(--font-main);
  font-size: 0.85rem;
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--off-white);
}

.popup-form input:focus {
  border-color: var(--cyan);
  background: white;
}

.btn-cyan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--cyan);
  color: white;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

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

.popup-skip {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-light);
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.popup-skip:hover {
  color: var(--text-secondary);
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-light);
  transition: color var(--transition);
}

/* ---- HERO ---- */
.hero {
  margin-top: 90px;
  height: calc(100vh - 70px);
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.hero:hover .hero-media img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.15) 50%,
    rgba(0,0,0,0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 4rem;
  max-width: 700px;
  color: white;
}

.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--cyan);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 400px;
  line-height: 1.7;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(255,255,255,0.7);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

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

.btn-outline-white svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  transition: transform var(--transition);
}

.btn-outline-white:hover svg {
  transform: translateX(4px);
}

/* ---- SECTIONS COMMUNES ---- */
.section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.75rem;
  font-weight: 300;
  max-width: 500px;
  line-height: 1.7;
}

/* ---- GRILLE PRODUITS ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--light-gray);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.75rem;
  background: var(--text);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-badge.new {
  background: var(--cyan);
}

.product-card-actions {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  padding: 0.75rem;
  display: flex;
  gap: 0.5rem;
  transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-actions {
  bottom: 0;
}

.btn-add-cart {
  flex: 1;
  padding: 0.75rem;
  background: white;
  color: var(--text);
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.btn-add-cart:hover {
  background: var(--text);
  color: white;
  border-color: var(--text);
}

.btn-add-cart.added {
  background: var(--cyan);
  color: white;
  border-color: var(--cyan);
}

.product-card-info {
  padding: 1.25rem 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.product-name {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.product-color {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-top: 0.2rem;
}

.product-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

/* ---- BANNIÈRE COLLECTION ---- */
.collection-banner {
  background: var(--cyan-light);
  padding: 0;
  overflow: hidden;
}

.collection-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.collection-banner-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.collection-banner-tag {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.collection-banner-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--cyan-dark);
}

.collection-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
}

.collection-banner-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
  max-width: 400px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  background: var(--text);
  color: white;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  align-self: flex-start;
  transition: var(--transition);
}

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

.btn-dark svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}

.btn-dark:hover svg {
  transform: translateX(4px);
}

.collection-banner-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.collection-banner-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- SHOOTING SECTION ---- */
.shooting-section {
  padding: 6rem 0;
  overflow: hidden;
  background: var(--off-white);
}

.shooting-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.shooting-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 3rem;
}

.shooting-item {
  overflow: hidden;
  position: relative;
}

.shooting-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

.shooting-item:hover img {
  transform: scale(1.04);
}

.shooting-item:first-child {
  grid-row: span 2;
  height: 600px;
}

.shooting-item:not(:first-child) {
  height: 290px;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--black);
  color: #ccc;
  padding: 5rem 2rem 2rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #222;
}

.footer-logo {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--cyan);
}

.footer-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: #888;
  max-width: 280px;
  font-weight: 300;
}

.footer-col-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li a {
  font-size: 0.82rem;
  color: #888;
  font-weight: 300;
  transition: color var(--transition);
}

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

.footer-newsletter-text {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.footer-newsletter-form {
  display: flex;
  border: 1px solid #333;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-main);
  font-size: 0.82rem;
  color: white;
}

.footer-newsletter-form input::placeholder {
  color: #555;
}

.footer-newsletter-form button {
  padding: 0.8rem 1.25rem;
  background: var(--cyan);
  color: white;
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.footer-newsletter-form button:hover {
  background: var(--cyan-dark);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.75rem;
  color: #555;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: var(--transition);
  font-size: 0.75rem;
}

.footer-social a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ---- CART PAGE ---- */
.page-hero {
  margin-top: 90px;
  padding: 4rem 2rem 2rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--text);
}

.cart-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.cart-item-img {
  width: 100px;
  height: 120px;
  object-fit: cover;
  background: var(--light-gray);
}

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.cart-item-color {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text);
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--text);
  color: white;
  border-color: var(--text);
}

.qty-val {
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 600;
  text-align: right;
}

.btn-remove {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: var(--text-light);
  cursor: pointer;
  letter-spacing: 0.05em;
  text-decoration: underline;
  background: none;
  border: none;
  font-family: var(--font-main);
  transition: color var(--transition);
}

.btn-remove:hover {
  color: #cc0000;
}

.cart-summary {
  background: var(--off-white);
  padding: 2rem;
  position: sticky;
  top: 90px;
}

.cart-summary-title {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
}

.cart-summary-row.total {
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  border-top: 1px solid var(--border);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
}

.cart-summary-row.discount {
  color: var(--cyan);
}

.btn-checkout {
  width: 100%;
  padding: 1rem;
  background: var(--text);
  color: white;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: var(--transition);
}

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

.cart-empty {
  text-align: center;
  padding: 6rem 2rem;
}

.cart-empty svg {
  width: 60px;
  height: 60px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 1;
  margin: 0 auto 1.5rem;
}

.cart-empty-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.cart-empty-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ---- FABRICATION PAGE ---- */
.fab-hero {
  margin-top: 90px;
  padding: 6rem 2rem;
  background: var(--off-white);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.fab-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.fab-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.fab-story-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.fab-story-text p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 300;
}

.fab-story-text p strong {
  color: var(--text);
  font-weight: 500;
}

.fab-story-img {
  overflow: hidden;
}

.fab-story-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fab-story-img:hover img {
  transform: scale(1.03);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.video-card {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--light-gray);
  overflow: hidden;
  cursor: pointer;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.video-card:hover img {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.video-card:hover .video-overlay {
  background: rgba(0,0,0,0.45);
}

.play-btn {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}

.video-card:hover .play-btn {
  transform: scale(1.1);
  background: var(--cyan);
}

.play-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--text);
  margin-left: 3px;
  transition: fill var(--transition);
}

.video-card:hover .play-btn svg {
  fill: white;
}

.tiktok-cta {
  margin-top: 4rem;
  padding: 3rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.tiktok-text h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.tiktok-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.btn-tiktok {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  background: var(--text);
  color: white;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-tiktok:hover {
  background: var(--cyan);
}

/* ---- COLLECTION PAGE ---- */
.collection-page-header {
  background: var(--off-white);
  padding: 5rem 2rem 3rem;
  margin-top: 90px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.collection-page-section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* ---- DIVIDER ---- */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- TOAST ---- */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--text);
  color: white;
  padding: 1rem 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 340px;
}

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

.toast-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .collection-banner-inner {
    grid-template-columns: 1fr;
  }
  .collection-banner-images {
    height: 300px;
  }
  .fab-story {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .hero-content {
    padding: 0 1.5rem 3rem;
  }
  .shooting-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .shooting-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    height: 300px;
  }
  .shooting-item:not(:first-child) {
    height: 200px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-item {
    grid-template-columns: 80px 1fr auto;
  }
  .popup-image {
    display: none;
  }
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  .tiktok-cta {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 4rem 1.25rem;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .collection-banner-content {
    padding: 3rem 1.5rem;
  }
}
