@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Montserrat:wght@300;400;500&family=Cinzel:wght@400;600&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --bg: #f6f0f2;
  --bg-soft: #fbf8f9;
  --rose: #d8bcc3;
  --rose-deep: #b98796;
  --mauve: #9b6c79;
  --wine: #6c3240;
  --heading: #4a2331;
  /* Deep Burgundy / Plum for Headings */
  --text: #4d3a40;
  --text-soft: #7c6870;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(83, 47, 57, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --transition: all 0.35s ease;
  --max: 1280px;
}

.newsletter-grid h2 {
  line-height: 0.95;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', serif;
  font-variant-numeric: lining-nums;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* iOS Safari blue icon fixes */
button, .icon-btn, .mini-action, .socials a, i {
  -webkit-appearance: none;
  appearance: none;
}
.icon-btn i, .mini-action i, .socials a i, .menu-toggle i {
  color: var(--heading) !important;
}
.icon-btn, .mini-action, .socials a, .menu-toggle {
  color: var(--heading) !important;
}

ul {
  list-style: none;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  gap: 10px;
  padding: 12px 13px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: #ffffff4d;
  color: var(--heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--wine);
  color: var(--white);
}

.btn-secondary {
  background: var(--wine);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--heading);
  border: 1px solid var(--wine);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--heading);
  border-color: var(--white);
}

.product-card .btn {
  border: 1px solid rgba(108, 50, 64, 0.4);
  color: var(--heading);
  background: transparent;
}

.product-card .btn:hover {
  background: var(--wine);
  border: 1px solid var(--wine);
  color: var(--white);
}

.section {
  padding: 30px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--rose-deep);
  font-weight: 700;

}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
  color: var(--heading);
}

h1 {
  font-size: clamp(34px, 3vw, 60px);
  max-width: 800px;
  font-weight: 300 !important;
  text-transform: capitalize;
  font-variant: small-caps;
  margin-top: 0;
  line-height: 0.95;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  text-transform: capitalize;
  font-variant: small-caps;
}

p {
  color: var(--text-soft);
  font-size: 15px;

}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
  .section {
    padding: 15px 0;
  }

  .container {
    width: min(calc(100% - 24px), var(--max));
    padding: 0;
  }

  .hide-on-mobile {
    display: none !important;
  }
}