/*!
Theme Name: Baltijas Minerālūdens
Theme URI: http://underscores.me/
Author: Ashot Sardaryan
Author URI: https://github.com/ashott1997
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: baltijas-mineraludens
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Baltijas Minerālūdens is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

:root {
	--color-white: #ffffff;
	--color-off-white: #f8f9fa;
	--color-light-gray: #e9ecef;
	--color-medium-gray: #6c757d;
	--color-dark-gray: #343a40;
	--color-navy: #1a365d;
	--color-navy-dark: #0f2442;
	--color-blue-accent: #2c5282;
	--color-blue-light: #4299e1;
	--font-display: 'Cormorant Garamond', Georgia, serif;
	--font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	--transition-fast: 0.2s ease;
	--transition-normal: 0.3s ease;
	--transition-slow: 0.5s ease;
	--color-wine: #722F37;
	--color-wine-dark: #5a1f27;
	--color-wine: #722F37;
	--color-gold: #c9a962;
	--color-wine-rose: #D4A5A5;
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-dark-gray);
	background-color: var(--color-white);
	overflow-x: hidden;
}

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

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

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit;
}

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

.top-bar {
	background-color: var(--color-navy-dark);
	color: var(--color-white);
	padding: 8px 0;
	font-size: 13px;
}

.top-bar-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-bar-contacts {
	display: flex;
	gap: 24px;
}

.top-bar-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.85);
	transition: color var(--transition-fast);
}

.top-bar-item:hover {
	color: var(--color-white);
}

.top-bar-item svg {
	opacity: 0.7;
}

.top-bar-flags {
	display: flex;
	gap: 8px;
}

.flag-btn {
	padding: 4px;
	border-radius: 4px;
	opacity: 0.6;
	transition: all var(--transition-fast);
}

.flag-btn:hover,
.flag-btn.active {
	opacity: 1;
	background-color: rgba(255, 255, 255, 0.1);
}

.flag-btn svg {
	display: block;
	border-radius: 2px;
}

.header {
	background-color: var(--color-white);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: var(--shadow-sm);
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 72px;
}

.logo {
	display: flex;
	align-items: center;
}

.logo-text {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 600;
	font-style: italic;
	color: var(--color-navy);
}

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

.nav-link {
	font-size: 15px;
	font-weight: 500;
	color: var(--color-dark-gray);
	position: relative;
	padding: 8px 0;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--color-navy);
	transition: width var(--transition-normal);
}

.nav-link:hover::after {
	width: 100%;
}

.nav-link:hover {
	color: var(--color-navy);
}

/* Dropdown */
.nav-dropdown {
	position: relative;
}

.nav-dropdown>.nav-link {
	display: flex;
	align-items: center;
	gap: 4px;
}

.nav-dropdown>.nav-link svg {
	width: 12px;
	height: 12px;
	transition: transform 0.3s;
}

.nav-dropdown:hover>.nav-link svg {
	transform: rotate(180deg);
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 180px;
	background: var(--color-white);
	border-radius: 12px;
	box-shadow: var(--shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s;
	padding: 8px 0;
	margin-top: 8px;
}

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

.dropdown-item {
	display: block;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color-dark-gray);
	transition: all 0.2s;
}

.dropdown-item:hover {
	background: var(--color-off-white);
	color: var(--color-navy);
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue-accent) 100%);
	color: var(--color-white);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.3px;
	border-radius: 50px;
	transition: all var(--transition-normal);
	box-shadow: var(--shadow-md);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
	background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	background: transparent;
	border: 2px solid var(--color-navy);
	color: var(--color-navy);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.3px;
	border-radius: 50px;
	transition: all var(--transition-normal);
}

.btn-secondary:hover {
	background: var(--color-navy);
	color: var(--color-white);
	transform: translateY(-2px);
}

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

.btn-large {
	padding: 16px 36px;
	font-size: 15px;
}

.btn-full {
	width: 100%;
}

.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 28px;
	height: 28px;
	z-index: 200;
}

.hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--color-navy);
	border-radius: 2px;
	transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-white);
	z-index: 150;
	opacity: 0;
	visibility: hidden;
	transition: all var(--transition-normal);
}

.mobile-menu.active {
	opacity: 1;
	visibility: visible;
}

.mobile-menu-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	gap: 24px;
}

.mobile-nav-link {
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 500;
	color: var(--color-navy);
	transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
	color: var(--color-blue-accent);
}

.mobile-cta {
	margin-top: 16px;
}

/* HERO */
.hero {
	position: relative;
	min-height: 90vh;
	background: linear-gradient(135deg, #e8f4fc 0%, #d0e8f7 100%);
	overflow: hidden;
	display: flex;
	align-items: center;
}

.hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.bubble {
	position: absolute;
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
	border-radius: 50%;
	animation: float 8s ease-in-out infinite;
}

.bubble-1 {
	width: 60px;
	height: 60px;
	left: 10%;
	bottom: 20%;
	animation-delay: 0s;
}

.bubble-2 {
	width: 30px;
	height: 30px;
	left: 25%;
	bottom: 30%;
	animation-delay: 1s;
}

.bubble-3 {
	width: 45px;
	height: 45px;
	left: 70%;
	bottom: 15%;
	animation-delay: 2s;
}

.bubble-4 {
	width: 25px;
	height: 25px;
	left: 85%;
	bottom: 35%;
	animation-delay: 3s;
}

.bubble-5 {
	width: 35px;
	height: 35px;
	left: 15%;
	bottom: 50%;
	animation-delay: 4s;
}

.bubble-6 {
	width: 20px;
	height: 20px;
	left: 60%;
	bottom: 45%;
	animation-delay: 2.5s;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0) scale(1);
		opacity: 0.6;
	}

	50% {
		transform: translateY(-40px) scale(1.1);
		opacity: 0.9;
	}
}

