/* ==========================================================================
   Porky Peptides — theme
   Colors lifted from porkbun.com's :root palette. Layout mirrors the
   structure of the source site (WoodMart / Elementor) rebuilt as plain CSS.
   ========================================================================== */

:root {
  /* Porkbun palette */
  --pink: #EF7878;
  --pink-hover: #DC6070;
  --pink-light: #FADCDA;
  --pink-medium: #FF9E9E;
  --pink-bg: #FEF9F9;
  --gold: #FFC100;
  --dark: #222222;
  --gray-light: #F3F3F3;
  --gray-medium: #CCCCCC;
  --gray-text: #555555;
  --white: #FFFFFF;
  --blue-link: #3A81B0;
  --blue-link-hover: #0F5482;
  --success: #8CC051;
  --warning: #F6BB43;
  --danger: #EC5631;
  --cloudflare: #F48120;

  --font: "Open Sans", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow: 0 6px 24px rgba(34, 34, 34, 0.08);
  --shadow-hover: 0 12px 32px rgba(239, 120, 120, 0.22);
  --container: 1280px;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink-hover); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--pink); }
h1, h2, h3, h4, h5, h6 { line-height: 1.2; margin: 0 0 .6em; font-weight: 700; color: var(--dark); }
h1 { font-size: 2.4rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.3em; }
hr { border: 0; border-top: 1px solid var(--gray-light); margin: 2rem 0; }
table { border-collapse: collapse; width: 100%; }
button { font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: 20px; }
.section { padding-block: 64px; }
.section--tight { padding-block: 40px; }
.section--pink { background: var(--pink-bg); }
.section--gray { background: var(--gray-light); }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.section-head h2 { margin: 0; }
.section-title { text-align: center; margin-bottom: 36px; }
.section-title h2 { margin: 0 0 8px; }
.section-title p { color: var(--gray-text); margin: 0; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius);
  font-weight: 700; font-size: 15px; line-height: 1.2; letter-spacing: .01em;
  border: 2px solid var(--pink); background: var(--pink); color: var(--white);
  cursor: pointer; text-align: center; transition: all .15s ease; white-space: nowrap;
}
.btn:hover { background: var(--pink-hover); border-color: var(--pink-hover); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.btn--outline { background: transparent; color: var(--pink-hover); }
.btn--outline:hover { background: var(--pink); color: var(--white); }
.btn--dark { background: var(--dark); border-color: var(--dark); }
.btn--dark:hover { background: #000; border-color: #000; box-shadow: none; }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.btn--gold:hover { background: #e6ae00; border-color: #e6ae00; color: var(--dark); }
.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--lg { padding: 15px 34px; font-size: 16px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

/* Top bar & promo -------------------------------------------------------- */
.topbar { background: var(--dark); color: var(--white); font-size: 13px; overflow: hidden; }
.topbar__track { display: flex; gap: 40px; white-space: nowrap; padding: 7px 0; animation: marquee 32s linear infinite; width: max-content; }
.topbar__track span { display: inline-flex; align-items: center; gap: 8px; }
.topbar__track .dot { color: var(--pink); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.promobar { background: var(--pink); color: var(--white); text-align: center; font-weight: 700; padding: 9px 16px; font-size: 14px; }
.promobar code { background: var(--white); color: var(--pink-hover); padding: 2px 9px; border-radius: 4px; margin-left: 6px; font-family: inherit; font-weight: 800; cursor: pointer; }

/* Header ----------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 900; background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.site-header__inner { display: flex; align-items: center; gap: 24px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 48px; width: auto; }
.nav { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; flex: 1; }
.nav > li { position: relative; }
.nav > li > a { display: inline-flex; align-items: center; gap: 6px; padding: 12px 12px; font-weight: 700; color: var(--dark); font-size: 15px; border-radius: var(--radius); white-space: nowrap; }
.nav > li > a:hover, .nav > li.is-active > a { color: var(--pink-hover); background: var(--pink-bg); }
.nav .chev { width: 10px; height: 10px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-3px); }
.nav .dropdown { position: absolute; top: 100%; left: 0; min-width: 240px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .18s ease; list-style: none; margin: 0; }
.nav > li:hover .dropdown, .nav > li:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav .dropdown a { display: block; padding: 9px 18px; color: var(--dark); font-weight: 600; font-size: 14px; }
.nav .dropdown a:hover { background: var(--pink-bg); color: var(--pink-hover); }
.header-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.icon-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; border: 0; background: transparent; color: var(--dark); cursor: pointer; }
.icon-btn:hover { background: var(--pink-bg); color: var(--pink-hover); }
.icon-btn svg { width: 22px; height: 22px; }
.cart-count { position: absolute; top: 2px; right: 0; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--pink); color: var(--white); font-size: 11px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }
.cart-total { font-weight: 700; font-size: 14px; margin-left: 4px; }
.nav-toggle { display: none; }
.header-cta { display: inline-flex; }

/* Mobile drawer */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 1000; opacity: 0; visibility: hidden; transition: opacity .2s; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 320px; max-width: 88vw; background: var(--white); z-index: 1001; transform: translateX(105%); transition: transform .24s cubic-bezier(.4,0,.2,1); overflow-y: auto; box-shadow: -4px 0 22px rgba(0,0,0,.16); }
body.drawer-open .drawer { transform: translateX(0); }
body.drawer-open .drawer-backdrop { opacity: 1; visibility: visible; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid #eee; position: sticky; top: 0; background: var(--white); }
.drawer__head img { height: 36px; }
.drawer__close { background: none; border: 0; font-size: 22px; color: #999; cursor: pointer; padding: 4px 8px; border-radius: 4px; }
.drawer__close:hover { color: var(--pink); background: #f5f5f5; }
.drawer h4 { padding: 14px 16px 4px; margin: 0; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: #999; }
.drawer ul { list-style: none; margin: 0; padding: 0; }
.drawer li { border-bottom: 1px solid #f2f2f2; }
.drawer li a { display: block; padding: 13px 16px; color: #333; font-weight: 600; }
.drawer li a:hover { background: #fafafa; color: var(--pink); }

/* Search overlay */
.search-overlay { position: fixed; inset: 0; background: rgba(34,34,34,.72); z-index: 1100; display: none; align-items: flex-start; justify-content: center; padding: 8vh 16px; }
.search-overlay.is-open { display: flex; }
.search-box { width: 100%; max-width: 760px; background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); }
.search-box__row { display: flex; gap: 10px; }
.search-box input { flex: 1; padding: 14px 16px; border: 2px solid var(--gray-medium); border-radius: var(--radius); font-size: 16px; }
.search-box input:focus { outline: none; border-color: var(--pink); }
.search-box__hint { color: #888; font-size: 13px; margin: 10px 0 0; }
.search-results { margin-top: 14px; max-height: 60vh; overflow: auto; }
.search-results a { display: flex; align-items: center; gap: 12px; padding: 8px; border-radius: var(--radius); color: var(--dark); }
.search-results a:hover { background: var(--pink-bg); }
.search-results img { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; background: var(--gray-light); }
.search-results .sr-price { margin-left: auto; color: var(--pink-hover); font-weight: 700; }

/* Hero ------------------------------------------------------------------- */
.hero {
  position: relative; min-height: 560px; display: flex; align-items: center; overflow: hidden;
  background-color: var(--pink-medium);
  background-image: var(--hero-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
/* Deepens the art's pink on the text side so white copy stays legible (~5:1). */
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(122,32,60,.58) 0%, rgba(122,32,60,.44) 42%, rgba(122,32,60,.10) 72%, rgba(122,32,60,0) 100%); }
.hero__inner { position: relative; padding-block: 80px; max-width: 640px; }
.hero h1 { font-size: 3.2rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; color: #fff; text-shadow: 0 2px 18px rgba(90,20,45,.35); }
.hero h1 span { color: var(--pink-light); }
.hero__sub { font-size: 1.5rem; font-weight: 600; color: #fff; margin-bottom: 28px; text-shadow: 0 2px 14px rgba(90,20,45,.35); }
.hero .btn { background: #fff; border-color: #fff; color: var(--pink-hover); }
.hero .btn:hover { background: var(--pink-light); border-color: var(--pink-light); color: var(--pink-hover); }
.hero__pig { position: absolute; right: 4%; bottom: 0; width: min(38vw, 460px); pointer-events: none; }

/* Feature strip ---------------------------------------------------------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature { background: var(--white); border: 1px solid #f0e0e0; border-radius: var(--radius-lg); padding: 28px 24px; transition: all .18s ease; position: relative; overflow: hidden; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--pink-light); }
.feature__num { position: absolute; top: 12px; right: 18px; font-size: 42px; font-weight: 800; color: var(--pink-light); line-height: 1; }
.feature__icon { width: 56px; height: 56px; margin-bottom: 16px; border-radius: 14px; background: var(--pink-bg); display: flex; align-items: center; justify-content: center; }
.feature__icon img { width: 36px; height: 36px; object-fit: contain; }
.feature h3 { font-size: 1.1rem; margin-bottom: 6px; }
.feature p { margin: 0; color: var(--gray-text); font-size: 14px; }

/* Product grid ----------------------------------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.product-grid--4 { grid-template-columns: repeat(4, 1fr); }
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }
.product-card { background: var(--white); border: 1px solid #eee; border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: all .18s ease; position: relative; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--pink-light); }
.product-card__img { display: block; aspect-ratio: 1; background: var(--gray-light); overflow: hidden; }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card__title { font-size: 1rem; margin: 0; }
.product-card__title a { color: var(--dark); }
.product-card__title a:hover { color: var(--pink-hover); }
.product-card__cats { font-size: 12px; color: #888; }
.product-card__cats a { color: #888; }
.product-card__cats a:hover { color: var(--pink-hover); }
.price { font-weight: 800; color: var(--pink-hover); font-size: 1.05rem; }
.price del { color: #aaa; font-weight: 400; margin-right: 6px; }
.product-card .btn { margin-top: auto; }
.badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--dark); font-size: 11px; font-weight: 800; padding: 4px 9px; border-radius: 20px; letter-spacing: .04em; text-transform: uppercase; }
.badge--out { background: var(--danger); color: var(--white); }

/* Split sections --------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--pink-hover); background: var(--pink-light); padding: 5px 12px; border-radius: 20px; margin-bottom: 14px; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.stats { display: flex; gap: 32px; margin-top: 30px; flex-wrap: wrap; }
.stat strong { display: block; font-size: 2rem; color: var(--pink); font-weight: 800; line-height: 1; }
.stat span { font-size: 13px; color: var(--gray-text); }
.checklist { list-style: none; padding: 0; margin: 14px 0 0; }
.checklist li { padding: 6px 0 6px 32px; position: relative; font-weight: 600; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 9px; width: 20px; height: 20px; border-radius: 50%; background: var(--pink); }
.checklist li::after { content: ""; position: absolute; left: 7px; top: 13px; width: 5px; height: 9px; border-right: 2.5px solid #fff; border-bottom: 2.5px solid #fff; transform: rotate(45deg); }

.about-band { background: var(--dark) center / cover no-repeat; color: var(--white); position: relative; }
/* Scrim keeps white copy above 4.5:1 across the whole text column. The right
   end has to stay dark because the artwork behind it is a light blush. */
.about-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(34,34,34,.93) 0%, rgba(120,38,62,.86) 55%, rgba(140,48,70,.80) 100%); }
.about-band .container { position: relative; max-width: 900px; text-align: center; }
.about-band h2 { color: var(--white); }
.about-band p { font-size: 1.05rem; color: #fbeaea; }

/* Newsletter ------------------------------------------------------------- */
.newsletter { background: var(--pink-light) center / cover no-repeat; position: relative; }
.newsletter::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(250,220,218,.97) 0%, rgba(250,220,218,.85) 55%, rgba(250,220,218,.35) 100%); }
.newsletter .container { position: relative; }
.newsletter__box { max-width: 560px; }
.nl-form { display: flex; gap: 10px; margin-top: 18px; }
.nl-form input { flex: 1; padding: 13px 16px; border: 2px solid var(--white); border-radius: var(--radius); font-size: 15px; }
.nl-form input:focus { outline: none; border-color: var(--pink); }
.form-note { font-size: 12px; color: var(--gray-text); margin-top: 8px; }

/* Footer ----------------------------------------------------------------- */
.site-footer { background: var(--gray-light); padding-top: 56px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; }
.site-footer h4 { font-size: 15px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer li a { color: var(--gray-text); }
.site-footer li a:hover { color: var(--pink-hover); }
.footer-brand img { height: 52px; margin-bottom: 16px; }
.footer-contact p { margin: 0 0 6px; font-size: 14px; color: var(--gray-text); }
.footer-contact strong { color: var(--dark); }
.social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.social a { width: 36px; height: 36px; border-radius: 50%; background: var(--white); display: inline-flex; align-items: center; justify-content: center; color: var(--dark); border: 1px solid #e6e6e6; }
.social a:hover { background: var(--pink); color: var(--white); border-color: var(--pink); }
.social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-disclaimer { background: var(--dark); color: #cfcfcf; font-size: 12.5px; padding-block: 28px; margin-top: 48px; }
.footer-disclaimer p { margin: 0 0 8px; }
.footer-bottom { background: #161616; color: #999; font-size: 12.5px; padding: 14px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: #ddd; }

/* Page chrome ------------------------------------------------------------ */
.page-title { background: var(--pink-bg); border-bottom: 1px solid var(--pink-light); padding: 34px 0; }
.page-title h1 { margin: 0; font-size: 2rem; }
.breadcrumbs { font-size: 13px; color: #888; margin-bottom: 8px; }
.breadcrumbs a { color: #888; }
.breadcrumbs a:hover { color: var(--pink-hover); }
.breadcrumbs span { margin: 0 6px; color: #bbb; }
.prose { max-width: 880px; }
.prose img { border-radius: var(--radius-lg); margin: 1.2em 0; }
.prose h2 { margin-top: 1.6em; font-size: 1.6rem; }
.prose h3 { margin-top: 1.4em; }
.prose h4 { margin-top: 1.2em; }
.prose table { margin: 1em 0; font-size: 14px; }
.prose th, .prose td { border: 1px solid #e6e6e6; padding: 8px 10px; text-align: left; vertical-align: top; }
.prose th { background: var(--pink-bg); }
.prose blockquote { border-left: 4px solid var(--pink); margin: 1.2em 0; padding: 4px 18px; background: var(--pink-bg); border-radius: 0 var(--radius) var(--radius) 0; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.prose a.btn { text-decoration: none; }
.prose li p { margin: 0; }
.prose--wide { max-width: none; }
.notice { background: var(--pink-bg); border: 1px solid var(--pink-light); border-left: 4px solid var(--pink); padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; }
.notice--warn { background: #fff8e6; border-color: #ffe7a8; border-left-color: var(--warning); }

/* FAQ */
.faq { border: 1px solid #eee; border-radius: var(--radius); margin-bottom: 10px; background: var(--white); }
.faq summary { cursor: pointer; padding: 16px 20px; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--pink); font-weight: 400; }
.faq[open] summary::after { content: "–"; }
.faq[open] summary { color: var(--pink-hover); }
.faq__body { padding: 0 20px 18px; color: var(--gray-text); }

/* COA grid */
.coa-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.coa { border: 1px solid #eee; border-radius: var(--radius-lg); overflow: hidden; background: var(--white); text-align: center; }
.coa a { display: block; }
.coa img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; margin: 0; border-radius: 0; }
.coa figcaption { padding: 12px; font-weight: 700; font-size: 14px; }

/* Forms */
.form { display: grid; gap: 14px; }
.form label { font-weight: 600; font-size: 14px; display: block; margin-bottom: 4px; }
.form input:not([type=checkbox]), .form textarea, .form select { width: 100%; padding: 12px 14px; border: 2px solid #e2e2e2; border-radius: var(--radius); font-size: 15px; background: var(--white); }
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--pink); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form .check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.form .check input { margin-top: 4px; }
.card { background: var(--white); border: 1px solid #eee; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.req { color: var(--danger); }
.form-msg { display: none; margin-top: 12px; padding: 12px 14px; border-radius: var(--radius); background: #eef8e3; color: #3d6d0f; border: 1px solid #cde8ad; font-size: 14px; }
.form-msg.is-visible { display: block; }

/* Shop layout ------------------------------------------------------------ */
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 40px; align-items: start; }
.sidebar-widget { background: var(--white); border: 1px solid #eee; border-radius: var(--radius-lg); padding: 20px; margin-bottom: 20px; }
.sidebar-widget h4 { font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.sidebar-widget ul { list-style: none; margin: 0; padding: 0; }
.sidebar-widget li a { display: flex; justify-content: space-between; padding: 6px 0; color: var(--gray-text); font-size: 14px; border-bottom: 1px dashed #f0f0f0; }
.sidebar-widget li a:hover, .sidebar-widget li.is-active a { color: var(--pink-hover); font-weight: 700; }
.sidebar-widget li a small { color: #aaa; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.shop-toolbar .result-count { color: #888; font-size: 14px; }
.shop-toolbar select, .shop-toolbar input { padding: 9px 12px; border: 2px solid #e2e2e2; border-radius: var(--radius); font-size: 14px; }
.shop-toolbar select:focus, .shop-toolbar input:focus { outline: none; border-color: var(--pink); }
.shop-toolbar__right { display: flex; gap: 10px; }
.category-desc { margin-bottom: 24px; color: var(--gray-text); }

/* Product page ----------------------------------------------------------- */
.product-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.gallery__main { border: 1px solid #eee; border-radius: var(--radius-lg); overflow: hidden; background: var(--gray-light); aspect-ratio: 1; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery__thumbs button { width: 72px; height: 72px; border-radius: 8px; border: 2px solid #eee; padding: 0; overflow: hidden; background: var(--gray-light); cursor: pointer; }
.gallery__thumbs button.is-active { border-color: var(--pink); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.product-info h1 { font-size: 2.1rem; margin-bottom: 8px; }
.product-info .price { font-size: 1.6rem; display: block; margin-bottom: 18px; }
.product-info .short { color: var(--gray-text); margin-bottom: 18px; }
.discounts { border: 1px solid var(--pink-light); border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; font-size: 14px; }
.discounts caption { text-align: left; padding: 10px 14px; background: var(--pink-bg); font-weight: 700; caption-side: top; }
.discounts th, .discounts td { padding: 8px 14px; border-top: 1px solid var(--pink-light); text-align: left; }
.discounts th { background: var(--pink-bg); font-weight: 700; }
.discounts td:last-child { color: var(--pink-hover); font-weight: 700; }
.variant { margin-bottom: 18px; }
.variant label { font-weight: 700; display: block; margin-bottom: 6px; text-transform: uppercase; font-size: 12px; letter-spacing: .1em; }
.variant select { width: 100%; max-width: 320px; padding: 12px 14px; border: 2px solid #e2e2e2; border-radius: var(--radius); font-size: 15px; background: var(--white); }
.variant select:focus { outline: none; border-color: var(--pink); }
.variant__pills { display: flex; gap: 8px; flex-wrap: wrap; }
.variant__pills button { padding: 10px 16px; border: 2px solid #e2e2e2; background: var(--white); border-radius: var(--radius); font-weight: 700; cursor: pointer; }
.variant__pills button.is-active, .variant__pills button:hover { border-color: var(--pink); color: var(--pink-hover); background: var(--pink-bg); }
.add-row { display: flex; gap: 12px; align-items: stretch; margin-bottom: 22px; flex-wrap: wrap; }
.qty { display: inline-flex; border: 2px solid #e2e2e2; border-radius: var(--radius); overflow: hidden; }
.qty button { width: 40px; border: 0; background: var(--gray-light); font-size: 18px; cursor: pointer; }
.qty button:hover { background: var(--pink-light); }
.qty input { width: 56px; text-align: center; border: 0; font-weight: 700; font-size: 15px; }
.product-meta { font-size: 13px; color: #888; border-top: 1px solid #eee; padding-top: 14px; }
.product-meta a { color: var(--gray-text); }
.product-meta a:hover { color: var(--pink-hover); }
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 22px 0; }
.trust-strip div { background: var(--pink-bg); border-radius: var(--radius); padding: 10px 12px; font-size: 12.5px; font-weight: 700; text-align: center; color: var(--pink-hover); }
.product-tabs { margin-top: 56px; }
.tabs-nav { display: flex; gap: 6px; border-bottom: 2px solid var(--pink-light); margin-bottom: 26px; flex-wrap: wrap; }
.tabs-nav button { padding: 12px 22px; border: 0; background: transparent; font-weight: 700; font-size: 15px; cursor: pointer; color: #777; border-bottom: 3px solid transparent; margin-bottom: -2px; }
.tabs-nav button.is-active { color: var(--pink-hover); border-bottom-color: var(--pink); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }
.tab-panel img { max-width: 420px; margin: 1.2em 0; }
.related { margin-top: 64px; }

/* Blog ------------------------------------------------------------------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card { background: var(--white); border: 1px solid #eee; border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: all .18s; position: relative; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.post-card__img { aspect-ratio: 16/10; background: var(--gray-light); overflow: hidden; display: block; }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; }
.post-card__date { position: absolute; top: 14px; left: 14px; background: var(--pink); color: var(--white); border-radius: 8px; padding: 6px 10px; text-align: center; line-height: 1.05; font-weight: 800; }
.post-card__date small { display: block; font-size: 10px; letter-spacing: .1em; font-weight: 700; text-transform: uppercase; }
.post-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-card__cat { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--pink-hover); }
.post-card h3 { font-size: 1.1rem; margin: 0; }
.post-card h3 a { color: var(--dark); }
.post-card h3 a:hover { color: var(--pink-hover); }
.post-card p { color: var(--gray-text); font-size: 14px; margin: 0; }
.post-card .more { margin-top: auto; font-weight: 700; font-size: 14px; }
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pagination a, .pagination span { min-width: 40px; height: 40px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--radius); border: 2px solid #eee; font-weight: 700; color: var(--dark); }
.pagination a:hover { border-color: var(--pink); color: var(--pink-hover); }
.pagination .is-current { background: var(--pink); border-color: var(--pink); color: var(--white); }
.post-header { max-width: 880px; margin: 0 auto 30px; text-align: center; }
.post-header h1 { font-size: 2.4rem; }
.post-meta { color: #888; font-size: 14px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.post-meta a { color: var(--pink-hover); font-weight: 700; }
.post-featured { max-width: 1000px; margin: 0 auto 36px; }
.post-featured img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; max-height: 520px; }
.post-body { max-width: 800px; margin: 0 auto; font-size: 16.5px; }
.post-body img { margin: 1.5em auto; }
.author-box { max-width: 800px; margin: 40px auto 0; background: var(--pink-bg); border-radius: var(--radius-lg); padding: 20px 24px; font-size: 14px; color: var(--gray-text); }
.post-nav { max-width: 800px; margin: 40px auto 0; display: flex; justify-content: space-between; gap: 16px; }
.post-nav a { flex: 1; border: 1px solid #eee; border-radius: var(--radius); padding: 14px 16px; color: var(--dark); font-weight: 600; font-size: 14px; }
.post-nav a:hover { border-color: var(--pink); color: var(--pink-hover); }
.post-nav a small { display: block; color: #999; font-weight: 400; font-size: 12px; margin-bottom: 4px; }

/* Cart ------------------------------------------------------------------- */
.cart-table th, .cart-table td { padding: 14px 10px; border-bottom: 1px solid #eee; text-align: left; vertical-align: middle; }
.cart-table th { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #888; }
.cart-table img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; }
.cart-table .remove { color: #bbb; font-size: 20px; background: none; border: 0; cursor: pointer; }
.cart-table .remove:hover { color: var(--danger); }
.cart-summary { background: var(--pink-bg); border-radius: var(--radius-lg); padding: 24px; }
.cart-summary .row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--pink-light); }
.cart-summary .row.total { font-size: 1.3rem; font-weight: 800; border: 0; color: var(--pink-hover); }
.empty { text-align: center; padding: 60px 20px; color: #888; }
.empty svg { width: 64px; height: 64px; margin: 0 auto 16px; color: var(--pink-light); }

/* Age gate --------------------------------------------------------------- */
.age-gate { position: fixed; inset: 0; background: rgba(34,34,34,.8); backdrop-filter: blur(4px); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.age-gate.is-open { display: flex; }
.age-gate__box { background: var(--white); border-radius: var(--radius-lg); max-width: 560px; width: 100%; padding: 32px; box-shadow: 0 30px 80px rgba(0,0,0,.4); }
.age-gate__box h2 { text-align: center; color: var(--pink-hover); }
.age-gate__box .check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin-bottom: 12px; }
.age-gate__box .check input { margin-top: 4px; flex-shrink: 0; }
.age-gate__actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 18px; }

/* Toast */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 20px); background: var(--dark); color: var(--white); padding: 12px 20px; border-radius: 30px; font-weight: 600; opacity: 0; visibility: hidden; transition: all .25s; z-index: 1500; box-shadow: var(--shadow); font-size: 14px; }
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast a { color: var(--pink-medium); margin-left: 8px; text-decoration: underline; }

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .coa-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav, .header-cta, .cart-total { display: none; }
  .nav-toggle { display: inline-flex; }
  .product-grid, .product-grid--4 { grid-template-columns: repeat(3, 1fr); }
  .split, .product-hero, .two-col { grid-template-columns: 1fr; gap: 28px; }
  .shop-layout { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.4rem; }
  .hero { min-height: 460px; }
  .hero__pig { display: none; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding-block: 44px; }
}
@media (max-width: 600px) {
  .product-grid, .product-grid--4, .product-grid--3, .post-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card__body { padding: 12px; }
  .product-card__title { font-size: .92rem; }
  .btn--sm { padding: 8px 10px; font-size: 12px; }
  .features, .footer-grid, .coa-grid, .trust-strip, .form .row { grid-template-columns: 1fr; }
  /* Portrait crop: vials sit at the bottom, so copy hugs the top. */
  .hero { align-items: flex-start; background-image: var(--hero-bg-mobile, var(--hero-bg)); min-height: 520px; }
  .hero::before { background: linear-gradient(180deg, rgba(122,32,60,.55) 0%, rgba(122,32,60,.34) 46%, rgba(122,32,60,0) 78%); }
  .hero__inner { padding-block: 56px; }
  .hero h1 { font-size: 2rem; }
  .brand img { height: 40px; }
  .site-header__inner { gap: 12px; }
  .icon-btn { width: 38px; height: 38px; }
  .nl-form { flex-direction: column; }
  .post-header h1 { font-size: 1.7rem; }
  .cart-table thead { display: none; }
  .cart-table td { display: block; padding: 6px 0; border: 0; }
  .cart-table tr { display: block; border-bottom: 1px solid #eee; padding: 12px 0; }
  .post-nav { flex-direction: column; }
}
