/* ============================================================
   THE PROVOCATIVES — Dark Editorial E-Commerce Stylesheet
   ============================================================ */

/* ---------- Google Fonts (loaded via link tag in HTML) ---------- */

/* ---------- CSS Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---------- Root / Global ---------- */
html {
  scroll-behavior: smooth;
}

body {
  background: #0E0B08;
  color: #F0EAE0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  min-height: 100vh;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #0E0B08;
}

::-webkit-scrollbar-thumb {
  background: #6B1A1A;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #8B2A2A;
}

/* Firefox scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: #6B1A1A #0E0B08;
}

/* Selection */
::selection {
  background: #6B1A1A;
  color: #F0EAE0;
}

::-moz-selection {
  background: #6B1A1A;
  color: #F0EAE0;
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(14, 11, 8, 0.98), rgba(14, 11, 8, 0.85) 70%, transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  transition: background 0.4s;
}

.navbar.scrolled {
  background: rgba(14, 11, 8, 0.98);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.navbar-left {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

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

.navbar-center img {
  max-height: 45px;
}

.navbar-right {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

/* Nav links */
.navbar-left a,
.navbar-right a {
  color: #C8BBA8;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Cormorant Garamond', Georgia, serif;
  transition: color 0.3s;
}

.navbar-left a:hover,
.navbar-right a:hover {
  color: #F0EAE0;
}

/* Cart button */
.cart-btn {
  position: relative;
  background: none;
  border: 1px solid #C8BBA8;
  color: #C8BBA8;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: all 0.3s;
}

.cart-btn:hover {
  border-color: #6B1A1A;
  color: #F0EAE0;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #6B1A1A;
  color: #F0EAE0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 4rem;
}

.hero-logo {
  width: 80px;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: #F0EAE0;
}

.hero-title .italic {
  font-style: italic;
  color: #C8BBA8;
}

.hero-tagline {
  font-size: 1.15rem;
  color: #C8BBA8;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 440px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* Primary button */
.btn-primary {
  background: #6B1A1A;
  color: #F0EAE0;
  border: none;
  padding: 1rem 2.5rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #8B2A2A;
  transform: translateY(-2px);
}

/* Ghost button */
.btn-ghost {
  background: transparent;
  color: #C8BBA8;
  border: 1px solid #C8BBA8;
  padding: 1rem 2.5rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: #F0EAE0;
  color: #F0EAE0;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: #F0EAE0;
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  color: #C8BBA8;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Hero image */
.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #0E0B08 0%, transparent 30%);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, #0E0B08 0%, transparent 40%);
}


/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee {
  background: #0E0B08;
  border-top: 1px solid rgba(107, 26, 26, 0.3);
  border-bottom: 1px solid rgba(107, 26, 26, 0.3);
  padding: 1.2rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  color: #6B1A1A;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0 2rem;
  white-space: nowrap;
}

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


/* ============================================================
   COLLECTION SECTION
   ============================================================ */
.collection {
  padding: 6rem 4rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  margin-bottom: 1rem;
  color: #F0EAE0;
}

.section-subtitle {
  text-align: center;
  color: #C8BBA8;
  font-size: 1rem;
  margin-bottom: 4rem;
  font-weight: 300;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}


/* ============================================================
   MAGAZINE CARD
   ============================================================ */
.magazine-card {
  background: rgba(240, 234, 224, 0.03);
  border: 1px solid rgba(200, 187, 168, 0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}

.magazine-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(107, 26, 26, 0.15);
}

/* Card image */
.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

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

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

/* Card badge */
.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #6B1A1A;
  color: #F0EAE0;
  padding: 0.3rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

/* Coming soon overlay */
.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 11, 8, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.coming-soon-overlay img {
  width: 60px;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.coming-soon-overlay span {
  color: #C8BBA8;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Card body */
.card-body {
  padding: 1.5rem;
}

.card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #F0EAE0;
}

.card-issue {
  font-size: 0.8rem;
  color: #6B1A1A;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}

.card-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: #F0EAE0;
  margin-bottom: 1rem;
  display: block;
}

/* Card tags */
.card-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.card-tags span {
  font-size: 0.7rem;
  color: #C8BBA8;
  border: 1px solid rgba(200, 187, 168, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Add to cart button */
.btn-add-cart {
  width: 100%;
  background: transparent;
  border: 1px solid #6B1A1A;
  color: #C8BBA8;
  padding: 0.8rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s;
}

.btn-add-cart:hover {
  background: #6B1A1A;
  color: #F0EAE0;
}

.btn-add-cart.added {
  background: #2a4a2a;
  border-color: #2a4a2a;
  color: #F0EAE0;
}

.btn-add-cart:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-add-cart:disabled:hover {
  background: transparent;
  color: #C8BBA8;
}

.btn-add-cart.sold-out {
  opacity: 0.5;
  border-color: rgba(200, 187, 168, 0.2);
  cursor: not-allowed;
}

.card-badge.badge-sold-out {
  background: rgba(200, 187, 168, 0.15);
  color: #C8BBA8;
}


/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  padding: 8rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, #0E0B08, #120E0A, #0E0B08);
}

.about-logo {
  width: 60px;
  margin: 0 auto 2rem;
  opacity: 0.7;
  display: block;
}

.about-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: #F0EAE0;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  position: relative;
  padding: 0 2.5rem;
}

.about-quote::before {
  content: '\201C';
  font-size: 3rem;
  color: #6B1A1A;
  position: absolute;
  top: -0.5rem;
  left: 0;
  line-height: 1;
}

.about-quote::after {
  content: '\201D';
  font-size: 3rem;
  color: #6B1A1A;
  position: absolute;
  bottom: -1rem;
  right: 0;
  line-height: 1;
}

.about-text {
  color: #C8BBA8;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  font-weight: 300;
  font-size: 1.05rem;
}

/* Pillars */
.about-pillars {
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.pillar {
  text-align: center;
}

.pillar-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: #F0EAE0;
  margin-bottom: 0.5rem;
}

.pillar-line {
  width: 30px;
  height: 1px;
  background: #6B1A1A;
  margin: 0 auto;
}


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 6rem 4rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.step {
  text-align: center;
}

.step-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  color: rgba(107, 26, 26, 0.3);
  margin-bottom: 1rem;
}

.step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: #F0EAE0;
  margin-bottom: 0.5rem;
}

.step-desc {
  color: #C8BBA8;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
}

/* Shipping bar */
.shipping-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background: rgba(240, 234, 224, 0.03);
  border: 1px solid rgba(200, 187, 168, 0.1);
  padding: 1.2rem 2rem;
  border-radius: 4px;
  max-width: 700px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.shipping-bar span {
  font-size: 0.85rem;
  color: #C8BBA8;
  letter-spacing: 1px;
}

.shipping-bar .separator {
  color: #6B1A1A;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid rgba(200, 187, 168, 0.1);
  padding: 3rem 4rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

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

.footer-left img {
  width: 30px;
  opacity: 0.7;
}

.footer-left span {
  font-size: 0.8rem;
  color: #C8BBA8;
}

.footer-center {
  display: flex;
  gap: 2rem;
}

.footer-center a {
  color: #C8BBA8;
  font-size: 0.8rem;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.footer-center a:hover {
  color: #F0EAE0;
}

.footer-right {
  text-align: right;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(107, 26, 26, 0.6);
}


/* ============================================================
   SIDEBAR OVERLAY
   ============================================================ */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 11, 8, 0.7);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.sidebar-overlay.active {
  opacity: 1;
  pointer-events: all;
}


/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  background: #121010;
  border-left: 1px solid rgba(200, 187, 168, 0.1);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  transform: translateX(0);
}

/* Sidebar header */
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(200, 187, 168, 0.1);
}

.sidebar-header h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: #F0EAE0;
}

.close-btn {
  background: none;
  border: none;
  color: #C8BBA8;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #F0EAE0;
}

.back-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
}