.hero-content {
	position: relative;
	z-index: 10;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	padding: 80px 0;
}

.hero-text {
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
	animation-delay: 0.2s;
}

.hero-subtitle {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--color-navy);
	margin-bottom: 16px;
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 500;
	line-height: 1.2;
	color: var(--color-navy-dark);
	margin-bottom: 20px;
}

.hero-description {
	font-size: 18px;
	color: var(--color-medium-gray);
	margin-bottom: 32px;
	max-width: 480px;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

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

/* Product Slider with Frame */
.hero-slider {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.slider-frame {
	background: var(--color-white);
	border-radius: 24px;
	padding: 32px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
	position: relative;
	overflow: hidden;
}

.slider-frame::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--color-navy), var(--color-blue-accent), var(--color-blue-light));
}

.slider-container {
	position: relative;
	width: 320px;
	height: 480px;
}

.slide {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding-top: 20px;
	opacity: 0;
	transform: scale(0.95);
	transition: all 0.5s ease;
	pointer-events: none;
}

.slide.active {
	opacity: 1;
	transform: scale(1);
	pointer-events: auto;
}

.slide-image {
	height: 280px;
	margin-bottom: 24px;
	filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
	animation: floatBottle 4s ease-in-out infinite;
}

.slide-image img {
	height: 100%;
	width: auto;
}

.slide-image.wine-slide-img {
	height: 250px;
	width: 250px;
	border-radius: 16px;
	overflow: hidden;
	animation: none;
}

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

@keyframes floatBottle {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.slide-info {
	text-align: center;
	margin-top: auto;
	padding-bottom: 10px;
}

.slide-name {
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: 500;
	color: var(--color-navy-dark);
	margin-bottom: 6px;
}

.slide-desc {
	font-size: 14px;
	color: var(--color-medium-gray);
	margin-bottom: 20px;
}

.slide-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue-accent) 100%);
	color: white;
	border-radius: 50px;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
}

.slide-btn:hover {
	background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.slide-btn svg {
	transition: transform 0.3s ease;
}

.slide-btn:hover svg {
	transform: translateX(4px);
}

/* Slider navigation */
.slider-nav {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 24px;
}

.slider-arrow {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--color-white);
	border: 2px solid var(--color-light-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: var(--color-navy);
}

.slider-arrow:hover {
	background: var(--color-navy);
	color: white;
	border-color: var(--color-navy);
}

.slider-dots {
	display: flex;
	gap: 10px;
}

.slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(26, 54, 93, 0.25);
	cursor: pointer;
	transition: all 0.3s ease;
}

.slider-dot.active {
	background: var(--color-navy);
	transform: scale(1.3);
}

.slider-dot:hover {
	background: var(--color-navy);
}

.hero-wave {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	line-height: 0;
	z-index: 5;
}

.hero-wave svg {
	width: 100%;
	height: 80px;
}

.section-label {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--color-blue-accent);
	margin-bottom: 12px;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(32px, 4vw, 44px);
	font-weight: 500;
	color: var(--color-navy-dark);
	line-height: 1.2;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.about {
	padding: 100px 0;
	background-color: var(--color-white);
}

.about-content {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 80px;
	align-items: center;
}

.about-text .section-title {
	margin-bottom: 28px;
}

.about-description {
	font-size: 16px;
	line-height: 1.8;
	color: var(--color-medium-gray);
	margin-bottom: 20px;
}

.about-description:last-of-type {
	margin-bottom: 0;
}

.about-stats {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.stat-card {
	background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-white) 100%);
	border: 1px solid var(--color-light-gray);
	border-radius: 16px;
	padding: 32px;
	text-align: center;
	transition: all var(--transition-normal);
}

.stat-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--color-blue-light);
}

.stat-number {
	display: block;
	font-family: var(--font-display);
	font-size: 48px;
	font-weight: 600;
	color: var(--color-navy);
	line-height: 1;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 14px;
	color: var(--color-medium-gray);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* PRODUCTS */
.products {
	padding: 100px 0;
	background: var(--color-off-white);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.product-card {
	background-color: var(--color-white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: all var(--transition-normal);
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.product-image {
	position: relative;
	background: linear-gradient(180deg, #e8f0f5 0%, #dce8ef 100%);
	padding: 40px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 320px;
}

.product-image img {
	max-height: 280px;
	width: auto;
	transition: transform var(--transition-normal);
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

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

.product-info {
	padding: 28px;
	text-align: center;
}

.product-name {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 500;
	color: var(--color-navy-dark);
	margin-bottom: 8px;
}

.product-description {
	font-size: 14px;
	color: var(--color-medium-gray);
	margin-bottom: 12px;
	line-height: 1.6;
}

.product-link {
	display: block;
	margin-top: 12px;
	color: var(--color-blue-accent);
	font-weight: 600;
	font-size: 14px;
	transition: color 0.3s;
}

.product-card:hover .product-link {
	color: var(--color-navy);
}

.product-card {
	cursor: pointer;
}

.product-volume {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--color-blue-accent);
	padding: 6px 14px;
	background-color: var(--color-off-white);
	border-radius: 20px;
}

.contact {
	padding: 100px 0;
	background-color: var(--color-white);
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
}

.contact-info .section-title {
	margin-bottom: 32px;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

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

.contact-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue-accent) 100%);
	border-radius: 12px;
	color: var(--color-white);
	flex-shrink: 0;
}

.contact-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.contact-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--color-medium-gray);
}

.contact-text a {
	font-size: 16px;
	color: var(--color-navy);
	font-weight: 500;
}

.contact-text a:hover {
	color: var(--color-blue-accent);
}

.contact-form-wrapper {
	background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-white) 100%);
	border: 1px solid var(--color-light-gray);
	border-radius: 20px;
	padding: 40px;
}

