/*
Theme Name: SHv3
Theme URI: https://streethustle.cz/
Description: WooCommerce e-shop theme inspired by dawgz.eu. Monochromatic dark design.
Author: StreetHustle
Version: 2.0.0
Text Domain: streethustlev2
*/

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	padding: 0;
	font-family: 'Bebas Neue', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.45;
	color: #ffffff;
	background: #000000;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

/* Nadpisy - Bebas Neue */
h1, h2, h3, h4, h5, h6,
.logo-text,
.section-title,
.footer-col-title,
.booking-col-title {
	font-family: 'Bebas Neue', sans-serif;
}

/* Běžný text - Space Grotesk */
p, span, a, li, input, button, .hero-btn, .shop-btn-wrap, .product-name, .product-price {
	font-family: 'Space Grotesk', sans-serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

/* ========== HEADER ========== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	background: rgba(0,0,0,0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition: background 0.3s;
}

.header-spacer {
	flex: 1;
}

.header-nav { display: flex; }
.header-nav a {
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: opacity 0.2s;
}
.header-nav a:hover { opacity: 0.6; }

.site-logo .logo-text {
	font-weight: 900;
	font-size: 1.65rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

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

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	width: 28px;
	height: 24px;
	position: relative;
}

.menu-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	position: absolute;
	left: 0;
	transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 11px; }
.menu-toggle span:nth-child(3) { top: 22px; }

.menu-toggle.active span:nth-child(1) {
	transform: translateY(11px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) {
	transform: translateY(-11px) rotate(-45deg);
}

.header-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s;
}
.header-icon:hover { opacity: 0.6; }

/* Mobile nav overlay */
.mobile-nav {
	position: fixed;
	top: 0;
	right: -100%;
	width: 70%;
	max-width: 320px;
	height: 100vh;
	background: #0a0a0a;
	padding: 80px 32px 32px;
	transition: right 0.3s ease;
	z-index: 999;
}
.mobile-nav.open { right: 0; }
.mobile-nav-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.mobile-nav-list a {
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: opacity 0.2s;
}
.mobile-nav-list a:hover { opacity: 0.6; }
.mobile-nav-overlay {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.5);
	z-index: 998;
	display: none;
}
.mobile-nav-overlay.open { display: block; }

/* ========== HERO ========== */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-media {
	position: absolute;
	inset: 0;
}

.hero-video-container {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.hero-video-container video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;
	min-height: 100vh;
	min-width: 177.77vh;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 120px 24px 60px;
	max-width: 100%;
}

.hero-title {
	margin: 0 0 24px;
	font-size: clamp(3rem, 12vw, 8rem);
	font-weight: 900;
	line-height: 0.9;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	font-family: 'Bebas Neue', 'Syne', sans-serif;
	width: 100%;
}

.hero-socials {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 24px;
}

.hero-social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	transition: background 0.2s, transform 0.2s;
}
.hero-social-icon:hover {
	background: rgba(255,255,255,0.2);
	transform: scale(1.1);
}
.hero-social-icon svg { width: 20px; height: 20px; fill: #fff; }

.hero-btn {
	display: inline-block;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	border: 1px solid rgba(255,255,255,0.3);
	padding: 12px 32px;
	transition: background 0.2s, border-color 0.2s;
	background: none;
	color: #fff;
	cursor: pointer;
}
.hero-btn:hover {
	background: rgba(255,255,255,0.1);
	border-color: #fff;
}

/* ========== MARQUEE ========== */
.marquee-wrap {
	overflow: hidden;
	background: #0a0a0a;
	padding: 12px 0;
	border-top: 1px solid #1a1a1a;
	border-bottom: 1px solid #1a1a1a;
}

.marquee-track {
	display: flex;
	animation: marquee 30s linear infinite;
	white-space: nowrap;
	width: max-content;
}

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

.marquee-text {
	font-size: clamp(1.2rem, 3vw, 2.2rem);
	font-weight: 900;
	text-transform: uppercase;
	padding: 0 32px;
	letter-spacing: 0.05em;
}

/* ========== SECTIONS (shared) ========== */
.section-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.section-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 40px;
	gap: 16px;
}

.section-title {
	font-size: clamp(1.5rem, 4vw, 3rem);
	font-weight: 900;
	text-transform: uppercase;
	margin: 0;
	letter-spacing: -0.02em;
	font-family: 'Bebas Neue', 'Syne', sans-serif;
}

