/* ============================================================
   THE VIBED VINES — Main Stylesheet
   Brand: Dark Luxury Anime Streetwear · Built in India
   ============================================================ */

/* — Google Fonts loaded via <link> in <head> for non-blocking delivery — */

/* — CSS Variables — */
:root {
	--void-black: #0A0A0A;
	--off-black: #111111;
	--ash: #2A2A2A;
	--vines-gold: #C9A84C;
	--vines-gold-light: #e0c070;
	--vines-gold-dark: #9a7a2e;
	--paper-white: #F5F5F0;
	--text-muted: #888888;
	--text-dim: #555555;
	--danger: #e05252;
	--success: #52b788;
	--border: rgba(201, 168, 76, 0.15);
	--border-subtle: rgba(255, 255, 255, 0.06);
	--nav-height: 70px;
	--font-heading: 'Bebas Neue', sans-serif;
	--font-body: 'DM Sans', sans-serif;
	--font-mono: 'DM Mono', monospace;
	--transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--shadow-gold: 0 0 30px rgba(201, 168, 76, 0.2);
	--shadow-card: 0 8px 40px rgba(0, 0, 0, 0.6);
}

/* — Reset & Base — */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--void-black);
	color: var(--paper-white);
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
	opacity: 0.025;
	pointer-events: none;
	z-index: 9999;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition);
}

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

ul {
	list-style: none;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: var(--font-body);
}

input,
select,
textarea {
	font-family: var(--font-body);
}

/* — Typography — */
h1,
h2,
h3,
h4,
h5 {
	font-family: var(--font-heading);
	letter-spacing: 0.04em;
	line-height: 1.05;
}

h1 {
	font-size: clamp(3rem, 8vw, 7rem);
}

h2 {
	font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
	font-size: clamp(1.4rem, 3vw, 2rem);
}

h4 {
	font-size: 1.2rem;
}

.mono {
	font-family: var(--font-mono);
}

.gold {
	color: var(--vines-gold);
}

.muted {
	color: var(--text-muted);
}

/* — Layout — */
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.section {
	padding: 100px 0;
}

.section-sm {
	padding: 60px 0;
}

/* — Buttons — */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	font-family: var(--font-heading);
	font-size: 1rem;
	letter-spacing: 0.1em;
	border-radius: 2px;
	transition: all var(--transition);
	position: relative;
	overflow: hidden;
	white-space: nowrap;
}

.btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.08) 100%);
	opacity: 0;
	transition: opacity var(--transition);
}

.btn:hover::before {
	opacity: 1;
}

.btn-gold {
	background: var(--vines-gold);
	color: var(--void-black);
	font-weight: 600;
}

.btn-gold:hover {
	background: var(--vines-gold-light);
	box-shadow: 0 0 24px rgba(201, 168, 76, 0.4), 0 4px 20px rgba(0, 0, 0, 0.4);
	transform: translateY(-1px);
}

.btn-outline {
	border: 1px solid var(--vines-gold);
	color: var(--vines-gold);
	background: transparent;
}

.btn-outline:hover {
	background: var(--vines-gold);
	color: var(--void-black);
	box-shadow: var(--shadow-gold);
}

.btn-ghost {
	border: 1px solid var(--border-subtle);
	color: var(--paper-white);
	background: transparent;
}

.btn-ghost:hover {
	border-color: var(--vines-gold);
	color: var(--vines-gold);
}

.btn-sm {
	padding: 10px 20px;
	font-size: 0.85rem;
}

.btn-full {
	width: 100%;
	justify-content: center;
}

/* — Nav — */
#navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--nav-height);
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border-subtle);
	z-index: 1000;
	transition: all var(--transition);
}

#navbar.scrolled {
	background: rgba(10, 10, 10, 0.97);
	border-bottom-color: var(--border);
}

.nav-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.nav-logo img {
	height: 42px;
	width: 42px;
	object-fit: contain;
	filter: brightness(1.1);
}

.nav-logo span {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	letter-spacing: 0.12em;
	color: var(--paper-white);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
}

.nav-links a {
	font-size: 0.7rem;
	font-family: var(--font-mono);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-muted);
	transition: color var(--transition);
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--vines-gold);
	transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
	color: var(--paper-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
	width: 100%;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.nav-cart-btn {
	position: relative;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border-subtle);
	border-radius: 2px;
	color: var(--paper-white);
	transition: all var(--transition);
}

.nav-cart-btn:hover {
	border-color: var(--vines-gold);
	color: var(--vines-gold);
}

.cart-count {
	position: absolute;
	top: -6px;
	right: -6px;
	width: 18px;
	height: 18px;
	background: var(--vines-gold);
	color: var(--void-black);
	font-size: 0.6rem;
	font-weight: 700;
	font-family: var(--font-mono);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	display: none;
}

.cart-count.visible {
	display: flex;
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 28px;
	padding: 4px 0;
}

.hamburger span {
	display: block;
	height: 1.5px;
	background: var(--paper-white);
	transition: all var(--transition);
	transform-origin: left center;
}

