@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;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-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  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: #4a2331d4;
  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);
}

.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: 13px;
  color: var(--rose-deep);
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
  color: var(--heading);
}

h1 {
  font-size: clamp(42px, 4.6vw, 72px);
  max-width: none;
  white-space: nowrap;
  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;
}

/* Hero */
.hero {
  padding: 0 0 34px;
}

.hero-banner {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(239, 235, 239, 0.75) 0%, rgba(239, 235, 239, 0.55) 32%, rgba(239, 235, 239, 0.10) 65%, rgba(239, 235, 239, 0) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: clamp(28px, 5vw, 60px);
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy p {
  max-width: 470px;
  margin: 18px 0 10px;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-tag {
  padding: 10px 14px;
  background: rgba(185, 135, 150, 0.12);
  border: 1px solid rgba(185, 135, 150, 0.2);
  color: var(--mauve);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  padding: 16px;
  border-radius: 18px;
  max-width: 320px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.hero-card strong {
  display: block;
  color: var(--heading);
  margin-bottom: 6px;
}

/* Feature strip */
.feature-strip {
  padding-top: 10px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-box {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(155, 108, 121, 0.08);
}

.feature-box h4 {
  color: var(--heading);
  margin-bottom: 6px;
  font-size: 16px;
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(155, 108, 121, 0.08);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  background: #f8edf0;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.product-media .img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .product-media .img-main {
  opacity: 0;
  transform: scale(1.04);
}

.product-card:hover .product-media .img-hover {
  opacity: 1;
  transform: scale(1.04);
}

.product-top-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.mini-action {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--heading);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  font-size: 17px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

.mini-action:hover,
.mini-action.active {
  background: var(--wine);
  color: var(--white);
  transform: translateY(-2px);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(108, 50, 64, 0.92);
  color: var(--white);
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.product-info {
  padding: 18px 18px 20px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.product-category {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rose-deep);
  font-weight: 400;
}

.product-rating {
  font-size: 13px;
  color: #c08952;
  white-space: nowrap;
}

.product-title {
  font-size: 22px;
  color: var(--wine);
  margin-bottom: 8px;
}

.product-desc {
  min-height: 46px;
  margin-bottom: 14px;
}

.note-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.note-pill {
  background: #f7eef1;
  color: var(--mauve);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.price-box strong {
  display: block;
  font-size: 24px;
  color: var(--wine);
}

.price-box span {
  font-size: 13px;
  color: var(--text-soft);
}

.product-buttons {
  display: flex;
  gap: 10px;
}

.product-buttons .btn {
  padding: 11px 16px;
  font-size: 13px;
}

/* Banner */
.promo-banner {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: grid;
  align-items: center;
  margin: 14px 0;
  box-shadow: var(--shadow);
  border-radius: 0;
  width: 100%;
}

.promo-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(64, 11, 20, 0.72) 0%, rgba(64, 11, 20, 0.25) 45%, rgba(64, 11, 20, 0.10) 100%);
}

.promo-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  width: min(560px, 100%);
  padding: 48px;
}

.promo-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 16px 0 22px;
  font-size: 16px;
}

/* Categories */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  isolation: isolate;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(40, 15, 21, 0.10), rgba(40, 15, 21, 0.68));
  z-index: 0;
}

.category-card:hover img {
  transform: scale(1.06);
}

.category-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  color: var(--white);
  z-index: 1;
}

.category-content h3 {
  font-size: 28px;
  margin-bottom: 6px;
  color: var(--white);
}

.category-content p {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 10px;
}