.contact-form form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

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

.form-group label {
	font-size: 13px;
	font-weight: 600;
	color: var(--color-dark-gray);
}

.form-group input,
.form-group textarea {
	padding: 14px 18px;
	font-family: var(--font-body);
	font-size: 15px;
	border: 1px solid var(--color-light-gray);
	border-radius: 10px;
	background-color: var(--color-white);
	transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--color-blue-accent);
	box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #adb5bd;
}

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

.footer {
	background-color: var(--color-navy-dark);
	color: var(--color-white);
	padding: 60px 0 100px;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text {
	color: var(--color-white);
	font-size: 24px;
	margin-bottom: 8px;
}

.footer-tagline {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

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

.footer-links a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	transition: color var(--transition-fast);
}

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

.footer-bottom {
	padding-top: 24px;
	text-align: center;
}

.footer-bottom p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
}

.bottom-nav {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--color-white);
	border-top: 1px solid var(--color-light-gray);
	z-index: 100;
	padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
}

.bottom-nav a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1;
	padding: 8px;
	color: var(--color-medium-gray);
	transition: color var(--transition-fast);
}

.bottom-nav a svg {
	margin-bottom: 4px;
}

.bottom-nav a span {
	font-size: 11px;
	font-weight: 500;
}

.bottom-nav a.active,
.bottom-nav a:hover {
	color: var(--color-navy);
}



/* PRODUCTS HIGHLIGHT SECTION */
.products-highlight {
	padding: 100px 0;
	background: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-white) 100%);
}

.products-highlight .section-subtitle {
	color: var(--color-medium-gray);
	font-size: 18px;
	margin-top: 12px;
}

.products-highlight-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 50px;
}

.product-highlight-card {
	background: var(--color-white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
	cursor: pointer;
	border: 1px solid var(--color-light-gray);
}

.product-highlight-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
	border-color: var(--color-navy);
}

.product-highlight-image {
	height: 220px;
	background: var(--color-off-white);
	overflow: hidden;
}

.product-highlight-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background-color: #fff;
	transition: transform 0.3s;
}

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

.product-highlight-info {
	padding: 24px;
}

.product-highlight-badge {
	display: inline-block;
	padding: 6px 14px;
	background: var(--color-navy);
	color: var(--color-white);
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.product-highlight-badge.white {
	background: var(--color-blue-light);
	color: var(--color-navy-dark);
}

.product-highlight-info h3 {
	font-family: var(--font-display);
	font-size: 22px;
	color: var(--color-navy-dark);
	margin-bottom: 8px;
}

.product-highlight-info p {
	font-size: 14px;
	color: var(--color-medium-gray);
	line-height: 1.6;
	margin-bottom: 16px;
}

.product-highlight-link {
	color: var(--color-navy);
	font-weight: 600;
	font-size: 14px;
}

.products-highlight-cta {
	text-align: center;
	margin-top: 50px;
}

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

@media (max-width: 768px) {
	.products-highlight-grid {
		grid-template-columns: 1fr;
	}

	.products-highlight {
		padding: 60px 0;
	}
}

/* GALLERY */
.gallery {
	padding: 80px 0;
	background: var(--color-navy-dark);
}

.gallery .section-label {
	color: var(--color-blue-light);
}

.gallery .section-title {
	color: var(--color-white);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.gallery-item {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 3/4;
}

.gallery-item.wide {
	grid-column: span 2;
	aspect-ratio: 16/10;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-item:hover img {
	transform: scale(1.08);
}

/* BROCHURES */
.brochures {
	padding: 100px 0;
	background-color: var(--color-white);
}

.brochures-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	max-width: 800px;
	margin: 0 auto;
}

.brochure-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	cursor: pointer;
	aspect-ratio: 3/4;
	transition: all 0.3s ease;
}

.brochure-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.brochure-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.brochure-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(15, 36, 66, 0.95) 0%, transparent 60%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.brochure-card:hover .brochure-overlay {
	opacity: 1;
}

.brochure-title {
	font-family: var(--font-display);
	font-size: 22px;
	color: white;
	margin-bottom: 6px;
}

.brochure-subtitle {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 14px;
}

.brochure-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: var(--color-white);
	color: var(--color-navy);
	border-radius: 50px;
	font-weight: 600;
	font-size: 13px;
	width: fit-content;
}

/* LIGHTBOX */
.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.95);
	z-index: 1000;
	justify-content: center;
	align-items: center;
	padding: 40px;
}

.lightbox.active {
	display: flex;
}

.lightbox img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
	border-radius: 8px;
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: white;
	transition: background 0.3s;
}

.lightbox-close:hover {
	background: rgba(255, 255, 255, 0.2);
}

.gallery-slider-container {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
}

.gallery-slider {
	position: relative;
	height: 500px;
	border-radius: 16px;
	overflow: hidden;
}

.gallery-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.5s ease;
	cursor: pointer;
}

.gallery-slide.active {
	opacity: 1;
	z-index: 1;
}

.gallery-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.gallery-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s;
	border: none;
	color: var(--color-navy);
}

.gallery-arrow:hover {
	background: white;
	transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
	left: 20px;
}

.gallery-next {
	right: 20px;
}

.gallery-dots {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 24px;
}

.gallery-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.3s;
}

.gallery-dot.active {
	background: white;
	transform: scale(1.3);
}