.hamburger.open span:nth-child(1) {
	transform: rotate(45deg) translateY(-1px);
}

.hamburger.open span:nth-child(2) {
	opacity: 0;
}

.hamburger.open span:nth-child(3) {
	transform: rotate(-45deg) translateY(1px);
}

.mobile-menu {
	position: fixed;
	top: var(--nav-height);
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--off-black);
	z-index: 999;
	padding: 40px 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	transform: translateX(100%);
	transition: transform var(--transition);
	overflow-y: auto;
}

.mobile-menu.open {
	transform: translateX(0);
}

.mobile-menu a {
	font-family: var(--font-heading);
	font-size: 2rem;
	letter-spacing: 0.06em;
	padding: 12px 0;
	border-bottom: 1px solid var(--border-subtle);
	color: var(--text-muted);
	transition: color var(--transition);
}

.mobile-menu a:hover {
	color: var(--vines-gold);
}

.mobile-menu-footer {
	margin-top: auto;
	padding-top: 40px;
}

.mobile-menu-footer p {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: var(--text-dim);
}

/* — Hero — */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding-top: var(--nav-height);
}

.hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 50% at 70% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
		radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
		linear-gradient(180deg, var(--void-black) 0%, var(--off-black) 100%);
}

.hero-lines {
	position: absolute;
	inset: 0;
	background-image:
		repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(201, 168, 76, 0.03) 80px, rgba(201, 168, 76, 0.03) 81px),
		repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(201, 168, 76, 0.02) 80px, rgba(201, 168, 76, 0.02) 81px);
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 900px;
}

.hero-eyebrow {
	text-align: center;
	/* display: inline-flex; */
	align-items: center;
	gap: 10px;
	font-family: var(--font-mono);
	font-size: 0.70rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--vines-gold);
	margin-top: 36px;
	margin-bottom: 36px;
	opacity: 0;
	animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-eyebrow::before {
	content: '';
	width: 30px;
	height: 1px;
	background: var(--vines-gold);
}

.hero-title {
	font-size: clamp(4.5rem, 12vw, 10rem);
	line-height: 0.95;
	color: var(--paper-white);
	margin-bottom: 24px;
	opacity: 0;
	animation: fadeUp 1s ease forwards 0.4s;
}

.hero-title .highlight {
	color: var(--vines-gold);
	position: relative;
}

.hero-subtitle {
	font-size: clamp(0.7rem, 2vw, 1.1rem);
	font-style: italic;
	color: var(--text-muted);
	margin-top: 12px;
	margin-bottom: 36px;
	font-weight: 300;
	opacity: 0;
	animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-tagline {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	color: var(--text-dim);
	letter-spacing: 0.08em;
	margin-bottom: 48px;
	opacity: 0;
	animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-ctas {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeUp 0.8s ease forwards 0.9s;
}

.hero-scroll {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	opacity: 0;
	animation: fadeIn 1s ease forwards 1.5s;
}

.hero-scroll span {
	font-family: var(--font-mono);
	font-size: 0.65rem;
	letter-spacing: 0.15em;
	color: var(--text-dim);
	text-transform: uppercase;
}

.scroll-line {
	width: 1px;
	height: 50px;
	background: linear-gradient(to bottom, var(--vines-gold), transparent);
	animation: scrollPulse 2s ease infinite;
}

/* — Section Headers — */
.section-header {
	margin-bottom: 60px;
}

.section-label {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--vines-gold);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.section-label::before {
	content: '';
	width: 20px;
	height: 1px;
	background: var(--vines-gold);
}

.section-title {
	color: var(--paper-white);
	margin-bottom: 16px;
}

.section-sub {
	color: var(--text-muted);
	max-width: 500px;
	font-weight: 300;
}

/* — Categories — */
.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
}

.cat-card {
	position: relative;
	aspect-ratio: 3/4;
	overflow: hidden;
	border-radius: 2px;
	cursor: pointer;
	border: 1px solid var(--border-subtle);
	background: var(--off-black);
	transition: all var(--transition);
}

.cat-card:hover {
	border-color: var(--vines-gold);
}

.cat-card-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--ash), var(--off-black));
	transition: transform var(--transition);
}

.cat-card:hover .cat-card-bg {
	transform: scale(1.03);
}

.cat-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
}

.cat-card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 24px;
}

.cat-card-title {
	font-family: var(--font-heading);
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	color: var(--paper-white);
	margin-bottom: 4px;
}

@media (max-width: 768px) {
  .cat-card-content {
    padding: 14px 12px;
  }

  .cat-card-title {
    font-size: clamp(1rem, 4.8vw, 1.35rem);
    line-height: 1.12;
    letter-spacing: 0.03em;
    max-width: 100%;
  }

  .cat-card-count {
    font-size: 0.72rem;
    margin-top: 6px;
    letter-spacing: 0.08em;
  }

  .cat-card-emoji {
    font-size: 1.4rem;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .cat-card-title {
    font-size: 0.95rem;
  }

  .cat-card-count {
    font-size: 0.68rem;
  }
}

.cat-card-count {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	color: var(--vines-gold);
	text-transform: uppercase;
}

.cat-card-emoji {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 2rem;
	opacity: 0.7;
}

@media (max-width: 768px) {
	.cat-card-emoji {
		position: absolute;
		top: 5px;
		right: 5px;
		font-size: 1rem;
		opacity: 0.7;
	}
}

/* — Product Cards — */
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 24px;
}

