/* ===== Giftrix — Styles ===== */
:root {
  --ink: #14181f;
  --ink-soft: #3a4050;
  --muted: #6b7280;
  --line: #e7e4de;
  --bg: #fbf9f5;
  --bg-alt: #f3efe6;
  --white: #ffffff;
  --accent: #b8893b;
  --accent-deep: #8d6623;
  --accent-soft: #f4e9d3;
  --navy: #18223a;
  --success: #25d366;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 6px rgba(20, 24, 31, 0.06);
  --shadow: 0 10px 30px rgba(20, 24, 31, 0.08);
  --shadow-lg: 0 20px 60px rgba(20, 24, 31, 0.12);
  --t: 0.25s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: var(--ink); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--accent-deep); }
img { max-width: 100%; display: block; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-deep);
  margin-bottom: 0.8em;
}
.accent { color: var(--accent-deep); font-style: italic; }
.muted { color: var(--muted); font-size: 0.95rem; }
.center { text-align: center; }
.mt-2 { margin-top: 1.5rem; }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 249, 245, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.3rem;
}
.brand-mark {
  width: 34px; height: 34px; display: grid; place-items: center;
  background: var(--ink); color: var(--accent-soft);
  border-radius: 10px; font-family: 'Fraunces', serif; font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.brand-name { color: var(--ink); }
.brand-logo {
  height: 90px; width: auto; display: block;
  object-fit: contain;
  margin: -18px 0;
}
@media (max-width: 720px) {
  .brand-logo { height: 70px; margin: -14px 0; }
}

.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  font-weight: 500; font-size: 0.96rem; color: var(--ink-soft);
  position: relative;
}
.nav-links a.active, .nav-links a:hover { color: var(--ink); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--accent);
}
.nav-links .btn::after { display: none; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 0.5rem; gap: 4px; flex-direction: column;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: var(--t);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  text-decoration: none;
}
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.88rem; }
.btn-primary {
  background: var(--ink); color: var(--white);
  box-shadow: 0 8px 20px rgba(20, 24, 31, 0.18);
}
.btn-primary:hover { background: var(--accent-deep); color: var(--white); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-whatsapp {
  background: var(--success); color: var(--white); justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover { background: #1fb858; color: var(--white); transform: translateY(-1px); }

/* ===== Hero ===== */
.hero { padding: 4rem 0 5rem; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(closest-side, var(--accent-soft), transparent);
  z-index: 0;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem;
  align-items: center; position: relative; z-index: 1;
}
.hero-copy .lead { font-size: 1.15rem; max-width: 56ch; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 2.5rem; flex-wrap: wrap;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: 'Fraunces', serif; font-size: 1.75rem; color: var(--ink);
}
.hero-stats span { font-size: 0.85rem; color: var(--muted); }

.hero-visual {
  position: relative; aspect-ratio: 1/1; max-width: 460px; margin-left: auto;
}
.hero-visual .card {
  position: absolute; background: var(--white); border-radius: var(--radius);
  padding: 1.25rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.4rem;
  font-weight: 600; font-size: 0.92rem;
  transition: transform var(--t);
}
.hero-visual .card span { font-size: 2.2rem; }
.hero-visual .card p { margin: 0; color: var(--ink); }
.hero-visual .card:hover { transform: translateY(-6px); }
.card-1 { top: 0; left: 0; background: var(--accent-soft); }
.card-2 { top: 5%; right: 0; }
.card-3 { bottom: 10%; left: 8%; }
.card-4 { bottom: 0; right: 5%; background: var(--navy); color: var(--white); }
.card-4 p { color: var(--white); }

/* ===== Sections ===== */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head h2 { margin-bottom: 0; }

/* Features */
.feature-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.feature {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); transition: transform var(--t), box-shadow var(--t);
  display: flex; flex-direction: column;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon {
  font-size: 2rem; width: 54px; height: 54px; border-radius: 12px;
  background: var(--accent-soft); display: grid; place-items: center;
  margin-bottom: 1.2rem;
}
.feature-photo {
  aspect-ratio: 4 / 3; background: #f5efe4; overflow: hidden;
  display: block; position: relative;
}
.feature-photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.feature:hover .feature-photo img { transform: scale(1.05); }
.feature-body { padding: 1.4rem 1.6rem 1.6rem; }
.feature h3 { margin: 0 0 0.5rem; }
.feature p { margin: 0; font-size: 0.96rem; }
/* keep emoji-icon variant working for any leftover usages */
.feature > .feature-icon { margin: 2rem 2rem 0; }
.feature > .feature-icon + h3 { padding: 0 2rem; }
.feature > .feature-icon ~ p { padding: 0 2rem 2rem; }

/* Categories */
.category-grid {
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Carousel wrapper — used for the "What we gift" slideshow */
.carousel { position: relative; }
.carousel-track {
  display: flex; gap: 1.2rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > .category {
  flex: 0 0 calc((100% - 3 * 1.2rem) / 4);
  scroll-snap-align: start;
}
@media (max-width: 1024px) {
  .carousel-track > .category { flex-basis: calc((100% - 2 * 1.2rem) / 3); }
}
@media (max-width: 768px) {
  .carousel-track > .category { flex-basis: calc((100% - 1.2rem) / 2); }
}
@media (max-width: 520px) {
  .carousel-track > .category { flex-basis: 78%; }
}
.carousel-btn {
  position: absolute; top: 38%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line);
  color: var(--ink); font-size: 1.6rem; line-height: 1;
  cursor: pointer; box-shadow: var(--shadow);
  display: grid; place-items: center; z-index: 5;
  transition: all var(--t);
}
.carousel-btn:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.carousel-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.carousel-prev { left: -22px; }
.carousel-next { right: -22px; }
@media (max-width: 768px) {
  .carousel-prev { left: 4px; }
  .carousel-next { right: 4px; }
  .carousel-btn { width: 40px; height: 40px; font-size: 1.3rem; }
}
.carousel-dots {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-top: 0.5rem;
}
.carousel-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line); border: none; cursor: pointer;
  padding: 0; transition: all var(--t);
}
.carousel-dots button.active {
  background: var(--accent); width: 24px; border-radius: 4px;
}

.category {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); transition: all var(--t);
  display: flex; flex-direction: column; text-decoration: none;
}
.category:hover {
  border-color: var(--accent); transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.category-photo {
  aspect-ratio: 4 / 3; background: #f5efe4; overflow: hidden; position: relative;
}
.category-photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.category-photo img.product-shot {
  object-fit: contain; padding: 0.6rem;
}
.category:hover .category-photo img { transform: scale(1.05); }
.category-body { padding: 1.1rem 1.4rem 1.4rem; display: flex; flex-direction: column; gap: 0.3rem; }
.category h3 { margin: 0; color: var(--ink); font-size: 1.1rem; }
.category p { margin: 0; font-size: 0.9rem; color: var(--muted); }

/* CTA banner */
.cta-banner {
  background: var(--ink); color: var(--white);
  padding: 3rem; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  background-image: radial-gradient(circle at 90% 0%, rgba(184, 137, 59, 0.35), transparent 60%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.4em; }
.cta-banner p { color: rgba(255, 255, 255, 0.78); margin: 0; max-width: 50ch; }
.cta-banner .btn-primary { background: var(--accent); }
.cta-banner .btn-primary:hover { background: var(--white); color: var(--ink); }

/* ===== Page Hero ===== */
.page-hero {
  padding: 5rem 0 3rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.page-hero .lead { font-size: 1.1rem; max-width: 60ch; }

/* ===== Products Page ===== */
.filter-bar {
  display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.5rem;
  justify-content: center;
}
.chip {
  padding: 0.55rem 1.1rem; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  cursor: pointer; font-weight: 500; font-size: 0.9rem;
  transition: var(--t);
}
.chip:hover { border-color: var(--accent); }
.chip.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

.product-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.product {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--line); overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-image {
  aspect-ratio: 4/3; display: grid; place-items: center;
  font-size: 3.5rem;
}
.product h3 { margin: 1rem 1.2rem 0.3rem; font-size: 1.1rem; }
.product p { margin: 0 1.2rem 0.8rem; font-size: 0.92rem; }
.product .tag {
  display: inline-block; margin: 0 1.2rem 1.2rem;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600; color: var(--accent-deep);
}
.product.hidden { display: none; }

/* Make product card a vertical flex so the buy block always sticks to bottom */
.product { display: flex; flex-direction: column; }
.product .tag { margin-bottom: 0.8rem; }
.product .sku {
  display: inline-block; margin: 0.9rem 1.2rem 0.1rem;
  font-size: 0.7rem; letter-spacing: 0.1em;
  font-weight: 700; color: var(--muted); text-transform: uppercase;
}
.product h3 { margin: 0.2rem 1.2rem 0.3rem; }

/* Shop block injected by js/buy-buttons.js */
.product .shop {
  margin-top: auto;
  padding: 0.9rem 1.2rem 1.1rem;
  border-top: 1px dashed var(--line);
  display: flex; flex-direction: column; gap: 0.65rem;
}
.product .price-row {
  display: flex; align-items: baseline; gap: 0.4rem;
}
.product .price {
  font-size: 1.25rem; font-weight: 800; color: var(--ink);
  letter-spacing: -0.01em;
}
.product .per { font-size: 0.85rem; color: var(--muted); margin-right: auto; }
.product .moq {
  font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 700; color: var(--accent-deep);
  background: var(--accent-soft);
  padding: 0.25rem 0.55rem; border-radius: 999px;
}
.product .buy-row { display: flex; gap: 0.5rem; }
.product .btn-buy,
.product .btn-wa {
  flex: 1; display: inline-flex; align-items: center; justify-content: center;
  gap: 0.3rem;
  padding: 0.6rem 0.7rem; border-radius: 10px;
  font-size: 0.88rem; font-weight: 700;
  text-decoration: none; cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--t), background var(--t), color var(--t), border-color var(--t);
}
.product .btn-buy {
  background: var(--ink); color: var(--white);
}
.product .btn-buy:hover { background: var(--accent-deep); transform: translateY(-1px); }
.product .btn-wa {
  background: #25D366; color: #fff;
}
.product .btn-wa:hover { background: #1ebe5c; transform: translateY(-1px); }

@media (max-width: 480px) {
  .product .buy-row { flex-direction: column; }
}

/* ===== About Page ===== */
.two-col {
  display: grid; gap: 3rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}
.panel {
  background: var(--white); padding: 2.2rem; border-radius: var(--radius);
  border: 1px solid var(--line);
}
.panel h3 { margin-bottom: 1rem; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  padding: 0.6rem 0 0.6rem 1.8rem;
  border-bottom: 1px solid var(--line); position: relative;
  color: var(--ink-soft);
}
.check-list li:last-child { border: none; }
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0.55rem;
  color: var(--accent-deep); font-weight: 700;
}

.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  counter-reset: step;
}
.steps li {
  background: var(--white); padding: 1.75rem; border-radius: var(--radius);
  border: 1px solid var(--line); position: relative;
}
.step-num {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-deep);
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.1rem;
  margin-bottom: 1rem;
}
.steps h3 { margin-bottom: 0.3rem; }
.steps p { margin: 0; font-size: 0.94rem; }

.stats-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
}
.stats-grid > div {
  background: var(--white); padding: 2rem 1rem; border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.3rem;
}
.stats-grid strong {
  font-family: 'Fraunces', serif; font-size: 2.25rem; color: var(--ink);
}
.stats-grid span { color: var(--muted); font-size: 0.9rem; }

