/* Quick Theme — main styles */
*, *::before, *::after { box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
	background-color: #0c0c0d;
	background-image: linear-gradient(rgba(11, 11, 12, 0.5), rgba(11, 11, 12, 0.5)), var(--quick-body-bg, url('../images/body-bg.jpg'));
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

body {
	color: #F2F0EC;
	font-family: 'EncodeQ', -apple-system, BlinkMacSystemFont, sans-serif;
	line-height: 1.5;
}

a { color: inherit; }

img { max-width: 100%; height: auto; }

.wrap {
	max-width: 1480px;
	margin: 0 auto;
	padding-left: 40px;
	padding-right: 40px;
}

.logo {
	font-family: 'Kaushan Script', cursive;
	font-size: 30px;
	color: #F2F0EC;
	line-height: 1;
}

.logo-star {
	color: #C7A26C;
	font-size: 13px;
	margin-left: 2px;
	margin-top: 2px;
}

/* Top bar */
.quick-topbar {
	background: #0a0a0b;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 12px;
	letter-spacing: 0.5px;
	color: #86847E;
	padding: 8px 0;
}

.quick-topbar .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.quick-topbar a {
	color: #B7B5AF;
	text-decoration: none;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 200;
	width: 100%;
	background: var(--quick-header-bg, rgba(12, 12, 13, 0.86));
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.site-header .wrap {
	height: 82px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-branding {
	display: inline-flex;
	align-items: flex-start;
	text-decoration: none;
	flex-shrink: 0;
}

.site-branding img {
	max-height: 48px;
	width: auto;
}

.nav {
	display: flex;
	align-items: center;
	gap: 38px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav a {
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1.5px;
	color: #D8D6D0;
	padding: 6px 0;
	border-bottom: 2px solid transparent;
	transition: color 0.2s, border-color 0.2s;
}

.nav a:hover,
.nav .current-menu-item > a,
.nav .current_page_item > a {
	color: #C7A26C;
	border-bottom-color: #C7A26C;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-shrink: 0;
	color: #E7E5DF;
}

.header-actions a {
	display: inline-flex;
	color: inherit;
	text-decoration: none;
}

.cart-count {
	position: absolute;
	top: -9px;
	right: -11px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 9px;
	background: #C7A26C;
	color: #0c0c0d;
	font-size: 11px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.cart-icon-wrap {
	position: relative;
	display: inline-flex;
}

.burger {
	display: none;
	background: none;
	border: none;
	color: #F2F0EC;
	cursor: pointer;
	padding: 4px;
}

.mobile-nav {
	display: none;
	position: fixed;
	inset: 0;
	top: 82px;
	background: rgba(12, 12, 13, 0.97);
	z-index: 199;
	padding: 24px 40px;
	flex-direction: column;
	gap: 20px;
}

.mobile-nav.is-open { display: flex; }

.mobile-nav a {
	font-family: 'Oswald', sans-serif;
	font-size: 22px;
	letter-spacing: 2px;
	text-decoration: none;
	color: #F2F0EC;
}

/* Buttons */
.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(180deg, #D8B884, #C29A60);
	color: #1a1206;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1px;
	padding: 17px 30px;
	text-decoration: none;
	border-radius: 3px;
	border: none;
	cursor: pointer;
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	color: #F2F0EC;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1px;
	padding: 17px 28px;
	text-decoration: none;
	border-radius: 3px;
	background: transparent;
	cursor: pointer;
}

.btn-outline-sm {
	font-size: 12px;
	letter-spacing: 1.5px;
	padding: 13px 22px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 38px;
	letter-spacing: 1px;
	margin: 0;
}

/* Hero */
.po-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.po-h1 {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 88px;
	line-height: 0.92;
	margin: 0;
	letter-spacing: 1px;
}

.po-hero-divider {
	width: 80px;
	height: 3px;
	background: #C7A26C;
	margin: 34px 0 26px;
}

.po-hero-text {
	font-size: 19px;
	line-height: 1.5;
	color: #B7B5AF;
	margin: 0 0 38px;
	max-width: 380px;
}

.po-hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.po-hero-social-proof {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 48px;
}

.po-hero-avatars {
	display: flex;
}

.po-hero-avatars span {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 2px solid #0c0c0d;
	margin-left: -12px;
}

.po-hero-avatars span:first-child { margin-left: 0; }

.po-hero-avatars span:nth-child(1) { background: linear-gradient(135deg, #3a3a3a, #1c1c1c); }
.po-hero-avatars span:nth-child(2) { background: linear-gradient(135deg, #4a4035, #241f18); }
.po-hero-avatars span:nth-child(3) { background: linear-gradient(135deg, #33312c, #17150f); }

.po-hero-count {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 24px;
	line-height: 1;
	letter-spacing: 0.5px;
}

.po-hero-count-label {
	font-size: 12px;
	letter-spacing: 1.5px;
	color: #86847E;
	margin-top: 3px;
}

.po-hero-image-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.po-hero-glow {
	position: absolute;
	width: 70%;
	height: 70%;
	background: radial-gradient(circle, rgba(199, 162, 108, 0.10), transparent 70%);
}

.po-hero-image {
	position: relative;
	width: 100%;
	max-width: 560px;
	filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
}

/* Featured products */
.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 16px;
}

.po-feat {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.product-card {
	background: #141415;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 6px;
	overflow: hidden;
	text-decoration: none;
	display: block;
	transition: border-color 0.2s;
}

.product-card:hover {
	border-color: rgba(199, 162, 108, 0.3);
}

.card-img {
	background: linear-gradient(160deg, #1c1c1d, #0f0f10);
	padding: 18px;
}

.card-img img {
	width: 100%;
	display: block;
	aspect-ratio: 1 / 1.06;
	object-fit: contain;
}

.product-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.product-card-title {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 21px;
	letter-spacing: 1px;
	color: #F2F0EC;
}

.product-card-price {
	font-size: 14px;
	color: #9a988f;
	margin-top: 2px;
}

.product-card-sizes {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 10px;
}

.product-card-size {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 30px;
	padding: 6px 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 2px;
	font-family: 'Oswald', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #B7B5AF;
	line-height: 1;
}

.product-card-size.is-out-of-stock {
	opacity: 0.35;
	text-decoration: line-through;
}

.product-card-arrow {
	color: #C7A26C;
	font-size: 18px;
}

/* Feature strip */
.po-strip-section {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	background: #0a0a0b var(--quick-strip-bg, url('../images/texture-bg.jpg')) center/cover;
}

.po-strip {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
	padding-top: 46px;
	padding-bottom: 46px;
}

.po-strip-item-icon {
	color: #C7A26C;
	margin-bottom: 12px;
}

.po-strip-item-title {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 18px;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.po-strip-item-desc {
	font-size: 13px;
	line-height: 1.55;
	color: #86847E;
}

/* Voting */
.po-vote-wrap {
	display: grid;
	grid-template-columns: 0.85fr 2.4fr;
	gap: 50px;
	align-items: start;
}

.po-vote-heading {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 46px;
	line-height: 0.95;
	letter-spacing: 1px;
	margin: 0;
	color: #F2F0EC;
	text-transform: uppercase;
}

.po-vote-desc {
	font-size: 15px;
	line-height: 1.6;
	color: #9a988f;
	margin: 26px 0 30px;
	max-width: 260px;
}

.po-vote-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.vote-card {
	background: #141415;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 6px;
	padding: 16px;
}

.vote-card-num {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 30px;
	color: #C7A26C;
	line-height: 0.8;
}

.vote-card-img-wrap {
	background: linear-gradient(160deg, #1c1c1d, #0f0f10);
	border-radius: 4px;
	padding: 10px;
	margin: 8px 0 14px;
}

.vote-card-img-wrap img {
	width: 100%;
	display: block;
	aspect-ratio: 1 / 1.05;
	object-fit: contain;
}

.vote-card-title {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 19px;
	letter-spacing: 1px;
}

.vote-card-count {
	font-size: 13px;
	color: #86847E;
	margin: 2px 0 14px;
}

.vbtn {
	width: 100%;
	padding: 11px;
	border-radius: 3px;
	cursor: pointer;
	font-family: 'EncodeQ', sans-serif;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 1.5px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: transparent;
	color: #F2F0EC;
}

.vbtn.voted {
	cursor: default;
	border-color: rgba(199, 162, 108, 0.4);
	background: rgba(199, 162, 108, 0.12);
	color: #C7A26C;
}

.vote-countdown {
	text-align: center;
	margin-top: 24px;
	font-size: 13px;
	letter-spacing: 1.5px;
	color: #9a988f;
}

.vote-countdown-time {
	color: #C7A26C;
	font-weight: 700;
}

/* Experience */
.po-exp {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 50px;
	align-items: center;
	background: #0e0e0f;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 8px;
	overflow: hidden;
}

.po-exp-image {
	min-height: 420px;
	background: #161617 var(--quick-exp-bg, url('../images/texture-bg.jpg')) center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #5c5a55;
	font-size: 14px;
	letter-spacing: 1px;
}

.po-exp-content {
	padding: 60px 60px 60px 0;
}

.po-exp-heading {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 46px;
	line-height: 0.95;
	letter-spacing: 1px;
	margin: 0;
}

.po-exp-heading span { color: #C7A26C; }

.po-exp-text {
	font-size: 16px;
	line-height: 1.7;
	color: #9a988f;
	margin: 28px 0 34px;
	max-width: 420px;
}

/* Footer */
.site-footer {
	background: var(--quick-footer-bg, #0a0a0b) var(--quick-footer-texture, url('../images/texture-bg.jpg')) center/cover;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	color: #A8A6A0;
}

.site-footer .wrap {
	padding-top: 72px;
	padding-bottom: 0;
}

.qf-grid {
	display: grid;
	grid-template-columns: repeat(var(--quick-footer-cols, 5), 1fr);
	gap: 40px;
}

.footer-col h4 {
	margin: 0 0 22px;
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
	letter-spacing: 1.5px;
	color: #F2F0EC;
	font-weight: 600;
}

.footer-col p {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: #86847E;
}

.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
	font-size: 14px;
}

.footer-col a {
	color: #86847E;
	text-decoration: none;
}

.footer-col a:hover { color: #C7A26C; }

.newsletter-form {
	display: flex;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 4px;
	overflow: hidden;
	background: #111112;
	max-width: 300px;
}

.newsletter-form input {
	flex: 1;
	min-width: 0;
	background: none;
	border: none;
	outline: none;
	padding: 13px 14px;
	color: #E7E5DF;
	font-size: 13px;
	font-family: 'EncodeQ', sans-serif;
}

.newsletter-form button {
	background: #C7A26C;
	border: none;
	width: 46px;
	cursor: pointer;
	color: #0c0c0d;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	margin-top: 64px;
	padding: 28px 0 36px;
	font-size: 13px;
	color: #6E6C66;
	flex-wrap: wrap;
	gap: 14px;
}

.footer-bottom a {
	color: #6E6C66;
	text-decoration: none;
}

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

/* Product page — minimal footer bar */
body.quick-is-product .site-footer .qf-grid,
body.quick-is-product .site-footer .footer-bottom {
	display: none;
}

body.quick-is-product .site-footer .wrap {
	padding-top: 0;
}

.quick-product-bar {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 28px 0 36px;
}

.quick-product-bar .wrap {
	display: grid;
	grid-template-columns: 1fr 1.5fr 1fr;
	align-items: center;
	gap: 20px;
}

.quick-product-bar a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #86847E;
	text-decoration: none;
	font-size: 12px;
	letter-spacing: 1.5px;
}

.quick-product-bar a:hover {
	color: #C7A26C;
}

.quick-product-bar-center {
	text-align: center;
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	letter-spacing: 2px;
	color: #F2F0EC;
}

.quick-product-bar-right {
	text-align: right;
}

/* WooCommerce overrides */
.woocommerce .woocommerce-breadcrumb,
.woocommerce-page .woocommerce-breadcrumb {
	color: #86847E;
	margin-bottom: 24px;
}

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }

.woocommerce ul.products li.product {
	width: 100% !important;
	margin: 0 !important;
	float: none !important;
}

.woocommerce .price,
.woocommerce-page .price {
	color: #9a988f;
}

.woocommerce div.product .product_title {
	font-family: 'Oswald', sans-serif;
	color: #F2F0EC;
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button {
	background: linear-gradient(180deg, #D8B884, #C29A60) !important;
	color: #1a1206 !important;
	font-weight: 700;
	border-radius: 3px !important;
	border: none !important;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	background: #141415;
	border-top-color: #C7A26C;
	color: #F2F0EC;
}

.woocommerce table.shop_table,
.woocommerce-checkout .woocommerce {
	color: #F2F0EC;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	border-color: rgba(255, 255, 255, 0.08);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	background: #141415;
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #F2F0EC;
	border-radius: 3px;
	padding: 10px 14px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
	color: #D8D6D0;
	text-decoration: none;
	padding: 8px 0;
	display: block;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
	color: #C7A26C;
}

/* Page sections spacing */
.section-pad-lg { padding-top: 70px; padding-bottom: 90px; }
.section-pad-md { padding-top: 30px; padding-bottom: 80px; }
.section-pad-vote { padding-top: 90px; padding-bottom: 90px; }
.section-pad-exp { padding-top: 20px; padding-bottom: 100px; }

@media (max-width: 700px) {
	.quick-product-bar .wrap {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 16px;
	}

	.quick-product-bar-right {
		text-align: center;
	}
}

/* Responsive */
@media (max-width: 1200px) {
	.qf-grid { grid-template-columns: repeat(3, 1fr); }
	.woocommerce ul.products { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1000px) {
	.po-hero { grid-template-columns: 1fr; }
	.po-feat { grid-template-columns: repeat(2, 1fr); }
	.po-strip { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
	.po-vote-grid { grid-template-columns: repeat(2, 1fr); }
	.po-vote-wrap { grid-template-columns: 1fr; }
	.po-exp { grid-template-columns: 1fr; }
	.po-exp-content { padding: 40px; }
	.qf-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
	.nav { display: none; }
	.burger { display: inline-flex; }
	.woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
	.po-feat { grid-template-columns: 1fr; }
	.po-vote-grid { grid-template-columns: 1fr; }
	.po-h1 { font-size: 54px !important; }
	.wrap { padding-left: 20px; padding-right: 20px; }
	.qf-grid { grid-template-columns: 1fr; }
	.woocommerce ul.products { grid-template-columns: 1fr; }
	.po-vote-heading { font-size: 36px; }
}
