/* Variables */
:root {
  --bg: #faf8f5;
  --logo-zone-bg: #faf8f5; /* fundal pentru zona logo / imagini transparente */
  --bg-card: #ffffff;
  --text: #2c2825;
  --text-muted: #6b6560;
  --accent: #8b6914;
  --accent-light: #c9a227;
  --border: #e8e2db;
  --font-sans: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(44, 40, 37, 0.08);
  --shadow-hover: 0 12px 40px rgba(44, 40, 37, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--logo-zone-bg);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  background: transparent;
  padding: 0.25rem 0.6rem;
  border-radius: 8px;
}

.logo-img {
  height: 100px;
  width: auto;
  max-width: 400px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  margin-left: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-small {
  background: var(--text);
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-small:hover {
  background: var(--text-muted);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-hero {
  margin-left: 0.5rem;
}

@media (max-width: 700px) {
  .btn-hero { margin-left: 0; margin-top: 0.5rem; display: inline-block; }
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.btn-product-whatsapp {
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  flex: 1;
  min-width: 0;
  text-align: center;
}

/* Buton fix WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 70vh;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--text);
}

.hero-content h1 span {
  color: var(--accent);
  font-style: italic;
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  max-width: 420px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Produse hero – grid 2x2 cu zodii */
.hero-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 280px;
}

.hero-product {
  display: block;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.hero-product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.hero-product-img-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.hero-product img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  aspect-ratio: 3/4;
}

.hero-zodiac-layer {
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%);
  width: 28%;
  max-width: 56px;
  pointer-events: none;
  z-index: 2;
}

.hero-zodiac-layer img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.hero-zodiac--hoodie {
  left: 60%;
  top: 42%;
  width: 18%;
  max-width: 36px;
}

.hero-product--1 { grid-column: 1; grid-row: 1; }
.hero-product--2 { grid-column: 2; grid-row: 1; }
.hero-product--3 { grid-column: 1; grid-row: 2; }
.hero-product--4 { grid-column: 2; grid-row: 2; }

.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-stats strong {
  color: var(--accent);
  display: block;
  font-size: 1.25rem;
}

/* Stats bar */
.stats-bar {
  background: var(--text);
  color: #fff;
  padding: 1rem 1.5rem;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat {
  font-size: 0.9rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.1rem;
  color: var(--accent-light);
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: center;
}

.filter-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-group-block {
  width: 100%;
}

.filter-group-block .filter-label {
  width: 100%;
  margin-bottom: 0.25rem;
}

.filter-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  padding: 0.4rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 999px;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}

.chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.product-count {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

/* Bluze section */
.bluze-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.bluze-section h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 0.5rem;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin: 0 0 2.5rem;
}

.bluze-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  width: 100%;
  background: linear-gradient(165deg, #e8e4df 0%, #d9d4ce 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.mockup-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
}

.product-image-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Zodie pe card – landing (bluză centrat, hanorac la buzunar) */
.zodiac-layer-card {
  position: absolute;
  left: 50%;
  top: 39%;
  transform: translate(-50%, -50%);
  width: 32%;
  max-width: 72px;
  pointer-events: none;
  z-index: 2;
}

.zodiac-layer-card img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.product-card--hoodie .zodiac-layer-card {
  left: 63%;
  top: 43%;
  width: 18%;
  max-width: 42px;
}

.mockup-frame .product-image-placeholder {
  position: absolute;
  inset: 0.6rem;
  border-radius: 4px;
}

.product-image-placeholder {
  position: absolute;
  inset: 0;
}

.product-color-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 0.25rem;
}

.product-color-block {
  aspect-ratio: 3/4;
  width: 100%;
  border-radius: var(--radius) var(--radius) 0 0;
}

.product-info {
  padding: 1.25rem;
}

.product-color-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.color-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.5);
}


.product-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.product-price {
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 1rem;
  color: var(--accent);
}

/* About */
.about-section {
  background: linear-gradient(180deg, var(--border) 0%, var(--bg) 100%);
  padding: 4rem 1.5rem;
}

.about-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 1rem;
}

.about-content p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.about-content ul {
  text-align: left;
  display: inline-block;
}

.about-content li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.about-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Testimoniale */
.testimonials-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--border) 100%);
}

.testimonials-section h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  text-align: center;
  margin: 0 0 0.5rem;
}

