/* ============================================================
   HOMEPAGE
   ============================================================ */

.vt-home { background: var(--vt-bg); }
.vt-section-header { display: flex; align-items: baseline; justify-content: space-between; padding: 20px 24px 14px; border-bottom: 1px solid var(--vt-border); }
.vt-section-title { font-family: var(--vt-font-display) !important; font-size: clamp(22px, 3vw, 32px) !important; letter-spacing: 0.06em !important; color: var(--vt-text) !important; margin: 0 !important; font-weight: 400 !important; line-height: 1 !important; }
.vt-section-link { font-family: var(--vt-font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--vt-muted); }
.vt-section-link:hover { color: var(--vt-accent); }
/* .vt-btn-primary and .vt-btn-ghost are defined in style.css — global */

/* Hero */
.vt-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; border-bottom: 1px solid var(--vt-border); }
.vt-hero__content { padding: 48px 40px; display: flex; flex-direction: column; justify-content: flex-end; gap: 0; }
.vt-hero__eyebrow { font-family: var(--vt-font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--vt-accent); margin: 0 0 12px; }
.vt-hero__title { font-family: var(--vt-font-display) !important; font-size: clamp(56px, 9vw, 108px) !important; line-height: 0.9 !important; letter-spacing: 0.02em !important; color: var(--vt-text) !important; margin: 0 0 20px !important; font-weight: 400 !important; }
.vt-hero__title em { color: var(--vt-accent); font-style: normal; }
.vt-hero__sub { font-family: var(--vt-font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--vt-muted); border-left: 2px solid var(--vt-border); padding-left: 12px; margin: 0 0 28px; }
.vt-hero__actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.vt-hero__product { border-left: 1px solid var(--vt-border); position: relative; overflow: hidden; }
.vt-hero__product-link { display: block; width: 100%; height: 100%; }
.vt-hero__product-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.2s ease; }
.vt-hero__product-link:hover .vt-hero__product-img { opacity: 0.85; }
.vt-hero__product-meta { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 24px; background: linear-gradient(transparent, rgba(10, 10, 10, 0.92)); }
.vt-hero__product-artist { font-family: var(--vt-font-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--vt-muted); display: block; margin-bottom: 3px; }
.vt-hero__product-title { font-family: var(--vt-font-display); font-size: 22px; letter-spacing: 0.04em; color: var(--vt-text); display: block; margin-bottom: 8px; line-height: 1; }
.vt-hero__product-title:hover { color: var(--vt-accent); }
.vt-hero__product-info { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.vt-hero__product-label, .vt-hero__product-year { font-family: var(--vt-font-mono); font-size: 10px; letter-spacing: 0.08em; color: var(--vt-muted); }
.vt-hero__product-label::after { content: '·'; margin-left: 8px; color: var(--vt-border); }
.vt-hero__product-price .woocommerce-Price-amount, .vt-hero__product-price bdi { font-family: var(--vt-font-mono); font-size: 16px; color: var(--vt-text); }

/* Ticker */
.vt-ticker { background: var(--vt-accent); padding: 9px 0; overflow: hidden; border-bottom: 1px solid var(--vt-border); white-space: nowrap; }
.vt-ticker__inner { display: inline-flex; gap: 32px; animation: vt-ticker-scroll 24s linear infinite; will-change: transform; }
.vt-ticker__item { font-family: var(--vt-font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #0a0a0a; }
.vt-ticker__sep { font-family: var(--vt-font-mono); font-size: 11px; color: rgba(10, 10, 10, 0.35); }
@keyframes vt-ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.vt-ticker:hover .vt-ticker__inner { animation-play-state: paused; }

/* WCAG 2.3.3 AAA — stop all motion for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
	.vt-ticker__inner { animation: none; }
}

/* New Arrivals */
.vt-arrivals { border-bottom: 1px solid var(--vt-border); }
.vt-arrivals__strip { display: flex; overflow-x: auto; gap: 0; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; }
.vt-arrivals__strip::-webkit-scrollbar { display: none; }
.vt-product-card { flex: 0 0 calc(100% / 4); min-width: 200px; border-right: 1px solid var(--vt-border); background: var(--vt-surface); scroll-snap-align: start; position: relative; }
.vt-product-card:last-child { border-right: none; }
.vt-product-card__art-link { display: block; }
.vt-product-card__art { position: relative; overflow: hidden; }
.vt-product-card__art img { width: 100%; height: 100%; display: block; transition: opacity 0.2s ease; }
.vt-product-card:hover .vt-product-card__art img { opacity: 0.7; }
.vt-product-card__overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.15s ease; }
.vt-product-card:hover .vt-product-card__overlay { opacity: 1; }
.vt-product-card__cta { font-family: var(--vt-font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; border: 1px solid var(--vt-accent); color: var(--vt-accent); padding: 8px 16px; background: rgba(10, 10, 10, 0.7); }
.vt-product-card__body { padding: 12px 14px; }
.vt-product-card__artist { font-family: var(--vt-font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--vt-muted); display: block; margin-bottom: 2px; }
.vt-product-card__title { font-family: var(--vt-font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: var(--vt-text); display: block; margin-bottom: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vt-product-card__title:hover { color: var(--vt-accent); }
.vt-product-card__footer { display: flex; align-items: center; justify-content: space-between; }
.vt-product-card__price .woocommerce-Price-amount, .vt-product-card__price bdi { font-family: var(--vt-font-mono); font-size: 13px; color: var(--vt-text); }

/* Genre Grid */
.vt-genres { border-bottom: 1px solid var(--vt-border); }
.vt-genres__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.vt-genre-cell { display: flex; flex-direction: column; padding: 20px 22px; border-right: 1px solid var(--vt-border); border-bottom: 1px solid var(--vt-border); text-decoration: none; transition: background 0.1s ease; }
.vt-genre-cell:nth-child(4n) { border-right: none; }
.vt-genre-cell:nth-last-child(-n+4) { border-bottom: none; }
.vt-genre-cell:hover { background: var(--vt-surface); }
.vt-genre-cell__num { font-family: var(--vt-font-mono); font-size: 9px; letter-spacing: 0.16em; color: var(--vt-muted); margin-bottom: 6px; }
.vt-genre-cell__name { font-family: var(--vt-font-display); font-size: clamp(20px, 2.5vw, 28px); letter-spacing: 0.06em; color: var(--vt-text); margin-bottom: 4px; transition: color 0.1s ease; line-height: 1; }
.vt-genre-cell:hover .vt-genre-cell__name { color: var(--vt-accent); }
.vt-genre-cell__count { font-family: var(--vt-font-mono); font-size: 9px; letter-spacing: 0.1em; color: var(--vt-muted); margin-top: auto; padding-top: 12px; }

/* About */
.vt-about { display: grid; grid-template-columns: 1fr 360px; border-bottom: 1px solid var(--vt-border); }
.vt-about__content { padding: 48px 40px; border-right: 1px solid var(--vt-border); display: flex; flex-direction: column; gap: 0; }
.vt-about__eyebrow { font-family: var(--vt-font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--vt-accent); margin: 0 0 12px; }
.vt-about__title { font-family: var(--vt-font-display) !important; font-size: clamp(32px, 4vw, 56px) !important; letter-spacing: 0.04em !important; color: var(--vt-text) !important; margin: 0 0 16px !important; font-weight: 400 !important; line-height: 0.95 !important; }
.vt-about__body { font-family: var(--vt-font-body); font-size: 15px; line-height: 1.7; color: var(--vt-muted); max-width: 520px; margin: 0 0 28px; }
.vt-about__meta { background: var(--vt-surface); display: flex; flex-direction: column; justify-content: center; }
.vt-about__stat { padding: 24px 28px; border-bottom: 1px solid var(--vt-border); display: flex; flex-direction: column; gap: 4px; }
.vt-about__stat:last-child { border-bottom: none; }
.vt-about__stat-num { font-family: var(--vt-font-display); font-size: 40px; letter-spacing: 0.04em; color: var(--vt-text); line-height: 1; }
.vt-about__stat-label { font-family: var(--vt-font-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--vt-muted); }

/* Label strip */
.vt-label-strip { border-bottom: 1px solid var(--vt-border); background: var(--vt-surface); }
.vt-label-strip__inner { display: grid; grid-template-columns: 200px 1fr; min-height: 220px; }
.vt-label-strip__disc { border-right: 1px solid var(--vt-border); display: flex; align-items: center; justify-content: center; background: var(--vt-surface2); padding: 28px; }
.vt-label-strip__disc-groove { width: 160px; height: 160px; border-radius: 50%; background: repeating-radial-gradient(circle at center, transparent 0px, transparent 4px, rgba(255,255,255,0.03) 4px, rgba(255,255,255,0.03) 5px), #111; border: 1px solid #2a2a2a; display: flex; align-items: center; justify-content: center; position: relative; }
.vt-label-strip__disc-center { width: 60px; height: 60px; border-radius: 50%; background: var(--vt-accent); display: flex; align-items: center; justify-content: center; padding: 6px; }
.vt-label-strip__disc-name { font-family: var(--vt-font-mono); font-size: 6px; letter-spacing: 0.08em; text-transform: uppercase; color: #0a0a0a; text-align: center; line-height: 1.3; word-break: break-word; }
.vt-label-strip__content { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; gap: 0; }
.vt-label-strip__eyebrow { font-family: var(--vt-font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--vt-accent); margin: 0 0 10px; }
.vt-label-strip__title { font-family: var(--vt-font-display) !important; font-size: clamp(28px, 4vw, 48px) !important; letter-spacing: 0.04em !important; color: var(--vt-text) !important; margin: 0 0 12px !important; font-weight: 400 !important; line-height: 1 !important; }
.vt-label-strip__tagline { font-family: var(--vt-font-body); font-size: 15px; line-height: 1.65; color: var(--vt-muted); max-width: 480px; margin: 0 0 24px; }
.vt-label-strip__actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 1200px) { .vt-hero { grid-template-columns: 1fr 360px; } .vt-product-card { flex: 0 0 calc(100% / 3); } }
@media (max-width: 1024px) {
	.vt-hero { grid-template-columns: 1fr; }
	.vt-hero__product { border-left: none; border-top: 1px solid var(--vt-border); flex-direction: row; justify-content: flex-start; padding: 20px 24px; gap: 20px; }
	.vt-hero__product-link { width: auto; flex-shrink: 0; }
	.vt-hero__product-img { width: 80px; height: 80px; }
	.vt-hero__product-meta { max-width: none; }
	.vt-genres__grid { grid-template-columns: repeat(2, 1fr); }
	.vt-genre-cell:nth-child(4n) { border-right: 1px solid var(--vt-border); }
	.vt-genre-cell:nth-child(2n) { border-right: none; }
	.vt-genre-cell:nth-last-child(-n+4) { border-bottom: 1px solid var(--vt-border); }
	.vt-genre-cell:nth-last-child(-n+2) { border-bottom: none; }
	.vt-about { grid-template-columns: 1fr; }
	.vt-about__content { border-right: none; border-bottom: 1px solid var(--vt-border); padding: 32px 24px; }
	.vt-about__meta { flex-direction: row; }
	.vt-about__stat { flex: 1; border-bottom: none; border-right: 1px solid var(--vt-border); }
	.vt-about__stat:last-child { border-right: none; }
	.vt-label-strip__inner { grid-template-columns: 1fr; }
	.vt-label-strip__disc { border-right: none; border-bottom: 1px solid var(--vt-border); padding: 24px; min-height: auto; }
	.vt-label-strip__disc-groove { width: 100px; height: 100px; }
	.vt-label-strip__disc-center { width: 40px; height: 40px; }
	.vt-label-strip__content { padding: 28px 24px; }
}
/* Ribbons — mirrors archive.css logic for .vt-card__image */
.vt-product-card__art {
	position: relative;
	overflow: hidden;
}

.vt-product-card__art--sale::before {
	content: 'TILBUD';
	position: absolute;
	top: 18px;
	left: -32px;
	width: 120px;
	text-align: center;
	background: var(--vt-accent);
	color: #0a0a0a;
	font-family: var(--vt-font-mono);
	font-size: 8px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 4px 0;
	transform: rotate(-45deg);
	transform-origin: center;
	z-index: 2;
	pointer-events: none;
}

.vt-product-card__art--preorder::after {
	content: 'FORUDBESTIL';
	position: absolute;
	top: 18px;
	right: -32px;
	width: 120px;
	text-align: center;
	background: #3a7d44;
	color: #fff;
	font-family: var(--vt-font-mono);
	font-size: 8px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 4px 0;
	transform: rotate(45deg);
	transform-origin: center;
	z-index: 2;
	pointer-events: none;
}

@media (max-width: 768px) {
	.vt-hero__content { padding: 32px 20px; }
	.vt-hero__actions { flex-direction: column; align-items: flex-start; }
	.vt-btn-primary, .vt-btn-ghost { width: 100%; text-align: center; }
	.vt-product-card { flex: 0 0 calc(100% / 2); }
	.vt-genres__grid { grid-template-columns: repeat(2, 1fr); }
	.vt-section-header { padding: 16px 20px 12px; }
	.vt-label-strip__actions { flex-direction: column; align-items: flex-start; }
	.vt-label-strip__actions .vt-btn-primary, .vt-label-strip__actions .vt-btn-ghost { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
	.vt-product-card { flex: 0 0 75vw; }
	.vt-genres__grid { grid-template-columns: 1fr; }
	.vt-genre-cell { border-right: none !important; border-bottom: 1px solid var(--vt-border) !important; }
	.vt-genre-cell:last-child { border-bottom: none !important; }
	.vt-about__meta { flex-direction: column; }
	.vt-about__stat { border-right: none; border-bottom: 1px solid var(--vt-border); }
}
