/* ===== VARIABLES ===== */
:root {
  --cream: #FAF6F0;
  --sand: #F0EBE3;
  --primary: #8B4D4D;
  --primary-dark: #7a3e3e;
  --accent: #C4963C;
  --green: #4A6741;
  --text: #1C1410;
  --text-soft: #7A6A62;
  --white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Jost', sans-serif;

  --radius: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.12);
  --transition: 0.25s ease;

  /* Custom easing curves — stronger than browser defaults */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.seo-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-sans); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  height: 88px;
  background: rgba(250,246,240,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139,77,77,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  min-width: 140px;
}
.logo-rose-icon { flex-shrink: 0; }
.logo-img { height: 136px; width: auto; display: block; }
.navbar-links {
  display: none;
  list-style: none;
  gap: 36px;
}
.navbar-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.4px;
  transition: color var(--transition);
}
.navbar-links a:hover { color: var(--primary); }
.navbar-actions { display: flex; align-items: center; gap: 16px; }
.btn-wa-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-wa-nav:hover { background: #1da856; transform: translateY(-1px); }
.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
  transition: color var(--transition);
}
.cart-btn:hover { color: var(--primary); }
.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s, transform 0.2s;
}
.cart-count.visible { opacity: 1; transform: scale(1); }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 899;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 30px;
  font-style: italic;
  color: var(--text);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--primary); }

@media (min-width: 768px) {
  .navbar-links { display: flex; }
  .hamburger { display: none; }
}

/* ===== HERO ===== */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero {
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  overflow: hidden;
}
.hero-bg { display: none; }

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px clamp(48px, 10%, 120px);
  color: var(--text);
}
.hero-image-wrap {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 32px 24px;
}
.hero-ramo-img {
  width: 100%;
  max-height: 92vh;
  object-fit: contain;
  display: block;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  animation: heroFadeUp 700ms var(--ease-out) both;
  animation-delay: 0ms;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}
.hero-rule {
  width: 52px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 28px;
  opacity: 0.75;
  animation: heroFadeUp 700ms var(--ease-out) both;
  animation-delay: 80ms;
}
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 56px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
  letter-spacing: -1px;
  animation: heroFadeUp 700ms var(--ease-out) both;
  animation-delay: 160ms;
}
.hero-content p {
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 40px;
  color: var(--text-soft);
  max-width: 440px;
  animation: heroFadeUp 700ms var(--ease-out) both;
  animation-delay: 240ms;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
  animation: heroFadeUp 700ms var(--ease-out) both;
  animation-delay: 320ms;
}
.hero-image-wrap {
  animation: heroFadeRight 900ms var(--ease-out) both;
  animation-delay: 60ms;
}

.btn-wa-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border: 1.5px solid var(--primary);
  cursor: pointer;
  transition: background 180ms ease, transform 160ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .btn-wa-hero:hover { background: rgba(139,77,77,0.07); }
}
.btn-wa-hero:active { transform: scale(0.97); }

@media (min-width: 768px) {
  .hero-content h1 { font-size: 80px; }
  .hero-content p { font-size: 19px; }
}
@media (min-width: 1100px) {
  .hero-content h1 { font-size: 90px; }
}

@media (max-width: 767px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100svh;
  }
  .hero-image-wrap {
    order: -1;
    height: 62vw;
    max-height: 380px;
    padding: 16px;
    animation: heroFadeUp 700ms var(--ease-out) both;
    animation-delay: 0ms;
  }
  .hero-content {
    padding: 36px 24px 52px;
    text-align: center;
    align-items: center;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-rule { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-content p { max-width: none; }
  .hero-content h1 { font-size: 44px; letter-spacing: -0.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero-rule, .hero-content h1,
  .hero-content p, .hero-buttons, .hero-image-wrap {
    animation: none;
  }
}

/* ===== BENEFITS STRIP ===== */
.benefits-strip {
  background: var(--sand);
  border-top: 1px solid rgba(139,77,77,0.08);
  border-bottom: 1px solid rgba(139,77,77,0.08);
  padding: 28px 24px;
}
.benefits-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  text-align: center;
}
.benefit-item + .benefit-item {
  border-left: 1px solid rgba(139,77,77,0.1);
}
.benefit-icon { font-size: 26px; line-height: 1; }
.benefit-text { font-size: 13.5px; font-weight: 500; color: var(--text); line-height: 1.4; }
@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .benefit-item + .benefit-item {
    border-left: none;
    border-top: 1px solid rgba(139,77,77,0.1);
  }
  .benefit-item { flex-direction: row; text-align: left; gap: 12px; padding: 14px 16px; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background 220ms var(--ease-out), transform 160ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139,77,77,0.3);
  }
}
.btn-primary:active { transform: scale(0.97); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1.5px solid rgba(139,77,77,0.4);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 160ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .btn-outline:hover { background: rgba(139,77,77,0.06); border-color: var(--primary); }
}
.btn-outline:active { transform: scale(0.97); }

