/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: #2d1b1b;
  background: #fefcf5;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: #c9a84c; color: #fff; }

.container { width: 92%; max-width: 1200px; margin: 0 auto; }

/* ── Typography ── */
h1, h2, h3, .logo { font-family: 'Playfair Display', serif; }

/* ── Header ── */
.header {
  position: fixed; top: 0; left: 0; width: 100%;
  background: rgba(254, 252, 245, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212, 160, 160, 0.2);
  z-index: 1000;
  transition: background 0.3s;
}
.header.scrolled { background: rgba(254, 252, 245, 0.96); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  font-size: 1.4rem; font-weight: 600; letter-spacing: 3px;
  color: #1b4332;
}
.logo__amp { color: #d4af37; font-style: italic; font-weight: 400; }

/* ── Desktop Nav ── */
.desktop-nav { display: flex; gap: 2.5rem; }
.desktop-nav__link {
  color: #4a3a2a; font-weight: 500; font-size: 0.78rem;
  transition: color 0.25s; text-transform: uppercase; letter-spacing: 1.5px;
  position: relative;
}
.desktop-nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1.5px; background: #c9a84c;
  transition: width 0.3s;
}
.desktop-nav__link:hover { color: #2d6a4f; }
.desktop-nav__link:hover::after { width: 100%; }

/* ── Hamburger (3-line) ── */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 28px; flex-direction: column;
  justify-content: center; gap: 5px; padding: 0;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: #1b4332; border-radius: 1px;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Cart Button ── */
.cart-btn {
  position: relative; background: none; border: none; color: #1b4332;
  cursor: pointer; padding: 0.35rem; transition: color 0.2s;
}
.cart-btn:hover { color: #2d6a4f; }
.cart-btn__badge {
  position: absolute; top: -6px; right: -8px;
  background: #c9a84c; color: #fff; font-size: 0.6rem;
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-family: 'Montserrat', sans-serif;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center; text-align: center;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
  background: url('https://images.unsplash.com/photo-1758225502621-9102d2856dc8?q=80&w=2105&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center / cover no-repeat;
}
.hero__overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(27, 67, 50, 0.7), rgba(13, 33, 24, 0.75));
}
.hero__content {
  position: relative; z-index: 2;
  animation: fadeUp 1s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__label {
  font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
  color: #d4af37; margin-bottom: 1.2rem;
}
.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 400; letter-spacing: 4px;
  color: #fdf5f5; line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero__subtitle {
  font-size: 0.95rem; color: #e8ddd0; font-weight: 300;
  margin-bottom: 2.5rem; max-width: 480px; margin-inline: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-block; padding: 0.9rem 2.8rem;
  font-weight: 500; border-radius: 50px;
  transition: all 0.3s; cursor: pointer;
  border: none; font-size: 0.8rem; letter-spacing: 1.5px;
  text-transform: uppercase; font-family: 'Montserrat', sans-serif;
}
.btn--primary {
  background: linear-gradient(135deg, #c9a84c, #2d6a4f);
  color: #fff;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.5);
}
.btn--outline {
  background: transparent; color: #1b4332; border: 1.5px solid #c9a84c;
}
.btn--outline:hover {
  background: #c9a84c; color: #fff;
}

/* ── Sections ── */
.section { padding: 5.5rem 0; text-align: center; }
.section--alt { background: #f5efe6; }
.section__label {
  font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
  color: #d4af37; margin-bottom: 0.5rem;
}
.section__title {
  font-size: 2.2rem; font-weight: 400; letter-spacing: 2px;
  color: #2d1b1b; margin-bottom: 0.75rem;
}
.section__desc {
  color: #6a5a4a; max-width: 560px; margin: 0 auto 3rem;
  font-size: 0.92rem; font-weight: 300;
}

/* ── Categories ── */
.categories {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0.6rem; margin-bottom: 3rem;
}
.category-btn {
  padding: 0.5rem 1.5rem; border-radius: 50px;
  border: 1px solid #e8ddd0; background: transparent;
  color: #4a3a2a; font-size: 0.78rem; cursor: pointer;
  transition: all 0.25s; font-family: 'Montserrat', sans-serif;
  text-transform: uppercase; letter-spacing: 1px; font-weight: 500;
}
.category-btn:hover { border-color: #c9a84c; color: #1b4332; }
.category-btn.active {
  background: #1b4332; color: #fdf5f5; border-color: #1b4332;
}

/* ── Products Grid ── */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.product {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(27, 67, 50, 0.06);
  transition: transform 0.4s, box-shadow 0.4s;
  display: flex; flex-direction: column;
  opacity: 1; transform: translateY(0);
  color: inherit; text-decoration: none;
}
.product.hidden { display: none; }
.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(27, 67, 50, 0.12);
}
.product__img {
  width: 100%; height: 300px; overflow: hidden;
}
.product__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.product:hover .product__img img { transform: scale(1.08); }
.product__body {
  padding: 1.5rem; text-align: left; flex: 1;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.product__cat {
  font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase;
  color: #d4af37; font-weight: 500;
}
.product__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: #2d1b1b;
}
.product__notes {
  font-size: 0.82rem; color: #8a7a6a; font-weight: 300;
}
.product__bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 0.75rem;
  gap: 0.5rem;
}
.product__price {
  font-size: 1.2rem; font-weight: 600; color: #2d6a4f;
  font-family: 'Playfair Display', serif;
  white-space: nowrap;
}
.product__btns {
  display: flex;
  gap: 0.35rem;
}
.product__btn {
  padding: 0.45rem 1rem; border-radius: 50px;
  background: transparent; color: #4a3a2a; border: 1px solid #e8ddd0;
  font-weight: 500; cursor: pointer; transition: all 0.25s;
  font-size: 0.68rem; letter-spacing: 0.5px;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
}
.product__btn--cart:hover { background: #c9a84c; color: #fff; border-color: #c9a84c; }
.product__btn--buy {
  background: #1b4332; color: #fdf5f5; border-color: #1b4332;
}
.product__btn--buy:hover { background: #2d1b1b; }

/* ── About Grid ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  text-align: left;
}
.about-image {
  border-radius: 20px; overflow: hidden; box-shadow: 0 8px 32px rgba(27, 67, 50, 0.1);
}
.about-image img { width: 100%; height: 420px; object-fit: cover; }
.about-text .section__title { text-align: left; }
.about-text .section__desc { margin: 0 0 1.5rem; text-align: left; }

/* ── Subscribe ── */
.subscribe {
  display: flex; gap: 0.75rem; max-width: 460px; margin: 0 auto;
}
.subscribe__input {
  flex: 1; padding: 0.85rem 1.5rem; border-radius: 50px;
  border: 1px solid #e8ddd0; font-size: 0.9rem;
  outline: none; background: #fff; font-family: 'Montserrat', sans-serif;
  transition: border-color 0.25s;
}
.subscribe__input:focus { border-color: #c9a84c; }

/* ── Footer ── */
.footer {
  background: #2d1b1b; color: #a88a7a;
  padding: 3rem 0 2rem;
}
.footer__inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.footer .logo { color: #fdf5f5; }
.footer__tagline { font-size: 0.82rem; font-weight: 300; margin-top: 0.3rem; }
.footer__links { display: flex; gap: 2rem; }
.footer__links a {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px;
  color: #a88a7a; transition: color 0.2s;
}
.footer__links a:hover { color: #d4af37; }
.footer__copy { font-size: 0.75rem; color: #7a6a5a; }

/* ── Cart ── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(45, 27, 27, 0.5);
  opacity: 0; visibility: hidden; transition: 0.35s; z-index: 2000;
  backdrop-filter: blur(4px);
}
.cart-overlay.active { opacity: 1; visibility: visible; }

.cart {
  position: fixed; top: 0; right: 0; height: 100%; width: 100%;
  max-width: 420px; background: #fefcf5;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2001; display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(45, 27, 27, 0.12);
}
.cart.active { transform: translateX(0); }
.cart__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 2rem; border-bottom: 1px solid #f5efe6;
}
.cart__header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: #2d1b1b;
}
.cart__header button {
  background: none; border: none; font-size: 1.8rem; cursor: pointer;
  color: #8a7a6a; transition: color 0.2s;
}
.cart__header button:hover { color: #1b4332; }
.cart__items { flex: 1; overflow-y: auto; padding: 1rem 2rem; }
.cart__empty { color: #8a7a6a; text-align: center; margin-top: 3rem; font-weight: 300; }
.cart__item {
  display: flex; gap: 1rem; align-items: center;
  padding: 1rem 0; border-bottom: 1px solid #f5efe6;
}
.cart__item-img {
  width: 56px; height: 56px; border-radius: 12px; overflow: hidden;
  flex-shrink: 0;
}
.cart__item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart__item-info { flex: 1; }
.cart__item-name { font-weight: 600; color: #2d1b1b; font-size: 0.88rem; }
.cart__item-price { color: #2d6a4f; font-size: 0.82rem; }
.cart__item-qty { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.35rem; }
.cart__item-qty button {
  background: #f5efe6; border: none; width: 26px; height: 26px;
  border-radius: 50%; cursor: pointer; font-weight: 500;
  font-size: 0.9rem; color: #2d1b1b; transition: background 0.2s;
}
.cart__item-qty button:hover { background: #c9a84c; color: #fff; }
.cart__item-qty span { font-weight: 500; font-size: 0.85rem; min-width: 22px; text-align: center; }
.cart__item-remove {
  background: none; border: none; color: #a88a7a; cursor: pointer;
  font-size: 1.1rem; transition: color 0.2s;
}
.cart__item-remove:hover { color: #2d6a4f; }
.cart__footer { padding: 1.25rem 2rem 2rem; border-top: 1px solid #f5efe6; }
.cart__totals {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.cart__totals span:first-child {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: #6a5a4a;
}
.cart__total { font-size: 1.3rem; font-weight: 600; color: #2d1b1b; font-family: 'Playfair Display', serif; }
.cart__footer .btn { width: 100%; }

/* ── Toast ── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: #2d1b1b; color: #fdf5f5;
  padding: 0.85rem 1.8rem; border-radius: 50px;
  font-weight: 400; font-size: 0.85rem;
  box-shadow: 0 8px 28px rgba(45, 27, 27, 0.2);
  transform: translateY(100px); opacity: 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 3000;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── Scroll Animations ── */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image img { height: 300px; }
}

/* ── Mobile Drawer ── */
.drawer {
  position: fixed; inset: 0; z-index: 2000;
  visibility: hidden; opacity: 0; transition: 0.35s;
}
.drawer.active { visibility: visible; opacity: 1; }
.drawer__overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.35);
}
.drawer__panel {
  position: absolute; top: 0; right: 0; width: 80%; max-width: 360px; height: 100%;
  background: #fff; display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.drawer.active .drawer__panel { transform: translateX(0); }

.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f5efe6;
}
.drawer__close {
  background: none; border: none; font-size: 1.5rem;
  color: #6a5a4a; cursor: pointer; padding: 0.2rem; line-height: 1;
}
.drawer__close:hover { color: #2d1b1b; }

.drawer__nav { flex: 1; overflow-y: auto; padding: 1rem 0; }
.drawer__link {
  display: block; padding: 0.85rem 1.5rem;
  font-size: 0.92rem; color: #1b4332; font-weight: 500;
  transition: background 0.2s;
}
.drawer__link:hover { background: #f5efe6; }

/* ── Floating WhatsApp ── */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  z-index: 999; width: 52px; height: 52px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }

@media (max-width: 900px) {
  body.nav-open { overflow: hidden; }
  .desktop-nav { display: none; }
  .whatsapp-float { display: none; }

  .hamburger {
    display: flex; position: relative; z-index: 2001;
    -webkit-tap-highlight-color: transparent;
  }

  .subscribe { flex-direction: column; align-items: stretch; }
  .products { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(2rem, 6vw, 3rem); }
  .section__title { font-size: 1.5rem; }
}