@media (max-width: 1024px) {
	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 40px;
	}

	.hero-text {
		order: 1;
	}

	.hero-slider {
		order: 2;
	}

	.hero-description {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

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

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

	.contact-wrapper {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}

@media (max-width: 768px) {
	.top-bar-item span {
		display: none;
	}

	.top-bar-contacts {
		flex-direction: row;
		gap: 16px;
	}

	.nav-desktop {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.mobile-menu {
		display: block;
	}

	.hero {
		min-height: auto;
		padding: 60px 0 120px;
	}

	.hero-content {
		padding: 40px 0;
	}

	.slider-container {
		width: 280px;
		height: 420px;
	}

	.slider-frame {
		padding: 24px;
	}

	.slide-image {
		height: 250px;
	}

	.products-grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}

	.about-stats {
		grid-template-columns: 1fr;
	}

	.stat-card {
		padding: 24px;
	}

	.stat-number {
		font-size: 36px;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
		gap: 32px;
	}

	.footer-links {
		flex-wrap: wrap;
		justify-content: center;
		gap: 16px 24px;
	}

	.footer {
		padding-bottom: 120px;
	}

	.bottom-nav {
		display: flex;
	}

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

	.gallery-item.wide {
		grid-column: auto;
		aspect-ratio: 3/4;
	}

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

	.gallery-slider {
		height: 350px;
	}

	.gallery-arrow {
		width: 40px;
		height: 40px;
	}

	.gallery-prev {
		left: 10px;
	}

	.gallery-next {
		right: 10px;
	}


	.section-header {
		margin-bottom: 40px;
	}

	.about,
	.products,
	.contact {
		padding: 60px 0;
	}

	.contact-form-wrapper {
		padding: 28px;
	}
}

@media (max-width: 480px) {
	.hero-subtitle {
		font-size: 12px;
	}

	.hero-title {
		font-size: 28px;
	}

	.hero-description {
		font-size: 16px;
	}

	.slider-container {
		width: 260px;
		height: 380px;
	}

	.slide-image {
		height: 200px;
	}

	.slide-name {
		font-size: 22px;
	}

	.slider-arrow {
		width: 38px;
		height: 38px;
	}

	.product-image {
		min-height: 260px;
		padding: 30px 15px;
	}

	.product-image img {
		max-height: 220px;
	}

	.section-title {
		font-size: 28px;
	}
}

.page-hero {
	padding: 60px 0;
	background: linear-gradient(135deg, #e8f4fc, #d0e8f7);
	text-align: center
}

.page-hero h1 {
	font-family: var(--font-display);
	font-size: 48px;
	color: var(--color-navy-dark);
	margin-bottom: 16px
}

.page-hero p {
	font-size: 18px;
	color: var(--color-medium-gray);
	max-width: 600px;
	margin: 0 auto
}

.footer-social {
	display: flex;
	gap: 16px;
	margin-top: 16px
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: #fff;
	transition: all 0.3s
}

.footer-social a:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-3px)
}

.about-section {
	padding: 80px 0
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center
}

.about-text h2 {
	font-family: var(--font-display);
	font-size: 36px;
	color: var(--color-navy-dark);
	margin-bottom: 24px
}

.about-text p {
	font-size: 16px;
	line-height: 1.8;
	color: var(--color-medium-gray);
	margin-bottom: 16px
}

.about-image {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-xl)
}

.about-image img {
	max-width: 350px;
	height: auto;
	margin: 0 auto
}

.history-section {
	padding: 80px 0;
	background: var(--color-off-white)
}

.history-section>.container>h2 {
	font-family: var(--font-display);
	font-size: 36px;
	color: var(--color-navy-dark);
	text-align: center;
	margin-bottom: 48px
}

.history-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px
}

.history-column {
	background: var(--color-white);
	border-radius: 20px;
	padding: 40px;
	box-shadow: var(--shadow-md)
}

.history-brand {
	font-family: var(--font-display);
	font-size: 28px;
	color: var(--color-navy);
	text-align: center;
	margin-bottom: 32px;
	padding-bottom: 20px;
	border-bottom: 2px solid var(--color-light-gray)
}

.timeline-item {
	display: flex;
	gap: 20px;
	margin-bottom: 28px
}

.timeline-year {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 600;
	color: var(--color-navy);
	min-width: 70px
}

.timeline-content h4 {
	font-size: 16px;
	color: var(--color-navy-dark);
	margin-bottom: 6px
}

.timeline-content p {
	color: var(--color-medium-gray);
	line-height: 1.5;
	font-size: 14px
}

.values-section {
	padding: 80px 0
}

.values-section h2 {
	font-family: var(--font-display);
	font-size: 36px;
	color: var(--color-navy-dark);
	text-align: center;
	margin-bottom: 48px
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px
}

.value-card {
	background: var(--color-off-white);
	border-radius: 20px;
	padding: 40px;
	text-align: center;
	transition: all .3s
}

.value-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg)
}

.value-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, var(--color-navy), var(--color-blue-accent));
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: #fff
}

.value-card h3 {
	font-family: var(--font-display);
	font-size: 24px;
	color: var(--color-navy-dark);
	margin-bottom: 12px
}

.value-card p {
	color: var(--color-medium-gray);
	font-size: 14px;
	line-height: 1.6
}

@media(max-width:1024px) {
	.history-grid {
		grid-template-columns: 1fr
	}
}

@media(max-width:768px) {
	.about-content {
		grid-template-columns: 1fr
	}

	.about-image {
		order: -1
	}

	.values-grid {
		grid-template-columns: 1fr
	}

	.timeline-item {
		flex-direction: column;
		gap: 8px
	}
}


.contact-section {
	padding: 80px 0
}

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

.contact-info h2 {
	font-family: var(--font-display);
	font-size: 36px;
	color: var(--color-navy-dark);
	margin-bottom: 32px
}

.contact-cards {
	display: flex;
	flex-direction: column;
	gap: 24px
}

.contact-card {
	display: flex;
	gap: 20px;
	padding: 24px;
	background: var(--color-off-white);
	border-radius: 16px;
	transition: all .3s
}

