@charset "UTF-8";
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--primary: #1e3a1e;
	--primary-dark: #0d1f0d;
	--primary-light: #f2f0ec;
	--gold: #c9a84c;
	--gold-dark: #a8893a;
	--black: #0d1f0d;
	--gray: #4a5a4a;
	--gray2: #6b7a6b;
	--border: #dddbd6;
	--bg: #f8f7f4;
	--bg-secondary: #f2f0ec;
	--bg-tertiary: #f5f5f2;
	--bg-hover: #f5f5f2;
	--white: #ffffff;
}

body {
	font-family: 'Inter', sans-serif;
	color: var(--black);
	background: var(--bg);
	font-size: 14px;
}

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

/* ═══════ METALS TICKER ═══════ */
.ticker-wrap {
	background: var(--primary-dark);
	display: flex;
	align-items: center;
	height: 34px;
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	position: sticky;
	top: 52px;
	z-index: 199;
}

.ticker-label {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 0 14px 0 16px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .08em;
	color: var(--gold);
	white-space: nowrap;
	flex-shrink: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
	height: 100%;
}

.ticker-track-wrap {
	flex: 1;
	overflow: hidden;
	position: relative;
}

.ticker-track {
	display: flex;
	align-items: center;
	gap: 0;
	white-space: nowrap;
	animation: ticker-scroll 38s linear infinite;
	will-change: transform;
}

.ticker-track:hover {
	animation-play-state: paused;
}

@keyframes ticker-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.ticker-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0 24px;
	height: 34px;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	cursor: pointer;
	transition: background .15s;
}

.ticker-item:hover {
	background: rgba(255, 255, 255, 0.05);
}

.ticker-metal {
	display: flex;
	align-items: center;
	gap: 5px;
}

.ticker-sym {
	font-size: 10px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: .04em;
}

.ticker-icon {
	font-size: 13px;
}

.ticker-name {
	font-size: 12px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.9);
}

.ticker-price {
	font-size: 12px;
	font-weight: 700;
	color: var(--white);
	font-variant-numeric: tabular-nums;
}

.ticker-change {
	font-size: 11px;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	padding: 1px 6px;
	border-radius: 4px;
}

.ticker-change.up {
	color: #4ade80;
	background: rgba(74, 222, 128, 0.12);
}

.ticker-change.down {
	color: #f87171;
	background: rgba(248, 113, 113, 0.12);
}

.ticker-change.flat {
	color: rgba(255, 255, 255, 0.5);
}

.ticker-unit {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.35);
}

.ticker-time {
	padding: 0 14px;
	font-size: 10px;
	color: rgba(255, 255, 255, 0.3);
	white-space: nowrap;
	flex-shrink: 0;
	font-variant-numeric: tabular-nums;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: var(--white);
	border-bottom: 1px solid var(--border);
}

.hdr {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0 20px;
	height: 52px;
}

.hnav {
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: center;
	gap: 2px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	cursor: pointer;
}

.logo-gem {
	width: 32px;
	height: 32px;
}

.logo-name {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.3px;
}

.logo-name .gems {
	color: #1a7a4a;
	letter-spacing: 1px;
}

.logo-name .ny {
	color: #b8972a;
	letter-spacing: -0.5px;
}

.btn-custom {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border: 1.5px solid var(--border);
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	background: var(--white);
	font-family: inherit;
	white-space: nowrap;
}

.btn-custom:hover {
	border-color: var(--primary);
	color: var(--primary);
	background: var(--bg-hover);
}

.hnav a,
.nav-link {
	padding: 6px 11px;
	font-size: 13px;
	font-weight: 500;
	color: var(--gray);
	border-radius: 6px;
	transition: background .15s;
	white-space: nowrap;
	cursor: pointer;
	text-decoration: none;
	display: block;
}

.hnav a:hover,
.nav-link:hover {
	background: var(--bg-hover);
	color: var(--primary);
}

/* DROPDOWNS */
.nav-item {
	position: relative;
}

