:root {
  /* Bazy */
  --color-cream:      #EAE0D5; /* Boutique Cashmere */
  --color-warm-white: #F3ECE3; /* Boutique Warm Linen */
  --color-blush:      #DFD2C4; /* Boutique Soft Blush Rose */

  /* Akcenty złota */
  --color-gold:       #C9A86C;
  --color-gold-dark:  #9A7A45;
  --color-gold-light: #E2C99A;

  /* Neutralne */
  --color-charcoal:   #1C1C1C;
  --color-warm-gray:  #6B6560;
  --color-light-gray: #D2C8BC; /* Boutique Warm Gray border */

  /* Typografia */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Raleway', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-padding: clamp(64px, 10vw, 120px);
  --container-max:   1200px;
  --container-pad:   clamp(20px, 5vw, 60px);

  /* Przejścia */
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background-color: var(--color-warm-white);
  background-image: 
    linear-gradient(to right, rgba(201, 168, 108, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(201, 168, 108, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  color: var(--color-charcoal);
  line-height: 1.7;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 12px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background-color: var(--color-charcoal);
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--color-charcoal);
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: 0;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-charcoal);
}

.btn-outline {
  display: inline-block;
  padding: 13px 38px;
  background-color: transparent;
  color: var(--color-charcoal);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--color-charcoal);
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: 0;
}

.btn-outline:hover {
  background-color: var(--color-charcoal);
  color: var(--color-cream);
}

.divider-gold {
  width: 48px;
  height: 1px;
  background-color: var(--color-gold);
  margin: 20px 0;
}

.divider-gold.center {
  margin: 20px auto;
}

/* ── HEADER ────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(243, 236, 227, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-light-gray);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(28, 28, 28, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo img {
  height: 35px;
  width: auto;
}

/* Desktop nav */
.nav-desktop ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-desktop a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  position: relative;
  padding-bottom: 2px;
}

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

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

.nav-cta {
  font-size: 0.68rem;
  padding: 10px 28px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--color-charcoal);
  transition: var(--transition-smooth);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  background-color: var(--color-warm-white);
  border-top: 1px solid var(--color-light-gray);
}

.nav-mobile.open {
  max-height: 400px;
}

.nav-mobile ul {
  list-style: none;
  padding: 24px var(--container-pad) 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-mobile-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-charcoal);
}

.nav-mobile .btn-primary.nav-mobile-link {
  color: var(--color-cream);
  text-align: center;
  display: block;
  margin-top: 10px;
}

.nav-mobile .btn-primary.nav-mobile-link:hover {
  color: var(--color-charcoal);
  background-color: transparent;
}

@media (max-width: 900px) {
  .nav-desktop, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-mobile { display: block; }
}

/* ── HERO ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px; /* kompensacja fixed header */
  padding-bottom: 100px; /* safety padding for scroll indicator and action buttons */
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(243, 236, 227, 0.88) 0%,
    rgba(234, 224, 213, 0.60) 50%,
    rgba(28, 28, 28, 0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: clamp(60px, 8vh, 100px);
  padding-bottom: clamp(60px, 8vh, 100px);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 600;
  color: var(--color-charcoal);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--color-gold-dark);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 500;
  color: var(--color-charcoal);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* Hide on shorter viewports or mobile to prevent overlap with CTA buttons */
@media (max-height: 780px), (max-width: 900px) {
  .hero-scroll-indicator {
    display: none;
  }
}

.scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--color-gold));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ── VALUES BAR ────────────────────────────────────────────────────── */
.values-bar {
  background-color: var(--color-charcoal);
  padding: 32px 0;
  position: relative;
  z-index: 2;
}