.contact-card:hover {
	transform: translateX(8px);
	box-shadow: var(--shadow-md)
}

.contact-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--color-navy), var(--color-blue-accent));
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex-shrink: 0
}

.contact-details h3 {
	font-size: 16px;
	color: var(--color-navy-dark);
	margin-bottom: 4px
}

.contact-details p,
.contact-details a {
	color: var(--color-medium-gray);
	font-size: 15px
}

.contact-details a:hover {
	color: var(--color-navy)
}

.contact-form-section {
	background: #fff;
	border: 1px solid var(--color-light-gray);
	border-radius: 24px;
	padding: 40px
}

.contact-form-section h2 {
	font-family: var(--font-display);
	font-size: 28px;
	color: var(--color-navy-dark);
	margin-bottom: 24px
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px
}

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

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

.form-group label {
	font-size: 14px;
	font-weight: 600;
	color: var(--color-dark-gray)
}

.form-group input,
.form-group textarea,
.form-group select {
	padding: 14px 18px;
	font-family: inherit;
	font-size: 15px;
	border: 1px solid var(--color-light-gray);
	border-radius: 12px;
	transition: all .3s
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--color-blue-accent);
	box-shadow: 0 0 0 3px rgba(66, 153, 225, .15)
}

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

.map-section {
	padding: 0 0 80px
}

.map-container {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	height: 400px;
	background: var(--color-light-gray)
}

.map-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #e8f4fc, #d0e8f7)
}

.map-placeholder p {
	color: var(--color-medium-gray)
}

@media(max-width:768px) {
	.contact-grid {
		grid-template-columns: 1fr
	}

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

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

.products-count {
	font-size: 14px;
	color: var(--color-medium-gray);
	margin-bottom: 24px;
	text-align: center
}

.filter-section {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 32px;
	flex-wrap: wrap
}

.filter-btn {
	padding: 10px 24px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	border: 2px solid var(--color-wine);
	color: var(--color-wine);
	background: var(--color-white);
	cursor: pointer;
	transition: all .3s
}

.filter-btn:hover,
.filter-btn.active {
	color: #fff !important;
	background: var(--color-navy)
}

.filter-btn.white-filter.active,
.filter-btn.white-filter:hover {
	background: var(--color-gold);
	border-color: var(--color-gold)
}

.filter-btn.rose-filter.active,
.filter-btn.rose-filter:hover {
	background: #d4a5a5;
	border-color: #d4a5a5;
	color: #5a1f27
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px
}

.product-card {
	background: var(--color-white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: all .3s;
	cursor: pointer;
	border: 1px solid rgba(114, 47, 55, 0.1)
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.product-image {
	height: 300px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px
}

.product-image img {
	max-height: 260px;
	width: auto;
	object-fit: contain;
	transition: transform .3s
}

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

.product-info {
	padding: 24px
}

.product-name {
	font-family: var(--font-display);
	font-size: 24px;
	margin-bottom: 8px
}

.product-badge {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 12px;
	background-color: var(--color-navy);
	color: #fff
}

.product-badge.white {
	background: var(--color-gold);
	color: #fff
}

.product-badge.rose {
	background: #d4a5a5;
	color: #5a1f27
}

.product-subtitle {
	font-size: 13px;
	color: var(--color-wine);
	margin-bottom: 12px;
	font-weight: 500
}

.product-desc {
	font-size: 14px;
	color: var(--color-medium-gray);
	margin-bottom: 16px;
	line-height: 1.6
}

.product-footer {
	display: flex;
	justify-content: space-between;
	align-items: center
}

.product-volume {
	font-size: 13px;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 20px
}

.product-link {
	font-weight: 600;
	font-size: 14px
}

.info-section {
	padding: 80px 0;
	background: #fdf5f5
}

.info-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center
}

.info-image {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-xl)
}

.info-image img {
	width: 100%;
	height: 350px;
	object-fit: cover
}

.info-text h2 {
	font-family: var(--font-display);
	font-size: 36px;
	color: var(--color-wine-dark);
	margin-bottom: 20px
}

.info-text p {
	color: var(--color-medium-gray);
	margin-bottom: 16px;
	line-height: 1.8
}

.info-text .highlight {
	font-size: 18px;
	color: var(--color-wine);
	font-weight: 500;
	border-left: 3px solid var(--color-gold);
	padding-left: 20px;
	margin: 24px 0
}

.info-section-reverse {
	padding: 80px 0;
	background: #fff
}

.info-section-reverse .info-content {
	grid-template-columns: 1fr 1fr
}

.info-section-reverse .info-image {
	order: 2
}

.info-section-reverse .info-text {
	order: 1
}

.footer-social {
	display: flex;
	gap: 16px;
	margin-top: 16px
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: #fff;
	transition: all 0.3s
}

.footer-social a:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-3px)
}


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

	.info-content {
		grid-template-columns: 1fr
	}
}

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

	.hamburger {
		display: flex
	}

	.mobile-menu {
		display: block
	}

	.page-hero h1 {
		font-size: 36px
	}

	.products-grid {
		grid-template-columns: 1fr
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
		gap: 32px
	}

	.footer-links {
		flex-wrap: wrap;
		justify-content: center
	}

	.top-bar-contacts {
		display: none
	}
}

.product-hero {
	padding: 80px 0;
	background: linear-gradient(180deg, #e8f4fc 0%, #ffffff 100%)
}

.product-hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center
}

.product-image-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative
}

.product-badges {
	position: absolute;
	right: 20px;
	top: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px
}

.product-badges .badge-item {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}