.nav-item:hover .nav-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	background: var(--white);
	border: 1.5px solid var(--border);
	border-radius: 14px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	padding: 20px;
	display: flex;
	gap: 28px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all .18s ease;
	z-index: 300;
	min-width: 480px;
}

.nav-item:last-of-type .nav-dropdown {
	left: auto;
	right: 0;
	min-width: 820px;
}

.dropdown-col {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 140px;
}

.dropdown-heading {
	font-size: 10px;
	font-weight: 800;
	color: var(--gray2);
	text-transform: uppercase;
	letter-spacing: .07em;
	margin-bottom: 8px;
	padding-bottom: 6px;
	border-bottom: 1px solid var(--border);
}

.nav-dropdown a {
	font-size: 13px;
	color: var(--black);
	padding: 5px 8px;
	border-radius: 6px;
	font-weight: 500;
	transition: all .12s;
	background: none;
}

.nav-dropdown a:hover {
	background: var(--bg-hover);
	color: #1a7a4a;
	padding-left: 12px;
}

.dd-topic {
	font-size: 12px !important;
	font-weight: 700 !important;
	color: #1a7a4a !important;
	letter-spacing: .04em;
	padding: 6px 8px !important;
	border-radius: 6px;
	transition: all .12s;
	background: none;
}

.dd-topic:hover {
	background: rgba(26, 122, 74, 0.08) !important;
	padding-left: 12px !important;
	color: #0d5c34 !important;
}

.hright {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
}

.currency {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 5px 10px;
	border: 1.5px solid var(--border);
	border-radius: 20px;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	background: var(--white);
}

.currency:hover {
	background: var(--bg-hover);
}

.btn-signin {
	padding: 7px 18px;
	background: var(--primary);
	color: white;
	border: none;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
	transition: background .15s;
}

.btn-signin:hover {
	background: var(--primary-dark);
}