/* ===== Contact ===== */
.contact-grid {
  display: grid; gap: 3rem;
  grid-template-columns: 1.4fr 0.9fr;
  align-items: start;
}
.contact-form {
  background: var(--white); padding: 2.5rem; border-radius: var(--radius);
  border: 1px solid var(--line);
}
.field { display: flex; flex-direction: column; margin-bottom: 1.2rem; }
.field-row {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.field label {
  font-size: 0.88rem; font-weight: 600; color: var(--ink);
  margin-bottom: 0.4rem;
}
.field input, .field select, .field textarea {
  font: inherit; padding: 0.8rem 1rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg); color: var(--ink);
  transition: var(--t); font-size: 0.96rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: var(--white);
  box-shadow: 0 0 0 3px rgba(184, 137, 59, 0.15);
}
.field textarea { resize: vertical; min-height: 120px; }

.form-note {
  margin-top: 1rem; padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--accent-soft); color: var(--ink);
  font-size: 0.92rem;
}

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.info-card {
  background: var(--white); padding: 1.75rem; border-radius: var(--radius);
  border: 1px solid var(--line);
}
.info-card h3 { margin-bottom: 1rem; }
.info-card p { margin: 0 0 1rem; font-size: 0.95rem; }
.info-card p:last-child { margin-bottom: 0; }
.info-card a { color: var(--accent-deep); font-weight: 500; }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink); color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 1.5rem; margin-top: 4rem;
}
.site-footer .brand-name { color: var(--white); }
.site-footer .brand-mark { background: var(--accent); color: var(--ink); }
.logo-card {
  display: inline-block;
}
.brand-footer .brand-logo {
  height: 90px;
  margin: -18px 0;
  filter: invert(1) hue-rotate(180deg);
}
sup {
  font-size: 0.7em;
  font-weight: 700;
  position: relative;
  top: -0.5em;
  margin-left: 2px;
  color: var(--accent);
  display: inline-block;
  line-height: 1;
  vertical-align: baseline;
}
.footer-bottom { color: rgba(255,255,255,0.8) !important; }
.footer-bottom p { color: inherit; }
.footer-bottom sup {
  color: #f4c470;
  font-size: 0.75em;
  top: -0.4em;
  font-weight: 700;
}
.eyebrow sup {
  color: var(--ink);
  font-size: 0.7em;
  top: -0.4em;
  margin-left: 2px;
  font-weight: 700;
}
@media (max-width: 720px) {
  .brand-footer .brand-logo { height: 70px; margin: -14px 0; }
}
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.5fr 1fr 1fr;
  margin-bottom: 3rem;
}
.footer-grid h4 {
  color: var(--white); font-family: 'Inter', sans-serif;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-grid a {
  display: block; color: rgba(255, 255, 255, 0.72);
  padding: 0.3rem 0; font-size: 0.95rem;
}
.footer-grid a:hover { color: var(--white); }
.footer-tag { color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; max-width: 40ch; }
.site-footer .muted { color: rgba(255, 255, 255, 0.5); font-size: 0.85rem; }
.footer-bottom {
  padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem; color: rgba(255, 255, 255, 0.5);
}
.footer-bottom p { margin: 0; color: inherit; }

.socials {
  display: flex; gap: 0.5rem; margin-top: 1rem;
}
.socials a {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0; border: 1px solid rgba(255, 255, 255, 0.12);
}
.socials a:hover {
  background: var(--accent); color: var(--ink);
  border-color: var(--accent);
}

/* ===== Top bar ===== */
.topbar {
  background: var(--ink); color: var(--white);
  font-size: 0.86rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 1.5rem; padding: 0.55rem 0; flex-wrap: wrap;
}
.topbar-link {
  color: rgba(255,255,255,0.88); display: inline-flex; align-items: center;
  gap: 0.4rem; font-weight: 500; transition: color var(--t);
}
.topbar-link:hover { color: var(--accent); }
.topbar-link span { font-size: 1rem; }
.topbar-wa { color: #8be3a9; font-weight: 600; }
.topbar-wa:hover { color: var(--success); }
@media (max-width: 640px) {
  .topbar-hide-sm { display: none; }
  .topbar-inner { justify-content: center; gap: 1rem; font-size: 0.82rem; }
}

/* ===== Floating WhatsApp ===== */
.wa-float {
  position: fixed; bottom: 20px; right: 20px; z-index: 100;
  background: var(--success); color: var(--white);
  padding: 0.9rem 1.3rem; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-weight: 600; font-size: 0.95rem;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  transition: transform var(--t), box-shadow var(--t);
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  color: var(--white); background: #1fb858;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.55);
}
.wa-icon { font-size: 1.3rem; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}
@media (max-width: 520px) {
  .wa-float { bottom: 14px; right: 14px; padding: 0.8rem 1rem; }
  .wa-text { display: none; }
  .wa-icon { font-size: 1.4rem; }
}

/* ===== Simpler form tweaks ===== */
.form-title { margin: 0 0 0.4rem; }
.form-sub { margin: 0 0 1.5rem; color: var(--muted); font-size: 0.95rem; }
.form-or {
  text-align: center; margin: 1rem 0; color: var(--muted);
  font-size: 0.9rem; letter-spacing: 0.05em;
}
.btn-lg { width: 100%; justify-content: center; padding: 1rem 1.5rem; font-size: 1rem; }

/* ===== Audience grid (Who we gift for) ===== */
.audience-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.audience {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex; flex-direction: column;
}
.audience:hover {
  transform: translateY(-4px); box-shadow: var(--shadow);
  border-color: var(--accent);
}
.audience-photo {
  aspect-ratio: 4 / 3; background: #f5efe4; overflow: hidden; position: relative;
}
.audience-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.audience:hover .audience-photo img { transform: scale(1.05); }
.audience-body {
  padding: 1.4rem 1.6rem 1.6rem; display: flex; flex-direction: column; gap: 0.3rem;
}
.audience-icon {
  font-size: 1.8rem; width: 48px; height: 48px;
  border-radius: 12px; background: var(--accent-soft);
  display: grid; place-items: center; margin-bottom: 0.8rem;
}
.audience h3 { margin: 0 0 0.3rem; font-size: 1.08rem; }
.audience p { margin: 0; font-size: 0.92rem; }

/* ===== Client logo carousel — equal SQUARE cards, uniform logo height ===== */
.carousel-track > .brand-card {
  flex: 0 0 calc((100% - 5 * 1.2rem) / 6);
  scroll-snap-align: start;
  align-self: flex-start;
}
@media (max-width: 1024px) {
  .carousel-track > .brand-card { flex-basis: calc((100% - 3 * 1.2rem) / 4); }
}
@media (max-width: 768px) {
  .carousel-track > .brand-card { flex-basis: calc((100% - 2 * 1.2rem) / 3); }
}
@media (max-width: 520px) {
  .carousel-track > .brand-card { flex-basis: calc((100% - 1.2rem) / 2); }
}
.brand-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  aspect-ratio: 1 / 1;
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 1.2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.brand-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.brand-photo {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.brand-photo img {
  height: clamp(48px, 38%, 70px);
  width: auto;
  max-width: 88%;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity var(--t), transform 0.4s ease;
}
.brand-card:hover .brand-photo img {
  opacity: 1;
  transform: scale(1.1);
}

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.testimonial {
  background: var(--white); padding: 2rem; border-radius: var(--radius);
  border: 1px solid var(--line); margin: 0;
  position: relative; transition: transform var(--t), box-shadow var(--t);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial::before {
  content: '"'; position: absolute; top: -8px; left: 20px;
  font-family: 'Fraunces', serif; font-size: 4rem; color: var(--accent);
  line-height: 1;
}
.testimonial blockquote {
  margin: 0 0 1.2rem; padding: 0; font-size: 1rem;
  color: var(--ink-soft); line-height: 1.6;
}
.testimonial figcaption {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line); padding-top: 1rem;
}
.testimonial figcaption strong { color: var(--ink); font-size: 0.96rem; }
.testimonial figcaption span { color: var(--muted); font-size: 0.85rem; }

/* ===== Map ===== */
.map-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  background: var(--white);
}
.map-wrap iframe { display: block; }

/* ===== Page hero CTA ===== */
.page-hero-cta {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem;
}

/* ===== FAQ Accordion ===== */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--t), border-color var(--t);
}
.faq-item[open] {
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-deep); }
.faq-toggle {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform var(--t), background var(--t);
}
.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--white);
}
.faq-body {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  animation: faqFade 0.3s ease;
}
.faq-body p { margin: 0 0 0.8rem; font-size: 0.98rem; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body ul, .faq-body ol {
  margin: 0 0 0.8rem; padding-left: 1.3rem;
  color: var(--ink-soft); font-size: 0.98rem;
}
.faq-body li { margin-bottom: 0.4rem; }
.faq-body a { color: var(--accent-deep); font-weight: 500; }
.faq-body a:hover { text-decoration: underline; }
@keyframes faqFade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .faq-item summary { padding: 1rem 1.2rem; font-size: 0.96rem; }
  .faq-body { padding: 1rem 1.2rem 1.2rem; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-grid, .two-col, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { max-width: 360px; margin: 2rem auto 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 1rem 0; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.8rem 5%; border-bottom: 1px solid var(--line);
  }
  .nav-links a.active::after { display: none; }
  .nav-links .btn { margin: 0.5rem 5%; }
  .hero { padding: 3rem 0 4rem; }
  .section { padding: 3.5rem 0; }
  .cta-banner { padding: 2rem; text-align: center; justify-content: center; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; margin-bottom: 2rem; }
}

/* ===== Checkout Modal (js/buy-buttons.js) ===== */
body.gx-modal-open { overflow: hidden; }
.gx-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: flex-start; justify-content: center;
  padding: clamp(0.5rem, 3vw, 2rem);
  overflow-y: auto;
}
.gx-modal[hidden] { display: none; }
.gx-modal__backdrop {
  position: fixed; inset: 0;
  background: rgba(13, 27, 22, 0.55);
  backdrop-filter: blur(2px);
  animation: gxFade 0.2s ease;
}
.gx-modal__panel {
  position: relative;
  width: 100%; max-width: 560px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  padding: 1.5rem 1.5rem 1.25rem;
  margin-top: clamp(1rem, 4vh, 3rem);
  margin-bottom: clamp(1rem, 4vh, 3rem);
  animation: gxRise 0.25s ease;
}
.gx-modal__close {
  position: absolute; top: 0.6rem; right: 0.8rem;
  width: 36px; height: 36px;
  border: 0; background: transparent; cursor: pointer;
  font-size: 1.7rem; line-height: 1; color: var(--muted);
  border-radius: 50%;
  transition: background var(--t), color var(--t);
}
.gx-modal__close:hover { background: var(--accent-soft); color: var(--ink); }
.gx-modal__title {
  margin: 0 0 1rem; font-size: 1.35rem; color: var(--ink);
}
.gx-modal__product {
  display: flex; gap: 0.9rem; align-items: center;
  background: var(--accent-soft);
  padding: 0.75rem; border-radius: 12px;
  margin-bottom: 1rem;
}
.gx-modal__img {
  width: 70px; height: 70px; object-fit: contain;
  background: var(--white); border-radius: 8px;
  flex-shrink: 0;
}
.gx-modal__pmeta { display: flex; flex-direction: column; gap: 0.15rem; }
.gx-modal__pname { font-weight: 700; font-size: 0.98rem; color: var(--ink); line-height: 1.25; }
.gx-modal__psku { font-size: 0.72rem; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; font-weight: 700; }
.gx-modal__prate { font-size: 0.85rem; color: var(--accent-deep); font-weight: 600; }

