/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* === VARIABLES === */
:root {
  --cream: #FEFBF6;
  --cream-dark: #F5EDE0;
  --brown: #5C3D2E;
  --brown-mid: #8B6145;
  --brown-light: #A07050;
  --peach: #F0D5B8;
  --rose: #D4849A;
  --text: #1E0E06;
  --text-muted: #7A5C4F;
  --border: #E8D5C4;
  --gold: #C9973A;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(92,61,46,0.10);
  --shadow-hover: 0 16px 48px rgba(92,61,46,0.18);
  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  --gradient-btn: linear-gradient(135deg, #7A4A30 0%, #5C3D2E 60%, #3E2518 100%);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--brown); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rose); }
p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: var(--brown);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); margin-bottom: 0.5rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3rem 0; }

/* === PROMO BANNER === */
.promo-banner {
  background: linear-gradient(135deg, #2E1A0D 0%, #5C3D2E 50%, #3D2518 100%);
  color: rgba(255,255,255,0.92);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.035em;
}
.promo-banner a { color: rgba(255,255,255,0.75); text-decoration: underline; }

/* === HEADER === */
header {
  background: rgba(254, 251, 246, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232, 213, 196, 0.7);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(92,61,46,0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.01em;
}
.logo .logo-icon { width: 36px; height: 36px; flex-shrink: 0; display: block; }
.logo-text { font-family: 'Playfair Display', Georgia, serif; font-size: 1.45rem; font-weight: 700; letter-spacing: -0.01em; }
nav { display: flex; gap: 1.8rem; align-items: center; }
nav a { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.01em; }
nav a:hover, nav a.active { color: var(--brown); }
.nav-cta {
  background: var(--gradient-btn);
  color: var(--white) !important;
  padding: 0.48rem 1.3rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem !important;
  box-shadow: 0 4px 14px rgba(92,61,46,0.28);
  transition: all var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(92,61,46,0.38) !important; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--brown); margin: 5px 0; border-radius: 2px; transition: all 0.2s; }

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(254,251,246,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1.1rem;
    box-shadow: 0 8px 32px rgba(92,61,46,0.12);
  }
  nav.open { display: flex; }
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-btn);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(92,61,46,0.32), inset 0 1px 0 rgba(255,255,255,0.10);
}
.btn-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(92,61,46,0.42), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--brown);
}
.btn-outline:hover { background: var(--brown); color: var(--white); transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--brown);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.btn-white:hover { background: var(--cream); color: var(--brown); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.14); }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.88rem; }

/* === HERO WITH BACKGROUND IMAGE === */
.hero-image {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  overflow: hidden;
  background-color: var(--brown);
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.38) saturate(0.7);
  transform: scale(1.05);
  transition: transform 9s ease;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}
