/* ========================================
   REBEL FLAMES — Global Styles
   Dark luxury candle brand from Puerto Rico
   ======================================== */

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

:root {
  --black: #0a0a0a;
  --deep-black: #050505;
  --gold: #c9a84c;
  --gold-light: #e4cc7a;
  --gold-dim: #8a7233;
  --ember: #5c2a0e;
  --ember-glow: #8b3a1a;
  --cream: #f5efe3;
  --warm-gray: #9a9590;
  --text-light: #d4cfc7;
  --card-bg: rgba(201, 168, 76, 0.04);
  --card-border: rgba(201, 168, 76, 0.12);
  --card-border-hover: rgba(201, 168, 76, 0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--deep-black);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  transition: background 0.3s ease;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--cream);
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  background: radial-gradient(ellipse at 50% 80%, rgba(92, 42, 14, 0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 40%),
              var(--deep-black);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(201, 168, 76, 0.015) 2px, rgba(201, 168, 76, 0.015) 4px);
  pointer-events: none;
}

.hero-flame {
  width: 40px;
  height: 60px;
  margin-bottom: 2rem;
  position: relative;
}

.hero-flame::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 70%, var(--gold) 0%, var(--ember-glow) 40%, transparent 70%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  filter: blur(6px);
  animation: flicker 3s ease-in-out infinite alternate;
}

@keyframes flicker {
  0% { opacity: 0.7; transform: scaleY(1) scaleX(1); }
  25% { opacity: 1; transform: scaleY(1.05) scaleX(0.95); }
  50% { opacity: 0.85; transform: scaleY(0.98) scaleX(1.02); }
  75% { opacity: 1; transform: scaleY(1.03) scaleX(0.97); }
  100% { opacity: 0.8; transform: scaleY(1) scaleX(1); }
}

.hero-tagline {
  font-family: 'Syne', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero h1 span {
  display: block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--warm-gray);
  max-width: 480px;
  font-weight: 300;
}

.hero-location {
  margin-top: 3rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--deep-black);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.65rem 1.5rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dim) 50%, transparent 100%);
  margin: 0 auto;
  max-width: 200px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--warm-gray);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 8rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--deep-black) 0%, rgba(92, 42, 14, 0.08) 50%, var(--deep-black) 100%);
}

.manifesto-text {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.35rem;
  line-height: 1.9;
  font-weight: 300;
  color: var(--text-light);
  font-style: italic;
}

.manifesto-text strong {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

/* ===== PRODUCTS GRID ===== */
.products {
  padding: 6rem 2rem 8rem;
}

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

/* ===== PRODUCT CARD ===== */
.product-card {
  background: linear-gradient(180deg, var(--card-bg) 0%, rgba(10, 10, 10, 0.9) 100%);
  border: 1px solid var(--card-border);
  border-radius: 2px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.4s ease, transform 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-4px);
}

.product-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* CSS Candle Visual */
.candle-visual {
  width: 80px;
  height: 130px;
  position: relative;
  margin: 0 auto 1.5rem;
}

.candle-jar {
  width: 80px;
  height: 90px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  border-radius: 4px 4px 6px 6px;
  position: absolute;
  bottom: 0;
  border: 1px solid rgba(201, 168, 76, 0.15);
  overflow: hidden;
}

.candle-jar::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 1px;
  background: var(--gold-dim);
}

.candle-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Syne', sans-serif;
  font-size: 0.35rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  white-space: nowrap;
}

.candle-wax {
  width: 64px;
  height: 8px;
  background: linear-gradient(180deg, #f5efe3 0%, #e8ddd0 100%);
  border-radius: 2px 2px 0 0;
  position: absolute;
  bottom: 82px;
  left: 8px;
}

.candle-wick {
  width: 1px;
  height: 12px;
  background: #333;
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
}

.candle-flame {
  width: 12px;
  height: 20px;
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
}

.candle-flame::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 70%, var(--gold) 0%, var(--ember-glow) 40%, transparent 70%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  filter: blur(3px);
  animation: flicker 3s ease-in-out infinite alternate;
}

