/* =============================================
   FIND IT. BUY IT. LOVE IT. — Main Stylesheet
   ============================================= */

:root {
  --cream: #fdf8f3;
  --warm-white: #fff9f4;
  --blush: #f5e6da;
  --rose: #e8c4b0;
  --terracotta: #c97b5a;
  --terra-dark: #a85f3f;
  --sage: #8faa8b;
  --sage-light: #c8dcc5;
  --charcoal: #2d2420;
  --brown: #5c3d2e;
  --gold: #d4a853;
  --gold-light: #f0d898;
  --text: #3a2e28;
  --text-light: #7a6a60;
  --border: #e8ddd6;
  --shadow: rgba(90, 50, 30, 0.1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- HEADER ---- */
.header {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px var(--shadow);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: var(--font-display);
}

.logo-find { font-size: 11px; color: var(--text-light); font-style: italic; letter-spacing: 0.05em; }
.logo-buy { font-size: 20px; font-weight: 700; color: var(--charcoal); }
.logo-love { font-size: 11px; color: var(--terracotta); font-weight: 500; letter-spacing: 0.08em; }

.nav { display: flex; gap: 8px; align-items: center; }

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.2s;
}

.nav-link:hover, .nav-link.active {
  background: var(--blush);
  color: var(--terracotta);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--charcoal);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 24px 16px;
  gap: 4px;
  border-top: 1px solid var(--border);
}

.mobile-nav a {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s;
}

.mobile-nav a:hover { background: var(--blush); }
.mobile-nav.open { display: flex; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary:hover {
  background: var(--terra-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 123, 90, 0.35);
}

.btn-buy {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  padding: 9px 18px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 13px;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-buy:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212, 168, 83, 0.4);
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--terracotta);
  color: var(--terracotta);
  padding: 11px 26px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--terracotta);
  color: white;
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 60%, var(--sage-light) 100%);
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
  gap: 60px;
  max-width: 100%;
  justify-content: center;
}

.hero-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 700;
  color: rgba(201, 123, 90, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
  user-select: none;
}

.hero-content {
  max-width: 520px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 420px;
}

.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.hero-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px 20px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  box-shadow: 0 4px 24px var(--shadow);
  transition: transform 0.2s;
  text-align: center;
}

.hero-card:hover { transform: translateY(-3px); }
.card-1 { background: var(--blush); }
.card-2 { background: var(--gold-light); margin-top: 20px; }
.card-3 { background: var(--sage-light); margin-top: -20px; }
.card-4 { background: var(--rose); }

/* ---- DISCLOSURE ---- */
.disclosure {
  background: var(--gold-light);
  text-align: center;
  padding: 12px 24px;
  font-size: 13px;
  color: var(--brown);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

/* ---- SECTIONS ---- */
.section { padding: 72px 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--charcoal);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 40px;
}

.section-header { margin-bottom: 40px; }

/* ---- CATEGORIES ---- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: all 0.25s;
  display: block;
  position: relative;
  overflow: hidden;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
  border-color: var(--rose);
}

.cat-card.cat-featured {
  background: linear-gradient(145deg, var(--blush), var(--warm-white));
  border-color: var(--rose);
}

.cat-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--terracotta);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.05em;
}

.cat-emoji { font-size: 36px; margin-bottom: 14px; }

.cat-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.cat-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cat-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--terracotta);
}

/* ---- PRODUCTS ---- */
.featured { background: var(--warm-white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px var(--shadow);
}

.product-img-wrap {
  position: relative;
  background: var(--blush);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.placeholder-img {
  font-size: 60px;
  line-height: 1;
}

.real-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 12px;
  background: white;
}

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--terracotta);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
}

.product-badge.new { background: var(--sage); }

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.product-price {
  font-weight: 600;
  font-size: 15px;
  color: var(--charcoal);
}

/* ---- ABOUT STRIP ---- */
.about-strip {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--brown) 100%);
  padding: 80px 24px;
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-text { max-width: 560px; }

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-text p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.about-graphic { flex: 1; display: flex; justify-content: center; }

.about-blob {
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 40% 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  animation: blob 6s ease-in-out infinite;
}

@keyframes blob {
  0%, 100% { border-radius: 60% 40% 70% 30% / 40% 60% 40% 60%; }
  50% { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
}

/* ---- BLOG ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
}

.blog-img {
  background: var(--blush);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}

.blog-info { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.blog-cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-info h3 {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-info p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.blog-read {
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta);
}

/* ---- NEWSLETTER ---- */
.newsletter {
  background: linear-gradient(135deg, var(--blush) 0%, var(--sage-light) 100%);
  padding: 80px 24px;
  text-align: center;
}

.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--charcoal);
  margin-bottom: 12px;
}

.newsletter p { color: var(--text-light); font-size: 16px; margin-bottom: 32px; }

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-input {
  flex: 1;
  min-width: 220px;
  padding: 13px 20px;
  border-radius: 30px;
  border: 2px solid var(--rose);
  font-size: 15px;
  font-family: var(--font-body);
  background: white;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input:focus { border-color: var(--terracotta); }

.newsletter-note { font-size: 12px; color: var(--text-light); }

/* ---- FOOTER ---- */
.footer {
  background: var(--charcoal);
  padding: 60px 24px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.footer-brand p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.6; }

.footer-links h4 {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-bottom {
  text-align: center;
  padding: 20px 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: rgba(255,255,255,0.5); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { flex-direction: column; text-align: center; min-height: auto; padding: 60px 24px; gap: 40px; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-cards { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-inner { flex-direction: column; text-align: center; }
  .about-graphic { display: none; }
}

@media (max-width: 500px) {
  .cat-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-cards { grid-template-columns: 1fr 1fr; }
}