.product-badges .badge-item.gold {
	background: linear-gradient(135deg, #d4af37, #f4e4a6, #d4af37);
	color: #5a4a1a
}

.product-badges .badge-item.silver {
	background: linear-gradient(135deg, #c0c0c0, #e8e8e8, #c0c0c0);
	color: #444
}

.product-badges .badge-item.bronze {
	background: linear-gradient(135deg, #cd7f32, #e8c39e, #cd7f32);
	color: #5a3a1a
}

@media(max-width:768px) {
	.product-badges {
		position: relative;
		right: auto;
		top: auto;
		flex-direction: row;
		justify-content: center;
		margin-top: 20px
	}
}

.product-image-container>img {
	max-height: 500px;
	filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
	animation: floatBottle 4s ease-in-out infinite
}

@keyframes floatBottle {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-15px)
	}
}

.product-info h1 {
	font-family: var(--font-display);
	font-size: 48px;
	font-weight: 500;
	color: var(--color-navy-dark);
	margin-bottom: 8px
}

.product-info h2 {
	font-size: 18px;
	color: var(--color-blue-accent);
	margin-bottom: 24px;
	font-weight: 500
}

.product-info .description {
	font-size: 16px;
	line-height: 1.8;
	color: var(--color-medium-gray);
	margin-bottom: 32px
}

.btn-wine {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	background: linear-gradient(135deg, var(--color-gold), #a88a4a);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	border-radius: 50px;
	transition: all .3s;
	box-shadow: var(--shadow-md)
}

.btn-wine:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg)
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--color-navy);
	font-weight: 500;
	margin-bottom: 24px;
	transition: all .3s
}

.back-link:hover {
	color: var(--color-wine-dark)
}

.back-link:hover svg {
	transform: translateX(-4px)
}

.back-link svg {
	transition: transform .3s
}

.details-section {
	padding: 80px 0;
	background: var(--color-off-white)
}

.details-section h2 {
	font-family: var(--font-display);
	font-size: 36px;
	font-weight: 500;
	color: var(--color-wine-dark);
	text-align: center;
	margin-bottom: 48px
}

.details-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px
}

.detail-card {
	background: var(--color-white);
	border-radius: 16px;
	padding: 24px;
	text-align: center;
	box-shadow: var(--shadow-md);
	transition: all .3s;
	border: 1px solid rgba(201, 169, 98, 0.2)
}

.detail-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--color-gold)
}

.detail-value {
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 600;
	color: var(--color-gold)
}

.detail-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--color-dark-gray);
	margin-top: 8px;
	text-transform: uppercase;
	letter-spacing: 1px
}

.tasting-section {
	padding: 80px 0
}

.tasting-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center
}

.tasting-info h2 {
	font-family: var(--font-display);
	font-size: 36px;
	font-weight: 500;
	color: var(--color-gold);
	margin-bottom: 24px
}

.tasting-list {
	list-style: none
}

.tasting-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--color-light-gray);
	font-size: 15px
}

.tasting-list li strong {
	color: var(--color-gold);
	min-width: 80px
}

.tasting-image {
	background: linear-gradient(135deg, #fdf5f5 0%, #f5e6e8 100%);
	border-radius: 24px;
	padding: 60px;
	display: flex;
	justify-content: center;
	align-items: center
}

.tasting-image img {
	max-height: 350px;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1))
}

.cta-section {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--color-gold) 0%, #a88a4a 100%);
	text-align: center
}

.cta-section h2 {
	font-family: var(--font-display);
	font-size: 36px;
	color: #fff;
	margin-bottom: 16px
}

.cta-section p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 32px
}

.cta-section .btn-primary {
	background: #fff;
	color: var(--color-wine-dark)
}

.cta-section .btn-primary:hover {
	background: var(--color-off-white)
}

.footer-social {
	display: flex;
	gap: 16px;
	margin-top: 16px
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: #fff;
	transition: all 0.3s
}

.footer-social a:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-3px)
}


@media(max-width:1024px) {
	.product-hero-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 40px
	}

	.product-image-container {
		order: -1
	}

	.back-link {
		justify-content: center
	}

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

	.tasting-content {
		grid-template-columns: 1fr
	}
}

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

	.hamburger {
		display: flex
	}

	.mobile-menu {
		display: block
	}

	.product-hero {
		padding: 40px 0
	}

	.product-info h1 {
		font-size: 36px
	}

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

	.detail-card {
		padding: 16px
	}

	.detail-value {
		font-size: 24px
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
		gap: 32px
	}

	.footer-links {
		flex-wrap: wrap;
		justify-content: center
	}

	.top-bar-contacts {
		display: none
	}
}

.form-group span {
	display: block;
	width: 100%;
}

.form-group input,
.form-group textarea {
	width: 100%;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100% !important;
}

form .btn-primary {
	width: 100% !important;
}

iframe {
	width: 100% !important;
}

.minerals-section {
	padding: 80px 0;
	background: var(--color-off-white);
}

.minerals-section .section-title {
	font-family: var(--font-display);
	font-size: 36px;
	font-weight: 500;
	color: var(--color-navy-dark);
	text-align: center;
	margin-bottom: 48px;
}

.minerals-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.mineral-card {
	background: var(--color-white);
	border-radius: 16px;
	padding: 24px;
	text-align: center;
	box-shadow: var(--shadow-md);
	transition: all 0.3s;
}

.mineral-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.mineral-value {
	font-family: var(--font-display);
	font-size: 32px;
	font-weight: 600;
	color: var(--color-navy);
}

.mineral-unit {
	font-size: 14px;
	color: var(--color-medium-gray);
}

.mineral-name {
	font-size: 14px;
	font-weight: 600;
	color: var(--color-dark-gray);
	margin-top: 8px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.packaging-section {
	padding: 80px 0;
}

.packaging-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.packaging-info h2 {
	font-family: var(--font-display);
	font-size: 36px;
	font-weight: 500;
	color: var(--color-navy-dark);
	margin-bottom: 24px;
}

.packaging-info p {
	font-size: 16px;
	line-height: 1.8;
	color: var(--color-medium-gray);
	margin-bottom: 16px;
}

.packaging-details {
	list-style: none;
}

.packaging-details li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--color-light-gray);
	font-size: 15px;
}