/* ===== SECTIONS ===== */
.section { padding: 60px 12px; }
.section-alt { background: var(--sand); }
.container { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-style: italic;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--accent);
  margin: 14px auto 0;
  opacity: 0.7;
}
.section-header p { font-size: 15px; color: var(--text-soft); max-width: 500px; margin: 12px auto 0; }

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 600px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
  display: flex;
  flex-direction: column;
}
@media (hover: hover) and (pointer: fine) {
  .product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
  .product-card:hover .product-img { transform: scale(1.04); }
}
.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 1;
}
.product-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}
.product-info { padding: 22px 20px; flex: 1; display: flex; flex-direction: column; }
.product-info h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.product-info p { font-size: 13.5px; color: var(--text-soft); line-height: 1.65; margin-bottom: 12px; flex: 1; }
.product-includes {
  font-size: 12px;
  color: var(--green);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 16px;
  padding: 10px 12px;
  background: rgba(74,103,65,0.07);
  border-radius: 8px;
}
.product-price {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}
.variety-select {
  width: 100%;
  padding: 10px 36px 10px 12px;
  border: 1.5px solid var(--sand);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text);
  background: var(--cream);
  margin-bottom: 10px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6A62' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  transition: border-color var(--transition);
}
.variety-select:focus { outline: none; border-color: var(--primary); }
.btn-add-cart {
  width: 100%;
  padding: 13px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms var(--ease-out), transform 140ms var(--ease-out);
  letter-spacing: 0.3px;
}
@media (hover: hover) and (pointer: fine) {
  .btn-add-cart:hover { background: var(--primary-dark); }
}
.btn-add-cart:active { transform: scale(0.97); }

/* ===== CATALOG ===== */
.catalog-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 15px;
  border: 1.5px solid var(--sand);
  border-radius: 20px;
  background: white;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-soft);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 140ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .tab-btn:hover { border-color: var(--primary); color: var(--primary); }
}
.tab-btn:active { transform: scale(0.96); }
.tab-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.tab-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.4);
}

/* Panel fade-in on tab switch */
.varieties-panel {
  display: none;
}
.varieties-panel.active {
  display: block;
  animation: panelFadeIn 220ms var(--ease-out) both;
}
@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Variety cards — circular photo + name */
.varieties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 14px;
}
.variety-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 10px 14px;
  background: white;
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
  cursor: default;
}
@media (hover: hover) and (pointer: fine) {
  .variety-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
  }
  .variety-card:hover .variety-img {
    transform: scale(1.08);
  }
}
.variety-img-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--sand);
  flex-shrink: 0;
}
.variety-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms var(--ease-out);
}
.variety-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
}

@media (min-width: 600px) {
  .variety-img-wrap { width: 84px; height: 84px; }
  .varieties-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}

/* ===== WHY PEMBE ===== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  text-align: center;
  padding: 36px 24px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-style: italic;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--text-soft); line-height: 1.65; }

/* ===== CONTACT ===== */
.contact-inner { text-align: center; max-width: 800px; margin: 0 auto; }
.contact-inner h2 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 14px;
}
.contact-inner > p { font-size: 16px; color: var(--text-soft); margin-bottom: 32px; }
.btn-wa-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn-wa-large:hover {
  background: #1da856;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.contact-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 14px;
  transition: opacity var(--transition);
}
.contact-ig:hover { opacity: 0.7; }
.contact-note { font-size: 13px; color: var(--text-soft); display: block; }