/* HERO */
.hero {
	padding: 28px 20px 0;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.hero h1 {
	font-size: 38px;
	font-weight: 800;
	letter-spacing: -1px;
	margin-bottom: 18px;
}

.hero h1 span {
	color: var(--primary);
}

/* CAT SLIDER */
.cat-slider-wrap {
	position: relative;
	display: flex;
	align-items: center;
	max-width: 760px;
	margin: 0 auto 28px;
	padding: 0 44px;
}

.cat-slider {
	display: flex;
	gap: 12px;
	overflow: hidden;
	scroll-behavior: smooth;
}

.cat-card {
	flex-shrink: 0;
	width: 110px;
	background: var(--white);
	border-radius: 16px;
	border: 1.5px solid var(--border);
	padding: 18px 12px 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	transition: all .18s;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cat-card:hover,
.cat-card.active {
	border-color: #1a7a4a;
	box-shadow: 0 4px 18px rgba(26, 122, 74, 0.15);
	transform: translateY(-2px);
}

.cat-icon-wrap {
	width: 52px;
	height: 52px;
}

.cat-icon-wrap svg {
	width: 100%;
	height: 100%;
}

.cat-label {
	font-size: 12px;
	font-weight: 700;
	color: var(--black);
	text-align: center;
	line-height: 1.3;
}

.cat-sub {
	font-size: 10px;
	color: var(--gray2);
	text-align: center;
	font-weight: 500;
	margin-top: -4px;
}

.cat-card.cat-metal {
	border-color: rgba(184, 134, 11, 0.2);
	background: linear-gradient(160deg, #fffdf5, #fff);
}

.cat-card.cat-metal:hover,
.cat-card.cat-metal.active {
	border-color: var(--gold);
	box-shadow: 0 4px 18px rgba(184, 134, 11, 0.2);
}

.cat-arrow {
	position: absolute;
	width: 36px;
	height: 36px;
	background: #1a7a4a;
	color: white;
	border: none;
	border-radius: 50%;
	font-size: 22px;
	font-weight: 300;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(26, 122, 74, 0.3);
	transition: background .15s;
	z-index: 2;
	line-height: 1;
	padding-bottom: 1px;
}

.cat-arrow:hover {
	background: #0d5c34;
}

.cat-prev {
	left: 0;
}

.cat-next {
	right: 0;
}

.sbar {
	display: flex;
	align-items: center;
	border: 1.5px solid var(--border);
	border-radius: 30px;
	padding: 0 6px 0 18px;
	background: var(--white);
	box-shadow: 0 2px 12px rgba(30, 58, 30, 0.08);
	max-width: 640px;
	margin: 0 auto 28px;
}

.sbar input {
	flex: 1;
	border: none;
	outline: none;
	font-size: 15px;
	font-family: inherit;
	padding: 13px 10px;
	color: var(--black);
	background: transparent;
}

.sbar input::placeholder {
	color: #aaa;
}

.btn-search {
	padding: 10px 24px;
	background: var(--primary);
	color: white;
	border: none;
	border-radius: 24px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
	flex-shrink: 0;
	transition: background .15s;
}

.btn-search:hover {
	background: var(--primary-dark);
}

/* HERO BANNER */
.w {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.hbanner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-radius: 16px;
	overflow: hidden;
	min-height: 260px;
	margin-bottom: 36px;
}

.hb-left {
	background: linear-gradient(155deg, #0d1f0d 0%, #1e3a1e 50%, #2d5a2d 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 88px;
	min-height: 260px;
	position: relative;
	overflow: hidden;
}

.hb-left::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 60% 50%, rgba(196, 164, 57, 0.25) 0%, transparent 65%);
}

.hb-right {
	background: #1e3a1e;
	padding: 36px 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hb-right h2 {
	font-size: 28px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 10px;
	color: white;
}

.hb-right p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 18px;
}

.btn-book {
	display: inline-block;
	padding: 11px 22px;
	background: var(--gold);
	color: white;
	border-radius: 24px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	width: fit-content;
	transition: background .15s;
}

.btn-book:hover {
	background: var(--gold-dark);
}

.platform-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 18px 0 2px;
	padding: 12px 28px;
	background: linear-gradient(135deg, rgba(184, 151, 42, 0.3), rgba(184, 151, 42, 0.12));
	border: 2px solid rgba(184, 151, 42, 0.6);
	border-radius: 30px;
	font-size: 20px;
	font-weight: 900;
	color: #e8c55a;
	letter-spacing: .06em;
	text-transform: uppercase;
	text-shadow: 0 0 20px rgba(232, 197, 90, 0.3);
}

.check-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.88);
	font-weight: 500;
}