.testimonials-section .section-sub {
  text-align: center;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  margin: 0;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.testimonial-text {
  font-style: italic;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.testimonial-author {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* CTA / Newsletter */
.cta-section {
  max-width: 560px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}

.cta-section p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
}

/* Footer */
.footer {
  text-align: center;
  padding: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}

/* Modal produs mare + mărimi S–XL */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.modal.modal-open {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.modal-box {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.12);
}

.modal-image-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(165deg, #e8e4df 0%, #d9d4ce 100%);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.mockup-frame-modal {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Layer zodiac peste produs în modal – fundal transparent, poziționat mai jos */
.zodiac-layer {
  position: absolute;
  left: 50%;
  top: 39%;
  transform: translate(-50%, -50%);
  width: 38%;
  max-width: 120px;
  pointer-events: none;
  z-index: 2;
}

/* Hoodie – zodia centrată pe zona buzunarului, puțin mai jos, mică */
.modal--hoodie .zodiac-layer {
  left: 63%;
  top: 43%;
  width: 17.5%;
  max-width: 55px;
}

.zodiac-layer img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
}

/* Berbec și Vărsător – puțin mai mari */
.zodiac-layer img[src*="zodie-berbec"],
.zodiac-layer img[src*="zodie-varsator"] {
  transform: scale(1.32);
}

/* Selector model zodiacal */
.modal-zodiac-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.zodiac-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4rem;
  border: 2px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color 0.2s, background 0.2s;
}

.zodiac-chip img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.zodiac-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.zodiac-chip.active {
  border-color: var(--accent);
  background: rgba(139, 105, 20, 0.08);
  color: var(--accent);
}

.modal-details {
  padding: 1.5rem;
  width: 100%;
}

.modal-details h3 {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
}

.modal-product-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
}

.modal-product-price {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  margin: 0 0 1rem;
}

.modal-size-label {
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0 0 0.5rem;
}