.candle-flame-glow {
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: 95px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  animation: glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  0% { opacity: 0.5; transform: translateX(-50%) scale(0.9); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.product-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.product-essence {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--warm-gray);
  margin-bottom: 1.25rem;
}

.product-card p.product-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.product-price {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.product-card .btn {
  margin-top: auto;
  width: 100%;
}

/* ===== COLLECTION BUNDLE ===== */
.bundle-section {
  padding: 4rem 2rem 8rem;
}

.bundle-card {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(92, 42, 14, 0.15) 0%, rgba(201, 168, 76, 0.06) 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 2px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bundle-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.bundle-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid var(--gold-dim);
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.bundle-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.bundle-card .bundle-sub {
  color: var(--warm-gray);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.bundle-pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.bundle-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--cream);
}

.bundle-original {
  font-size: 1.1rem;
  color: var(--warm-gray);
  text-decoration: line-through;
}

.bundle-save {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== DETAILS SECTION ===== */
.details {
  padding: 6rem 2rem;
  background: rgba(201, 168, 76, 0.02);
}

.details-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.detail-block h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.detail-block p, .detail-block li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
}

.detail-block ul {
  list-style: none;
}

.detail-block ul li::before {
  content: '\2014';
  color: var(--gold-dim);
  margin-right: 0.5rem;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-hero {
  padding: 10rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.product-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  background: radial-gradient(ellipse at 50% 60%, rgba(92, 42, 14, 0.2) 0%, transparent 60%);
  border: 1px solid var(--card-border);
  border-radius: 2px;
}

.product-visual .candle-visual {
  transform: scale(2);
}

.product-info h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.product-info .product-essence {
  margin-bottom: 1.5rem;
}

.product-info .product-price {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.product-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 2rem;
}

.product-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.product-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.product-meta-value {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cream);
}

.scent-notes {
  margin-bottom: 2rem;
}

.scent-notes h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.scent-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.scent-tag {
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ===== STORY PAGE ===== */
.story-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 80%, rgba(92, 42, 14, 0.2) 0%, transparent 60%),
              var(--deep-black);
}

.story-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.story-hero h1 span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.story-section h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.story-section p {
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

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

.story-quote {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--deep-black) 0%, rgba(92, 42, 14, 0.1) 50%, var(--deep-black) 100%);
}

.story-quote blockquote {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
  color: var(--text-light);
}

.story-quote blockquote strong {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

/* ===== CLOSING / CTA ===== */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 50%, rgba(92, 42, 14, 0.15) 0%, transparent 50%),
              var(--deep-black);
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.closing h2 span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.closing p {
  font-size: 1.1rem;
  color: var(--warm-gray);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ===== ORDER CONFIRMED ===== */
.confirmed-hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem;
  background: radial-gradient(ellipse at 50% 60%, rgba(92, 42, 14, 0.2) 0%, transparent 60%),
              var(--deep-black);
}

.confirmed-check {
  width: 80px;
  height: 80px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: check-pop 0.5s ease-out;
}

@keyframes check-pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.confirmed-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 1rem;
}

.confirmed-hero p {
  font-size: 1.1rem;
  color: var(--warm-gray);
  max-width: 500px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

/* ===== FOOTER ===== */
footer {
  padding: 4rem 2rem 3rem;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-col p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.6;
  font-weight: 300;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.06);
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(154, 149, 144, 0.5);
}

/* ===== RELATED PRODUCTS ===== */
.related-products {
  padding: 6rem 2rem;
  background: rgba(201, 168, 76, 0.02);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== FADE IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .details-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-hero {
    grid-template-columns: 1fr;
    padding: 8rem 1.5rem 4rem;
    gap: 2rem;
  }

  .product-visual {
    min-height: 280px;
  }

  .manifesto { padding: 5rem 1.5rem; }
  .manifesto-text { font-size: 1.15rem; }
  .products { padding: 4rem 1.5rem 5rem; }
  .details { padding: 4rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }

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

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

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

  .bundle-card {
    padding: 2rem 1.5rem;
  }
}
