:root {
  /* Divine Dazzle — Calm White • Beige • Dusty Rose */
  --bg: #FFFDFA;              /* warm white */
  --surface: #FFFFFF;         /* card surface */
  --text: #2B2B2B;            /* soft charcoal */
  --muted: #7C7073;           /* mauve-taupe for secondary text */
  --beige: #F5EFE6;           /* soft beige wash */
  --accent: #F6E3E8;          /* pale blush background wash */
  --primary: #C77986;         /* dusty rose */
  --primary-600: #A86270;     /* deeper dusty rose */
  --border: rgba(43, 43, 43, 0.08);
  --ring: rgba(199, 121, 134, 0.45);
  --radius: 16px;

  /* subtle elevation */
  --shadow-1: 0 6px 18px rgba(25, 16, 14, 0.06);
  --shadow-2: 0 10px 28px rgba(25, 16, 14, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; border-radius: var(--radius); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin: 0 0 8px; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 0 0 8px; }
h3 { font-size: 1.25rem; margin: 0 0 6px; }
p { margin: 0 0 14px; }
a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary-600); text-decoration: none; }

/* ====== Header / Nav ====== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.68) 100%);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 64px; }

.brand {
  font-weight: 700; letter-spacing: .3px; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.logo-img { height: 100px; width: auto; margin-right: 8px; display: block; }
.brand .logo-mark { color: var(--primary); }

.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav ul { display: flex; gap: 16px; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  padding: 8px 10px; border-radius: 10px; color: var(--text); text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}
.site-nav a.active, .site-nav a:hover { background: rgba(199,121,134,.12); }
.site-nav .cta {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-600) 100%);
  color: white; padding: 10px 14px; border-radius: 12px; border: 1px solid transparent;
  box-shadow: 0 8px 18px rgba(199,121,134,.22);
}
.site-nav .cta:hover { filter: brightness(0.97); text-decoration: none; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle .bar { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; }

/* ====== Hero (full-bleed) ====== */
.hero { padding: 0; }
.hero-full {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: end center;
  overflow: hidden;
  isolation: isolate;
  background: var(--beige);
}
.hero-full::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center 25%;
  filter: saturate(1.02) contrast(1.02);
  z-index: -2;
}
/* Slightly darker overlay for better contrast on text */
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.18) 0%,
    rgba(0,0,0,.32) 45%,
    rgba(0,0,0,.48) 100%
  );
}
.hero-center { width: 100%; text-align: center; padding: 18vh 20px 12vh; }
/* White title in hero only */
.hero-title {
  font-weight: 600;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.2;
  margin: 0 0 14px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
}
.btn.pill { border-radius: 999px; padding: 12px 22px; font-weight: 600; letter-spacing: .2px; }
/* White “Shop Now” button for hero only */
.btn.light {
  color: #fff;
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
}
.btn.light:hover { background: rgba(255,255,255,.28); border-color: #fff; }

/* ====== Buttons ====== */
.btn {
  display: inline-block; border: 1px solid var(--border); padding: 10px 14px; border-radius: 12px;
  text-decoration: none; transition: transform .06s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn.primary {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-600) 100%);
  color: #fff; border-color: transparent;
  box-shadow: 0 8px 18px rgba(199,121,134,.22);
}
.btn.primary:hover { background: var(--primary-600); }
.btn.ghost { background: transparent; color: var(--text); }
.btn.link { border: none; padding: 0; color: var(--primary); }
.trust { color: var(--muted); display: flex; gap: 10px; align-items: center; margin-top: 6px; }

/* ====== Cards / Grids ====== */
.highlights { padding: 32px 0; background: linear-gradient(180deg, var(--bg), var(--accent)); }
.grid.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.card {
  background: var(--surface); padding: 12px; border-radius: 16px; border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
}
.card .card-body { padding: 8px; }

.value-props { padding: 24px 0 48px; }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.value-grid h3 { margin-bottom: 4px; }

/* ====== Products ====== */
.page-header { padding: 24px 0 8px; border-bottom: 1px solid var(--border); margin-bottom: 18px; }
.product-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.product {
  display: grid; grid-template-rows: auto 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-1);
}
.product img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #fff;
  padding: 8px;
}
.product .p-body { padding: 12px; }
.p-actions { margin-top: 10px; }

