@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&family=DM+Sans:wght@400;500;600&display=swap');
/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #ffffff;
  --surface: #f8f8f6;
  --card: #ffffff;
  --border: #e8e8e4;
  --accent: #c8a96e;
  --text: #1a1a1a;
  --muted: #888880;
  --dark: #16162a;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-links a::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.nav-links li:nth-child(1) a::before { background: #7b8cde; }
.nav-links li:nth-child(2) a::before { background: #e8a598; }
.nav-links li:nth-child(3) a::before { background: #f0c070; }
.nav-links li:nth-child(4) a::before { background: #a0c880; }
.nav-links li:nth-child(5) a::before { background: #a8d898; }

.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: transparent;
  color: var(--text);
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1.5px solid var(--text);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: var(--text);
  color: white;
}
/* ===== HERO ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 6rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 85vh;
}

/* Left */
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 560px;
}

.hero-tag {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 440px;
}

/* Buttons */
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn-primary {
  background: var(--text);
  color: white;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}

.hero-note {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Right — Cards Grid */
.hero-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 480px;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}

.hero-card-icon {
  font-size: 1.8rem;
}

.hero-card-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.hero-card-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}
/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--dark);
  overflow: hidden;
  padding: 1rem 0;
  width: 100%;
}

.ticker-track {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  width: max-content;
}

.ticker-track span {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
}

.ticker-track .dot {
  color: rgba(255,255,255,0.3);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* ===== PRODUCT SECTIONS ===== */
.product-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem;
  border-top: 1px solid var(--border);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
}

.section-header-left {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.section-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text);
}

.section-desc {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 440px;
  line-height: 1.6;
}

.view-all {
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: border-color 0.2s, transform 0.2s;
}

.view-all:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Product Card */
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.product-badges {
  display: flex;
  gap: 0.5rem;
}

.badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-category { background: #f0f0ee; color: var(--muted); }
.badge-viral    { background: #fff0f5; color: #e05580; }
.badge-hot      { background: #fff5ec; color: #e07830; }
.badge-new      { background: #f0f8f0; color: #40a060; }
.badge-deal     { background: #f0f4ff; color: #4060d0; }

.product-icon {
  font-size: 2rem;
  margin-top: 0.4rem;
}

.product-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.4rem;
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.product-mrp {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
}

.product-platform {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.amazon  { background: #fff8ec; color: #e07800; }
.flipkart { background: #ecf4ff; color: #2874f0; }
.myntra  { background: #fff0f5; color: #e0406a; }
.nykaa   { background: #fff0f8; color: #d0407a; }

.buy-btn {
  display: block;
  text-align: center;
  background: var(--text);
  color: white;
  padding: 0.7rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 0.4rem;
}

.buy-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  margin-top: 5rem;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  -webkit-text-fill-color: white;
  background: none;
  text-decoration: none;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 0.8rem;
  color: rgba(255,255,255,0.5);
  max-width: 260px;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.footer-socials a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-socials a:hover { color: white; }

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: white;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col ul a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.8rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
/* ===== PAGE HEADER ===== */
.page-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.page-header-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 1rem;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 1rem;
}

.page-header h1 em {
  font-style: italic;
  color: var(--accent);
}

.page-header-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
}
/* ===== ABOUT PAGE ===== */
.about-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.about-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

/* Story Block */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
}

.about-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.about-stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

/* Mission */
.about-mission {
  max-width: 700px;
}

.about-mission h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.about-mission p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Team */
.about-team-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}

.team-avatar {
  font-size: 2rem;
}

.team-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.team-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Trust */
.about-trust h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 2rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}

.trust-icon { font-size: 1.8rem; }

.trust-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.trust-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
/* ===== CONTACT PAGE ===== */
.contact-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.contact-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.contact-sub {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.contact-icon { font-size: 1.5rem; }

.contact-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.contact-card p {
  font-size: 0.82rem;
  color: var(--muted);
}

.contact-note {
  background: #fff8ec;
  border: 1px solid #f0d8a0;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: 0.85rem;
  color: #886600;
  line-height: 1.6;
}

/* Form */
.contact-form-wrap {
  position: sticky;
  top: 100px;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-submit {
  background: var(--text);
  color: white;
  border: none;
  padding: 0.9rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.form-submit:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}
/* ===== LEGAL PAGES (Privacy & Disclaimer) ===== */
.legal-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 3rem;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.legal-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.legal-block p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 0.6rem;
}

.legal-block ul {
  list-style: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.6rem 0;
}

.legal-block ul li {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.legal-block a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-block strong {
  color: var(--text);
  font-weight: 600;
}
/* ===== DISCLAIMER HIGHLIGHT BOX ===== */
.disclaimer-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #f0fff4;
  border: 1px solid #a8ddb8;
  border-radius: 14px;
  padding: 1.5rem;
}

.disclaimer-highlight-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.disclaimer-highlight h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.disclaimer-highlight p {
  font-size: 0.88rem;
  color: #3a6b4a;
  line-height: 1.7;
}