.section-shop,
.section-youtube,
.section-booking,
.section-newsletter {
	padding: 80px 0;
}

.section-shop { background: #0a0a0a; }
.section-youtube { background: #000; }
.section-booking { background: #0a0a0a; }
.section-newsletter { background: #000; }

/* ========== SHOP GRID ========== */
.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.product-card { transition: transform 0.3s; }
.product-card:hover { transform: translateY(-4px); }
.product-link { display: block; }

.product-image-wrap {
	background: #111;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 16px;
}

.product-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s;
}

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

.product-info { padding: 0 4px; }

.product-name {
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0 0 6px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.product-price {
	font-size: 0.95rem;
	font-weight: 500;
	opacity: 0.6;
}

.shop-btn-wrap {
	text-align: center;
	margin-top: 40px;
}

/* ========== NEWSLETTER ========== */
.newsletter-inner {
	text-align: center;
	max-width: 500px;
	margin: 0 auto;
}

.newsletter-text {
	font-size: 1rem;
	opacity: 0.6;
	margin-bottom: 32px;
}

.newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-start;
}

.newsletter-input {
	width: 100%;
	padding: 12px 16px;
	background: #111;
	border: 1px solid #1a1a1a;
	color: #fff;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 0.95rem;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input:focus { outline: none; border-color: rgba(255,255,255,0.5); }

.newsletter-checkbox-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	opacity: 0.6;
}
.newsletter-checkbox-wrap input[type="checkbox"] {
	width: 16px;
	height: 16px;
	accent-color: #fff;
}

.newsletter-btn {
	padding: 12px 32px;
	background: none;
	border: 1px solid rgba(255,255,255,0.3);
	color: #fff;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
}
.newsletter-btn:hover {
	background: rgba(255,255,255,0.1);
	border-color: #fff;
}

/* ========== YOUTUBE ========== */
.video-wrap {
	aspect-ratio: 16 / 9;
	max-width: 800px;
	margin: 0 auto;
}
.video-wrap iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* ========== BOOKING ========== */
.booking-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	max-width: 800px;
	margin: 0 auto;
}

.booking-col {
	text-align: center;
}

.booking-col-title {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin: 0 0 16px;
	opacity: 0.4;
}

.booking-link {
	display: block;
	font-size: 0.95rem;
	margin-bottom: 8px;
	transition: opacity 0.2s;
}
.booking-link:hover { opacity: 0.6; }

/* ========== FOOTER ========== */
.site-footer {
	background: #0a0a0a;
	padding: 60px 0 40px;
	border-top: 1px solid #1a1a1a;
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-col-title {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin: 0 0 16px;
	opacity: 0.4;
}

.footer-link {
	display: block;
	font-size: 0.95rem;
	margin-bottom: 8px;
	transition: opacity 0.2s;
}
.footer-link:hover { opacity: 0.6; }

.footer-legal {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.footer-legal a {
	font-size: 0.8rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.4;
	transition: opacity 0.2s;
}
.footer-legal a:hover { opacity: 0.8; }

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

.footer-socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	transition: background 0.2s;
}
.footer-socials a:hover { background: rgba(255,255,255,0.15); }
.footer-socials a svg { width: 16px; height: 16px; fill: #fff; }

/* ========== WOOCOMMERCE OVERRIDES ========== */
.woocommerce-content {
	padding: 120px 24px 60px;
	color: #fff;
	max-width: 1200px;
	margin: 0 auto;
}

/* Shop page — product grid */
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce ul.products li.product {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	transition: transform 0.3s;
	width: 100% !important;
	margin: 0 !important;
	float: none !important;
}

.woocommerce ul.products li.product:hover {
	transform: translateY(-4px);
}

.woocommerce ul.products li.product a img {
	margin: 0;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #fff;
	padding: 12px 16px 0;
	margin: 0;
}

.woocommerce ul.products li.product .price {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.95rem;
	font-weight: 500;
	color: rgba(255,255,255,0.6);
	padding: 4px 16px 16px;
	margin: 0;
	display: block;
}

.woocommerce ul.products li.product .button {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border: 1px solid rgba(255,255,255,0.3);
	padding: 10px 20px;
	margin: 0 16px 16px;
	background: none;
	color: #fff;
	transition: background 0.2s, border-color 0.2s;
	border-radius: 0;
	display: inline-block;
}

.woocommerce ul.products li.product .button:hover {
	background: rgba(255,255,255,0.1);
	border-color: #fff;
	color: #fff;
}

/* Single product page */
.woocommerce div.product {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	padding: 32px;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.woocommerce div.product .woocommerce-product-gallery {
	width: 48% !important;
	float: none !important;
	margin: 0 !important;
}

.woocommerce div.product .summary {
	width: 48% !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.woocommerce div.product .product_title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 2.5rem;
	font-weight: 900;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 16px;
}

.woocommerce div.product .price {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: rgba(255,255,255,0.8);
	margin-bottom: 24px;
	display: block;
}

.woocommerce div.product .stock {
	font-family: 'Space Grotesk', sans-serif;
	color: #ff6b6b;
}

.woocommerce div.product form.cart {
	margin-bottom: 24px;
}

.woocommerce div.product form.cart .button {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	border: 1px solid rgba(255,255,255,0.3);
	padding: 12px 32px;
	background: none;
	color: #fff;
	border-radius: 0;
	transition: background 0.2s, border-color 0.2s;
}

.woocommerce div.product form.cart .button:hover {
	background: rgba(255,255,255,0.1);
	border-color: #fff;
	color: #fff;
}

/* Product gallery placeholder */
.woocommerce-product-gallery__image--placeholder img {
	width: 100%;
	height: auto;
	opacity: 0.3;
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs {
	width: 100%;
	margin-top: 40px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
	border-bottom: 1px solid #1a1a1a;
	display: flex;
	gap: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	border: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: none;
	border: none;
	margin: 0;
	padding: 0;
	border-radius: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255,255,255,0.4);
	padding: 12px 24px;
	display: block;
	border-bottom: 2px solid transparent;
	transition: color 0.2s, border-color 0.2s;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: #fff;
	border-bottom-color: #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
	color: #fff;
}

.woocommerce div.product .woocommerce-tabs .panel {
	font-family: 'Space Grotesk', sans-serif;
	color: rgba(255,255,255,0.7);
	padding: 24px 0;
	border: none;
	box-shadow: none;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.5rem;
	color: #fff;
	margin-bottom: 16px;
}

/* Meta */
.product_meta {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.85rem;
	color: rgba(255,255,255,0.5);
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid #1a1a1a;
}

.product_meta a {
	color: rgba(255,255,255,0.7);
	transition: color 0.2s;
}

.product_meta a:hover {
	color: #fff;
}

/* Sorting bar */
.woocommerce-ordering {
	float: none !important;
	margin-bottom: 32px !important;
}

.woocommerce-ordering select {
	font-family: 'Space Grotesk', sans-serif;
	background: #0a0a0a;
	color: #fff;
	border: 1px solid #1a1a1a;
	padding: 10px 16px;
	font-size: 0.85rem;
	outline: none;
	cursor: pointer;
}

/* Result count */
.woocommerce-result-count {
	font-family: 'Space Grotesk', sans-serif;
	color: rgba(255,255,255,0.5);
	font-size: 0.85rem;
	margin-bottom: 32px !important;
}

/* Cart */
.woocommerce-cart-form {
	font-family: 'Space Grotesk', sans-serif;
}

.woocommerce table.shop_table {
	border: 1px solid #1a1a1a;
	background: #0a0a0a;
	border-radius: 0;
	color: #fff;
}

.woocommerce table.shop_table th {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255,255,255,0.6);
	background: #111;
	border-bottom: 1px solid #1a1a1a;
	padding: 12px 16px;
}

.woocommerce table.shop_table td {
	border-top: 1px solid #1a1a1a;
	padding: 12px 16px;
}

.woocommerce table.shop_table td a {
	color: #fff;
}

.woocommerce .cart_totals h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.5rem;
	color: #fff;
}

.woocommerce .cart_totals table.shop_table {
	border: 1px solid #1a1a1a;
	background: #0a0a0a;
}

.woocommerce button.button.alt {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	border: 1px solid rgba(255,255,255,0.3);
	padding: 12px 32px;
	background: none !important;
	color: #fff !important;
	border-radius: 0;
	transition: background 0.2s, border-color 0.2s;
}

.woocommerce button.button.alt:hover {
	background: rgba(255,255,255,0.1) !important;
	border-color: #fff;
	color: #fff !important;
}

/* Checkout */
.woocommerce-checkout {
	font-family: 'Space Grotesk', sans-serif;
	color: #fff;
}

.woocommerce-checkout .form-row label {
	color: rgba(255,255,255,0.7);
	font-size: 0.85rem;
}

.woocommerce-checkout .input-text {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	color: #fff;
	padding: 10px 16px;
	border-radius: 0;
	font-family: 'Space Grotesk', sans-serif;
}

.woocommerce-checkout .input-text:focus {
	border-color: rgba(255,255,255,0.5);
	outline: none;
}

/* Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	font-family: 'Space Grotesk', sans-serif;
	background: #0a0a0a !important;
	border: 1px solid #1a1a1a !important;
	color: #fff !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 16px !important;
	margin-bottom: 24px !important;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
	color: #fff !important;
}

.woocommerce-message .button,
.woocommerce-info .button {
	font-family: 'Space Grotesk', sans-serif;
	background: none !important;
	border: 1px solid rgba(255,255,255,0.3);
	padding: 8px 16px;
	color: #fff !important;
	border-radius: 0;
	font-weight: 600;
	font-size: 0.8rem;
}

/* Variation select */
.woocommerce div.product form.cart .variations td.label label {
	font-family: 'Space Grotesk', sans-serif;
	color: rgba(255,255,255,0.7);
	font-size: 0.85rem;
}

.woocommerce div.product form.cart .variations select {
	font-family: 'Space Grotesk', sans-serif;
	background: #0a0a0a;
	color: #fff;
	border: 1px solid #1a1a1a;
	padding: 8px 12px;
	outline: none;
}

/* Page title on shop */
.woocommerce-products-header__title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(2rem, 6vw, 4rem);
	font-weight: 900;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 24px;
	letter-spacing: 0.05em;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination {
	margin-top: 40px;
}

.woocommerce nav.woocommerce-pagination ul {
	border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: none;
	margin-right: 4px;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.85rem;
	font-weight: 600;
	background: #0a0a0a;
	color: rgba(255,255,255,0.6);
	border: 1px solid #1a1a1a;
	padding: 8px 14px;
	transition: border-color 0.2s, color 0.2s;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
	color: #fff;
	border-color: #fff;
	background: #0a0a0a;
}

/* Remove sidebar on WC pages */
.woocommerce-page #sidebar {
	display: none;
}

.woocommerce-page #primary {
	width: 100% !important;
	float: none !important;
}

@media (max-width: 768px) {
	.woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.woocommerce div.product {
		padding: 20px;
		flex-direction: column;
		gap: 24px;
	}
	.woocommerce div.product .woocommerce-product-gallery,
	.woocommerce div.product .summary {
		width: 100% !important;
	}
	.woocommerce-content {
		padding: 100px 16px 40px;
	}
}

/* ========== COOKIE BAR ========== */
.cookie-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: #0a0a0a;
	border-top: 1px solid #1a1a1a;
	padding: 16px 24px;
}