.values-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 32px;
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.value-icon {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.value-divider {
  width: 1px;
  height: 32px;
  background-color: rgba(201, 168, 108, 0.3);
}

@media (max-width: 700px) {
  .value-divider { display: none; }
  .values-inner  { flex-direction: column; gap: 8px; }
}

/* ── SECTION HEADER shared ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--color-charcoal);
  letter-spacing: 0.01em;
}

.section-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-warm-gray);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.8;
}

/* ── PRODUCTS ───────────────────────────────────────────────────────── */
.products {
  padding: var(--section-padding) 0;
  background-color: var(--color-warm-white);
}

.products-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 10vw, 100px);
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* Alternating layout for even cards */
.product-card:nth-child(even) {
  direction: rtl;
}
.product-card:nth-child(even) > * {
  direction: ltr;
}

/* Product gallery */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-main-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background-color: var(--color-blush);
}

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

.product-main-img-wrapper:hover .product-main-img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--color-charcoal);
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  z-index: 10;
}

.product-badge--eco {
  background-color: var(--color-gold-dark);
}

.product-thumbnails {
  display: flex;
  gap: 8px;
}

.thumb-btn {
  flex: 1;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1.5px solid transparent;
  cursor: pointer;
  background: none;
  padding: 0;
  transition: border-color 0.25s ease;
  position: relative;
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease;
}

.thumb-btn:hover { border-color: var(--color-gold-light); }
.thumb-btn.active { border-color: var(--color-gold); }

/* Product info */
.product-info {
  padding-top: 16px;
}

.product-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--color-charcoal);
  margin: 8px 0 16px;
  line-height: 1.1;
}

.product-description {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-warm-gray);
  line-height: 1.85;
  margin-bottom: 24px;
}

.product-features {
  list-style: none;
  margin-bottom: 32px;
}

.product-features li {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-charcoal);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-light-gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-features li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-gold);
  flex-shrink: 0;
}

.product-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-charcoal);
  letter-spacing: 0.02em;
}

/* Responsive products */
@media (max-width: 860px) {
  .product-card,
  .product-card:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 24px;
  }
}

/* ── ABOUT ─────────────────────────────────────────────────────────── */
.about {
  padding: var(--section-padding) 0;
  background-color: var(--color-cream);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.about-image-col {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 3/4;
  background-color: var(--color-blush);
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
}

.about-img-wrapper:hover img {
  transform: scale(1.03);
}

/* Dekoracyjna offset ramka */
.about-img-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--color-gold);
  z-index: 0;
}

.about-title {
  text-align: left;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.about-title em {
  font-style: italic;
  color: var(--color-gold-dark);
}

.about-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-warm-gray);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-legal-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
  padding: 16px 20px;
  background-color: var(--color-warm-white);
  border-left: 2px solid var(--color-gold);
}

.about-legal-note svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-legal-note span {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--color-warm-gray);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-img-frame { display: none; }
}

/* ── QUOTE SECTION ─────────────────────────────────────────────────── */
.quote-section {
  background-color: var(--color-charcoal);
  padding: clamp(60px, 10vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtelna faktura tła */
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 108, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.brand-quote {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.quote-mark {
  display: block;
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--color-gold);
  line-height: 0.6;
  margin-bottom: 24px;
  opacity: 0.7;
}

.brand-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-cream);
  line-height: 1.5;
}

.brand-quote em {
  font-style: italic;
  color: var(--color-gold-light);
}

