@charset "UTF-8";
/**
 * layout-pod.css — Prism preset "pod" (LIGHT / Ink Harbor Studio, print-on-demand).
 *
 * Per-preset homepage-body skin for layouts/pod.php. ENQUEUED ONLY when the
 * active preset's layout slug is `pod` (see inc/preset-resolver.php →
 * tct_prism_enqueue_preset()), deps ['tct-theme','tct-shop'].
 *
 * Built MOCKUP-FAITHFUL (S8 lesson). The palette is SAMPLED from POD.png:
 *   page #F2ECE3 / hero #EFE6DD (warm cream), card #FBFAF6, product-media tile
 *   #E7DED0 (warm grey, DISTINCT from the card so product bounds + size read
 *   clearly — the S9 card lesson), trust band #F3EBE0 (tan), rust accent
 *   #A34A2D, teal badge #1E5E60, teal promo #29454D + rust promo #9E3F29,
 *   charcoal ink #1F2120 (buttons / newsletter band).
 * Rust accent + Playfair Display serif headings come from the preset tokens
 * (--tct-brand #A34A2D / Playfair). Everything is scoped under `.tc-pod` so the
 * cream palette never leaks into chrome or other presets.
 *
 * POD deltas vs apparel: rounded radii (rounded flag), FULL-WIDTH dark card
 * button with the wishlist heart floated top-RIGHT on the media, category tiles
 * with the label + "Shop Now →" BELOW the image (not an overlay bar), a 4-up
 * featured grid, teal + rust promo bands, and a charcoal newsletter band.
 *
 * @package TitanCart_Prism
 */

/* ═══════════════════════════════════════════════════════════════════════════
   ROOT — local warm-cream palette (sampled) + base
   ══════════════════════════════════════════════════════════════════════════ */