.hero-image:hover::before { transform: scale(1.1); }
.hero-image .container { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.75rem;
}
.hero-image h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,0.4); margin-bottom: 1.2rem; max-width: 680px; margin-left: auto; margin-right: auto; }
.hero-image p { font-size: 1.12rem; color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 2.5rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-image .btn-outline { color: #fff; border-color: rgba(255,255,255,0.65); backdrop-filter: blur(4px); }
.hero-image .btn-outline:hover { background: rgba(255,255,255,0.18); color: #fff; border-color: #fff; transform: translateY(-2px); }
.hero-image .scroll-hint {
  position: absolute;
  bottom: 1.75rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 2;
}
.hero-image .scroll-hint::after {
  content: '';
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
  animation: scrollPulse 2.2s ease infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.35} 50%{opacity:.9} }

/* === TRUST BAR === */
.trust-bar {
  background: linear-gradient(135deg, #2A1409 0%, #4A2D1A 50%, var(--brown) 100%);
  color: var(--white);
  padding: 1rem 0;
}
.trust-items { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.86rem; font-weight: 500; }
.trust-item svg { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.9; }

/* === SECTION HEADER === */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.8rem; }
.section-header p { color: var(--text-muted); max-width: 520px; margin: 0 auto; font-size: 1.02rem; }

/* === PRODUCT CARDS === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-img-wrap { position: relative; background: var(--peach); aspect-ratio: 1 / 1; overflow: hidden; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--rose), #C06080);
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 0.28rem 0.85rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(212,132,154,0.4);
}
.product-body { padding: 1.5rem; flex: 1; }
.product-title { font-size: 1.02rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text); font-family: 'Playfair Display', Georgia, serif; }
.product-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  gap: 0.75rem;
  background: linear-gradient(to right, rgba(240,213,184,0.2), transparent);
}
.product-price { font-size: 1.35rem; font-weight: 700; color: var(--brown); white-space: nowrap; }
.product-price s { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); margin-left: 0.4rem; }

/* === FEATURES === */
.features-section {
  background: linear-gradient(135deg, #F0E4D0 0%, var(--cream-dark) 50%, #EDD9C5 100%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.feature {
  text-align: center;
  padding: 2.2rem 1.4rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(92,61,46,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(92,61,46,0.13); }
.feature-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #F5D9A8, var(--peach));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
}
.feature-icon svg { width: 28px; height: 28px; color: var(--brown); }
.feature h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.feature p { font-size: 0.87rem; color: var(--text-muted); margin: 0; }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -0.5rem; left: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--peach);
  line-height: 1;
  z-index: 0;
}
.testimonial > * { position: relative; z-index: 1; }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.85rem; letter-spacing: 2px; }
.testimonial blockquote { font-size: 0.93rem; color: var(--text); margin-bottom: 1rem; font-style: italic; line-height: 1.7; }
.testimonial-author { font-size: 0.83rem; font-weight: 600; color: var(--text-muted); }

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, #1E0E06 0%, #3A2010 40%, #6B4430 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,58,0.15) 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
}
.cta-section h2 { color: var(--white); margin-bottom: 0.75rem; position: relative; }
.cta-section p { color: rgba(255,255,255,0.78); margin-bottom: 2rem; font-size: 1.05rem; position: relative; }