.product-card {
	background: var(--off-black);
	border: 1px solid var(--border-subtle);
	border-radius: 2px;
	overflow: hidden;
	transition: all var(--transition);
	cursor: pointer;
	position: relative;
}

.product-card:hover {
	border-color: rgba(201, 168, 76, 0.3);
	transform: translateY(-4px);
	box-shadow: var(--shadow-card);
}

.product-card-image {
	position: relative;
	aspect-ratio: 4/5;
	overflow: hidden;
	background: var(--ash);
}

.product-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-card-image img {
	transform: scale(1.06);
}

.product-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 4px 10px;
	font-family: var(--font-mono);
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: 1px;
	z-index: 2;
}

.badge-sale {
	background: var(--danger);
	color: white;
}

.badge-new {
	background: var(--vines-gold);
	color: var(--void-black);
}

.product-card-actions {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 12px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
	display: flex;
	gap: 8px;
	transform: translateY(8px);
	opacity: 0;
	transition: all var(--transition);
}

.product-card:hover .product-card-actions {
	transform: translateY(0);
	opacity: 1;
}

.product-card-info {
	padding: 16px;
}

.product-card-cat {
	font-family: var(--font-mono);
	font-size: 0.65rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--vines-gold);
	margin-bottom: 6px;
}

.product-card-title {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--paper-white);
	margin-bottom: 8px;
	line-height: 1.3;
}

.product-card-price {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
}

.price-current {
	font-family: var(--font-mono);
	font-size: 1rem;
	font-weight: 500;
	color: var(--paper-white);
}

.price-original {
	font-family: var(--font-mono);
	font-size: 0.8rem;
	color: var(--text-dim);
	text-decoration: line-through;
}

.price-discount {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	color: var(--success);
	background: rgba(82, 183, 136, 0.1);
	padding: 2px 6px;
	border-radius: 2px;
}

.product-card-sizes {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.size-chip {
	font-family: var(--font-mono);
	font-size: 0.6rem;
	letter-spacing: 0.05em;
	padding: 3px 7px;
	border: 1px solid var(--border-subtle);
	border-radius: 1px;
	color: var(--text-muted);
	cursor: pointer;
	transition: all var(--transition);
}

.size-chip:hover,
.size-chip.selected {
	border-color: var(--vines-gold);
	color: var(--vines-gold);
}

/* — Shop Page Filters — */
.shop-layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 40px;
	align-items: start;
}

.filters-panel {
	background: var(--off-black);
	border: 1px solid var(--border-subtle);
	border-radius: 2px;
	padding: 28px;
	position: sticky;
	top: calc(var(--nav-height) + 20px);
}

.filter-group {
	margin-bottom: 28px;
}

.filter-group:last-child {
	margin-bottom: 0;
}

.filter-label {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--vines-gold);
	margin-bottom: 12px;
}

.filter-options {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.filter-chip {
	padding: 6px 12px;
	border: 1px solid var(--border-subtle);
	border-radius: 1px;
	font-size: 0.75rem;
	font-family: var(--font-mono);
	color: var(--text-muted);
	cursor: pointer;
	transition: all var(--transition);
	background: transparent;
}

.filter-chip:hover,
.filter-chip.active {
	border-color: var(--vines-gold);
	color: var(--vines-gold);
	background: rgba(201, 168, 76, 0.05);
}

.filter-select {
	width: 100%;
	padding: 10px 14px;
	background: var(--ash);
	border: 1px solid var(--border-subtle);
	border-radius: 1px;
	color: var(--paper-white);
	font-family: var(--font-mono);
	font-size: 0.8rem;
	appearance: none;
	cursor: pointer;
	outline: none;
	transition: border-color var(--transition);
}

.filter-select:focus {
	border-color: var(--vines-gold);
}

.filter-select option {
	background: var(--off-black);
}

/* Search Bar */
.search-bar {
	position: relative;
	margin-bottom: 32px;
}

.search-bar input {
	width: 100%;
	padding: 14px 50px 14px 18px;
	background: var(--off-black);
	border: 1px solid var(--border-subtle);
	border-radius: 2px;
	color: var(--paper-white);
	font-size: 0.9rem;
	outline: none;
	transition: border-color var(--transition);
}

.search-bar input:focus {
	border-color: var(--vines-gold);
}

.search-bar input::placeholder {
	color: var(--text-dim);
}

.search-bar-icon {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-dim);
	pointer-events: none;
}

/* Mobile Filter Toggle */
.filter-toggle-btn {
	display: none;
	width: 100%;
	padding: 12px 20px;
	background: var(--off-black);
	border: 1px solid var(--border-subtle);
	border-radius: 2px;
	color: var(--paper-white);
	font-family: var(--font-mono);
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	cursor: pointer;
	transition: all var(--transition);
}