.back-btn:hover {
  opacity: 0.7;
}

/* Cart items */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(200, 187, 168, 0.05);
}

.cart-item-image {
  width: 70px;
  height: 95px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

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

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  color: #F0EAE0;
  margin-bottom: 0.25rem;
}

.cart-item-season {
  font-size: 0.75rem;
  color: #C8BBA8;
  margin-bottom: 0.5rem;
}

.cart-item-price {
  color: #F0EAE0;
  font-size: 1rem;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #6B1A1A;
  cursor: pointer;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  transition: color 0.3s;
}

.cart-item-remove:hover {
  color: #F0EAE0;
}

/* Quantity controls */
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.qty-btn {
  background: none;
  border: 1px solid rgba(200, 187, 168, 0.2);
  color: #C8BBA8;
  width: 26px;
  height: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.qty-btn:hover {
  border-color: #6B1A1A;
  color: #F0EAE0;
}

/* Cart summary */
.cart-summary {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(200, 187, 168, 0.1);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #C8BBA8;
}

.summary-row.total {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: #F0EAE0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(200, 187, 168, 0.1);
  margin-top: 0.5rem;
}

/* Checkout button */
.btn-checkout {
  width: 100%;
  background: #6B1A1A;
  color: #F0EAE0;
  border: none;
  padding: 1rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.4s;
}

.btn-checkout:hover {
  background: #8B2A2A;
}

/* Cart empty state */
.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: #C8BBA8;
}

