/* :root {
  --army: #435a12;
  --pine: #b6ca93;
  --pine-dark: #8aaa60;
  --wcoffee: #dce5d2;
  --olive: #7e8e20;
  --bg: #b6ca93;
  --bg-card: rgba(255, 255, 255, 0.55);
  --bg-card2: rgba(255, 255, 255, 0.38);
  --border: rgba(67, 90, 18, 0.15);
  --text: #2b3a0e;
  --text-mid: #4a5e22;
  --text-dim: #7a8e55;
} */
:root {
  --army: #435a12;
  --pine: #b6ca93;
  --pine-dark: #8aaa60;
  --wcoffee: #dce5d2;
  --olive: #7e8e20;
  --bg: #b6ca93;
  --bg-card: rgba(255, 255, 255, 0.55);
  --bg-card2: rgba(255, 255, 255, 0.38);
  --border: rgba(67, 90, 18, 0.15);
  --text: #2b3a0e;
  --text-mid: #4a5e22;
  --text-dim: #7a8e55;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* body {
  background: var(--bg);
  font-family: "Jost", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
} */
body {
  background: #8a9e6a;
  font-family: "Jost", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
/* outer page wrapper — centred card like linktree */
.page-wrap {
  width: 100%;
  max-width: 680px;
  min-height: 100vh;
  background: var(--bg);
  background-image:
    linear-gradient(rgba(67, 90, 18, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67, 90, 18, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  position: relative;
}
/* ── HERO BANNER ── */
.hero {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}
/* placeholder — swap this for your real image */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  background: linear-gradient(145deg, #5a7a28 0%, #8aaa50 40%, #b6ca80 100%);
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #435a12 0%, #7e8e20 45%, #b6ca93 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.hero-img-placeholder span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-img-placeholder .ph-icon {
  font-size: 36px;
  opacity: 0.4;
}

/* gradient fade from image into pine glade */
.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(182, 202, 147, 0.55) 50%,
    #b6ca93 100%
  );
  pointer-events: none;
}

/* name overlay on image — kelah style */
.hero-text {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  padding: 0 1.2rem;
}
.hero-name {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 2px 16px rgba(43, 58, 14, 0.45);
  letter-spacing: 0.3px;
}
.hero-name .acc {
  color: #dff0b8;
}
.hero-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 4px;
  letter-spacing: 0.4px;
  text-shadow: 0 1px 8px rgba(43, 58, 14, 0.4);
}

/* ── SOCIAL ICONS ROW ── */
.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 1rem 0 0.25rem;
}
.soc-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 0.5px solid rgba(67, 90, 18, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--army);
  transition:
    background 0.18s,
    transform 0.18s,
    color 0.18s;
  backdrop-filter: blur(4px);
}
.soc-icon:hover {
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-2px);
  color: var(--olive);
}

/* ── INTRO MESSAGE ── */
.intro {
  padding: 1.1rem 1.5rem 0.4rem;
  text-align: center;
}
.intro p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 2.1;
  font-weight: 300;
  letter-spacing: 0.1px;
}
.intro .hi {
  color: var(--army);
  font-weight: 500;
}

/* ── CONTAINER ── */
.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 1.2rem 3.5rem;
}

/* ── VINE DIVIDER ── */
.vine {
  width: 100%;
  display: block;
  margin: 0.5rem 0;
  overflow: visible;
}

/* ── SECTION LABEL ── */
.sec-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 1.4rem 0 0.7rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-label::before,
.sec-label::after {
  content: "";
  flex: 1;
  height: 0.5px;
  background: rgba(67, 90, 18, 0.2);
}

