/*
Theme Name: The Panty Guy
Theme URI: https://venuslive.co.za
Author: Promptsol
Author URI: https://promptsol.co.za
Description: Boutique marketplace & live platform theme for The Panty Guy. Built on WooCommerce + Dokan.
Version: 0.1.0
Requires PHP: 8.0
Text Domain: pantyguy-theme
*/

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
	--ink:            #120B10;
	--surface:        #1E141B;
	--surface-raised: #2A1B24;
	--surface-line:   #362530;

	--gold:           #C9A659;
	--gold-dim:       #8F7A45;
	--rose:           #D46A85;
	--sage:           #6FA37C;

	--ivory:          #F3E9DE;
	--muted:          #A8949D;
	--muted-dim:      #6E5C64;

	--font-display: 'Fraunces', Georgia, serif;
	--font-body:    'Manrope', -apple-system, sans-serif;
	--font-mono:    'JetBrains Mono', ui-monospace, monospace;

	--radius: 3px;
	--container: 1180px;
}

/* ============================================
   RESET & BASE
   ============================================ */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--ink);
	color: var(--ivory);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.pg-container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 32px;
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 600;
	margin: 0;
	color: var(--ivory);
}

/* Reduced motion respected */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
}

/* Visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 3px;
}

/* ============================================
   SIGNATURE: WAX SEAL MARK
   Used as: live-indicator dot, section dividers
   ============================================ */
.pg-seal {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
	position: relative;
	flex-shrink: 0;
}
.pg-seal::after {
	content: '';
	position: absolute;
	inset: -3px;
	border: 1px solid var(--gold-dim);
	border-radius: 50%;
	opacity: 0.6;
}
.pg-seal.is-live {
	background: var(--sage);
}
.pg-seal.is-live::after {
	border-color: var(--sage);
	animation: pg-pulse 2.4s ease-out infinite;
}
@keyframes pg-pulse {
	0%   { transform: scale(1);   opacity: 0.7; }
	100% { transform: scale(2.4); opacity: 0; }
}

.pg-divider {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0;
	color: var(--gold-dim);
}
.pg-divider::before,
.pg-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--surface-line), transparent);
}

/* ============================================
   HEADER
   ============================================ */
.pg-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(18, 11, 16, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--surface-line);
}
.pg-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 32px;
	max-width: var(--container);
	margin: 0 auto;
}
.pg-logo {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.4rem;
	letter-spacing: 0.02em;
}
.pg-logo span { color: var(--gold); }

.pg-nav {
	display: flex;
	gap: 36px;
	font-size: 0.92rem;
	letter-spacing: 0.02em;
}
.pg-nav a {
	color: var(--muted);
	transition: color 0.2s;
}
.pg-nav a:hover { color: var(--ivory); }

.pg-header-actions {
	display: flex;
	gap: 14px;
	align-items: center;
}

.pg-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: 0.88rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.2s ease;
}
.pg-btn-primary {
	background: var(--gold);
	color: var(--ink);
}
.pg-btn-primary:hover { background: #DBB86C; }

.pg-btn-ghost {
	border-color: var(--surface-line);
	color: var(--ivory);
}
.pg-btn-ghost:hover { border-color: var(--gold-dim); }

/* ============================================
   HERO — editorial split
   ============================================ */
.pg-hero {
	padding: 96px 0 72px;
	border-bottom: 1px solid var(--surface-line);
}
.pg-hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 64px;
	align-items: end;
}
.pg-hero-eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-mono);
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--gold);
	margin-bottom: 24px;
}
.pg-hero h1 {
	font-size: 3.4rem;
	line-height: 1.08;
	letter-spacing: -0.01em;
}
.pg-hero h1 em {
	font-style: italic;
	color: var(--rose);
}
.pg-hero-sub {
	margin-top: 24px;
	color: var(--muted);
	font-size: 1.05rem;
	max-width: 480px;
}
.pg-hero-actions {
	display: flex;
	gap: 14px;
	margin-top: 36px;
}