.modal-sizes {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.size-chip {
  width: 48px;
  height: 48px;
  border: 2px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.size-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.size-chip.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.modal-cta {
  width: 100%;
  text-align: center;
  padding: 0.85rem 1.25rem;
}

/* ========== MOBILE & TABLET – UX impecabil ========== */

/* Hamburger: ascuns pe desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover { background: rgba(0,0,0,0.06); }
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem 1.25rem 3.5rem;
    min-height: auto;
    gap: 2rem;
  }

  .hero-content {
    order: 1;
  }

  .hero-content h1 {
    font-size: clamp(1.85rem, 6vw, 2.5rem);
    margin-bottom: 0.75rem;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .hero-stats {
    justify-content: center;
    margin-bottom: 1.25rem;
    gap: 1.25rem;
  }

  .hero-content .btn {
    min-height: 48px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .btn-hero {
    margin-left: 0;
    margin-top: 0.5rem;
    display: inline-flex;
  }

  .hero-visual {
    order: 0;
  }

  .hero-products {
    max-width: 240px;
    margin: 0 auto;
    gap: 0.6rem;
  }

  .bluze-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Meniu mobil: overlay full-screen deasupra totului */
.nav-close {
  display: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-close {
    display: flex;
    position: absolute;
    top: max(0.75rem, env(safe-area-inset-top));
    right: max(1rem, env(safe-area-inset-right));
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--text);
    cursor: pointer;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-close:hover {
    background: rgba(0, 0, 0, 0.12);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    width: 100dvw;
    height: 100vh;
    height: 100dvh;
    min-height: -webkit-fill-available;
    background: #faf8f5;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .nav-menu-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu .nav-close {
    flex-shrink: 0;
    margin: max(0.75rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) 0 auto;
  }

  .nav-menu .nav-links {
    flex-shrink: 0;
    flex-direction: column;
    gap: 0;
    text-align: center;
    width: 100%;
    max-width: 320px;
    margin: 2rem auto 0;
    padding: 0 1rem;
  }

  .nav-menu .nav-wa {
    flex-shrink: 0;
    margin: 1.5rem auto 0;
    padding: 0 1rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    text-align: center;
    width: 100%;
    max-width: 320px;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .nav-links li:first-child {
    border-top: 1px solid var(--border);
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    min-height: 52px;
    color: var(--text);
    -webkit-tap-highlight-color: transparent;
  }

  .nav-links a:hover {
    background: rgba(139, 105, 20, 0.06);
  }

  .nav-wa {
    min-height: 52px;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    border-radius: 999px;
    width: 100%;
    max-width: 320px;
    justify-content: center;
    box-sizing: border-box;
  }

  .nav-menu .nav-wa {
    margin-bottom: max(1.5rem, env(safe-area-inset-bottom));
  }

  .nav .logo-img {
    height: 72px;
    max-width: 320px;
  }

  .bluze-section {
    padding: 2.5rem 1.25rem;
  }

  .bluze-section h2 {
    font-size: 1.5rem;
  }

  .section-sub {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }

  .stats-bar {
    padding: 1rem 1.25rem;
  }

  .stats-inner {
    gap: 0.75rem;
  }

  .stat {
    font-size: 0.85rem;
  }

  .testimonials-section {
    padding: 2.5rem 1.25rem;
  }

  .testimonials-section h2 {
    font-size: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .testimonial-card {
    padding: 1.25rem;
  }

  .cta-section {
    padding: 2.5rem 1.25rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }
}

/* Telefoane mici – touch targets & spacing */
@media (max-width: 600px) {
  body {
    -webkit-font-smoothing: antialiased;
  }

  .nav {
    padding: 0.4rem 1rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .nav .logo {
    padding: 0.2rem 0.5rem;
  }

  .hero {
    padding: 2rem 1rem 3rem;
  }

  .hero-products {
    max-width: 200px;
    gap: 0.5rem;
  }

  .bluze-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-card {
    border-radius: 10px;
  }

  .product-info {
    padding: 0.75rem;
  }

  .product-info h3 {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .product-price {
    font-size: 1rem;
  }

  .btn-product-whatsapp {
    min-height: 44px;
    padding: 0.6rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 10px;
  }

  .filters {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Modal: full-bleed pe mobile, scroll ușor */
  .modal {
    padding: 0;
    align-items: flex-end;
  }

  .modal-box {
    max-height: 92vh;
    max-height: calc(100dvh - env(safe-area-inset-bottom));
    border-radius: var(--radius) var(--radius) 0 0;
    padding-bottom: env(safe-area-inset-bottom);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-close {
    width: 44px;
    height: 44px;
    top: max(0.75rem, env(safe-area-inset-top));
    right: max(0.75rem, env(safe-area-inset-right));
    font-size: 1.75rem;
    background: rgba(0,0,0,0.1);
    -webkit-tap-highlight-color: transparent;
  }

  .modal-details {
    padding: 1.25rem 1.25rem 1.5rem;
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
  }

  .modal-details h3 {
    font-size: 1.25rem;
  }

  .modal-size-label,
  .modal-zodiac-picker + .modal-cta {
    margin-top: 1rem;
  }

  .modal-sizes {
    gap: 0.6rem;
  }

  .size-chip {
    min-width: 48px;
    min-height: 48px;
    width: 48px;
    height: 48px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    -webkit-tap-highlight-color: transparent;
  }

  .modal-zodiac-picker {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }

  .zodiac-chip {
    min-height: 56px;
    padding: 0.5rem;
    border-radius: 10px;
    -webkit-tap-highlight-color: transparent;
  }

  .zodiac-chip span {
    font-size: 0.65rem;
    line-height: 1.2;
    display: block;
  }

  .zodiac-chip img {
    width: 28px;
    height: 28px;
  }

  .modal-cta {
    min-height: 52px;
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
    margin-top: 1rem;
    border-radius: 10px;
    -webkit-tap-highlight-color: transparent;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 0.6rem;
  }

  .newsletter-form input {
    min-height: 48px;
    font-size: 16px; /* evită zoom pe iOS */
    padding: 0.875rem 1rem;
    border-radius: 10px;
  }

  .newsletter-form button {
    min-height: 48px;
    padding: 0.875rem;
    font-size: 1rem;
    border-radius: 10px;
  }

  .footer {
    padding: 1.25rem 1rem;
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
    font-size: 0.85rem;
  }

  .footer p {
    margin: 0.35rem 0;
  }

  .footer a {
    padding: 0.25rem 0;
    display: inline-block;
  }

  /* WhatsApp float: safe area pentru notch & home indicator */
  .whatsapp-float {
    bottom: max(1.25rem, env(safe-area-inset-bottom));
    right: max(1.25rem, env(safe-area-inset-right));
    width: 56px;
    height: 56px;
    -webkit-tap-highlight-color: transparent;
  }
}

/* Extra mic (sub 380px) – text și padding ajustat */
@media (max-width: 380px) {
  .hero-content h1 {
    font-size: 1.65rem;
  }

  .bluze-section h2,
  .testimonials-section h2,
  .cta-section h2 {
    font-size: 1.35rem;
  }

  .hero-products {
    max-width: 160px;
  }
}