.filter-toggle-btn:hover {
	border-color: var(--vines-gold);
	color: var(--vines-gold);
}

/* — Product Detail Page — */
.pdp-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
	padding-top: calc(var(--nav-height) + 40px);
}

.pdp-gallery {
	position: sticky;
	top: calc(var(--nav-height) + 20px);
}

.pdp-main-image {
	aspect-ratio: 4/5;
	overflow: hidden;
	border-radius: 2px;
	background: var(--off-black);
	margin-bottom: 12px;
	border: 1px solid var(--border-subtle);
}

.pdp-main-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.5s ease;
}

.pdp-thumbs {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 4px;
}

.pdp-thumbs::-webkit-scrollbar {
	display: none;
}

.pdp-thumb {
	flex-shrink: 0;
	width: 72px;
	aspect-ratio: 4/5;
	overflow: hidden;
	border-radius: 1px;
	border: 1px solid var(--border-subtle);
	cursor: pointer;
	transition: border-color var(--transition);
	background: var(--off-black);
}

.pdp-thumb.active,
.pdp-thumb:hover {
	border-color: var(--vines-gold);
}

.pdp-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Mobile swipe gallery */
.pdp-gallery-mobile {
	display: none;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	gap: 12px;
	-webkit-overflow-scrolling: touch;
}

.pdp-gallery-mobile::-webkit-scrollbar {
	display: none;
}

.pdp-gallery-mobile .mobile-slide {
	scroll-snap-align: start;
	flex-shrink: 0;
	width: 100%;
	aspect-ratio: 4/5;
	overflow: hidden;
	border-radius: 2px;
	background: var(--off-black);
}

.pdp-gallery-mobile .mobile-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pdp-gallery-dots {
	display: none;
	justify-content: center;
	gap: 6px;
	margin-top: 10px;
}

.gallery-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ash);
	transition: all var(--transition);
	cursor: pointer;
}

.gallery-dot.active {
	background: var(--vines-gold);
	width: 18px;
	border-radius: 3px;
}

/* PDP Info */
.pdp-info {}

.pdp-breadcrumb {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	color: var(--text-dim);
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.pdp-breadcrumb a:hover {
	color: var(--vines-gold);
}

.pdp-cat {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--vines-gold);
	margin-bottom: 10px;
}

.pdp-title {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	color: var(--paper-white);
	margin-bottom: 20px;
	line-height: 1.1;
}

.pdp-price-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--border-subtle);
}

.pdp-price {
	font-family: var(--font-mono);
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--paper-white);
}

.pdp-compare {
	font-family: var(--font-mono);
	font-size: 1rem;
	color: var(--text-dim);
	text-decoration: line-through;
}

.pdp-discount-badge {
	padding: 4px 10px;
	background: rgba(82, 183, 136, 0.15);
	color: var(--success);
	font-family: var(--font-mono);
	font-size: 0.75rem;
	border-radius: 2px;
}

.pdp-label {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 10px;
}

.size-selector {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.size-btn {
	width: 48px;
	height: 40px;
	border: 1px solid var(--border-subtle);
	border-radius: 1px;
	background: transparent;
	color: var(--text-muted);
	font-family: var(--font-mono);
	font-size: 0.75rem;
	cursor: pointer;
	transition: all var(--transition);
}

.size-btn:hover {
	border-color: var(--vines-gold);
	color: var(--vines-gold);
}

.size-btn.selected {
	border-color: var(--vines-gold);
	background: var(--vines-gold);
	color: var(--void-black);
	font-weight: 600;
}

.size-btn.oos {
	opacity: 0.3;
	cursor: not-allowed;
	text-decoration: line-through;
}

.qty-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

.qty-selector {
	display: flex;
	align-items: center;
	border: 1px solid var(--border-subtle);
	border-radius: 2px;
	overflow: hidden;
}

.qty-btn {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ash);
	color: var(--paper-white);
	font-size: 1.2rem;
	transition: all var(--transition);
}

.qty-btn:hover {
	background: var(--vines-gold);
	color: var(--void-black);
}

.qty-input {
	width: 48px;
	height: 40px;
	text-align: center;
	background: transparent;
	border: none;
	border-left: 1px solid var(--border-subtle);
	border-right: 1px solid var(--border-subtle);
	color: var(--paper-white);
	font-family: var(--font-mono);
	font-size: 0.9rem;
	outline: none;
}

.pdp-ctas {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 32px;
}

.pdp-ctas .btn {
	font-size: 0.95rem;
	padding: 16px 24px;
}

.pdp-trust {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 32px;
	padding: 20px;
	background: var(--off-black);
	border: 1px solid var(--border-subtle);
	border-radius: 2px;
}

.trust-item {
	text-align: center;
}

.trust-item .icon {
	font-size: 1.2rem;
	margin-bottom: 4px;
}

.trust-item span {
	display: block;
	font-size: 0.7rem;
	color: var(--text-muted);
	font-family: var(--font-mono);
}