/* Live ticker card on the right of hero */
.pg-ticker {
	background: var(--surface);
	border: 1px solid var(--surface-line);
	border-radius: var(--radius);
	padding: 24px;
}
.pg-ticker-head {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-mono);
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--muted);
	margin-bottom: 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--surface-line);
}
.pg-ticker-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
}
.pg-ticker-row + .pg-ticker-row {
	border-top: 1px solid var(--surface-line);
}
.pg-avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--surface-raised);
	border: 1px solid var(--surface-line);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: 0.85rem;
	color: var(--gold);
	flex-shrink: 0;
}
.pg-ticker-name { font-size: 0.92rem; font-weight: 600; }
.pg-ticker-meta { font-size: 0.78rem; color: var(--muted-dim); }
.pg-ticker-count {
	margin-left: auto;
	font-family: var(--font-mono);
	font-size: 0.8rem;
	color: var(--muted);
}

/* ============================================
   SECTION LABELS
   ============================================ */
.pg-section { padding: 72px 0; }
.pg-section-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 36px;
}
.pg-section-head h2 { font-size: 1.9rem; }
.pg-section-head .pg-eyebrow {
	display: block;
	font-family: var(--font-mono);
	font-size: 0.74rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--gold-dim);
	margin-bottom: 8px;
}
.pg-see-all {
	font-size: 0.88rem;
	color: var(--muted);
	border-bottom: 1px solid var(--surface-line);
	padding-bottom: 2px;
}
.pg-see-all:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================
   LIVE RAIL — horizontal scroll
   ============================================ */
.pg-rail {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	padding-bottom: 8px;
	scroll-snap-type: x mandatory;
}
.pg-rail::-webkit-scrollbar { height: 5px; }
.pg-rail::-webkit-scrollbar-thumb { background: var(--surface-line); border-radius: 3px; }