.gx-form { display: flex; flex-direction: column; gap: 0.9rem; }
.gx-row--qty { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; }
.gx-row--qty label { font-size: 0.88rem; color: var(--ink); font-weight: 600; }
.gx-row--qty .gx-moq { color: var(--accent-deep); font-weight: 700; }
.gx-qty {
  display: inline-flex; align-items: stretch;
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
}
.gx-qty__btn {
  width: 38px; height: 40px; border: 0; background: var(--accent-soft);
  font-size: 1.2rem; font-weight: 700; color: var(--ink); cursor: pointer;
  transition: background var(--t);
}
.gx-qty__btn:hover { background: var(--accent); color: var(--white); }
.gx-qty__input {
  width: 70px; text-align: center; border: 0;
  font-size: 1rem; font-weight: 700; color: var(--ink);
  -moz-appearance: textfield;
}
.gx-qty__input::-webkit-outer-spin-button,
.gx-qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.gx-qty__input:focus { outline: 2px solid var(--accent); outline-offset: -2px; }

/* Customization section */
.gx-cust {
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem 1rem;
  margin: 0;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.gx-cust legend {
  padding: 0 0.4rem;
  font-size: 0.85rem; font-weight: 700; color: var(--ink);
}
.gx-cust__choices {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.gx-pill {
  position: relative; cursor: pointer;
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.4rem 0.85rem;
  transition: all var(--t);
  user-select: none;
}
.gx-pill input { position: absolute; opacity: 0; pointer-events: none; }
.gx-pill:hover { border-color: var(--accent); }
.gx-pill:has(input:checked) {
  background: var(--ink); color: var(--white); border-color: var(--ink);
}
.gx-cust__field { display: flex; flex-direction: column; gap: 0.3rem; }
.gx-cust__field[hidden],
.gx-cust__preview[hidden] { display: none; }
.gx-cust__field label {
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
  display: flex; flex-direction: column; gap: 0.3rem;
}
.gx-cust__field input[type="text"],
.gx-cust__field input[type="file"] {
  font: inherit; font-size: 0.92rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line); border-radius: 8px;
  background: var(--white); color: var(--ink);
}
.gx-cust__field input[type="text"]:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(10, 77, 58, 0.12);
}
.gx-cust__field input[type="file"] { padding: 0.4rem; cursor: pointer; }
.gx-cust__logo-meta {
  font-size: 0.78rem; color: var(--accent-deep); font-weight: 600;
}
.gx-cust__preview {
  background: linear-gradient(135deg, #1a3d33 0%, #0a4d3a 100%);
  border-radius: 10px;
  padding: 0.9rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.gx-preview-label {
  font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 700; color: rgba(255,255,255,0.9);
}
.gx-preview-label .gx-opt { color: rgba(255,255,255,0.6); text-transform: none; letter-spacing: 0; font-weight: 500; }
/* Mockup canvas — SVG product silhouette with branding zone overlay */
.gx-mockup {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 2.8;
  background: linear-gradient(180deg, #f6f4ee 0%, #e9e5d8 100%);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.22), inset 0 0 0 1px rgba(255,255,255,0.4);
}
.gx-mockup__svg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.gx-mockup__svg svg {
  width: 100%; height: 100%;
  display: block;
}
.gx-mockup__brand {
  position: absolute;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.25rem;
  padding: 0.25rem;
  pointer-events: none;
  text-align: center;
  overflow: hidden;
}
.gx-mockup__brand .gx-preview-logo {
  max-width: 100%;
  max-height: 60%;
  object-fit: contain;
  display: block;
}
.gx-mockup__brand .gx-preview-text {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.05;
  word-break: break-word;
  font-size: clamp(0.85rem, 3.2vw, 1.35rem);
}
.gx-mockup__brand .gx-preview-text:empty { display: none; }
.gx-mockup--compact .gx-preview-text {
  font-size: clamp(0.7rem, 2vw, 0.95rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gx-mockup__caption {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  letter-spacing: 0.04em;
  font-style: italic;
}
.gx-mockup__caption:empty { display: none; }

/* ---- Visual effects per material ---- */
/* Embossed gold (leather notebooks, metal plate keychains, gift box) */
.gx-mockup[data-effect="embossed-gold"] .gx-preview-text {
  color: #e6c585;
  text-shadow:
    0 1px 0 rgba(255, 220, 160, 0.35),
    0 -1px 1px rgba(0, 0, 0, 0.55),
    0 0 14px rgba(180, 140, 70, 0.25);
}
.gx-mockup[data-effect="embossed-gold"] .gx-preview-logo {
  filter:
    sepia(0.35)
    drop-shadow(0 1px 0 rgba(255, 220, 160, 0.4))
    drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.55));
}
/* Printed light (dark bottle / dark mobile stand) — white ink on dark surface */
.gx-mockup[data-effect="printed-light"] .gx-preview-text {
  color: #ffffff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
}
.gx-mockup[data-effect="printed-light"] .gx-preview-logo {
  filter: brightness(0) invert(1) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.35));
}
/* Printed dark (white mug / white t-shirt) — black/dark ink on light surface */
.gx-mockup[data-effect="printed-dark"] .gx-preview-text {
  color: #1c1d1f;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.gx-mockup[data-effect="printed-dark"] .gx-preview-logo {
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.18));
}
/* Engraved light (metal pen / metal stand) — soft engraved white look */
.gx-mockup[data-effect="engraved-light"] .gx-preview-text {
  color: rgba(245, 245, 245, 0.92);
  text-shadow:
    0 -1px 0 rgba(0, 0, 0, 0.5),
    0 1px 0 rgba(255, 255, 255, 0.18);
}
.gx-mockup[data-effect="engraved-light"] .gx-preview-logo {
  filter: brightness(0) invert(1) opacity(0.92) drop-shadow(0 -1px 0 rgba(0,0,0,0.5));
}