.pdp-accordion {
	border-top: 1px solid var(--border-subtle);
}

.accordion-item {
	border-bottom: 1px solid var(--border-subtle);
}

.accordion-header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
	color: var(--paper-white);
	font-weight: 500;
	font-size: 0.9rem;
	cursor: pointer;
	background: none;
	border: none;
	text-align: left;
	transition: color var(--transition);
}

.accordion-header:hover {
	color: var(--vines-gold);
}

.accordion-icon {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border-subtle);
	border-radius: 50%;
	font-size: 0.8rem;
	transition: all var(--transition);
	flex-shrink: 0;
}

.accordion-item.open .accordion-icon {
	transform: rotate(45deg);
	border-color: var(--vines-gold);
	color: var(--vines-gold);
}

.accordion-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.accordion-body-inner {
	padding-bottom: 16px;
	color: var(--text-muted);
	font-size: 0.9rem;
	line-height: 1.7;
}

.accordion-body-inner ul {
	padding-left: 16px;
	margin-top: 8px;
}

.accordion-body-inner li {
	margin-bottom: 4px;
	list-style: disc;
}

.accordion-body-inner li::marker {
	color: var(--vines-gold);
}

/* Sticky ATC Mobile */
.sticky-atc {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 12px 20px;
	background: rgba(17, 17, 17, 0.97);
	backdrop-filter: blur(20px);
	border-top: 1px solid var(--border-subtle);
	z-index: 100;
	gap: 12px;
}

/* — Cart — */
.cart-layout {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 40px;
	align-items: start;
	padding-top: calc(var(--nav-height) + 60px);
	padding-bottom: 80px;
}

.cart-item {
	display: flex;
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid var(--border-subtle);
}

.cart-item:last-child {
	border-bottom: none;
}

.cart-item-img {
	width: 90px;
	aspect-ratio: 4/5;
	overflow: hidden;
	border-radius: 1px;
	flex-shrink: 0;
	background: var(--ash);
	border: 1px solid var(--border-subtle);
}

.cart-item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cart-item-info {
	flex: 1;
}

.cart-item-title {
	font-weight: 600;
	margin-bottom: 4px;
	font-size: 0.9rem;
}

.cart-item-meta {
	font-family: var(--font-mono);
	font-size: 0.72rem;
	color: var(--text-muted);
	margin-bottom: 12px;
	letter-spacing: 0.05em;
}

.cart-item-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cart-item-price {
	font-family: var(--font-mono);
	font-size: 1rem;
	font-weight: 500;
	color: var(--paper-white);
}

.cart-item-remove {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-dim);
	cursor: pointer;
	transition: color var(--transition);
	border: none;
	background: none;
}

.cart-item-remove:hover {
	color: var(--danger);
}

.cart-summary {
	background: var(--off-black);
	border: 1px solid var(--border-subtle);
	border-radius: 2px;
	padding: 28px;
	position: sticky;
	top: calc(var(--nav-height) + 20px);
}

.cart-summary-title {
	font-family: var(--font-heading);
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	margin-bottom: 24px;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid var(--border-subtle);
	font-size: 0.9rem;
}

.summary-row.total {
	border-bottom: none;
	margin-top: 8px;
	padding-top: 16px;
	font-weight: 600;
}

.summary-row .mono {
	font-family: var(--font-mono);
}

.summary-row.total .mono {
	font-size: 1.2rem;
	color: var(--vines-gold);
}

.cart-trust-note {
	margin-top: 20px;
	padding: 16px;
	background: rgba(201, 168, 76, 0.05);
	border: 1px solid rgba(201, 168, 76, 0.15);
	border-radius: 2px;
	font-size: 0.8rem;
	color: var(--text-muted);
	line-height: 1.6;
}

.cart-trust-note .note-icon {
	font-size: 1.2rem;
	margin-bottom: 6px;
}

/* — Checkout Form — */
.checkout-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(8px);
	z-index: 2000;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.checkout-overlay.open {
	display: flex;
}

.checkout-modal {
	background: var(--off-black);
	border: 1px solid var(--border-subtle);
	border-radius: 4px;
	padding: 40px;
	width: 100%;
	max-width: 560px;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
}

.checkout-modal::-webkit-scrollbar {
	width: 4px;
}

.checkout-modal::-webkit-scrollbar-thumb {
	background: var(--ash);
}

.checkout-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border-subtle);
	border-radius: 50%;
	color: var(--text-muted);
	cursor: pointer;
	transition: all var(--transition);
	background: none;
	font-size: 1rem;
}

.checkout-close:hover {
	border-color: var(--vines-gold);
	color: var(--vines-gold);
}

.checkout-title {
	font-family: var(--font-heading);
	font-size: 2rem;
	letter-spacing: 0.05em;
	margin-bottom: 8px;
}