.pg-live-card {
	scroll-snap-align: start;
	flex: 0 0 220px;
	background: var(--surface);
	border: 1px solid var(--surface-line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color 0.2s, transform 0.2s;
}
.pg-live-card:hover {
	border-color: var(--gold-dim);
	transform: translateY(-3px);
}
.pg-live-thumb {
	aspect-ratio: 3/4;
	background: linear-gradient(160deg, var(--surface-raised), var(--surface));
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.pg-live-thumb .pg-avatar {
	width: 64px;
	height: 64px;
	font-size: 1.3rem;
}
.pg-live-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	display: flex;
	align-items: center;
	gap: 6px;
	background: rgba(18,11,16,0.85);
	padding: 5px 10px;
	border-radius: 20px;
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.pg-live-viewers {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: rgba(18,11,16,0.85);
	padding: 4px 9px;
	border-radius: 20px;
	font-family: var(--font-mono);
	font-size: 0.72rem;
	color: var(--muted);
}
.pg-live-info { padding: 14px; }
.pg-live-info .pg-name { font-weight: 700; font-size: 0.95rem; }
.pg-live-info .pg-tag { font-size: 0.78rem; color: var(--muted-dim); margin-top: 2px; }

/* ============================================
   CATALOGUE — magazine grid, alternating sizes
   ============================================ */
.pg-catalogue {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 18px;
}
.pg-cat-item {
	grid-column: span 2;
	background: var(--surface);
	border: 1px solid var(--surface-line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color 0.2s;
}
.pg-cat-item:hover { border-color: var(--gold-dim); }
.pg-cat-item.is-feature { grid-column: span 3; }

.pg-cat-thumb {
	aspect-ratio: 4/5;
	background: var(--surface-raised);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20%;
}
.pg-cat-thumb svg { width: 100%; height: 100%; stroke: var(--muted-dim); }

.pg-cat-body { padding: 16px; }
.pg-cat-seller { font-size: 0.74rem; color: var(--gold-dim); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px; }
.pg-cat-title { font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; }
.pg-cat-price { font-family: var(--font-mono); color: var(--ivory); margin-top: 8px; font-size: 0.92rem; }

/* ============================================
   TRUST / DISCRETION STRIP
   ============================================ */
.pg-trust {
	border-top: 1px solid var(--surface-line);
	border-bottom: 1px solid var(--surface-line);
	padding: 48px 0;
}
.pg-trust-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}
.pg-trust-item { display: flex; gap: 14px; }
.pg-trust-item h4 { font-size: 1rem; margin-bottom: 6px; }
.pg-trust-item p { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* ============================================
   FOOTER
   ============================================ */
.pg-footer {
	padding: 56px 0 32px;
	color: var(--muted-dim);
	font-size: 0.85rem;
}
.pg-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 32px;
	padding-bottom: 32px;
}
.pg-footer h5 {
	color: var(--muted);
	font-family: var(--font-mono);
	font-size: 0.74rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 14px;
}
.pg-footer ul { list-style: none; margin: 0; padding: 0; }
.pg-footer li { margin-bottom: 8px; }
.pg-footer a:hover { color: var(--gold); }
.pg-footer-bottom {
	border-top: 1px solid var(--surface-line);
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
}
.pg-age-note {
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.04em;
}

/* ============================================
   APP SHELL — sidebar nav + main content column
   ============================================ */
.pg-shell {
	display: flex;
	min-height: 100vh;
}

.pg-sidebar {
	flex: 0 0 240px;
	background: var(--ink);
	border-right: 1px solid var(--surface-line);
	padding: 20px 16px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: sticky;
	top: 0;
	height: 100vh;
	overflow-y: auto;
}
.pg-sidebar .pg-logo { font-size: 1.15rem; padding: 0 6px; }

.pg-sidebar-nav {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.pg-sidebar-nav a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 10px;
	border-radius: var(--radius);
	color: var(--ivory);
	font-size: 0.92rem;
	font-weight: 600;
}
.pg-sidebar-nav a svg { flex-shrink: 0; opacity: 0.8; }
.pg-sidebar-nav a:hover { background: var(--surface); }
.pg-sidebar-nav a.is-active { color: var(--rose); }
.pg-sidebar-nav a.is-active svg { opacity: 1; stroke: var(--rose); }

.pg-sidebar-foot {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 0 10px;
	font-size: 0.78rem;
}
.pg-sidebar-foot a { color: var(--muted); }
.pg-sidebar-foot a:hover { color: var(--gold); }
.pg-sidebar-copy { color: var(--muted-dim); }
.pg-sidebar-foot .pg-age-note { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.03em; }

.pg-main {
	flex: 1;
	min-width: 0;
}

/* Topbar: Stripchat-style — left cluster (menu/live-count/top link), centered
   search, right cluster (about + two CTA buttons) */
.pg-topbar {
	position: sticky;
	top: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 14px 28px;
	background: var(--surface);
	border-bottom: 1px solid var(--surface-line);
}

.pg-topbar-left {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: 0 0 auto;
}
.pg-hamburger {
	background: none;
	border: none;
	color: var(--ivory);
	cursor: pointer;
	padding: 4px;
	display: none;
}
.pg-topbar-live {
	display: flex;
	align-items: center;
	gap: 7px;
	font-family: var(--font-mono);
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--sage);
	white-space: nowrap;
}
.pg-topbar-link {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--muted);
	white-space: nowrap;
}
.pg-topbar-link:hover { color: var(--ivory); }

.pg-topbar-search {
	flex: 1;
	max-width: 480px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--surface-raised);
	border: 1px solid var(--surface-line);
	border-radius: 20px;
	padding: 9px 16px;
	color: var(--muted);
}
.pg-topbar-search input {
	background: none;
	border: none;
	color: var(--ivory);
	font-family: var(--font-body);
	font-size: 0.85rem;
	width: 100%;
	outline: none;
}
.pg-topbar-search input::placeholder { color: var(--muted-dim); }

.pg-topbar-right {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 0 0 auto;
}
.pg-topbar-link-desktop { display: inline-block; }

