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

:root {
  --cream: #D4B896;
  --warm-white: #DEC9A8;
  --earth: #C4A882;
  --deep-earth: #8B6E4E;
  --bark: #4A3728;
  --sage: #7A8C72;
  --rose: #D4907A;
  --text: #2C1F14;
  --text-light: #7A6858;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
}

.currency {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-right: 2px;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(222, 201, 168, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 55, 40, 0.15);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--bark);
  line-height: 1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--bark);
}

.nav-cta {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--bark);
  color: var(--cream);
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.nav-cta:hover {
  background: var(--deep-earth);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  padding: 80px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--bark);
  margin-bottom: 28px;
}

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

.hero-subtitle {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 400px;
  margin-bottom: 48px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  background: var(--bark);
  color: var(--cream);
  padding: 16px 40px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--deep-earth);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--bark);
  padding: 16px 40px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1.5px solid var(--bark);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--bark);
  color: var(--cream);
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-img-wrap {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #C8B090 0%, #B8A080 50%, #A89070 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-floral {
  font-size: 180px;
  opacity: 0.15;
  user-select: none;
  position: absolute;
  right: -20px;
  bottom: -20px;
}

.hero-product-card {
  background: rgba(222, 201, 168, 0.92);
  padding: 28px 32px;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(74, 55, 40, 0.2);
  text-align: center;
  z-index: 2;
  width: 220px;
}

.hero-product-icon {
  font-size: 60px;
  margin-bottom: 12px;
  display: block;
}

.hero-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--bark);
}

.hero-product-price {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 6px;
}

.trust-bar {
  background: var(--bark);
  padding: 28px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.trust-icon {
  font-size: 22px;
}

.trust-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 1px;
}

.trust-sub {
  font-size: 11px;
  color: rgba(212, 184, 150, 0.6);
  letter-spacing: 1px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--bark);
  line-height: 1.1;
}

.section-title em {
  font-style: italic;
}

.products-section {
  padding: 100px 60px;
  background: var(--cream);
}

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

.product-card {
  background: var(--warm-white);
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(74, 55, 40, 0.12);
}

.product-img {
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}

.product-img-0 {
  background: linear-gradient(135deg, #C8B898, #B8A080);
}

.product-img-1 {
  background: linear-gradient(135deg, #C8D8BE, #B0C4A8);
}

.product-img-2 {
  background: linear-gradient(135deg, #D0B0A8, #C09888);
}

.product-img-3 {
  background: linear-gradient(135deg, #C8B8A0, #B8A888);
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 2px;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--rose);
  color: white;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
}

.product-info {
  padding: 22px 20px 28px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 6px;
}

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

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

.product-price {
  font-size: 16px;
  font-weight: 500;
  color: var(--bark);
}

.add-to-cart {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  color: var(--deep-earth);
  border: 1px solid var(--deep-earth);
  padding: 8px 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.add-to-cart:hover {
  background: var(--bark);
  color: var(--cream);
  border-color: var(--bark);
}

.founder-section {
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--warm-white);
}

.founder-img-wrap {
  position: relative;
}

.founder-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #C4B09C, #B09880);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.founder-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--sage);
  opacity: 0.3;
}

.founder-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  line-height: 0.5;
  color: var(--earth);
  opacity: 0.4;
  display: block;
  margin-bottom: 20px;
}

.founder-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--bark);
  margin-bottom: 32px;
}

.founder-name {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.founder-title {
  font-size: 12px;
  color: var(--sage);
  margin-bottom: 36px;
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bark);
  text-decoration: none;
  border-bottom: 1.5px solid var(--earth);
  padding-bottom: 4px;
  transition: gap 0.3s;
}

.btn-explore:hover {
  gap: 20px;
}

.reviews-section {
  padding: 100px 60px;
  background: var(--cream);
}

.reviews-track {
  display: flex;
  gap: 28px;
}