/* Instagram promo card */
.social-card.instagram {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(199,121,134,0.22);
  background:
    radial-gradient(600px 220px at 0% 0%, rgba(199,121,134,.12), transparent 60%),
    linear-gradient(180deg, #FFF 0%, #FFF7F8 100%);
  box-shadow: var(--shadow-1);
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
  min-height: 220px; /* visually matches product images */
}
.social-card.instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(199,121,134,.18);
  border-color: rgba(199,121,134,0.36);
}

/* Updated: colored Instagram icon badge */
.social-card.instagram .ig-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);   /* soft blush */
  color: var(--primary);       /* dusty rose icon */
  box-shadow: var(--shadow-1);
}
.social-card.instagram .ig-badge svg {
  width: 22px;
  height: 22px;
}
.social-card.instagram:hover .ig-badge {
  transform: translateY(-1px);
  box-shadow: var(--shadow-2);
}

.social-card.instagram h3 { margin: 6px 0 2px; }
.social-card.instagram p { color: var(--muted); margin-bottom: 8px; }
.social-card.instagram .cta-row {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
  color: var(--primary-600);
}
.social-card.instagram .arrow { width: 20px; height: 20px; }

/* ====== About ====== */
.about-grid { grid-template-columns: 1.1fr .9fr; align-items: center; margin: 18px 0; }
.about-media { border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow-1); }

/* ====== Contact ====== */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; margin-bottom: 40px; }
.contact-form {
  background: var(--surface); border: 1px solid var(--border); padding: 16px; border-radius: 16px;
  box-shadow: var(--shadow-2);
}
.field { display: flex; flex-direction: column; margin-bottom: 12px; }
.field input, .field textarea {
  border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; font: inherit;
  background: #FFFFFF; color: var(--text);
}
.field input::placeholder, .field textarea::placeholder { color: #A29398; }
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--ring); border-color: transparent; box-shadow: 0 0 0 2px var(--ring);
}
.hidden { display: none; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }

/* ====== Footer ====== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0 18px;
  margin-top: 40px;
  background:
    radial-gradient(800px 280px at 10% -10%, rgba(199,121,134,.12), transparent 60%),
    linear-gradient(180deg,#FFF9F7 0%, #F9F4F2 100%);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 28px; align-items: start; }
.footer-brand .brand-footer { font-weight: 800; letter-spacing: .2px; margin-bottom: 8px; color: var(--text); }
.footer-brand p { max-width: 42ch; }
.footer-contact h4 { font-size: 1rem; letter-spacing: .3px; color: var(--text); margin: 0 0 8px; }
.footer-contact p { margin: 0; }
.footer-contact a { color: var(--text); }
.footer-contact a:hover { color: var(--primary); }

.socials { display: flex; gap: 10px; margin-top: 12px; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  background: #FFFFFF;
  box-shadow: inset 0 0 0 0 rgba(0,0,0,0), var(--shadow-1);
  transition: transform .08s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.icon-btn:hover {
  background: rgba(199,121,134,.10);
  border-color: rgba(199,121,134,.30);
  color: var(--primary-600);
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex; gap: 12px; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
  margin-top: 22px; padding-top: 14px;
}
.legal { color: var(--muted); font-size: .95rem; margin: 0; }
.mini-nav {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.mini-nav a { color: var(--muted); font-size: .95rem; }
.mini-nav a:hover { color: var(--text); }

/* ====== Responsive ====== */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .grid.cards { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .site-nav {
    position: fixed; inset: 64px 0 auto 0; background: #FFFFFF; border-bottom: 1px solid var(--border); padding: 10px 20px;
    display: none; flex-direction: column; gap: 12px;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .grid.cards { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Gentle selection highlight */
::selection { background: rgba(199,121,134,.25); color: #2B2B2B; }
.shop-occasion {
  padding: 60px 20px;
  background: #fdf2f8; /* light pink background */
  text-align: center;
}

.shop-occasion h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.occasion-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.occasion-card:hover {
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.occasion-card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.occasion-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #333;
}

.occasion-card p {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: #666;
}

.occasion-card a {
  font-weight: bold;
  color: #d63384; /* pink link */
  text-decoration: none;
}

.occasion-card a:hover {
  text-decoration: underline;
}