/* ===== FOOTER ===== */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 56px 20px 36px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 34px;
  font-style: italic;
  color: var(--cream);
  display: block;
  margin-bottom: 28px;
}
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 24px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: white; }
.footer-ig { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.footer-sub { font-size: 12px; color: rgba(255,255,255,0.3); margin-bottom: 4px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-designed { font-size: 11px; color: rgba(255,255,255,0.2); margin-top: 12px; }
.footer-designed a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-designed a:hover { color: rgba(255,255,255,0.7); }

/* ===== CART SIDEBAR ===== */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1900;
}
.cart-overlay.open { display: block; }
.cart-sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 400px;
  background: white;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 380ms var(--ease-drawer);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--sand);
}
.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
}
.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text-soft);
  transition: color var(--transition);
  line-height: 1;
}
.cart-close:hover { color: var(--text); }
.cart-items { flex: 1; overflow-y: auto; padding: 8px 24px; }
.cart-empty {
  text-align: center;
  color: var(--text-soft);
  font-size: 14px;
  padding-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cart-item {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--sand);
  align-items: flex-start;
}
.cart-item-img { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.cart-item-variety { font-size: 12px; color: var(--text-soft); margin-bottom: 8px; }
.cart-item-controls { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--sand);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: var(--text);
  transition: all var(--transition);
}
.qty-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
.qty-num { font-weight: 600; font-size: 14px; min-width: 20px; text-align: center; }
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-item-price {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}
.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-soft);
  font-size: 20px;
  line-height: 1;
  padding: 0;
  transition: color var(--transition);
}
.cart-item-remove:hover { color: #c0392b; }
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--sand);
  background: white;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cart-total-label { font-weight: 600; font-size: 15px; }
.cart-total-amount {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
}
.btn-checkout {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms var(--ease-out), transform 140ms var(--ease-out);
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (hover: hover) and (pointer: fine) {
  .btn-checkout:hover { background: var(--primary-dark); }
}
.btn-checkout:active { transform: scale(0.98); }
.btn-checkout:disabled { background: var(--text-soft); cursor: not-allowed; }

/* ===== CHECKOUT MODAL ===== */
.checkout-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 3000;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 20px;
}
.checkout-overlay.open { display: flex; }
.checkout-modal {
  background: white;
  border-radius: 18px;
  padding: 32px 28px;
  width: 100%;
  max-width: 520px;
  margin: auto;
}
.checkout-modal h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-style: italic;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.checkout-subtitle { font-size: 14px; color: var(--text-soft); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--sand);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition);
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.char-count { font-size: 11px; color: var(--text-soft); text-align: right; margin-top: 4px; }
.checkout-summary {
  background: var(--cream);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 24px;
}
.checkout-summary-title { font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-soft);
  padding: 4px 0;
}
.summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  border-top: 1px solid var(--sand);
  margin-top: 10px;
  padding-top: 10px;
}
.checkout-actions { display: flex; gap: 12px; }
.btn-cancel {
  flex: 1;
  padding: 14px;
  background: none;
  color: var(--text-soft);
  border: 1.5px solid var(--sand);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-cancel:hover { border-color: var(--text-soft); color: var(--text); }
.btn-pay {
  flex: 2;
  padding: 14px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-pay:hover { background: var(--primary-dark); }

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1800;
  background: #2E7D52;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(46,125,82,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(46,125,82,0.4);
}

/* ===== TOAST ===== */
.toast-container {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.toast {
  background: var(--text);
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  max-width: 280px;
  animation: toastIn 0.3s ease, toastOut 0.3s ease 2.5s forwards;
}
@keyframes toastIn { from { transform: translateX(110%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes toastOut { to { opacity: 0; transform: translateY(6px); } }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
}

/* ===== NAVBAR LOGO POLISH ===== */
.navbar-logo {
  transition: opacity 180ms ease;
}
.navbar-logo:hover { opacity: 0.75; }

/* ===== WA FLOAT POLISH ===== */
.wa-float {
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(46,125,82,0.45);
  }
}
.wa-float:active { transform: scale(0.95); }

/* ===== FLOWER CARD: GROUP LABEL + WA BUTTON ===== */
.flower-card-group {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}
.flower-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
}
.btn-wa-card {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #2E7D52;
  color: white;
  padding: 6px 11px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 180ms ease, transform 140ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .btn-wa-card:hover { background: #256644; }
}
.btn-wa-card:active { transform: scale(0.96); }

/* ===== NAVBAR ACTIVE LINK ===== */
.navbar-links a.active { color: var(--primary); }
.mobile-menu a.active  { color: var(--primary); }

/* ===== FLOWER CATALOG GRID ===== */
.flowers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 600px) { .flowers-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 900px) { .flowers-grid { grid-template-columns: repeat(4, 1fr); } }

.flower-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .flower-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
  .flower-card:hover .flower-card-img { transform: scale(1.06); }
}
.flower-card:active { transform: scale(0.98); }

.flower-card-img-wrap {
  aspect-ratio: 1 / 1;
  background: var(--group-color, var(--sand));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.flower-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 400ms var(--ease-out);
  position: relative;
  z-index: 1;
}
.flower-placeholder-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.35;
  z-index: 0;
}
.flower-card-img-wrap.no-img .flower-placeholder-icon { opacity: 0.5; }