.chk {
	width: 20px;
	height: 20px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 800;
	color: #4ade80;
	flex-shrink: 0;
	border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.kright .check-list li {
	color: var(--black);
}

.kright .chk {
	background: rgba(26, 122, 74, 0.1);
	border-color: rgba(26, 122, 74, 0.3);
	color: #1a7a4a;
}

.plain-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.plain-list li {
	font-size: 13px;
	color: var(--black);
	font-weight: 500;
	padding-left: 12px;
	border-left: 2px solid #1a7a4a;
}

.cdot {
	width: 16px;
	height: 16px;
	background: var(--gold);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 8px;
	font-weight: 800;
	color: white;
	flex-shrink: 0;
}

/* SECTIONS */
.sec {
	max-width: 1200px;
	margin: 0 auto;
	padding: 28px 20px;
	background: var(--white);
}

.sh {
	margin-bottom: 16px;
}

.sh h2 {
	font-size: 19px;
	font-weight: 800;
	margin-bottom: 3px;
}

.sh p {
	font-size: 13px;
	color: var(--gray2);
}

.sep {
	border: none;
	border-top: 1px solid var(--border);
	margin: 0;
}

/* INTEREST GRID */
.igrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.icard {
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	position: relative;
	height: 140px;
	transition: transform .2s;
}

.icard:hover {
	transform: scale(1.02);
}

.iimg {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 44px;
}

.iimg.prec {
	background: linear-gradient(135deg, #0d1f0d, #1e3a1e, #2d5a2d);
}

.iimg.semi {
	background: linear-gradient(135deg, #7c2d12, #c2410c, #ea580c);
}

.iimg.rings {
	background: linear-gradient(135deg, #14532d, #15803d, #22c55e);
}

.iimg.earr {
	background: linear-gradient(135deg, #0c4a6e, #0369a1, #0ea5e9);
}

.iover {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 55%);
}

.ilbl {
	position: absolute;
	bottom: 12px;
	left: 12px;
	color: white;
	font-size: 15px;
	font-weight: 700;
	z-index: 1;
}

/* AD BANNER */
.adbox {
	max-width: 1200px;
	margin: 0 auto;
	padding: 16px 20px;
}

.adinner {
	background: linear-gradient(90deg, #0d1f0d, #1e3a1e);
	border-radius: 10px;
	padding: 12px 20px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.adimgs {
	display: flex;
	gap: 4px;
}

.adimg {
	width: 50px;
	height: 38px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.adtxt {
	flex: 1;
	color: white;
}

.adtxt strong {
	font-size: 13px;
	font-weight: 700;
	display: block;
}

.adtxt span {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.65);
}

.sale-badge {
	background: var(--gold);
	color: white;
	padding: 5px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 800;
	flex-shrink: 0;
	letter-spacing: .5px;
}

/* PRODUCT CARDS SCROLL */
.srow-wrap {
	position: relative;
}

.srow {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	padding-bottom: 10px;
}

.srow::-webkit-scrollbar {
	height: 0;
}

.ecard {
	flex-shrink: 0;
	width: 210px;
	cursor: pointer;
	background: var(--white);
	border-radius: 14px;
	padding-bottom: 4px;
}

.eimg {
	width: 100%;
	height: 150px;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
}

.ebadge {
	position: absolute;
	bottom: 8px;
	left: 8px;
	border-radius: 6px;
	padding: 3px 8px;
	font-size: 10px;
	font-weight: 700;
}

.ebadge.cert {
	background: white;
	border: 1px solid var(--border);
	color: var(--black);
}

.ebadge.new {
	background: var(--primary);
	color: white;
}

.ebadge.sell {
	background: var(--gold);
	color: white;
}

.heart {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 30px;
	height: 30px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

.etitle {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 6px;
}

.erat {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 4px;
}

.dots {
	display: flex;
	gap: 2px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 1.5px solid var(--primary);
}

.dot.f {
	background: var(--primary);
}

.dot.h {
	background: linear-gradient(90deg, var(--primary) 50%, transparent 50%);
}

.rcnt {
	font-size: 11px;
	color: var(--gray2);
}

.eprice {
	font-size: 12px;
	color: var(--gray);
}

.eprice strong {
	color: var(--black);
}

.sarr {
	position: absolute;
	right: -4px;
	top: 60px;
	width: 34px;
	height: 34px;
	background: white;
	border-radius: 50%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 5;
	font-size: 16px;
	border: 1px solid var(--border);
}

.sarr.lft {
	left: -4px;
	right: auto;
}

/* CERTIFICATION BLOCK (replaces Kiva) */
.kiva {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--border);
	min-height: 200px;
}

.kleft {
	background: linear-gradient(135deg, #0d1f0d 0%, #1e3a1e 60%, #2d5a2d 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 72px;
	position: relative;
	flex-direction: column;
	gap: 8px;
	padding: 24px;
}

.kleft-label {
	color: rgba(255, 255, 255, 0.85);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-align: center;
}

.kright {
	padding: 28px 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--white);
}

.taf {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 10px;
	font-size: 12px;
	color: var(--primary);
	font-weight: 700;
}

.kright h3 {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 8px;
}

.kright p {
	font-size: 13px;
	color: var(--gray);
	line-height: 1.6;
	margin-bottom: 18px;
}

.btn-donate {
	display: inline-block;
	padding: 11px 26px;
	background: var(--primary);
	color: white;
	border-radius: 24px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	width: fit-content;
	transition: background .15s;
}

.btn-donate:hover {
	background: var(--primary-dark);
}

/* INSPIRATION */
.insp {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.incard {
	cursor: pointer;
}

.inimg {
	width: 100%;
	height: 188px;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 56px;
}

.inimg.t1 {
	background: linear-gradient(135deg, #0d1f0d, #1e3a1e, #2d5a2d);
}

.inimg.t2 {
	background: linear-gradient(135deg, #7f1d1d, #b91c1c, #ef4444);
}

.inimg.t3 {
	background: linear-gradient(135deg, #0c4a6e, #0369a1, #38bdf8);
}

.inheart {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 28px;
	height: 28px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.intitle {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
}

/* ICONIC GEMS */
.icgrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.iccard {
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	position: relative;
	height: 180px;
	transition: transform .2s;
}

.iccard:hover {
	transform: scale(1.02);
}

.icimg {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 56px;
}

.icimg.ruby {
	background: linear-gradient(135deg, #7f1d1d, #b91c1c, #f87171);
}

.icimg.saph {
	background: linear-gradient(135deg, #1e3a8a, #1d4ed8, #60a5fa);
}

.icimg.emer {
	background: linear-gradient(135deg, #14532d, #15803d, #4ade80);
}

.icimg.diam {
	background: linear-gradient(135deg, #0d1f0d, #1e3a1e, #6aad6a);
}

.icover {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 55%);
}

.iclbl {
	position: absolute;
	bottom: 12px;
	left: 12px;
	color: white;
	z-index: 1;
}

.iclbl strong {
	font-size: 15px;
	font-weight: 800;
	display: block;
}

.iclbl span {
	font-size: 12px;
	opacity: .85;
}

/* AWARDS */
.awards {
	background: #0d1f0d;
	padding: 52px 40px;
}

.awin {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 40px;
}

.atxt {
	flex: 0 0 380px;
}

.abadge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 2px solid var(--gold);
	border-radius: 8px;
	padding: 7px 14px;
	margin-bottom: 18px;
}

.abadge .yr {
	font-size: 22px;
	font-weight: 800;
	color: var(--gold);
}

.atxt h2 {
	font-size: 32px;
	font-weight: 800;
	color: white;
	line-height: 1.2;
	margin-bottom: 10px;
}

.atxt p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 22px;
}

.btn-win {
	display: inline-block;
	padding: 11px 26px;
	border: 2px solid var(--gold);
	color: var(--gold);
	border-radius: 24px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background .15s;
}

.btn-win:hover {
	background: rgba(201, 168, 76, 0.1);
}

.avis {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 240px;
}

.acirc {
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0d1f0d, #1e3a1e);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 80px;
	z-index: 1;
	position: relative;
}

.ablob1 {
	position: absolute;
	top: -10px;
	right: 80px;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: var(--gold);
	z-index: 0;
	opacity: .8;
}

.ablob2 {
	position: absolute;
	bottom: -20px;
	right: 10px;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: #6aad6a;
	z-index: 0;
	opacity: .7;
}

/* COMMUNITY */
.comm {
	max-width: 1200px;
	margin: 0 auto;
	padding: 36px 20px;
	background: var(--white);
}

.comm h2 {
	font-size: 19px;
	font-weight: 800;
	margin-bottom: 10px;
}

.comm p {
	font-size: 13px;
	color: var(--gray);
	line-height: 1.7;
	max-width: 900px;
}

/* FOOTER */
footer {
	background: var(--bg-secondary);
	border-top: 1px solid var(--border);
	padding: 36px 20px 20px;
}

.fin {
	max-width: 1200px;
	margin: 0 auto;
}

.fgrid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
	gap: 28px;
	margin-bottom: 28px;
}

.fc h4 {
	font-size: 11px;
	font-weight: 700;
	margin-bottom: 12px;
	letter-spacing: .03em;
	text-transform: uppercase;
}

.fc a {
	display: block;
	font-size: 13px;
	color: var(--gray);
	margin-bottom: 9px;
	transition: color .12s;
}

.fc a:hover {
	color: var(--primary);
}

.fbot {
	border-top: 1px solid var(--border);
	padding-top: 16px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.fcopy {
	font-size: 11px;
	color: var(--gray2);
}

.fleg {
	display: flex;
	gap: 14px;
	margin-top: 6px;
	flex-wrap: wrap;
}

.fleg a {
	font-size: 11px;
	color: var(--gray2);
}

.fleg a:hover {
	text-decoration: underline;
}

.fright {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.fcur,
.fcou {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	font-weight: 600;
	border: 1.5px solid var(--border);
	border-radius: 16px;
	padding: 5px 11px;
	cursor: pointer;
}

.sicons {
	display: flex;
	gap: 8px;
}

.si {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1.5px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	cursor: pointer;
}

.si:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.disc {
	font-size: 11px;
	color: var(--gray2);
	margin-top: 14px;
	line-height: 1.6;
	border-top: 1px solid var(--border);
	padding-top: 14px;
}

.disc a {
	color: var(--primary);
}

/* SELLER CARDS */
.seller-card {
	flex-shrink: 0;
	width: 240px;
	background: var(--white);
	border: 1.5px solid var(--border);
	border-radius: 16px;
	padding: 18px;
	cursor: pointer;
	transition: all .18s;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.seller-card:hover {
	border-color: #1a7a4a;
	box-shadow: 0 6px 24px rgba(26, 122, 74, 0.12);
	transform: translateY(-2px);
}

.seller-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.seller-avatar {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 800;
	color: white;
	letter-spacing: .5px;
}

.seller-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
}

.seller-location {
	font-size: 11px;
	color: var(--gray2);
	margin-top: 2px;
}

.seller-verified {
	margin-left: auto;
	font-size: 10px;
	font-weight: 700;
	color: #1a7a4a;
	background: rgba(26, 122, 74, 0.1);
	padding: 3px 8px;
	border-radius: 20px;
	white-space: nowrap;
	flex-shrink: 0;
}

.seller-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 12px;
}

.seller-tags span {
	font-size: 10px;
	font-weight: 600;
	color: var(--gray);
	background: var(--bg);
	border-radius: 20px;
	padding: 3px 8px;
	border: 1px solid var(--border);
}

.seller-stats {
	display: flex;
	gap: 0;
	margin-bottom: 12px;
	border: 1px solid var(--border);
	border-radius: 10px;
	overflow: hidden;
}

.seller-stat {
	flex: 1;
	text-align: center;
	padding: 8px 4px;
	border-right: 1px solid var(--border);
}

.seller-stat:last-child {
	border-right: none;
}

.seller-stat strong {
	display: block;
	font-size: 13px;
	font-weight: 800;
	color: var(--black);
}

.seller-stat span {
	font-size: 10px;
	color: var(--gray2);
}

.seller-docs {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
}

.doc-tag {
	font-size: 10px;
	font-weight: 600;
	color: #1a7a4a;
	background: rgba(26, 122, 74, 0.08);
	border: 1px solid rgba(26, 122, 74, 0.2);
	border-radius: 6px;
	padding: 3px 8px;
}

/* ACADEMY GRID */
.academy-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
}

.academy-card {
	background: var(--white);
	border: 1.5px solid var(--border);
	border-radius: 14px;
	padding: 18px 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	cursor: pointer;
	transition: all .18s;
}

.academy-card:hover {
	border-color: #1a7a4a;
	box-shadow: 0 4px 18px rgba(26, 122, 74, 0.12);
	transform: translateY(-2px);
}

.academy-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
}

.academy-body {
	flex: 1;
}

.academy-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 6px;
}

.academy-desc {
	font-size: 12px;
	color: var(--gray);
	line-height: 1.5;
}

.academy-link {
	font-size: 12px;
	font-weight: 700;
	color: #1a7a4a;
	text-decoration: none;
	margin-top: 4px;
}

.academy-link:hover {
	text-decoration: underline;
}

/* LANGUAGE SELECTOR */
.lang-select {
	position: relative;
}

.lang-current {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 6px 10px;
	border: 1.5px solid var(--border);
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	background: var(--white);
	transition: border-color .15s;
	user-select: none;
}

.lang-current:hover {
	border-color: var(--primary);
}

.lang-flag {
	font-size: 15px;
}

.lang-code {
	color: var(--black);
}

.lang-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	background: var(--white);
	border: 1.5px solid var(--border);
	border-radius: 14px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	min-width: 180px;
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all .18s ease;
	z-index: 300;
}

.lang-dropdown.open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.lang-section {
	font-size: 10px;
	font-weight: 800;
	color: var(--gray2);
	text-transform: uppercase;
	letter-spacing: .07em;
	padding: 8px 10px 4px;
}

.lang-opt {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 10px;
	border-radius: 8px;
	font-size: 13px;
	color: var(--black);
	font-weight: 500;
	cursor: pointer;
	transition: background .12s;
	text-decoration: none;
}

.lang-opt:hover {
	background: var(--bg-hover);
}

.lang-opt.active {
	color: #1a7a4a;
	font-weight: 700;
	background: rgba(26, 122, 74, 0.06);
}

/* WINE TRIGGER */
.wine-trigger {
	position: fixed;
	bottom: 28px;
	right: 28px;
	z-index: 500;
	display: flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #3d0f0f, #5c1a1a);
	color: white;
	padding: 12px 20px;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 6px 24px rgba(93, 26, 26, 0.45);
	transition: transform .15s, box-shadow .15s;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.wine-trigger:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 32px rgba(93, 26, 26, 0.55);
}

.wine-trigger-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #e8c55a;
	animation: pulse-dot 1.8s ease-in-out infinite;
}

.wine-trigger-arrow {
	color: var(--gold);
	font-size: 14px;
}

.wine-trigger-close {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	line-height: 1;
	margin-left: 4px;
	flex-shrink: 0;
	transition: background .15s;
}

.wine-trigger-close:hover {
	background: rgba(255, 255, 255, 0.35);
}

@keyframes pulse-dot {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: .6;
		transform: scale(1.3);
	}
}

/* WINE MODAL */
.wine-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all .25s ease;
}

.wine-modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

.wine-modal {
	background: linear-gradient(135deg, #1a0a0a 0%, #3d0f0f 50%, #5c1a1a 100%);
	border-radius: 24px;
	overflow: hidden;
	display: flex;
	max-width: 780px;
	width: 90%;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
	transform: scale(0.92) translateY(20px);
	transition: transform .25s ease;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.wine-modal-overlay.active .wine-modal {
	transform: scale(1) translateY(0);
}

.wine-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	border: none;
	color: white;
	font-size: 14px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: background .15s;
}

.wine-modal-close:hover {
	background: rgba(255, 255, 255, 0.22);
}

.wine-modal-left {
	flex-shrink: 0;
	width: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.2);
	padding: 32px 16px;
}

.wine-modal-right {
	flex: 1;
	padding: 36px 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.wine-modal-right h2 {
	font-size: 26px;
	font-weight: 800;
	color: white;
	line-height: 1.2;
	margin-bottom: 12px;
}

.wine-modal-right p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.7;
	margin-bottom: 18px;
}

.wine-new-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(201, 168, 76, 0.15);
	border: 1.5px solid rgba(201, 168, 76, 0.4);
	color: var(--gold);
	border-radius: 20px;
	padding: 5px 14px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.wine-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.wine-tags span {
	padding: 5px 14px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	font-size: 12px;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
}

.btn-wine {
	display: inline-block;
	padding: 12px 28px;
	background: var(--gold);
	color: white;
	border-radius: 24px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background .15s;
}

.btn-wine:hover {
	background: var(--gold-dark);
}

.wine-bottles {
	display: flex;
	align-items: flex-end;
	gap: 16px;
}

.wine-bottle {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.b1 {
	width: 70px;
	height: 130px;
	font-size: 40px;
}

.b2 {
	width: 80px;
	height: 160px;
	font-size: 50px;
}

.b3 {
	width: 70px;
	height: 120px;
	font-size: 40px;
}

/*# sourceMappingURL=vvs_only.css.map */