.checkout-sub {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 32px;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-grid .form-group.full {
	grid-column: 1 / -1;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.form-group label {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 12px 14px;
	background: var(--ash);
	border: 1px solid var(--border-subtle);
	border-radius: 1px;
	color: var(--paper-white);
	font-size: 0.9rem;
	outline: none;
	transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--vines-gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--text-dim);
}

.form-group textarea {
	resize: vertical;
	min-height: 80px;
}

.form-group select option {
	background: var(--off-black);
}

/* — Community Section — */
.community-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

.community-card {
	background: var(--off-black);
	border: 1px solid var(--border-subtle);
	border-radius: 2px;
	overflow: hidden;
	transition: all var(--transition);
}

.community-card:hover {
	border-color: rgba(201, 168, 76, 0.3);
	transform: translateY(-2px);
}

.community-media {
	aspect-ratio: 4/5;
	background: var(--ash);
	overflow: hidden;
	position: relative;
}

.community-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.community-media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.community-media iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.community-media-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: linear-gradient(135deg, var(--ash), var(--off-black));
}

.community-media-placeholder .icon {
	font-size: 2.5rem;
	opacity: 0.4;
}

.community-media-placeholder p {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: var(--text-dim);
	text-align: center;
	letter-spacing: 0.1em;
}

.community-info {
	padding: 16px;
}

.community-reviewer {
	font-weight: 600;
	font-size: 0.85rem;
	margin-bottom: 4px;
}

.community-stars {
	color: var(--vines-gold);
	font-size: 0.85rem;
	margin-bottom: 6px;
}

.community-text {
	font-size: 0.82rem;
	color: var(--text-muted);
	line-height: 1.6;
}

/* — Brand Story — */
.brand-story {
	background: var(--off-black);
	border: 1px solid var(--border-subtle);
	border-radius: 2px;
	padding: 80px;
	position: relative;
	overflow: hidden;
}

.brand-story::before {
	content: '"';
	position: absolute;
	top: -20px;
	left: 40px;
	font-family: var(--font-heading);
	font-size: 20rem;
	color: rgba(201, 168, 76, 0.04);
	line-height: 1;
	pointer-events: none;
	select: none;
}

.brand-story-text {
	max-width: 700px;
	font-size: 1.05rem;
	line-height: 1.9;
	color: var(--text-muted);
	position: relative;
}

.brand-story-text strong {
	color: var(--paper-white);
	font-weight: 600;
}

/* — Trust Badges — */
.trust-strip {
	background: var(--off-black);
	border-top: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
	padding: 32px 0;
}

.trust-badges {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--text-muted);
	font-size: 0.82rem;
	font-family: var(--font-mono);
	letter-spacing: 0.05em;
}

.trust-badge .icon {
	font-size: 1.4rem;
	color: var(--vines-gold);
}

@media (max-width: 768px) {
  .trust-strip {
    padding: 14px 0;
  }

  .trust-strip .container {
    padding-inline: 12px;
  }

  .trust-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .trust-badge {
    width: 100%;
    min-height: 42px;
    padding: 10px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    font-size: 0.72rem;
    line-height: 1.2;
    text-align: center;
  }

  .trust-badge .icon {
    font-size: 1rem;
    flex-shrink: 0;
  }

  .trust-badge span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .trust-badges {
    grid-template-columns: 1fr;
  }

  .trust-badge {
    max-width: 260px;
    margin-inline: auto;
  }
}

/* — Social Links — */
.social-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}

.social-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 24px;
	background: var(--off-black);
	border: 1px solid var(--border-subtle);
	border-radius: 2px;
	transition: all var(--transition);
}

.social-card:hover {
	border-color: var(--vines-gold);
	transform: translateY(-2px);
}

.social-icon {
	font-size: 1.8rem;
}

.social-label {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	color: var(--text-dim);
	text-transform: uppercase;
	margin-bottom: 2px;
}

.social-handle {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--paper-white);
}

/* — WhatsApp Float — */
.wa-float {
	position: fixed;
	bottom: 28px;
	right: 28px;
	width: 56px;
	height: 56px;
	background: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 500;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	transition: all var(--transition);
	font-size: 1.5rem;
	text-decoration: none;
}

.wa-float:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.wa-tooltip {
	position: absolute;
	right: 70px;
	white-space: nowrap;
	background: var(--off-black);
	border: 1px solid var(--border-subtle);
	padding: 8px 14px;
	border-radius: 4px;
	font-size: 0.75rem;
	color: var(--paper-white);
	font-family: var(--font-mono);
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--transition);
	letter-spacing: 0.05em;
}

.wa-float:hover .wa-tooltip {
	opacity: 1;
}

/* — Footer — */
footer {
	background: var(--off-black);
	border-top: 1px solid var(--border-subtle);
	padding: 80px 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr repeat(4, 1fr);
	gap: 40px;
	margin-bottom: 60px;
}

.footer-brand {}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.footer-logo img {
	height: 40px;
	width: 40px;
	object-fit: contain;
}

.footer-logo span {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	letter-spacing: 0.12em;
}

.footer-desc {
	font-size: 0.85rem;
	color: var(--text-muted);
	line-height: 1.7;
	max-width: 280px;
	margin-bottom: 20px;
}