.cookie-bar-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.cookie-text {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.85rem;
	color: rgba(255,255,255,0.6);
	margin: 0;
	flex: 1;
	min-width: 200px;
}

.cookie-actions {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.cookie-btn {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 10px 24px;
	border: 1px solid rgba(255,255,255,0.3);
	background: none;
	color: #fff;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
}

.cookie-btn:hover {
	background: rgba(255,255,255,0.1);
	border-color: #fff;
}

@media (max-width: 480px) {
	.cookie-bar {
		padding: 16px;
	}
	.cookie-bar-inner {
		flex-direction: column;
		text-align: center;
	}
	.cookie-text {
		font-size: 0.8rem;
	}
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
	.site-header { padding: 12px 16px; }
	.menu-toggle { display: block; }
	.header-nav { display: none; }

	.site-logo .logo-text { font-size: 0.95rem; }

	.hero { min-height: 90vh; }
	.hero-content { padding: 100px 16px 40px; }
	.hero-title { font-size: clamp(2.2rem, 14vw, 4rem); }

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

	.section-shop, .section-youtube, .section-booking, .section-newsletter { padding: 50px 0; }
	.section-header { margin-bottom: 24px; }

	.booking-grid { grid-template-columns: 1fr; gap: 24px; }
	.footer-grid { grid-template-columns: 1fr; gap: 24px; }
	.footer-legal { flex-direction: column; gap: 12px; }
}

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