.packaging-details li svg {
	color: var(--color-blue-accent);
	flex-shrink: 0;
}

.packaging-image {
	background: linear-gradient(135deg, #e8f4fc 0%, #d0e8f7 100%);
	border-radius: 24px;
	padding: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.packaging-image img {
	max-height: 350px;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.cta-section {
	padding: 80px 0;
	background: var(--color-navy-dark);
	text-align: center;
}

.cta-section h2 {
	font-family: var(--font-display);
	font-size: 36px;
	color: var(--color-white);
	margin-bottom: 16px;
}

.cta-section p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 32px;
}

.cta-section .nav-dropdown {
	position: relative
}

.nav-dropdown>.nav-link {
	display: flex;
	align-items: center;
	gap: 4px;
	cursor: pointer
}

.nav-dropdown>.nav-link svg {
	width: 12px;
	height: 12px;
	transition: transform .3s
}

.nav-dropdown:hover>.nav-link svg {
	transform: rotate(180deg)
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 180px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all .3s;
	padding: 8px 0;
	margin-top: 8px
}

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

.dropdown-item {
	display: block;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	color: #343a40;
	transition: all .2s
}

.dropdown-item:hover {
	background: #f8f9fa;
	color: #1a365d
}

.btn-primary {
	background: var(--color-white);
	color: var(--color-navy);
}

.cta-section .btn-primary:hover {
	background: var(--color-off-white);
}

.filters-section {
	padding: 40px 0;
	background: var(--color-off-white);
	border-bottom: 1px solid var(--color-light-gray)
}

.filters-container {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center
}

.filter-btn {
	padding: 12px 24px;
	background: #fff;
	border: 2px solid var(--color-light-gray);
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-dark-gray);
	transition: all .3s;
	cursor: pointer
}

.filter-btn.active {
	background: var(--color-navy);
	border-color: var(--color-navy);
	color: #fff
}

body.vini-page .cta-section {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--color-wine) 0%, var(--color-wine-dark) 100%);
	text-align: center;
}

body.vini-page .footer {
	background: var(--color-wine-dark);
	color: #fff;
	padding: 60px 0 30px;
}