.flower-card-info {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--sand);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.flower-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-bottom: 2px;
  flex-shrink: 0;
}
.flower-card-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}
.flower-card-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

/* ===== FLOWER MODAL ===== */
.flower-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2500;
  backdrop-filter: blur(2px);
}
.flower-modal-overlay.open { display: block; }

.flower-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  width: calc(100% - 32px);
  max-width: 1100px;
  background: white;
  border-radius: 24px;
  z-index: 2600;
  opacity: 0;
  pointer-events: none;
  transition: transform 320ms var(--ease-out), opacity 320ms var(--ease-out);
  max-height: 88vh;
  overflow-y: auto;
}
.flower-modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: all;
}

.flower-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(255,255,255,0.92);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-soft);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  transition: background var(--transition), color var(--transition);
}
.flower-modal-close:hover { background: var(--primary); color: white; }

/* Two-column grid: photo left · form right */
.flower-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.flower-modal-left {
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
}
.flower-modal-img-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 340px;
}
.flower-modal-img {
  max-width: 100%;
  max-height: 380px;
  width: auto;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  display: block;
}
.modal-placeholder-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.25;
}
.flower-modal-img-wrap.no-img .modal-placeholder-icon { opacity: 0.4; }

.flower-modal-info { display: none; }
.flower-modal-right {
  padding: 40px 44px 36px;
  display: flex;
  flex-direction: column;
}
.flower-modal-group {
  display: none;
}
.flower-modal-name {
  font-family: var(--font-serif);
  font-size: 42px;
  font-style: italic;
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 8px;
}
.flower-modal-hint {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 24px;
}
.flower-modal-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 14px;
  padding: 0 20px;
}

/* Presentation options — 3-column card grid */
.presentation-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 20px 24px;
}

.pres-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 20px 12px;
  border: 2px solid var(--sand);
  border-radius: 16px;
  cursor: pointer;
  background: white;
  transition: border-color 180ms ease, background 180ms ease, transform 160ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .pres-card:hover { border-color: rgba(139,77,77,0.4); transform: translateY(-2px); }
}
.pres-card.selected {
  border-color: var(--primary);
  background: var(--primary);
}

.pres-card-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}
.pres-card.selected .pres-card-badge { color: rgba(255,255,255,0.75); }

.pres-card-name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.pres-card.selected .pres-card-name { color: white; }

.pres-card-detail {
  font-size: 11px;
  color: var(--text-soft);
  line-height: 1.4;
}
.pres-card.selected .pres-card-detail { color: rgba(255,255,255,0.7); }

.pres-card-price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 4px;
}
.pres-card.selected .pres-card-price { color: white; }

.pres-preview {
  margin: 0 20px 16px;
  border-radius: 14px;
  overflow: hidden;
  display: none;
}
.pres-preview.visible { display: block; }
.pres-preview-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}

.btn-add-modal {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 200ms var(--ease-out), transform 140ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .btn-add-modal:not(:disabled):hover { background: var(--primary-dark); }
}
.btn-add-modal:active { transform: scale(0.98); }
.btn-add-modal:disabled { background: var(--sand); color: var(--text-soft); cursor: not-allowed; }

/* Modal mobile */
@media (max-width: 600px) {
  .flower-modal-left { flex-direction: column; align-items: flex-start; padding: 20px; gap: 14px; }
  .flower-modal-img-wrap { width: 120px; height: 120px; }
  .flower-modal-img { max-height: 120px; }
  .flower-modal-name { font-size: 26px; }
  .flower-modal-right { padding: 16px 20px 24px; }
  .presentation-options { grid-template-columns: 1fr; gap: 12px; padding: 0 16px 20px; }
  .pres-card-img-wrap { min-height: 200px; }
}

/* ===== PAGE HEADER (sub-pages) ===== */
.page-header {
  padding: 48px 20px 36px;
  text-align: center;
  background: var(--cream);
  border-bottom: 1px solid rgba(139,77,77,0.08);
}
.page-header .hero-eyebrow { margin-bottom: 16px; }
.page-header h1 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-style: italic;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.page-header p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .page-header h1 { font-size: 58px; }
}