/* === FOOTER === */
footer {
  background: linear-gradient(160deg, #120A04 0%, #1E0F08 100%);
  color: rgba(255,255,255,0.72);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.85rem;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
}
.footer-logo .logo-icon { width: 28px; height: 28px; flex-shrink: 0; }
.footer-brand p { font-size: 0.87rem; line-height: 1.7; opacity: 0.7; }
.footer-col h4 {
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.58); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact p { font-size: 0.87rem; margin-bottom: 0.5rem; }
.footer-contact a { color: rgba(255,255,255,0.58); transition: color var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.81rem;
  color: rgba(255,255,255,0.38);
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, #F0E4D0 0%, var(--peach) 60%, #F5DEC8 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92,61,46,0.06) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.page-hero h1 { margin-bottom: 0.6rem; position: relative; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; margin: 0; position: relative; }
.breadcrumb { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.85rem; position: relative; }
.breadcrumb a { color: var(--brown); }

/* === POLICY PAGES === */
.policy-content { max-width: 780px; margin: 0 auto; }
.policy-content h2 { margin: 2.5rem 0 0.9rem; padding-top: 0.5rem; border-top: 1px solid var(--border); font-size: 1.25rem; }
.policy-content h2:first-child { border-top: none; margin-top: 0; }
.policy-content h3 { margin: 1.5rem 0 0.6rem; font-size: 1.05rem; }
.policy-box {
  background: linear-gradient(135deg, var(--peach), #F5D9A8);
  border-left: 4px solid var(--brown);
  border-radius: 0 10px 10px 0;
  padding: 1.5rem 1.8rem;
  margin: 2rem 0;
}
.policy-box p { margin: 0; font-weight: 500; font-size: 0.97rem; }
table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.93rem; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 12px rgba(92,61,46,0.07); }
th { background: var(--brown); color: var(--white); padding: 0.8rem 1.1rem; text-align: left; font-weight: 600; font-family: 'Inter', sans-serif; }
td { padding: 0.8rem 1.1rem; border-bottom: 1px solid var(--border); }
tr:nth-child(even) td { background: var(--cream-dark); }
tr:last-child td { border-bottom: none; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-item { display: flex; gap: 1.1rem; margin-bottom: 1.75rem; align-items: flex-start; }
.contact-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--peach), #F5D9A8);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--brown); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 0.45rem; color: var(--text); letter-spacing: 0.01em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.93rem;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Inter', sans-serif;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(92,61,46,0.1);
}
.form-group input.error { border-color: #e74c3c; box-shadow: 0 0 0 3px rgba(231,76,60,0.12); }
.form-group textarea { min-height: 130px; resize: vertical; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-card h3 { margin-bottom: 1.75rem; }

/* === ABOUT === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(92,61,46,0.2); }
.about-img img { width: 100%; height: 420px; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.75rem; }
.value-card {
  background: linear-gradient(135deg, var(--peach), #F5D9A8);
  border-radius: 12px;
  padding: 1.3rem;
  border: 1px solid rgba(92,61,46,0.1);
}
.value-card h4 { margin-bottom: 0.35rem; font-size: 0.95rem; }
.value-card p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

/* === PRODUCTS PAGE === */
.product-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2.5rem; }
.product-full-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.product-gallery { background: var(--peach); }
.product-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.product-detail { padding: 2rem; }
.product-detail h2 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.product-detail .price { font-size: 1.55rem; font-weight: 700; color: var(--brown); margin-bottom: 1rem; }
.product-detail .price s { font-size: 1rem; font-weight: 400; color: var(--text-muted); margin-left: 0.5rem; }
.product-detail p { font-size: 0.93rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.product-meta { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.product-meta span { background: var(--cream-dark); padding: 0.28rem 0.7rem; border-radius: 6px; margin-right: 0.4rem; display: inline-block; margin-bottom: 0.3rem; }

/* === UTILITIES === */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.optional { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

/* === NAV CART ICON === */
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--brown);
  transition: all var(--transition);
  flex-shrink: 0;
}
.nav-cart:hover { border-color: var(--brown); background: var(--brown); color: var(--white); }
.nav-cart svg { width: 18px; height: 18px; }
#cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: linear-gradient(135deg, var(--rose), #C06080);
  color: #fff;
  font-size: 0.63rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  box-shadow: 0 2px 6px rgba(212,132,154,0.4);
}

/* === CART TOAST === */
#cart-toast {
  position: fixed;
  top: 80px; right: 1.5rem;
  background: linear-gradient(135deg, #3A2010, var(--brown));
  color: #fff;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: 0 10px 40px rgba(0,0,0,0.22);
  z-index: 9999;
  display: flex; align-items: center; gap: 0.65rem;
  transform: translateX(120%);
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
  max-width: 300px;
}
#cart-toast.visible { transform: translateX(0); }
#cart-toast svg { width: 20px; height: 20px; flex-shrink: 0; color: #7ddd7d; }

/* === OCCASIONS SECTION === */
.occasions-section { background: linear-gradient(160deg, var(--cream-dark) 0%, #EEDAD0 100%); }
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.occasion-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1rem;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  cursor: default;
}
.occasion-card:hover { border-color: var(--brown); box-shadow: 0 8px 28px rgba(92,61,46,0.14); transform: translateY(-4px); }
.occasion-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.9rem;
}
.occasion-icon svg { width: 38px; height: 38px; color: var(--brown); }
.occasion-card h3 { font-size: 0.92rem; color: var(--text); margin-bottom: 0.3rem; }
.occasion-card p { font-size: 0.8rem; color: var(--text-muted); margin: 0; line-height: 1.45; }

@media (max-width: 900px) { .occasions-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .occasions-grid { grid-template-columns: repeat(2, 1fr); } }

/* === HOW IT WORKS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 38px; left: calc(16.66% + 1rem); right: calc(16.66% + 1rem);
  height: 2px;
  background: repeating-linear-gradient(to right, var(--peach) 0, var(--peach) 8px, transparent 8px, transparent 16px);
}
.step {
  text-align: center;
  padding: 2.2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.step-number {
  width: 58px; height: 58px;
  background: var(--gradient-btn);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin: 0 auto 1.2rem;
  position: relative; z-index: 1;
  box-shadow: 0 6px 20px rgba(92,61,46,0.3), 0 0 0 8px rgba(240,213,184,0.5);
}
.step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.87rem; color: var(--text-muted); margin: 0; }

@media (max-width: 640px) {
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
}

/* === CART PAGE === */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } }

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 0.6rem 0;
  border-bottom: 2px solid var(--border);
  font-family: 'Inter', sans-serif;
  background: transparent;
}
.cart-table td { padding: 1.3rem 0; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-item-img { width: 76px; height: 76px; border-radius: 10px; object-fit: cover; background: var(--peach); }
.cart-item-title { font-size: 0.93rem; font-weight: 600; color: var(--text); margin-bottom: 0.25rem; font-family: 'Playfair Display', serif; }
.cart-item-sku { font-size: 0.78rem; color: var(--text-muted); }
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden; width: fit-content; }
.qty-btn { background: none; border: none; cursor: pointer; width: 36px; height: 36px; font-size: 1.1rem; color: var(--brown); display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.qty-btn:hover { background: var(--cream-dark); }
.qty-display { width: 38px; text-align: center; font-size: 0.93rem; font-weight: 600; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border); height: 36px; display: flex; align-items: center; justify-content: center; }
.cart-remove { background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: 1.1rem; padding: 6px; border-radius: 6px; transition: all 0.15s; }
.cart-remove:hover { color: #c0392b; background: rgba(192,57,43,0.08); }
.cart-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 80px;
  box-shadow: var(--shadow);
}
.cart-summary h3 { margin-bottom: 1.3rem; }
.summary-row { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 0.65rem; }
.summary-row.total { font-size: 1.1rem; font-weight: 700; color: var(--brown); border-top: 1.5px solid var(--border); padding-top: 0.9rem; margin-top: 0.4rem; }
.cart-empty { text-align: center; padding: 5rem 1rem; }
.cart-empty h2 { color: var(--text-muted); font-size: 1.3rem; margin-bottom: 1rem; }