.gx-grid {
  display: grid; gap: 0.7rem;
  grid-template-columns: 1fr 1fr;
}
.gx-grid label {
  display: flex; flex-direction: column; gap: 0.3rem;
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
}
.gx-grid .gx-col-2 { grid-column: 1 / -1; }
.gx-grid .gx-opt { color: var(--muted); font-weight: 400; font-size: 0.78rem; }
.gx-grid input,
.gx-grid textarea {
  font: inherit; font-size: 0.92rem; font-weight: 500;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line); border-radius: 8px;
  background: var(--white); color: var(--ink);
  transition: border-color var(--t), box-shadow var(--t);
  resize: vertical;
}
.gx-grid input:focus,
.gx-grid textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(10, 77, 58, 0.12);
}
.gx-grid input:user-invalid,
.gx-grid textarea:user-invalid {
  border-color: #c75a4a;
}

.gx-summary {
  background: var(--accent-soft);
  padding: 0.85rem 1rem; border-radius: 10px;
  display: flex; flex-direction: column; gap: 0.3rem;
}
.gx-summary__row { display: flex; justify-content: space-between; font-size: 0.92rem; color: var(--ink); }
.gx-summary__row--total {
  margin-top: 0.3rem; padding-top: 0.5rem;
  border-top: 1px solid rgba(10, 77, 58, 0.18);
  font-size: 1.05rem; font-weight: 800;
}
.gx-summary__row--total span:last-child { color: var(--accent-deep); }
.gx-summary__note { font-size: 0.78rem; color: var(--muted); margin-top: 0.3rem; line-height: 1.4; }

.gx-actions { display: flex; gap: 0.6rem; margin-top: 0.3rem; }
.gx-btn-cancel,
.gx-btn-pay {
  flex: 1; padding: 0.85rem 1rem;
  border: 0; border-radius: 10px;
  font: inherit; font-size: 0.95rem; font-weight: 700;
  cursor: pointer;
  transition: transform var(--t), background var(--t);
}
.gx-btn-cancel { background: var(--accent-soft); color: var(--ink); }
.gx-btn-cancel:hover { background: var(--line); }
.gx-btn-pay { background: var(--ink); color: var(--white); }
.gx-btn-pay:hover { background: var(--accent-deep); transform: translateY(-1px); }

@keyframes gxFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes gxRise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 520px) {
  .gx-modal__panel { padding: 1.1rem 1rem 1rem; }
  .gx-grid { grid-template-columns: 1fr; }
  .gx-actions { flex-direction: column-reverse; }
  .gx-modal__product { flex-direction: row; }
  .gx-modal__img { width: 56px; height: 56px; }
}