/* Secondary row: category pills, sits under the main nav bar */
.pg-pillbar {
	border-bottom: 1px solid var(--surface-line);
	padding: 12px 28px;
}
.pg-pills {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	scrollbar-width: none;
}
.pg-pills::-webkit-scrollbar { display: none; }
.pg-pill {
	flex-shrink: 0;
	padding: 8px 18px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--muted);
	background: transparent;
	border: 1px solid transparent;
	white-space: nowrap;
}
.pg-pill:hover { background: var(--surface-raised); }
.pg-pill.is-active { background: var(--ivory); color: var(--ink); }

/* ============================================
   EXPLORE GRID — homepage, TikTok-Explore-style mixed feed
   ============================================ */
.pg-explore { padding: 24px 32px 64px; }

.pg-explore-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 14px;
}
@media (max-width: 1100px) { .pg-explore-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px)  { .pg-explore-grid { grid-template-columns: repeat(2, 1fr); } }

.pg-explore-card { display: block; }

.pg-explore-thumb {
	position: relative;
	aspect-ratio: 3/4;
	border-radius: var(--radius);
	background: linear-gradient(160deg, var(--surface-raised), var(--surface));
	border: 1px solid var(--surface-line);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: border-color 0.2s;
}
.pg-explore-card:hover .pg-explore-thumb { border-color: var(--gold-dim); }

.pg-avatar-lg { width: 56px; height: 56px; font-size: 1.2rem; }
.pg-avatar-sm { width: 22px; height: 22px; font-size: 0.65rem; }

.pg-explore-likes {
	position: absolute;
	bottom: 8px;
	left: 8px;
	display: flex;
	align-items: center;
	gap: 5px;
	background: rgba(18,11,16,0.75);
	padding: 4px 9px;
	border-radius: 20px;
	font-family: var(--font-mono);
	font-size: 0.7rem;
	color: var(--ivory);
}
.pg-explore-likes svg { color: var(--rose); }

.pg-explore-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 2px 0;
}
.pg-explore-name {
	font-size: 0.82rem;
	color: var(--muted);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media (max-width: 900px) {
	.pg-shell { flex-direction: column; }
	.pg-sidebar {
		position: static;
		height: auto;
		flex-direction: row;
		align-items: center;
		overflow-x: auto;
		gap: 16px;
	}
	.pg-sidebar-foot { display: none; }
	.pg-sidebar-nav { flex-direction: row; }
	.pg-sidebar-nav a span { display: none; }
	.pg-topbar { padding: 12px 16px; }
	.pg-hamburger { display: block; }
	.pg-topbar-link { display: none; }
	.pg-topbar-link-desktop { display: none; }
	.pg-pillbar { padding: 10px 16px; }
	.pg-explore { padding: 16px; }
}

/* ============================================
   RESPONSIVE (legacy sections still used on
   template-live.php / other inner pages)
   ============================================ */
@media (max-width: 900px) {
	.pg-hero-grid { grid-template-columns: 1fr; }
	.pg-hero h1 { font-size: 2.3rem; }
	.pg-catalogue { grid-template-columns: repeat(2, 1fr); }
	.pg-cat-item.is-feature { grid-column: span 2; }
	.pg-trust-grid { grid-template-columns: 1fr; gap: 24px; }
	.pg-footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   LIVE NOW — full grid page (template-live.php)
   ============================================ */
.pg-live-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
@media (max-width: 900px) {
	.pg-live-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   WOOCOMMERCE OVERRIDES
   Restyles WooCommerce's own template markup (ul.products, li.product,
   single-product summary, cart, checkout) to match our tokens instead of
   overriding the template files themselves.
   ============================================ */
.pg-shop-wrap { padding: 8px 0 48px; }

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}
@media (max-width: 900px) {
	.woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
}

.woocommerce ul.products li.product {
	background: var(--surface);
	border: 1px solid var(--surface-line);
	border-radius: var(--radius);
	overflow: hidden;
	padding: 0 0 16px;
	position: relative;
	transition: border-color 0.2s;
}
.woocommerce ul.products li.product:hover { border-color: var(--gold-dim); }

.woocommerce ul.products li.product a { display: block; }
.woocommerce ul.products li.product img {
	aspect-ratio: 4/5;
	object-fit: cover;
	width: 100%;
	border-radius: 0;
	margin-bottom: 14px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--ivory);
	padding: 0 14px;
	margin: 0 0 6px;
}
.woocommerce ul.products li.product .price {
	font-family: var(--font-mono);
	color: var(--ivory);
	font-size: 0.92rem;
	padding: 0 14px;
}
.woocommerce ul.products li.product .price del { color: var(--muted-dim); opacity: 1; }
.woocommerce ul.products li.product .price ins { text-decoration: none; color: var(--rose); }