/* === TRACK ORDER PAGE === */
.track-wrapper { max-width: 600px; margin: 0 auto; }
.track-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.track-status { background: linear-gradient(135deg, var(--peach), #F5D9A8); border-radius: var(--radius); padding: 2rem; text-align: center; margin-top: 1.5rem; display: none; }
.track-status h3 { color: var(--brown); margin-bottom: 0.5rem; }
.track-timeline { margin-top: 1.5rem; }
.track-step { display: flex; gap: 1rem; margin-bottom: 1rem; align-items: flex-start; }
.track-dot { width: 12px; height: 12px; background: var(--brown); border-radius: 50%; margin-top: 4px; flex-shrink: 0; }
.track-dot.done { background: #27ae60; }
.track-dot.active { background: var(--gold); box-shadow: 0 0 0 4px rgba(201,151,58,0.22); }
.track-step-info h4 { font-size: 0.9rem; margin-bottom: 0.15rem; }
.track-step-info p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* === ADD TO CART BUTTON === */
.btn-cart {
  background: var(--white);
  color: var(--brown);
  border: 1.5px solid var(--brown);
  border-radius: var(--radius-pill);
}
.btn-cart:hover { background: var(--brown); color: var(--white); }
.btn-cart.added { background: #27ae60; border-color: #27ae60; color: #fff; }

/* === LOGO ICONS === */
.footer-logo { font-family: 'Playfair Display', serif; }

/* === FEATURE + OCCASION ICONS (SVG) === */
.occasion-card .occasion-icon svg { color: var(--brown); }

/* === FOOTER CONTACT ICON === */
.fc-icon { display: inline-flex; align-items: center; vertical-align: middle; margin-right: 5px; opacity: 0.75; }
.fc-icon svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.8); }

/* === PROMO BANNER SVG ICONS === */
.icon-svg { display: inline-flex; align-items: center; vertical-align: middle; }
.promo-icon { margin-right: 5px; }
.promo-icon svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.88); }

/* === INLINE POLICY BOX ICONS === */
.inline-icon { margin-right: 6px; }
.inline-icon svg { width: 17px; height: 17px; color: var(--brown); }

/* ═══════════════════════════════════════════════════
   CHECKOUT PAGE
═══════════════════════════════════════════════════ */
.checkout-progress {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.checkout-progress-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 1.5rem;
}
.cp-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}
.cp-step span {
  width: 26px; height: 26px;
  background: var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}