body.vini-page .packaging-image {
	background: linear-gradient(135deg, #fdf5f5 0%, #f5e6e8 100%);
}

body.vini-page .product-hero {
	background: linear-gradient(180deg, #fdf5f5 0%, #fff 100%);
}

body.vini-page .tasting-list li strong {
	color: var(--color-wine);
	min-width: 80px;
}

body.vini-page .description h2 {
	color: var(--color-wine);
}

body.vini-page .minerals-section .section-title {
	color: var(--color-wine-dark);
}

body.vini-page .mineral-value {
	color: var(--color-wine);
}

body.vini-page .page-hero {
	background: linear-gradient(135deg, var(--color-wine) 0%, var(--color-wine-dark) 100%);
}

body.vini-page .page-hero h1,
body.vini-page .page-hero p {
	color: #fff;
}

body.vini-page .filter-btn:hover,
body.vini-page .filter-btn.active {
	background: var(--color-wine);
	color: #fff;
	border-color: var(--color-wine);
}

body.vini-page .products-section {
	background: linear-gradient(180deg, #fdf5f5 0%, #fff 100%)
}

body.vini-page .product-image {
	background: #fdf5f5;
}

body.vini-page .product-badge {
	background: var(--color-wine);
}

body.vini-page .product-name {
	color: var(--color-wine-dark);
}

body.vini-page .product-link {
	color: var(--color-wine);
}

body.vini-page .product-volume {
	color: var(--color-wine);
	background: #fdf5f5;
}

body.vini-page .back-link,
body.vini-page .product-info h2 {
	color: var(--color-wine);
}

body.vini-page .product-info h1 {
	color: var(--color-wine-dark);
}

body.vini-page .tasting-info h2 {
	color: var(--color-wine-dark);
}

.btn-wine {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	background: linear-gradient(135deg, var(--color-wine), var(--color-wine-dark));
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	border-radius: 50px;
	transition: all .3s;
	box-shadow: var(--shadow-md);
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	background: linear-gradient(135deg, var(--color-navy), #2c5282);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	border-radius: 50px;
	transition: all .3s;
	box-shadow: var(--shadow-md);
}

.single-desc-badges {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.product-badges {
	position: relative;
	left: unset;
	top: unset;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.product-badges .badge-item {
	border-radius: 0;
	width: 170px;
	height: 170px;
	box-shadow: unset;
}

.product-badges .badge-item img {
	object-fit: contain;
}


@media(max-width:1024px) {
	.product-hero-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 40px
	}

	.product-image-container {
		order: -1
	}

	.back-link {
		justify-content: center
	}

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

	.tasting-content {
		grid-template-columns: 1fr
	}
}

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

	.hamburger {
		display: flex
	}

	.mobile-menu {
		display: block
	}

	.product-hero {
		padding: 40px 0
	}

	.product-info h1 {
		font-size: 36px
	}

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

	.detail-card {
		padding: 16px
	}

	.detail-value {
		font-size: 24px
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
		gap: 32px
	}

	.footer-links {
		flex-wrap: wrap;
		justify-content: center
	}

	.top-bar-contacts {
		display: none
	}
}

@media (max-width: 1024px) {
	.product-hero-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 40px;
	}

	.product-image-container {
		order: -1;
	}

	.product-info .back-link {
		justify-content: center;
	}

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

	.packaging-content {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.minerals-grid {
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}

	.mineral-card {
		padding: 16px;
	}

	.mineral-value {
		font-size: 24px;
	}
}


body.vini-page-white .cta-section {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--color-gold) 0%, #a88a4a 100%);
	text-align: center;
}

body.vini-page-white .footer {
	background: var(--color-wine-dark);
	color: #fff;
	padding: 60px 0 30px;
}

body.vini-page-white .packaging-image {
	background: linear-gradient(135deg, #fdf5f5 0%, #f5e6e8 100%);
}

body.vini-page-white .product-hero {
	background: linear-gradient(180deg, #fdf5f5 0%, #fff 100%);
}

body.vini-page-white .tasting-list li strong {
	color: var(--color-gold);
	min-width: 80px;
}

body.vini-page-white .description h2 {
	color: var(--color-wine);
}

body.vini-page-white .minerals-section .section-title {
	color: var(--color-gold);
}

body.vini-page-white .mineral-value {
	color: var(--color-gold);
}

body.vini-page-white .page-hero {
	background: linear-gradient(135deg, var(--color-wine) 0%, var(--color-wine-dark) 100%);
}

body.vini-page-white .page-hero h1,
body.vini-page-white .page-hero p {
	color: #fff;
}

body.vini-page-white .filter-btn:hover,
body.vini-page-white .filter-btn.active {
	background: var(--color-wine);
	color: #fff;
	border-color: var(--color-wine);
}

body.vini-page-white .products-section {
	background: linear-gradient(180deg, #fdf5f5 0%, #fff 100%)
}

body.vini-page-white .product-image {
	background: #fdf5f5;
}

body.vini-page-white .product-badge {
	background: var(--color-wine);
}

body.vini-page-white .product-name {
	color: var(--color-wine-dark);
}

body.vini-page-white .product-link {
	color: var(--color-wine);
}

body.vini-page-white .product-volume {
	color: var(--color-wine);
	background: #fdf5f5;
}

body.vini-page-white .back-link,
body.vini-page-white .product-info h2 {
	color: var(--color-gold);
}

body.vini-page-white .product-info h1 {
	color: var(--color-wine-dark);
}

body.vini-page-white .product-info .btn-primary {
	background: linear-gradient(135deg, var(--color-gold), #a88a4a);
	color: #fff;
}

body.vini-page-white .tasting-info h2 {
	color: var(--color-gold);
}

body.vini-page .product-info .btn-primary {
	background: linear-gradient(135deg, var(--color-wine), var(--color-wine-dark));
	color: #fff;
}

/* Rose wine */

body.vini-page-rose .cta-section {
	padding: 80px 0;
	background: var(--color-wine-rose);
	text-align: center;
}

body.vini-page-rose .footer {
	background: var(--color-wine-dark);
	color: #fff;
	padding: 60px 0 30px;
}

body.vini-page-rose .packaging-image {
	background: linear-gradient(135deg, #fdf5f5 0%, #f5e6e8 100%);
}

body.vini-page-rose .product-hero {
	background: linear-gradient(180deg, #fdf5f5 0%, #fff 100%);
}

body.vini-page-rose .tasting-list li strong {
	color: var(--color-wine-rose);
	min-width: 80px;
}

body.vini-page-rose .description h2 {
	color: var(--color-wine);
}

body.vini-page-rose .minerals-section .section-title {
	color: var(--color-wine-rose);
}

body.vini-page-rose .mineral-value {
	color: var(--color-wine-rose);
}

body.vini-page-rose .page-hero {
	background: linear-gradient(135deg, var(--color-wine) 0%, var(--color-wine-dark) 100%);
}

body.vini-page-rose .page-hero h1,
body.vini-page-rose .page-hero p {
	color: #fff;
}

body.vini-page-rose .filter-btn:hover,
body.vini-page-rose .filter-btn.active {
	background: var(--color-wine);
	color: #fff;
	border-color: var(--color-wine);
}

body.vini-page-rose .products-section {
	background: linear-gradient(180deg, #fdf5f5 0%, #fff 100%)
}

body.vini-page-rose .product-image {
	background: #fdf5f5;
}

body.vini-page-rose .product-badge {
	background: var(--color-wine);
}

body.vini-page-rose .product-name {
	color: var(--color-wine-dark);
}

body.vini-page-rose .product-link {
	color: var(--color-wine);
}

body.vini-page-rose .product-volume {
	color: var(--color-wine);
	background: #fdf5f5;
}

body.vini-page-rose .back-link,
body.vini-page-rose .product-info h2 {
	color: var(--color-wine-rose);
}

body.vini-page-rose .product-info h1 {
	color: var(--color-wine-dark);
}

body.vini-page-rose .product-info .btn-primary {
	background: var(--color-wine-rose);
	color: #fff;
}

body.vini-page-rose .tasting-info h2 {
	color: var(--color-wine-rose);
}

body.vini-page-role .cta-section .btn-primary {
	color: var(--color-wine-rose);
}

body.vini-page-rose .products-count {
	color: var(--color-wine);
}

body.vini-page-rose .product-card:hover {
	border-color: var(--color-wine)
}

.filter-btn-20:hover,
.filter-btn-44:hover,
.filter-btn-57:hover {
	background-color: #c9a962 !important;
	border: 2px solid #c9a962 !important;
}

.filter-btn-22:hover,
.filter-btn-46:hover,
.filter-btn-59:hover {
	background-color: #D4A5A5 !important;
	border: 2px solid #D4A5A5 !important;
}

.filter-btn-18:hover,
.filter-btn-red-wine:hover,
.filter-btn-48:hover {
	background-color: #722F37 !important;
	border: 2px solid #722F37 !important;
}

.page-hero {
	position: relative;
}

.page-hero .back {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0.15;
	width: 100%;
	height: 100%;
}

.page-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-hero .container {
	position: relative;
	z-index: 2;
}