.footer-socials {
	display: flex;
	gap: 10px;
}

.footer-social-link {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border-subtle);
	border-radius: 1px;
	font-size: 1rem;
	transition: all var(--transition);
}

.footer-social-link:hover {
	border-color: var(--vines-gold);
	background: rgba(201, 168, 76, 0.08);
}

.footer-col-title {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--vines-gold);
	margin-bottom: 20px;
}

.footer-col ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-col a {
	font-size: 0.85rem;
	color: var(--text-muted);
	transition: color var(--transition);
}

.footer-col a:hover {
	color: var(--paper-white);
}

.footer-bottom {
	border-top: 1px solid var(--border-subtle);
	padding: 24px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-bottom p {
	font-size: 0.75rem;
	color: var(--text-dim);
	font-family: var(--font-mono);
}

.footer-bottom-links {
	display: flex;
	gap: 20px;
}

.footer-bottom-links a {
	font-size: 0.75rem;
	color: var(--text-dim);
	font-family: var(--font-mono);
	transition: color var(--transition);
}

.footer-bottom-links a:hover {
	color: var(--vines-gold);
}

/* — Pages — */
.page-hero {
	padding: calc(var(--nav-height) + 60px) 0 30px;
	text-align: center;
	position: relative;
}

.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
	pointer-events: none;
}

.page-hero-label {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--vines-gold);
	margin-bottom: 16px;
}

.page-hero-title {
	margin-bottom: 16px;
}

.page-hero-sub {
	color: var(--text-muted);
	font-size: 1rem;
	max-width: 500px;
	margin: 0 auto;
}

/* Size Guide Table */
.size-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}

.size-table th,
.size-table td {
	padding: 12px 16px;
	text-align: center;
	border: 1px solid var(--border-subtle);
	font-family: var(--font-mono);
	font-size: 0.8rem;
}

.size-table th {
	background: var(--ash);
	color: var(--vines-gold);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.size-table td {
	color: var(--text-muted);
}

.size-table tr:hover td {
	background: rgba(201, 168, 76, 0.04);
	color: var(--paper-white);
}

/* FAQ */
.faq-list {
	max-width: 720px;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid var(--border-subtle);
	padding: 20px 0;
}

.faq-q {
	width: 100%;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--paper-white);
	cursor: pointer;
	background: none;
	border: none;
	transition: color var(--transition);
}

.faq-q:hover {
	color: var(--vines-gold);
}

.faq-q .faq-icon {
	font-size: 1.2rem;
	transition: transform var(--transition);
	flex-shrink: 0;
	color: var(--vines-gold);
}

.faq-item.open .faq-icon {
	transform: rotate(45deg);
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.faq-a-inner {
	padding: 12px 0;
	color: var(--text-muted);
	font-size: 0.9rem;
	line-height: 1.7;
}

/* About Page */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-image {
	aspect-ratio: 4/5;
	background: var(--off-black);
	border: 1px solid var(--border-subtle);
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-image-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--ash), var(--off-black));
	font-family: var(--font-heading);
	font-size: 4rem;
	color: rgba(201, 168, 76, 0.15);
	letter-spacing: 0.1em;
	text-align: center;
}

.about-values {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 40px;
}

.value-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.value-number {
	font-family: var(--font-heading);
	font-size: 2rem;
	color: var(--vines-gold);
	opacity: 0.5;
	line-height: 1;
	flex-shrink: 0;
	width: 40px;
}

.value-title {
	font-weight: 600;
	margin-bottom: 4px;
	font-size: 0.9rem;
}

.value-text {
	font-size: 0.85rem;
	color: var(--text-muted);
	line-height: 1.6;
}

/* Contact */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.contact-form-wrap {
	background: var(--off-black);
	border: 1px solid var(--border-subtle);
	border-radius: 2px;
	padding: 40px;
}

.contact-info-list {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.contact-info-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.contact-info-icon {
	font-size: 1.4rem;
	margin-top: 2px;
}

.contact-info-label {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	color: var(--text-dim);
	text-transform: uppercase;
	margin-bottom: 4px;
}

.contact-info-value {
	font-size: 0.9rem;
	color: var(--paper-white);
}

/* — Animations — */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes scrollPulse {

	0%,
	100% {
		opacity: 0.4;
	}

	50% {
		opacity: 1;
	}
}

@keyframes shimmer {
	from {
		background-position: -200% center;
	}

	to {
		background-position: 200% center;
	}
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-delay-1 {
	transition-delay: 0.1s;
}

.reveal-delay-2 {
	transition-delay: 0.2s;
}

.reveal-delay-3 {
	transition-delay: 0.3s;
}

/* Empty State */
.empty-state {
	text-align: center;
	padding: 80px 20px;
}

.empty-state .icon {
	font-size: 4rem;
	margin-bottom: 16px;
	opacity: 0.3;
}

.empty-state h3 {
	font-family: var(--font-heading);
	font-size: 1.8rem;
	margin-bottom: 8px;
	color: var(--text-muted);
}

.empty-state p {
	color: var(--text-dim);
	font-size: 0.9rem;
}

/* Toast Notifications */
.toast {
	position: fixed;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	background: var(--ash);
	border: 1px solid var(--border);
	padding: 12px 24px;
	border-radius: 2px;
	font-family: var(--font-mono);
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	color: var(--paper-white);
	z-index: 3000;
	opacity: 0;
	transition: all 0.3s ease;
	pointer-events: none;
	white-space: nowrap;
}

.toast.show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.toast.success {
	border-color: var(--success);
	color: var(--success);
}

.toast.error {
	border-color: var(--danger);
	color: var(--danger);
}

/* Loading Skeleton */
.skeleton {
	background: linear-gradient(90deg, var(--ash) 25%, var(--off-black) 50%, var(--ash) 75%);
	background-size: 200% 100%;
	animation: shimmer 1.5s infinite;
	border-radius: 2px;
}

/* Page loader */
#page-loader {
	position: fixed;
	inset: 0;
	opacity: 1;
  	visibility: visible;
  	transition: opacity 0.4s ease, visibility 0.4s ease;
	background: var(--void-black);
	z-index: 9998;
	display: flex;
	align-items: center;
	justify-content: center;
}

#page-loader.hidden {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;

}

