/* Email Database Shop — shared storefront */
:root {
  --ink: #1c1712;
  --muted: #5e5348;
  --paper: #f3efe8;
  --card: #fffcf8;
  --line: #e4d9c8;
  --brown: #4e3318;
  --brown-2: #6b471f;
  --gold: #a6843c;
  --gold-soft: #f4ead2;
  --green: #1d6b45;
  --price: #7c2d28;
  --header: #fffdf9;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
}
a { color: var(--brown-2); text-decoration: none; }
a:hover { color: #8a5a12; }
img { max-width: 100%; height: auto; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

.topbar { background: var(--brown); color: #f6efe4; font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 8px; padding-bottom: 8px; }
.topbar a { color: #f0d48a; font-weight: 600; }

#header-menu {
  background: var(--header);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
#header-menu .nav-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 64px; }
.brand {
  color: var(--brown);
  font-family: Outfit, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 16px;
  white-space: nowrap;
}
.brand:hover { color: var(--brown); }
#header-menu ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 8px 0; overflow-x: auto; }
#header-menu ul li a {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 8px;
  white-space: nowrap;
}
#header-menu ul li a:hover { background: var(--gold-soft); color: var(--brown); }

#hero-product { background: var(--card); border-bottom: 1px solid var(--line); padding: 42px 0 36px; }
.hero-grid { display: grid; gap: 28px; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.2fr .8fr; gap: 40px; } }
.kicker {
  font-family: Outfit, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
h1 {
  font-family: Outfit, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.12;
  margin: 0 0 12px;
}
.sub-headline { color: var(--muted); font-size: 1.08rem; margin: 0 0 18px; max-width: 62ch; }
.hero-checks { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 8px; }
@media (min-width: 560px) { .hero-checks { grid-template-columns: 1fr 1fr; } }
.hero-checks li { font-size: 15.5px; }
.hero-checks li:before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--green); transform: translateY(-1px); }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

.main-product-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 16px;
  padding: 22px 22px 18px;
  box-shadow: 0 10px 30px rgba(36, 24, 14, .06);
  text-align: left;
}
.main-product-box h2 {
  font-family: Outfit, sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 4px 0 8px;
  text-transform: none;
}
.price-text {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--price);
  margin: 6px 0 14px;
  letter-spacing: -0.03em;
}
.buy-now-btn {
  display: inline-block;
  background: var(--brown);
  color: #fffaf3 !important;
  font-family: Outfit, sans-serif;
  font-weight: 600;
  font-size: .95rem;
  padding: 12px 18px;
  border-radius: 10px;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: none;
}
.buy-now-btn:hover { background: #2e1f10; color: #fff !important; }
.ghost-btn {
  display: inline-block;
  border: 1px solid #c9b89a;
  color: var(--brown);
  background: #fff;
  font-family: Outfit, sans-serif;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: 10px;
}
.ghost-btn:hover { background: var(--gold-soft); color: var(--brown); }
.sample-link { display: inline-block; margin-top: 12px; font-weight: 700; color: var(--green); }

.trustbar { background: #fff; border-bottom: 1px solid var(--line); }
.trustbar ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 800px) { .trustbar ul { grid-template-columns: repeat(4, 1fr); } }
.trustbar li {
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brown);
  border-top: 1px solid var(--line);
}

#content-body { padding: 28px 20px 12px; }
#content-body h2, .section-h2 {
  font-family: Outfit, sans-serif;
  color: var(--ink);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  border-left: 0;
  padding-left: 0;
  margin: 34px 0 12px;
  font-weight: 700;
}
#content-body h3 {
  font-family: Outfit, sans-serif;
  color: var(--brown);
  font-size: 1.08rem;
  border-left: 0;
  padding-left: 0;
  margin: 18px 0 8px;
}
#content-body p { line-height: 1.7; margin: 0 0 14px; color: #2a241e; }
#content-body ul, #content-body ol { line-height: 1.6; }