.review-card {
  background: var(--warm-white);
  padding: 40px 36px;
  min-width: 320px;
  flex: 1;
  border-top: 3px solid var(--earth);
}

.review-stars {
  color: var(--rose);
  font-size: 14px;
  margin-bottom: 8px;
}

.review-date {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
  color: var(--bark);
  margin-bottom: 20px;
}

.review-author {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--earth);
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  color: var(--bark);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--bark);
  color: var(--cream);
  border-color: var(--bark);
}

.personalized-section {
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--bark);
}

.personalized-tag {
  color: var(--earth);
  margin-bottom: 14px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.personalized-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 20px;
}

.personalized-title em {
  font-style: italic;
  color: var(--earth);
}

.personalized-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(212, 184, 150, 0.7);
  margin-bottom: 36px;
}

.btn-light {
  background: var(--cream);
  color: var(--bark);
  padding: 16px 40px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-light:hover {
  background: var(--earth);
}

.personalized-img {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #5A4030, #3A2818);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  position: relative;
  overflow: hidden;
}

footer {
  background: var(--text);
  padding: 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 6px;
  color: var(--cream);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(212, 184, 150, 0.5);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(212, 184, 150, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-bottom {
  background: var(--text);
  border-top: 1px solid rgba(212, 184, 150, 0.1);
  padding: 20px 60px;
  text-align: center;
  font-size: 11px;
  color: rgba(212, 184, 150, 0.4);
  letter-spacing: 1px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-left>* {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.hero-tag {
  animation-delay: 0.1s;
}

.hero-title {
  animation-delay: 0.25s;
}

.hero-subtitle {
  animation-delay: 0.4s;
}

.mobile-quick-links {
  display: none;
}

/* 🛒 CART STYLES */
.cart-badge {
  background: var(--rose);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  position: absolute;
  top: -8px;
  right: -12px;
  min-width: 18px;
  text-align: center;
}

.cart-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bark);
  color: var(--cream);
  padding: 12px 24px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cart-toast.show {
  transform: translateX(-50%) translateY(0);
}

.nav-links a {
  position: relative;
}

/* Remove default link colors and underlines */
a {
  text-decoration: none;
  color: inherit;
}

.nav-links a:visited {
  color: var(--text-light);
}

.nav-links a:hover {
  color: var(--bark);
}

@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex !important;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right {
    height: 400px;
    order: -1;
    /* Image first on mobile for better visual entry */
  }

  .hero-left {
    padding: 40px 24px 60px;
    text-align: center;
    align-items: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .founder-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
    text-align: center;
  }

  .founder-content {
    text-align: center;
  }

  .section-tag {
    text-align: center !important;
  }

  .personalized-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
    text-align: center;
  }

  .trust-bar {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 32px;
  }

  .products-section,
  .reviews-section {
    padding: 60px 24px;
  }

  .reviews-track {
    flex-direction: column;
    gap: 20px;
  }

  .review-card {
    min-width: 100%;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 40px;
    text-align: center;
  }

  .footer-tagline {
    margin: 0 auto 20px;
  }

  .footer-bottom {
    padding: 16px 24px;
  }

  /* Quick Links Bubbles */
  .mobile-quick-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    width: 100%;
  }

  .quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.3s;
  }

  .quick-link-item:active {
    transform: scale(0.9);
  }

  .quick-link-icon {
    width: 54px;
    height: 54px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(74, 55, 40, 0.1);
  }

  .quick-link-text {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bark);
    font-weight: 500;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 42px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    height: 300px;
  }
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  color: var(--bark);
  align-items: center;
  justify-content: center;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--warm-white);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-menu-links {
  list-style: none;
  text-align: center;
  padding: 0;
}

.mobile-menu-links li {
  margin-bottom: 24px;
}

.mobile-menu-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--bark);
  text-decoration: none;
  letter-spacing: 2px;
  display: block;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  color: var(--bark);
  cursor: pointer;
  background: none;
  border: none;
}