/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
p,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---- VARIABLES (pastel vintage) ---- */
:root {
  --bg: #fdf7f2;
  --bg-alt: #f7edf6;
  --text: #2b211f;
  --muted: #8b716b;
  --accent: #d5a4a8;
  --accent-soft: #f0cfd4;
  --border-soft: #ecd8cf;
  --card-bg: #fffaf7;

  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.07);

  --font-heading: "Playfair Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---- GLOBAL ---- */
body {
  font-family: var(--font-body);
  color: var(--text);
  background: radial-gradient(circle at top left, #f8f0f7, var(--bg) 40%, #f9f1e9);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(253, 247, 242, 0.96);
  border-bottom: 1px solid rgba(236, 216, 207, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(213, 164, 168, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #f9edf5, #f3e3dd);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.main-nav a {
  padding: 0.35rem 0.2rem;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width 0.18s ease-out;
}

.main-nav a:hover::after {
  width: 100%;
}

/* ---- HERO ---- */
.hero {
  padding-block: 3.8rem 3.2rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 3vw + 1.3rem, 3.2rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 32rem;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.16s ease-out,
    box-shadow 0.16s ease-out,
    background 0.16s ease-out,
    border-color 0.16s ease-out,
    color 0.16s ease-out;
}

.btn.primary {
  background: var(--text);
  color: #fdf7f2;
  box-shadow: var(--shadow-soft);
}

.btn.primary:hover {
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(139, 113, 107, 0.35);
}

.btn.ghost:hover {
  border-color: var(--text);
  background: rgba(247, 230, 238, 0.85);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
  font-size: 0.77rem;
  color: var(--muted);
}

.hero-meta span {
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(236, 216, 207, 0.9);
  background: rgba(255, 250, 247, 0.8);
}

/* ---- HERO IMAGES & CAPTION (DOAR POZA PRINCIPALA) ---- */
.hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  max-width: 100%;
  margin-left: 1.2rem;   /* spațiu față de textul din stânga */
  padding-right: 1.2rem; /* spațiu față de marginea din dreapta a containerului */
}

/* imaginea principală – mare, în dreapta, cu margini soft */
.hero-photo-main {
  width: 420px;
  max-width: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #f7f0ea;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.85),  /* contur foarte soft, aproape blur */
    0 22px 45px rgba(0, 0, 0, 0.08);      /* shadow moale pentru edges */
}

.hero-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* nu mai folosim poza secundară în hero */
.hero-photo-secondary {
  display: none !important;
}

/* caption sub poză – aici pui textul "Curated Drops..." în HTML */
.hero-note {
  position: static;
  margin-top: 1.4rem;
  max-width: 380px;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

/* dacă mai există .hero-note .tag în HTML, îl ascundem */
.hero-note .tag {
  display: none;
}

/* un mic stil în caz că vrei titlu separat în hero-note (opțional în HTML) */
.hero-note-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

/* ---- SECTIONS ---- */
.section-alt {
  background: radial-gradient(circle at top right, #f6e5f4, #fbf5f1 45%, #fdf7f2);
}

.section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.section-header p {
  color: var(--muted);
}

/* ---- PRODUCT GRID (HOME) ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 0.7rem;
  border: 1px solid rgba(236, 216, 207, 0.95);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition:
    transform 0.16s ease-out,
    box-shadow 0.16s ease-out,
    border-color 0.16s ease-out;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(213, 164, 168, 0.7);
}

.product-image {
  position: relative;
  border-radius: 14px;
  background: #f3dde7;
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badge {
  position: absolute;
  left: 10px;
  top: 10px;
  border-radius: 999px;
  background: rgba(43, 33, 31, 0.9);
  color: #fdf2f6;
  font-size: 0.7rem;
  padding: 0.28rem 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.badge-soft {
  background: rgba(250, 234, 241, 0.96);
  color: #4b2b35;
}

.product-content h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.product-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.7rem;
}

.price {
  font-weight: 600;
  font-size: 0.95rem;
}

.link {
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* textul cu "All prices are in EUR..." – mai mult spațiu dedesubt */
.section-note {
  margin-top: 1.2rem;
  margin-bottom: 3rem; /* SPAȚIU CLAR ÎNAINTE DE URMĂTOAREA SEcȚIUNE */
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---- STORY ---- */
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.story-grid p + p {
  margin-top: 0.7rem;
}

.story-card {
  background: rgba(255, 250, 247, 0.98);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.04);
}

.story-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8rem;
  color: var(--accent);
}

/* ---- STEPS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
}

.step {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--border-soft);
}

.step-number {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.step h3 {
  margin-top: 0.3rem;
  margin-bottom: 0.4rem;
  font-family: var(--font-heading);
  font-size: 1.02rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---- CONTACT & NEWSLETTER ---- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.newsletter-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.input-row {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
  margin-top: 0.2rem;
}

input[type="email"] {
  flex: 1;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
  background: rgba(255, 250, 247, 0.95);
}

input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(213, 164, 168, 0.35);
}

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.contact-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--border-soft);
}

.contact-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.7rem;
}

.contact-list li {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.contact-list span {
  font-weight: 500;
}

.contact-card a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-note {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---- FOOTER ---- */
.site-footer {
  border-top: 1px solid rgba(236, 216, 207, 0.9);
  background: rgba(253, 247, 242, 0.96);
  padding-block: 0.9rem;
  margin-top: 3rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- PRODUCT DETAIL PAGES (GALERIE) ---- */
.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

/* tot blocul de galerie e limitat, nu full-page */
.product-gallery {
  max-width: 460px;
}

/* imagine principală – chenar clar */
.product-gallery-main {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #f0e4de;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  margin-bottom: 0.75rem;
  height: 360px;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* thumbnails */
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 0.5rem;
}

.product-gallery-thumbs img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #f0e4de;
  cursor: pointer;
  transition:
    transform 0.12s ease-out,
    border-color 0.12s ease-out,
    box-shadow 0.12s ease-out;
}

.product-gallery-thumbs img:hover {
  transform: translateY(-1px);
  border-color: #c08a7d;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.product-detail-price {
  font-weight: 600;
  margin: 1rem 0 0.4rem;
}

.product-detail-meta ul {
  margin: 0.6rem 0 1rem;
  padding-left: 1.1rem;
}

.product-detail-meta li {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  list-style: disc;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-card {
    margin-left: 0;
    padding-right: 0;
    align-items: center;
  }

  .hero-photo-main {
    width: min(360px, 100%);
  }

  .hero-note {
    max-width: 100%;
    text-align: left;
  }

  .story-grid,
  .contact-grid,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    max-width: 100%;
  }

  .product-gallery-main {
    height: 320px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    font-size: 0.85rem;
    flex-wrap: wrap;
  }

  .hero {
    padding-block: 2.6rem 2.7rem;
  }

  .section {
    padding-block: 3rem;
  }

  .input-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .product-image {
    height: 190px;
  }

  .product-gallery-main {
    height: 280px;
  }
}