.tc-pod {
	--pod-bg:        #F2ECE3; /* warm cream page */
	--pod-hero-bg:   #EFE6DD;
	--pod-surface:   #FBFAF6; /* card */
	--pod-surface-2: #F3EBE0; /* trust band — tan */
	--pod-media:     #E7DED0; /* product-image tile — DISTINCT from card (S9 fix) */
	--pod-media-2:   #D8CDBB; /* media edge / placeholder */
	--pod-border:    #E3DBCF;
	--pod-border-2:  #D6CCBD;
	--pod-text:      #34302A;
	--pod-heading:   #211F1C;
	--pod-muted:     #8A8175;
	--pod-ink:       #1F2120; /* charcoal — dark buttons + newsletter band */
	--pod-ink-2:     #2C2B28;

	/* Accents track the preset tokens, with literal rust fallbacks. */
	--pod-brand:       var(--tct-brand, #A34A2D);
	--pod-brand-hover: var(--tct-brand-hover, #8E3E25);
	--pod-brand-soft:  #F4E6DE;

	--pod-teal:      #1E5E60; /* teal badge (New / Best Seller / Top Rated) */
	--pod-teal-band: #29454D; /* teal promo band (sampled) */
	--pod-rust-band: #9E3F29; /* rust promo band + sale (sampled) */
	--pod-sale:      #9E3F29;
	--pod-star:      #E0A93B;

	--pod-r:    12px;
	--pod-r-sm: 7px;
	--pod-r-lg: 16px;

	--pod-display: 'Playfair Display', Georgia, 'Times New Roman', serif;

	background: var(--pod-bg);
	color: var(--pod-text);
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
.tc-pod *,
.tc-pod *::before,
.tc-pod *::after { box-sizing: border-box; }
.tc-pod a { color: inherit; text-decoration: none; }
.tc-pod img { max-width: 100%; display: block; }
.tc-pod ul { list-style: none; margin: 0; padding: 0; }

.tc-pod__container {
	width: 100%;
	max-width: 1440px;   /* full 1440 design width; no gutters — full-bleed to the 1440 frame (S19) */
	margin-inline: auto;
	padding-inline: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS — rounded, uppercase letter-spaced (sans, not serif)
   ══════════════════════════════════════════════════════════════════════════ */
.tc-pod-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 26px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: .8rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	line-height: 1;
	border-radius: var(--pod-r-sm);
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
	white-space: nowrap;
}
.tc-pod-btn:hover { transform: translateY(-1px); }
.tc-pod-btn:active { transform: translateY(0); }

.tc-pod-btn--primary { background: var(--pod-brand); color: #fff; box-shadow: 0 8px 20px -12px rgba(163,74,45,.7); }
.tc-pod-btn--primary:hover { background: var(--pod-brand-hover); }

.tc-pod-btn--outline { background: transparent; color: var(--pod-heading); border-color: var(--pod-border-2); }
.tc-pod-btn--outline:hover { background: var(--pod-heading); color: #fff; border-color: var(--pod-heading); }

.tc-pod-btn--dark { background: var(--pod-ink); color: #fff; }
.tc-pod-btn--dark:hover { background: #000; }

.tc-pod-btn--light { background: #fff; color: var(--pod-heading); }
.tc-pod-btn--light:hover { background: var(--pod-hero-bg); }

/* ═══════════════════════════════════════════════════════════════════════════
   1. HERO — serif display w/ rust accent, dual CTA, 5-star rating line
   ══════════════════════════════════════════════════════════════════════════ */
.tc-pod-hero {
	background:
		radial-gradient(120% 130% at 90% 14%, rgba(163,74,45,.10), transparent 56%),
		linear-gradient(180deg, #F5EEE6, var(--pod-hero-bg));
	border-bottom: 1px solid var(--pod-border);
}
.tc-pod-hero__inner {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	align-items: center;
	gap: 48px;
	padding-block: 76px;
}
.tc-pod-hero__copy { max-width: 560px; }
.tc-pod-hero__title {
	margin: 0 0 20px;
	font-family: var(--pod-display);
	font-weight: 700;
	line-height: 1.04;
	font-size: clamp(2.7rem, 5.6vw, 4.6rem);
	color: var(--pod-heading);
	letter-spacing: -.01em;
}
.tc-pod-hero__accent { color: var(--pod-brand); }
.tc-pod-hero__sub {
	margin: 0 0 30px;
	color: var(--pod-muted);
	font-size: 1.06rem;
	line-height: 1.7;
}
.tc-pod-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.tc-pod-hero__rating {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 22px;
}
.tc-pod-hero__stars { display: inline-flex; gap: 2px; color: var(--pod-star); font-size: .92rem; }
/* S34: was var(--pod-muted) #8A8175 — only ~3.1:1 on the cream hero, too light to
   read. #615E59 (PIL-sampled from POD.png's trust line) is ~5.2:1 — passes AA and
   matches the mockup. The score <strong> stays on the darker --pod-heading. */
.tc-pod-hero__rtext { color: #615E59; font-size: .86rem; }
.tc-pod-hero__rtext strong { color: var(--pod-heading); font-weight: 700; }

.tc-pod-hero__visual {
	position: relative;
	min-height: 380px;
	border-radius: var(--pod-r-lg);
	background: radial-gradient(circle at 50% 42%, #F2ECE4, var(--pod-media) 80%);
	border: 1px solid var(--pod-border);
	display: grid;
	place-items: center;
	overflow: hidden;
}
.tc-pod-hero__motif {
	font-size: 11rem;
	line-height: 1;
	color: var(--pod-brand);
	opacity: .14;
}

/* ═══════════════════════════════════════════════════════════════════════════
   2. CATEGORY TILES (REAL) — image + label + "Shop Now →" below
   ══════════════════════════════════════════════════════════════════════════ */
.tc-pod-cats { padding-block: clamp(1rem, 0.7rem + 1vw, 1.5rem); }
.tc-pod-cats__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 18px;
}
.tc-pod-cat {
	display: flex;
	flex-direction: column;
	background: var(--pod-surface);
	border: 1px solid var(--pod-border);
	border-radius: var(--pod-r);
	overflow: hidden;
	transition: transform .18s ease, box-shadow .2s ease, border-color .18s ease;
}
.tc-pod-cat:hover {
	transform: translateY(-3px);
	border-color: var(--pod-border-2);
	box-shadow: 0 16px 30px -20px rgba(33,31,28,.45);
}
.tc-pod-cat__media {
	display: block;
	aspect-ratio: 1 / 1;
	background-size: cover;
	background-position: center;
	background-color: var(--pod-media);
}
.tc-pod-cat__media--ph {
	display: grid;
	place-items: center;
	font-size: 2.4rem;
	color: var(--pod-media-2);
	background: var(--pod-media);
}
.tc-pod-cat__label {
	margin: 0;
	padding: 12px 12px 2px;
	text-align: center;
	color: var(--pod-heading);
	font-weight: 600;
	font-size: .8rem;
	letter-spacing: .1em;
	text-transform: uppercase;
}
.tc-pod-cat__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 2px 12px 14px;
	text-align: center;
	color: var(--pod-brand);
	font-weight: 600;
	font-size: .76rem;
}
.tc-pod-cat__link i { transition: transform .15s ease; }
.tc-pod-cat:hover .tc-pod-cat__link i { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════════════════════════
   3. MAIN — FILTERS sidebar + FEATURED grid
   ══════════════════════════════════════════════════════════════════════════ */
.tc-pod-main { padding-block: clamp(1rem, 0.7rem + 1vw, 1.5rem); }
.tc-pod-main__grid {
	display: grid;
	grid-template-columns: 1fr;
	align-items: start;
	gap: 34px;
}

/* ── FEATURED PRODUCTS ── */
.tc-pod-featured { min-width: 0; }
.tc-pod-featured__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}
.tc-pod-featured__title {
	margin: 0;
	font-weight: 700;
	font-size: .96rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--pod-heading);
}
.tc-pod-featured__all {
	display: inline-flex; align-items: center; gap: 6px;
	color: var(--pod-brand); font-weight: 600; font-size: .82rem;
	letter-spacing: .03em; white-space: nowrap;
}
.tc-pod-featured__all i { transition: transform .15s ease; }
.tc-pod-featured__all:hover i { transform: translateX(4px); }
.tc-pod-featured__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}
.tc-pod-featured__empty {
	display: flex; flex-direction: column; align-items: center; gap: 14px;
	padding: 64px 24px; text-align: center;
	background: var(--pod-surface); border: 1px dashed var(--pod-border-2);
	border-radius: var(--pod-r-lg); color: var(--pod-muted);
}
.tc-pod-featured__empty i { font-size: 2.6rem; color: var(--pod-border-2); }
.tc-pod-featured__empty p { margin: 0; }

/* ── PRODUCT CARD ── */
.tc-pod-card {
	display: flex;
	flex-direction: column;
	background: var(--pod-surface);
	border: 1px solid var(--pod-border);
	border-radius: var(--pod-r);
	overflow: hidden;
	transition: border-color .18s ease, box-shadow .2s ease, transform .18s ease;
}
.tc-pod-card:hover {
	transform: translateY(-3px);
	border-color: var(--pod-border-2);
	box-shadow: 0 18px 34px -22px rgba(33,31,28,.5);
}
/* media tile — DISTINCT warm-grey background so the product image + its size read clearly */
.tc-pod-card__media {
	position: relative;
	aspect-ratio: var(--tc-img-ratio, 1 / 1);
	background: var(--pod-media);
	overflow: hidden;
}
.tc-pod-card__imglink { position: absolute; inset: 0; display: block; }
.tc-pod-card__imglink img { width: 100%; height: 100%; object-fit: cover; }
.tc-pod-card__ph {
	position: absolute; inset: 0; display: grid; place-items: center;
	color: var(--pod-media-2); font-size: 2.4rem; background: var(--pod-media);
}
/* badge top-LEFT */
.tc-pod-badge {
	position: absolute; top: 10px; left: 10px; z-index: 2;
	display: inline-flex; align-items: center;
	padding: 5px 10px;
	font-weight: 700; font-size: .64rem; letter-spacing: .08em; text-transform: uppercase;
	border-radius: var(--pod-r-sm); line-height: 1.2; color: #fff;
}
.tc-pod-badge--sale { background: var(--pod-sale); }
.tc-pod-badge--new  { background: var(--pod-teal); }
.tc-pod-badge--teal { background: var(--pod-teal); }
/* wishlist heart top-RIGHT */
.tc-pod-card__heart {
	position: absolute; top: 9px; right: 9px; z-index: 2;
	display: grid; place-items: center;
	width: 34px; height: 34px;
	border: 0;
	border-radius: 50%;
	background: rgba(255,255,255,.92);
	color: var(--pod-heading);
	box-shadow: 0 4px 10px -4px rgba(33,31,28,.4);
	cursor: pointer;
	transition: color .15s ease, background .15s ease, transform .15s ease;
}
.tc-pod-card__heart:hover { color: var(--pod-sale); transform: scale(1.08); }
.tc-pod-card__heart.is-active,
.tc-pod-card__heart[aria-pressed="true"] { color: var(--pod-sale); }
.tc-pod-card__heart.is-active .bi-heart::before { content: "\f415"; } /* bi-heart-fill */

.tc-pod-card__body {
	display: flex; flex-direction: column; gap: 7px;
	padding: 14px 14px 16px; flex: 1 1 auto;
}
.tc-pod-card__brand {
	font-family: var(--pod-display);
	font-size: .68rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--pod-brand);
	margin-bottom: -2px;
}
.tc-pod-card__name {
	color: var(--pod-heading);
	font-weight: 600;
	font-size: .92rem;
	line-height: 1.35;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
	transition: color .15s ease;
}
.tc-pod-card__name:hover { color: var(--pod-brand); }
.tc-pod-card__rating { display: flex; align-items: center; gap: 6px; }
.tc-pod-card__stars { display: inline-flex; gap: 1px; color: var(--pod-star); font-size: .8rem; }
.tc-pod-card__stars .bi-star { color: var(--pod-border-2); }
.tc-pod-card__rcount { color: var(--pod-muted); font-size: .74rem; }
.tc-pod-card__price { display: flex; align-items: baseline; gap: 8px; margin-top: 2px; }
.tc-pod-card__now { font-weight: 700; font-size: 1.02rem; color: var(--pod-heading); }
/* sale price reads rust when an original (struck) price is present (mockup) */
.tc-pod-card__now.is-sale,
.tc-pod-card__price:has(.tc-pod-card__was) .tc-pod-card__now { color: var(--pod-sale); }
.tc-pod-card__was { font-size: .82rem; color: var(--pod-muted); text-decoration: line-through; }
.tc-pod-card__login { font-size: .84rem; color: var(--pod-brand); font-weight: 600; }

/* FULL-WIDTH dark cart button (pushed to card bottom) */
.tc-pod-card__cart {
	width: 100%;
	margin-top: 12px;
	display: inline-flex; align-items: center; justify-content: center;
	padding: 11px 12px;
	border: 1px solid var(--pod-ink);
	border-radius: var(--pod-r-sm);
	background: var(--pod-ink);
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-weight: 600; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
	cursor: pointer;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.tc-pod-card__cart:hover { background: var(--pod-brand); border-color: var(--pod-brand); color: #fff; }
/* ghost variant — "View Details" (outlined) */
.tc-pod-card__cart--ghost { background: transparent; color: var(--pod-heading); border-color: var(--pod-border-2); }
.tc-pod-card__cart--ghost:hover { background: var(--pod-ink); border-color: var(--pod-ink); color: #fff; }

/* ═══════════════════════════════════════════════════════════════════════════
   4. TRUST BAR — 4-up on a tan band
   ══════════════════════════════════════════════════════════════════════════ */
.tc-pod-trust__grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
	padding: clamp(1rem, 0.7rem + 1vw, 1.5rem) 24px;
	background: var(--pod-surface-2);
	border-block: 1px solid var(--pod-border);
}
.tc-pod-trust__item { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 14px; align-items: center; }
.tc-pod-trust__item i {
	grid-row: 1 / span 2;
	display: grid; place-items: center;
	width: 42px; height: 42px; border-radius: 50%;
	background: var(--pod-brand-soft); color: var(--pod-brand); font-size: 1.2rem;
}
.tc-pod-trust__t { align-self: end; font-weight: 700; color: var(--pod-heading); font-size: .9rem; }
.tc-pod-trust__d { align-self: start; color: var(--pod-muted); font-size: .8rem; line-height: 1.4; }

/* ═══════════════════════════════════════════════════════════════════════════
   5. DUAL PROMO BANNERS — teal + rust (no countdown)
   ══════════════════════════════════════════════════════════════════════════ */
.tc-pod-promos { padding-block: clamp(1rem, 0.7rem + 1vw, 1.5rem); }
.tc-pod-promos__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.tc-pod-promo {
	position: relative; overflow: hidden;
	border-radius: var(--pod-r-lg);
	padding: 38px 42px; min-height: 196px;
	display: flex; align-items: center;
}
.tc-pod-promo--teal { background: linear-gradient(120deg, #29454D, #1F3138); }
.tc-pod-promo--rust { background: linear-gradient(120deg, #9E3F29, #8E3E25); }
.tc-pod-promo__copy { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 9px; max-width: 78%; }
.tc-pod-promo__eyebrow {
	font-weight: 700; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
	color: rgba(255,255,255,.72);
}
.tc-pod-promo__title {
	margin: 0; font-family: var(--pod-display); font-weight: 700;
	font-size: 1.74rem; color: #fff; line-height: 1.1;
}
.tc-pod-promo__sub { margin: 0 0 6px; color: rgba(255,255,255,.85); font-size: .96rem; }
.tc-pod-promo__art {
	position: absolute; right: -6px; bottom: -18px;
	font-size: 7.6rem; line-height: 1; color: #fff; opacity: .10; z-index: 0; pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   6. NEWSLETTER BAND (REAL — bound by theme.js) — charcoal band
   ══════════════════════════════════════════════════════════════════════════ */
.tc-pod-news { background: var(--pod-ink); }
.tc-pod-news__inner {
	display: grid; grid-template-columns: 1.2fr 1fr; align-items: center;
	gap: 38px; padding-block: 40px;
}
.tc-pod-news__copy { display: flex; align-items: center; gap: 16px; }
.tc-pod-news__icon {
	flex: 0 0 auto; display: grid; place-items: center;
	width: 48px; height: 48px; border-radius: 50%;
	background: rgba(255,255,255,.12); color: #fff; font-size: 1.3rem;
}
.tc-pod-news__title {
	margin: 0 0 4px; font-family: var(--pod-display); font-weight: 700;
	font-size: 1.55rem; color: #fff;
}
.tc-pod-news__sub { margin: 0; color: rgba(255,255,255,.78); font-size: .9rem; }
.tc-pod-news__action { display: flex; flex-direction: column; gap: 8px; }
.tc-pod-news__form { display: flex; gap: 10px; }
.tc-pod-news__input {
	flex: 1 1 auto; min-width: 0; padding: 13px 16px;
	background: #fff; border: 1px solid transparent; border-radius: var(--pod-r-sm);
	color: var(--pod-heading); font: inherit; outline: none;
	transition: box-shadow .15s ease;
}
.tc-pod-news__input::placeholder { color: var(--pod-muted); }
.tc-pod-news__input:focus { box-shadow: 0 0 0 3px rgba(163,74,45,.45); }
.tc-pod-news__btn { flex: 0 0 auto; }
.tc-pod-news__msg { margin: 0; min-height: 1em; font-size: .82rem; color: rgba(255,255,255,.85); }
.tc-pod-news__msg.is-success { color: #BFE3C8; }
.tc-pod-news__msg.is-error   { color: #F2C7C1; }
.tc-pod-news__fine { color: rgba(255,255,255,.5); font-size: .76rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
	.tc-pod-featured__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
	.tc-pod-main__grid { grid-template-columns: 1fr; }
	.tc-pod-cats__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
	.tc-pod-featured__grid { grid-template-columns: repeat(2, 1fr); }
	.tc-pod-hero__inner { grid-template-columns: 1fr; padding-block: 54px; }
	.tc-pod-hero__visual { min-height: 240px; order: -1; }
	.tc-pod-trust__grid { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
	.tc-pod-promos__grid { grid-template-columns: 1fr; }
	.tc-pod-promo__copy { max-width: 100%; }
	.tc-pod-news__inner { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 520px) {
	.tc-pod__container { padding-inline: 0; }
	.tc-pod-cats__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.tc-pod-featured__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.tc-pod-featured__head { flex-direction: column; align-items: flex-start; gap: 6px; }
	.tc-pod-hero__cta { width: 100%; }
	.tc-pod-hero__cta .tc-pod-btn { flex: 1 1 auto; }
	.tc-pod-promo { padding: 30px; }
	.tc-pod-trust__grid { grid-template-columns: 1fr; }
	.tc-pod-news__form { flex-direction: column; }
}