.quote-author {
  display: block;
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ── GALLERY ───────────────────────────────────────────────────────── */
.gallery {
  padding: var(--section-padding) 0;
  background-color: var(--color-warm-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 10px;
  grid-auto-flow: dense;
}

.gallery-item--tall  { grid-row: span 2; }
.gallery-item--wide  { grid-column: span 2; }

.gallery-item {
  overflow: hidden;
  margin: 0;
}

.gallery-btn {
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: var(--color-blush);
  overflow: hidden;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(28, 28, 28, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.gallery-overlay span {
  color: white;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.gallery-btn:hover img            { transform: scale(1.06); }
.gallery-btn:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 10, 10, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] { display: none; }

.lightbox-img-wrapper {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrapper img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.lightbox-close  { top: 20px; right: 20px; font-size: 1rem; }
.lightbox-prev   { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next   { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-charcoal);
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item--wide { grid-column: span 1; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-item--tall { grid-row: span 1; }
}

/* ── CONTACT ───────────────────────────────────────────────────────── */
.contact {
  padding: var(--section-padding) 0;
  background-color: var(--color-cream);
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact h2 { 
  text-align: center; 
}
.contact h2 em { 
  font-style: italic; 
  color: var(--color-gold-dark); 
}

.contact-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-warm-gray);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 500px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-detail-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold-dark);
  flex-shrink: 0;
}

.contact-detail-item a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-charcoal);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.contact-detail-item a:hover {
  border-color: var(--color-gold);
}

.contact-social {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-social-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--color-light-gray);
  background-color: transparent;
  color: var(--color-charcoal);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  border-radius: 0;
}

.social-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.social-link:hover {
  background-color: var(--color-charcoal);
  color: var(--color-cream);
  border-color: var(--color-charcoal);
}

/* ── FOOTER ────────────────────────────────────────────────────────── */
.site-footer {
  background-color: var(--color-charcoal);
  color: var(--color-cream);
  padding: clamp(60px, 8vw, 90px) 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201, 168, 108, 0.2);
}

.footer-brand img {
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(234, 224, 213, 0.65);
  line-height: 1.7;
}

.footer-nav-title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(234, 224, 213, 0.7);
  transition: color 0.25s ease;
}

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

.footer-social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 108, 0.35);
  color: rgba(234, 224, 213, 0.7);
  transition: var(--transition-smooth);
}

.footer-social-icon svg {
  width: 17px;
  height: 17px;
}

.footer-social-icon:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-charcoal);
}

.footer-hashtag {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(234, 224, 213, 0.4);
  letter-spacing: 0.1em;
}

/* Footer bottom */
.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(234, 224, 213, 0.4);
  letter-spacing: 0.05em;
}

@media (max-width: 1000px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ── REVEAL ANIMATIONS ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── SOPHISTICATED QUIET-LUXURY PLACEHOLDERS ───────────────────────── */
/* SVG candle icon fallbacks when image source is empty or missing */
.product-main-img-wrapper,
.thumb-btn,
.about-img-wrapper,
.gallery-btn {
  background: radial-gradient(circle at center, var(--color-warm-white) 0%, var(--color-blush) 100%);
  position: relative;
}

.product-main-img-wrapper::before,
.about-img-wrapper::before,
.gallery-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23C9A86C" stroke-width="1.1"><path d="M12 2c.5 1.5.5 2.5 0 3.5m0 3.5c-2.2 0-4 1.8-4 4v7h8v-7c0-2.2-1.8-4-4-4zM9 20h6" stroke-linecap="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.6;
  z-index: 1;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.thumb-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23C9A86C" stroke-width="1.1"><path d="M12 2c.5 1.5.5 2.5 0 3.5m0 3.5c-2.2 0-4 1.8-4 4v7h8v-7c0-2.2-1.8-4-4-4zM9 20h6" stroke-linecap="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.6;
  z-index: 1;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.product-main-img-wrapper.img-loaded::before,
.about-img-wrapper.img-loaded::before,
.gallery-btn.img-loaded::before,
.thumb-btn.img-loaded::before {
  opacity: 0;
  visibility: hidden;
}

.product-main-img-wrapper img,
.about-img-wrapper img,
.gallery-btn img,
.thumb-btn img {
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth), opacity 0.5s ease;
}

/* ── PRODUCT ZOOM OVERLAY ──────────────────────────────────────────── */
.product-main-img-wrapper {
  cursor: zoom-in;
}

.product-zoom-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(28, 28, 28, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
  pointer-events: none;
}

.product-zoom-overlay span {
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 20px;
  background-color: rgba(28, 28, 28, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.product-main-img-wrapper:hover .product-zoom-overlay {
  opacity: 1;
}