.cart-empty p {
  margin-bottom: 0.5rem;
}


/* ============================================================
   CHECKOUT SIDEBAR
   ============================================================ */
.checkout-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  background: #121010;
  border-left: 1px solid rgba(200, 187, 168, 0.1);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.checkout-sidebar.active {
  transform: translateX(0);
}

/* Checkout form */
.checkout-form {
  padding: 2rem;
  flex: 1;
  overflow-y: auto;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  color: #C8BBA8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.form-group input {
  width: 100%;
  background: rgba(240, 234, 224, 0.05);
  border: 1px solid rgba(200, 187, 168, 0.15);
  color: #F0EAE0;
  padding: 0.8rem 1rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  border-radius: 2px;
  transition: border-color 0.3s;
  outline: none;
  box-sizing: border-box;
}

.form-group input:focus {
  border-color: #6B1A1A;
}

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

/* Stripe info */
.stripe-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(240, 234, 224, 0.03);
  border: 1px solid rgba(200, 187, 168, 0.1);
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.stripe-info svg {
  color: #6B1A1A;
  flex-shrink: 0;
}

.stripe-info span {
  font-size: 0.8rem;
  color: #C8BBA8;
}

/* Stripe button */
.btn-stripe {
  width: 100%;
  background: #6B1A1A;
  color: #F0EAE0;
  border: none;
  padding: 1.2rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s;
}

.btn-stripe:hover {
  background: #8B2A2A;
}

/* Checkout total bar */
.checkout-total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-top: 1px solid rgba(200, 187, 168, 0.1);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: #F0EAE0;
}

/* Checkout order summary */
.checkout-order-summary {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(200, 187, 168, 0.1);
}

/* Form input error */
.input-error {
  border-color: #6B1A1A !important;
  box-shadow: 0 0 0 1px rgba(107, 26, 26, 0.3);
}

/* Cart item remove position */
.cart-item-remove {
  align-self: flex-start;
  margin-top: 0.25rem;
  font-size: 1.2rem;
}


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

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


/* ============================================================
   RESPONSIVE — Tablet (≤ 968px)
   ============================================================ */
@media (max-width: 968px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 8rem 2rem 3rem;
    text-align: center;
    align-items: center;
  }

  .hero-tagline {
    margin: 0 auto 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    height: 60vh;
    order: -1;
  }

  .hero-image::before {
    background: linear-gradient(180deg, #0E0B08 0%, transparent 30%);
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-pillars {
    gap: 2rem;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-left {
    justify-content: center;
  }

  .footer-center {
    justify-content: center;
  }

  .footer-right {
    text-align: center;
  }

  .navbar {
    padding: 1rem 1.5rem;
  }

  .navbar-left,
  .navbar-right {
    gap: 1rem;
  }

  .collection,
  .about,
  .how-it-works {
    padding: 4rem 2rem;
  }

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

  .shipping-bar {
    flex-direction: column;
    gap: 0.75rem;
  }
}


/* ============================================================
   RESPONSIVE — Mobile (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  .navbar-left a:not(:first-child),
  .navbar-right a {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .about-pillars {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-center {
    flex-direction: column;
    gap: 0.75rem;
  }
}