.woocommerce ul.products li.product .button,
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: 0.85rem;
	font-weight: 600;
	background: var(--gold);
	color: var(--ink);
	border: none;
	cursor: pointer;
	margin: 12px 14px 0;
}
.woocommerce a.button:hover, .woocommerce button.button:hover { background: #DBB86C; }

/* Sorting / result count bar */
.woocommerce .woocommerce-ordering select,
.woocommerce-result-count { color: var(--muted); font-size: 0.88rem; }
.woocommerce .woocommerce-ordering select {
	background: var(--surface);
	border: 1px solid var(--surface-line);
	color: var(--ivory);
	padding: 8px 12px;
	border-radius: var(--radius);
}
.woocommerce .woocommerce-notices-wrapper .woocommerce-info,
.woocommerce .woocommerce-notices-wrapper .woocommerce-message {
	background: var(--surface);
	border: 1px solid var(--surface-line);
	border-left: 3px solid var(--gold);
	color: var(--ivory);
	padding: 14px 18px;
	border-radius: var(--radius);
	list-style: none;
}

/* Single product page */
.woocommerce div.product {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}
@media (max-width: 900px) {
	.woocommerce div.product { grid-template-columns: 1fr; }
}
.woocommerce div.product .woocommerce-product-gallery img { border-radius: var(--radius); }
.woocommerce div.product .product_title {
	font-family: var(--font-display);
	font-size: 2rem;
	margin-bottom: 12px;
}
.woocommerce div.product p.price {
	font-family: var(--font-mono);
	font-size: 1.4rem;
	color: var(--gold);
	margin-bottom: 20px;
}
.woocommerce div.product .woocommerce-product-details__short-description {
	color: var(--muted);
	margin-bottom: 24px;
}
.woocommerce div.product form.cart .quantity input {
	background: var(--surface);
	border: 1px solid var(--surface-line);
	color: var(--ivory);
	padding: 10px;
	width: 64px;
	border-radius: var(--radius);
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
	list-style: none;
	display: flex;
	gap: 24px;
	padding: 0;
	border-bottom: 1px solid var(--surface-line);
	margin: 40px 0 20px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a { color: var(--muted); padding-bottom: 12px; display: block; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--gold); border-bottom: 2px solid var(--gold); }

/* Cart & checkout tables */
.woocommerce table.shop_table {
	width: 100%;
	border-collapse: collapse;
	background: var(--surface);
	border: 1px solid var(--surface-line);
	border-radius: var(--radius);
	overflow: hidden;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--surface-line);
	color: var(--ivory);
}
.woocommerce table.shop_table th { color: var(--muted); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
.woocommerce #payment { background: var(--surface); border: 1px solid var(--surface-line); border-radius: var(--radius); padding: 20px; margin-top: 20px; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
	background: var(--surface);
	border: 1px solid var(--surface-line);
	color: var(--ivory);
	padding: 10px 12px;
	border-radius: var(--radius);
	width: 100%;
}
.woocommerce form .form-row label { color: var(--muted); font-size: 0.85rem; }

/* Dokan store page (public seller shop) */
.dokan-store-wrap { color: var(--ivory); }
.dokan-store-wrap .dokan-store-tabs { border-bottom: 1px solid var(--surface-line); }
.dokan-store-wrap .dokan-store-tabs li a { color: var(--muted); }
.dokan-store-wrap .dokan-store-tabs li.active a { color: var(--gold); }
.dokan-store-wrap .store-name { font-family: var(--font-display); color: var(--ivory); }