.steps, .note-grid { display: grid; gap: 14px; margin: 16px 0; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step, .note-card, .cream-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: none;
}
.step .n { font-family: Outfit, sans-serif; color: var(--gold); font-weight: 700; letter-spacing: .08em; font-size: 12px; }
.features-list { list-style: none; padding: 0; margin: 12px 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.features-list li { background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--green); border-radius: 10px; padding: 12px 14px; }
.field-note { font-size: 13px; line-height: 1.45; color: #6b5a48; margin: 4px 0 22px; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 16px; }
.templatemo_product_box { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 16px; text-align: left; }
.templatemo_product_box h2 { font-size: 1.02rem; margin: 0 0 6px; border: 0; padding: 0; }
.card-blurb { font-size: 14px; color: var(--muted); min-height: 0; }
.product_info h3 { font-size: 1.25rem; color: var(--price); margin: 8px 0; border: 0; padding: 0; }
.product_info hr { border: 0; border-top: 1px solid var(--line); }

.filter-row { display: flex; flex-direction: column; gap: 10px; margin: 12px 0 8px; }
.filter-row input, #listSearch, #catalog-search {
  height: 46px;
  width: 100%;
  border: 1px solid #d9cbb6;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 16px;
  background: #fff;
  color: var(--ink);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brown);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}
.chips button.active { background: var(--brown); color: #fffaf3; border-color: var(--brown); }

.styled-table { border-collapse: collapse; width: 100%; margin: 8px 0 28px; font-size: 15.5px; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.styled-table thead tr { background: var(--brown); color: #fff; text-align: left; }
.styled-table th, .styled-table td { padding: 12px 14px; vertical-align: middle; }
.styled-table tbody tr { border-bottom: 1px solid #efe6d8; }
.styled-table tbody tr:nth-of-type(even) { background: #fbf7f1; }
.styled-table tbody tr:hover { background: #f4ead2; }
.region-tag { display: inline-block; margin-top: 4px; font-size: 12px; color: var(--muted); }
.atit { font-weight: 700; }

.verify { list-style: none; padding: 0; }
.verify li { display: flex; gap: 12px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; margin-bottom: 8px; }
.verify .num { font-family: Outfit, sans-serif; color: var(--gold); font-weight: 700; font-size: 18px; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  font-family: Outfit, sans-serif;
  font-weight: 600;
  color: var(--ink);
  font-size: 16px;
  padding: 14px 0;
  cursor: pointer;
}
.faq-answer { color: var(--muted); margin: 0 0 14px; }
.final-cta {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 18px;
  margin: 28px 0;
}
#templatemo_footer { background: var(--brown); color: #f3eadf; padding: 28px 0 22px; text-align: center; font-size: 14px; margin-top: 20px; }
#templatemo_footer a { color: #f0d48a; margin: 0 8px; }
.legal { font-size: 12px; color: #d9c7ae; max-width: 68ch; margin: 12px auto 0; line-height: 1.5; }

.whatsapp-popup-container { position: fixed; bottom: 20px; right: 18px; z-index: 50; display: flex; flex-direction: column; align-items: flex-end; }
.whatsapp-float { width: 56px; height: 56px; background: #1fa855; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.whatsapp-message-bubble { background: #fff; padding: 12px 14px; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,.12); margin-bottom: 10px; font-size: 14px; font-weight: 600; color: var(--ink); max-width: 230px; }
.close-wa { margin-left: 8px; cursor: pointer; color: #888; }

.buy-actions { display: inline-flex; flex-wrap: wrap; gap: 8px; align-items: center; }
td .buy-now-btn { padding: 8px 12px; font-size: 13px; }

@media (max-width: 760px) {
  h1 { font-size: 1.7rem; }
  .styled-table, .styled-table thead, .styled-table tbody, .styled-table th, .styled-table td, .styled-table tr { display: block; }
  .styled-table thead tr { position: absolute; top: -9999px; left: -9999px; }
  .styled-table tr { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin: 0 0 12px; padding: 6px 0; }
  .styled-table td { border: 0; position: relative; padding: 8px 12px 8px 46%; text-align: right; }
  .styled-table td:before { position: absolute; top: 8px; left: 12px; width: 42%; content: attr(data-label); font-weight: 700; text-align: left; color: var(--muted); }
}