.cp-step.active { color: var(--brown); }
.cp-step.active span { background: var(--brown); color: #fff; }
.cp-step.done span { background: #27ae60; color: #fff; }
.cp-step.done { color: var(--text-muted); }
.cp-divider {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 0.75rem;
  min-width: 30px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 920px) { .checkout-layout { grid-template-columns: 1fr; } }

.checkout-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(92,61,46,0.06);
}
.checkout-section h3 {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.checkout-section h3 svg { width: 18px; height: 18px; color: var(--brown); }

/* Payment option cards */
.payment-methods { display: flex; flex-direction: column; gap: 0.9rem; }
.payment-option {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  transition: all 0.2s;
  background: var(--white);
}
.payment-option:hover { border-color: var(--brown-light); }
.payment-option.selected {
  border-color: var(--brown);
  background: linear-gradient(135deg, #FEF9F4, #FDF4EC);
  box-shadow: 0 0 0 3px rgba(92,61,46,0.08);
}
.payment-option input[type="radio"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--brown); width: 16px; height: 16px; }
.payment-option-body { flex: 1; }
.payment-option-header { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.35rem; flex-wrap: wrap; }
.payment-option-header svg { width: 20px; height: 20px; color: var(--brown); flex-shrink: 0; }
.payment-option-header strong { font-size: 0.96rem; }
.payment-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--rose), #C06080);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.65rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}
.payment-option-body p { font-size: 0.83rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Checkout summary */
.checkout-summary-side .cart-summary { top: 80px; }
.checkout-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}
.checkout-item:last-child { border-bottom: none; }
.checkout-item img { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; background: var(--peach); flex-shrink: 0; }
.checkout-item-info { flex: 1; }
.checkout-item-info .ci-title { font-size: 0.87rem; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: 0.2rem; }
.checkout-item-info .ci-qty { font-size: 0.78rem; color: var(--text-muted); }
.checkout-item-price { font-size: 0.9rem; font-weight: 700; color: var(--brown); white-space: nowrap; }

.trust-mini {
  background: linear-gradient(135deg, var(--peach), #F5D9A8);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin-top: 1.2rem;
}
.trust-mini-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; margin-bottom: 0.4rem; color: var(--text); }
.trust-mini-item:last-child { margin-bottom: 0; }
.trust-mini-item svg { width: 15px; height: 15px; color: #27ae60; flex-shrink: 0; }

.checkout-secure-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.checkout-secure-note svg { width: 14px; height: 14px; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════
   THANK YOU PAGE
═══════════════════════════════════════════════════ */
.thankyou-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 0 3rem;
}
.success-anim {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, #27ae60, #1e8449);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.75rem;
  box-shadow: 0 0 0 12px rgba(39,174,96,0.12), 0 8px 32px rgba(39,174,96,0.3);
  animation: successPop 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes successPop { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-anim svg { width: 42px; height: 42px; stroke: #fff; stroke-width: 2.5; }
.thankyou-wrap h1 { margin-bottom: 0.75rem; }
.thankyou-wrap > p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 2rem; }

.order-ref-box {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}
.order-ref-box .ref-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.order-ref-box .ref-num { font-size: 1.15rem; font-weight: 700; color: var(--brown); font-family: 'Playfair Display', serif; }

.ty-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 600px) { .ty-details-grid { grid-template-columns: 1fr; } }
.ty-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: left;
  box-shadow: 0 2px 10px rgba(92,61,46,0.06);
}
.ty-detail-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.4rem; }
.ty-detail-value { font-size: 0.92rem; font-weight: 600; color: var(--text); }

.ty-steps-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: left;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}
.ty-steps-box h3 { margin-bottom: 1.5rem; font-size: 1.1rem; }
.ty-step {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 1.4rem;
  align-items: flex-start;
}
.ty-step:last-child { margin-bottom: 0; }
.ty-step-num {
  width: 36px; height: 36px;
  background: var(--gradient-btn);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(92,61,46,0.28);
}
.ty-step strong { display: block; font-size: 0.93rem; margin-bottom: 0.2rem; color: var(--text); }
.ty-step p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

.ty-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.ty-contact {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.ty-contact a { color: var(--brown); font-weight: 500; }