.category-link {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Story / quiz */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.soft-card {
  background: linear-gradient(135deg, #f8eef0, #fffafb);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 500px;
  position: relative;
}

.soft-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.soft-card.copy {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.soft-card.copy p {
  margin: 14px 0 24px;
  max-width: 470px;
  font-size: 16px;
}

/* IG gallery */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 14px;
}

.insta-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.insta-item:nth-child(1),
.insta-item:nth-child(8) {
  grid-column: span 2;
  grid-row: span 2;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.insta-item:hover img {
  transform: scale(1.08);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(108, 50, 64, 0.28);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 28px;
  opacity: 0;
  transition: var(--transition);
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, #ead8de, #f7eef1);
  border-radius: 30px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;

  align-items: center;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.newsletter-form input {
  border: 1px solid rgba(108, 50, 64, 0.16);
  outline: none;
  background: var(--white);
  border-radius: 999px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text);
  flex: 1 1 300px;
}

/* Responsive */
@media (max-width: 1100px) {

  .split-section,
  .newsletter-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .products-grid,
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-banner,
  .hero-copy {
    min-height: 560px;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {

  .feature-grid,
  .category-grid,
  .insta-grid {
    grid-template-columns: 1fr;
  }

  .insta-item:nth-child(1),
  .insta-item:nth-child(8) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .hero-card,
  .promo-content,
  .soft-card.copy {
    padding: 24px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .products-grid {
    gap: 10px;
  }

  .product-media {
    aspect-ratio: 1 / 0.95;
  }

  .product-media img {
    object-position: top;
  }

  .product-info {
    padding: 10px;
  }

  .product-badge {
    top: 8px;
    left: 8px;
    font-size: 8px;
    padding: 4px 6px;
  }

  .product-top-actions {
    top: 8px;
    right: 8px;
    gap: 6px;
  }

  .mini-action {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .product-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3px;
    margin-bottom: 6px;
  }

  .product-category {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .product-rating {
    font-size: 10px;
  }

  .product-title {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .product-desc,
  .note-row {
    display: none;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .price-box strong {
    font-size: 14px;
  }

  .price-box span {
    display: block;
    font-size: 11px;
    line-height: 1.2;
    margin-top: 2px;
  }

  .product-buttons {
    width: 100%;
  }

  .product-buttons .btn {
    width: 100%;
    padding: 7px;
    font-size: 12px;
    border-radius: 8px;
  }

  .hero-banner {
    display: block;
    position: relative;
    min-height: auto;
  }

  .hero-media {
    position: relative;
    height: auto;
    width: 100%;
    display: block;
  }

  .hero-banner::after {
    display: block;
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(239, 235, 239, 0.9) 0%, rgba(239, 235, 239, 0.6) 45%, rgba(239, 235, 239, 0) 100%);
    z-index: 1;
  }

  .hero-copy {
    position: absolute;
    inset: 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 15px;
    align-items: flex-start;
    text-align: left;
    z-index: 2;
    width: 70%;
  }

  .hero-copy .eyebrow {
    font-size: 10px;
    margin-bottom: 2px;
  }

  .hero-copy h1 {
    font-size: 35px;
    margin: 2px 0;
  }

  .hero-actions {
    margin-top: 8px !important;
  }

  .hero-actions .btn {
    padding: 5px 12px;
    font-size: 13px;
  }

  .category-card {
    min-height: 180px;
    border-radius: 18px;
  }

  .category-content {
    padding: 16px 20px;
  }

  .category-content h3 {
    font-size: 19px;
    margin-bottom: 4px;
  }

  .category-content p {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .category-link {
    font-size: 13px;
  }
}

/* Premium Poetic Intro Section Styling */
.poetic-intro-section {

  position: relative;
  overflow: hidden;
}

/* Texture effect for luxury feel */
.poetic-intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
}

.poetic-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.poetic-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px;
}

.poetic-text {
  font-size: clamp(20px, 3vw, 25px);
  color: var(--heading);
  line-height: 1.7;
  letter-spacing: 0.02em;
  font-weight: 400;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(83, 47, 57, 0.05);
}

.poetic-text.text-second {
  color: var(--heading);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .poetic-intro-section {}

  .poetic-content {
    gap: 20px;
    padding: 0;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300 !important;
}