.loader-inner {
	text-align: center;
}

.loader-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-size: 2rem;
	letter-spacing: 0.2em;
	color: var(--vines-gold);
	margin-bottom: 20px;
}

.loader-bar {
	width: 120px;
	height: 1px;
	background: var(--ash);
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.loader-bar::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--vines-gold);
	animation: loaderSlide 1.2s ease forwards;
}

@keyframes loaderSlide {
	from {
		left: -100%;
	}

	to {
		left: 100%;
	}
}

/* Products count & sort row */
.shop-top-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
	flex-wrap: wrap;
	gap: 12px;
}

.products-count {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	color: var(--text-muted);
}

/* Related Products */
.related-section {
	margin-top: 80px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.shop-layout {
		grid-template-columns: 1fr;
	}

	.filters-panel {
		position: static;
	}

	.filter-toggle-btn {
		display: flex;
	}

	.filters-panel {
		display: none;
	}

	.filters-panel.mobile-open {
		display: block;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.cart-layout {
		grid-template-columns: 1fr;
	}

	.cart-summary {
		position: static;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	:root {
		--nav-height: 60px;
	}

	.hero-ctas {
		flex-direction: column;
	}

	.hero-ctas .btn {
		width: 100%;
		justify-content: center;
	}

	.pdp-layout {
		grid-template-columns: 1fr;
		gap: 32px;
		padding-top: calc(var(--nav-height) + 20px);
	}

	.pdp-gallery {
		position: static;
		display: none;
	}

	.pdp-gallery-mobile {
		display: flex;
	}

	.pdp-gallery-dots {
		display: flex;
	}

	.pdp-trust {
		grid-template-columns: repeat(3, 1fr);
	}

	.pdp-ctas {
		flex-direction: column;
	}

	.sticky-atc {
		display: flex;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.brand-story {
		padding: 40px 24px;
	}

	.brand-story::before {
		font-size: 10rem;
	}

	.section {
		padding: 60px 0;
	}

	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.cart-item {
		flex-direction: row;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.checkout-modal {
		padding: 28px 20px;
	}

	.pdp-thumbs {
		display: none;
	}

	.categories-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.trust-badges {
		gap: 24px;
	}

	.social-grid {
		grid-template-columns: 1fr 1fr;
	}
}
/* ===== Welcome Offer Popup Fix ===== */
#welcome-offer-popup,
.welcome-offer-popup {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.72) !important;
  backdrop-filter: blur(10px);
  z-index: 999999 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

#welcome-offer-popup.show,
.welcome-offer-popup.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.welcome-offer-card {
  width: min(420px, 100%);
  background: linear-gradient(145deg, #111, #050505);
  border: 1px solid rgba(201, 168, 76, 0.35);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  border-radius: 18px;
  padding: 34px 26px 28px;
  text-align: center;
  position: relative;
  color: var(--paper-white);
  z-index: 1000000;
}

.welcome-offer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper-white);
  cursor: pointer;
}

.welcome-offer-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--vines-gold);
  margin-bottom: 12px;
}

.welcome-offer-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 7vw, 3rem);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.welcome-offer-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.welcome-offer-card p strong {
  color: var(--vines-gold);
}

.welcome-coupon-code {
  border: 1px dashed rgba(201, 168, 76, 0.7);
  background: rgba(201, 168, 76, 0.08);
  color: var(--vines-gold);
  font-family: var(--font-mono);
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 18px;
}

.welcome-offer-link {
  margin-top: 14px;
  background: transparent;
  border: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
}

@media (max-width: 480px) {
  .welcome-offer-card {
    padding: 32px 20px 24px;
  }
}

@media (max-width: 480px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.product-card-info {
		padding: 10px;
	}

	.product-card-title {
		font-size: 0.8rem;
	}

	.price-current {
		font-size: 0.85rem;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.social-grid {
		grid-template-columns: 1fr;
	}
}