/* ── CTA BUTTON ── */
.cta {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--army);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  text-decoration: none;
  margin-bottom: 0.6rem;
  box-shadow: 0 3px 16px rgba(67, 90, 18, 0.28);
  transition:
    transform 0.18s,
    box-shadow 0.18s;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 55%
  );
  pointer-events: none;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(67, 90, 18, 0.35);
}
.ci {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.cb {
  flex: 1;
}
.ct {
  font-size: 14px;
  font-weight: 500;
  color: #f0f4e8;
}
.cs {
  font-size: 11px;
  color: rgba(240, 244, 232, 0.72);
  margin-top: 2px;
}
.ca {
  font-size: 16px;
  color: rgba(240, 244, 232, 0.5);
}

/* ── LINK BUTTON ── */
.lbtn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 18px;
  padding: 0.85rem 1.1rem;
  text-decoration: none;
  margin-bottom: 0.55rem;
  transition:
    background 0.18s,
    transform 0.18s;
  backdrop-filter: blur(6px);
}
.lbtn:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}
.li {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(67, 90, 18, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.lb-body {
  flex: 1;
}
.lt {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
}
.ls {
  font-size: 11px;
  color: var(--text-mid);
  margin-top: 2px;
}
.lr {
  font-size: 13px;
  color: var(--text-dim);
}

/* ── ACCORDION ── */
.accordion {
  margin-bottom: 0.6rem;
}
.acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--army);
  border: none;
  border-radius: 50px;
  padding: 0.95rem 1.4rem;
  cursor: pointer;
  transition:
    background 0.18s,
    border-radius 0.2s;
  user-select: none;
  box-shadow: 0 2px 12px rgba(67, 90, 18, 0.22);
}
.acc-header:hover {
  background: #3a500f;
}
.acc-header.open {
  border-radius: 16px 16px 16px 16px;
  background: var(--army);
}
.acc-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: #f0f4e8;
  letter-spacing: 0.8px;
  text-transform: lowercase;
  flex: 1;
  justify-content: center;
}
.acc-icon {
  font-size: 16px;
}
.acc-arrow {
  font-size: 12px;
  color: rgba(240, 244, 232, 0.7);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.acc-header.open .acc-arrow {
  transform: rotate(180deg);
}
.acc-body {
  display: none;
  /* background: #e8eedd; */
  border: none;
  border-radius: 0 0 18px 18px;
  padding: 0.85rem 0.85rem 1rem;
  /* box-shadow: 0 4px 14px rgba(67, 90, 18, 0.1); */
}
.acc-body.open {
  display: block;
}

/* ── 2-COL PRODUCT GRID ── */
.pgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.pcard {
  background: rgba(255, 255, 255, 0.5);
  /* background: #ffffff; */
  border: 0.5px solid var(--border);
  /* border: none; */
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
  box-shadow: 0 1px 6px rgba(67, 90, 18, 0.1);
}
.pcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 16px rgba(67, 90, 18, 0.18);
}

/* .pimg img {
  width: 100%;
  aspect-ratio: 1;
  background: #f8faf5;
  background: var(--wcoffee);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  line-height: 1;
  position: relative;
  overflow: hidden;
} */
/* .pimg img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: rgba(67, 90, 18, 0.08);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  margin: 4px 0 4px 4px;
  position: relative;
  overflow: hidden;
} */
.pimg {
  width: 100%;
  aspect-ratio: 1;
  background: #f8faf5;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  line-height: 1;
  position: relative;
  overflow: hidden;
}
.pimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pbadge {
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 1;
  background: var(--army);
  color: #f0f4e8;
  font-size: 8px;
  letter-spacing: 0.3px;
  padding: 2px 6px;
  border-radius: 20px;
  font-weight: 500;
}
.pinfo {
  padding: 0.6rem 0.7rem 0.75rem;
}
.pname {
  font-size: 14.7px;
  color: var(--army);
  font-weight: 590;
  line-height: 1.35;
}
.pnote {
  font-size: 10.5px;
  color: var(--text-mid);
  margin-top: 2px;
  line-height: 1.4;
}
.plink {
  font-size: 10px;
  color: var(--olive);
  margin-top: 4px;
  display: block;
}

/* ── OBS BUTTON ── */
.obs {
  background: rgba(67, 90, 18, 0.1) !important;
  border-color: rgba(67, 90, 18, 0.25) !important;
}
.obs .li {
  background: rgba(67, 90, 18, 0.15) !important;
}
.obs .lt {
  color: var(--army) !important;
}

/* ── DISCLAIMER + FOOTER ── */
.disc {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.8;
  margin: 1.5rem 0 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 0.5px solid rgba(67, 90, 18, 0.15);
}
.foot {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 2;
  padding-bottom: 0.5rem;
}
.foot .g {
  color: var(--army);
}
