/* Global Resets and Box Sizing */
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Base Body Styles - Monochrome Accent Theme */
body {
    /* Рекомендуется подключить шрифт Jost */
	font-family: "Jost", "Helvetica Neue", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #111111;
	background-color: #FFFFFF;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Layout Containers - структура сохранена из оригинала */
.out {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
}

.inner {
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
	max-width: 1024px;
	width: 100%;
	box-sizing: border-box;
	position: relative;
}

section {
	position: relative;
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
}

/* Header */
.header {
	padding: 20px 0;
	background: #FFFFFF;
	border-bottom: 2px solid #111111;
	position: sticky;
	top: 0;
	z-index: 100;
}

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

.header .logo {
	text-decoration: none;
	font-size: 26px;
	font-weight: 700;
	color: #111111;
}

.header nav a {
	color: #111111;
	padding: 8px 16px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 0;
	transition: all 0.2s ease;
}

.header nav a:hover {
	color: #FFFFFF;
	background-color: #111111;
}

/* Footer (использует стили .header) */
.header.footer {
	background-color: #111111;
	border-top: 2px solid #111111;
	border-bottom: none;
}

.header.footer .logo {
	color: #FFFFFF;
}

.header.footer nav a {
	color: #CCCCCC;
}

.header.footer nav a:hover {
	color: #111111;
	background-color: #FFFFFF;
}

/* Main Content Area - структура Flex сохранена */
.main {
	padding: 64px 0 0;
	background: #FFFFFF;
}

.main .inner {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

/* Стилизация дочерних div в .main .inner */
.main .inner > div {
	width: 50%;
}

/* Contacts Section - структура сохранена */
.contacts {
	padding: 64px 0 80px;
}

.contacts .inner {
	flex-direction: column;
}

.contacts .text {
	margin-bottom: 24px;
}

.contacts .inner > div {
	width: 100%;
}

.contacts iframe {
	width: 100%;
	border: 2px solid #111111;
	filter: grayscale(1);
}

/* Typography in Main */
.main h1, .main h2 {
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
}

.main h1 {
	font-size: 48px;
	margin-bottom: 16px;
}

.main p {
	font-size: 17px;
	margin-bottom: 24px;
	color: #333333;
}
.main p b {
	font-weight: 700;
	color: #111111;
}
.main h2 {
	font-size: 34px;
	margin-bottom: 16px;
}
.main ul {
    list-style: none;
}
.main li {
	font-size: 17px;
	margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
}
.main li:last-child {
	margin-bottom: 0;
}
.main li b {
	font-weight: 700;
}

.main li::before {
    content: " ";
    position: absolute;
    left: 0;
    top: 50%;
	transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #FFD60A; /* Яркий желтый акцент */
}


/* Product Image Styling */
.main .prod {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.main .prod img {
	max-width: 400px;
	width: 100%;
	padding: 0 20px;
    border-radius: 0;
	border: 2px solid #111111;
	filter: grayscale(1);
	transition: filter 0.3s ease;
}
.main .prod img:hover {
	filter: grayscale(0);
}

/* Order Section */
.order {
	background: #FFD60A;
	padding: 48px 0 64px;
}

.order .inner {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.order h2 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 16px;
	color: #111111;
}

.order b {
	font-size: 72px;
	font-weight: 700;
	margin-bottom: 24px;
	color: #111111;
}

/* Кнопки */
.order a, .popup .wrapper form .form_btn {
	background-color: #111111;
	font-size: 18px;
	border-radius: 0;
	padding: 16px 40px;
	color: #FFFFFF;
	text-decoration: none;
	cursor: pointer;
    border: 2px solid #111111;
    font-weight: 600;
    transition: all 0.3s ease;
}

.order a:hover, .popup .wrapper form .form_btn:hover {
    background-color: #FFFFFF;
	color: #111111;
}

/* Popup Modal - структура сохранена, изменены только цвета и тени */
.popup {
	display: none;
	background-color: rgba(0, 0, 0, .7);
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 11;
}

.popup .inner {
	max-width: 560px;
	width: 100%;
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
}

.popup .wrapper {
	width: 100%;
	margin: 0 auto;
	background: #FFFFFF;
	padding: 40px 30px;
	position: relative;
    border-radius: 0;
    border: 2px solid #111111;
}
.popup .wrapper .close {
	position: absolute;
	right: 15px;
	top: 15px;
	width: 22px;
	height: 22px;
	cursor: pointer;
	opacity: 0.8;
	transition: opacity 0.2s ease;
}
.popup .wrapper .close:hover {
	opacity: 1;
}

.popup .wrapper .close:before,
.popup .wrapper .close:after {
	content: "";
	position: absolute;
	right: 50%;
	top: 50%;
	width: 2px;
	height: 21px;
	background-color: #111111;
}

.popup .wrapper .close:before { transform: translate(0, -50%) rotate(135deg); }
.popup .wrapper .close:after { transform: translate(0, -50%) rotate(45deg); }

.popup .wrapper h2 {
	font-size: 32px;
	color: #111111;
	text-align: center;
	margin: 10px auto 24px;
	font-weight: 700;
}

.popup .wrapper form {
	max-width: 400px;
	width: 100%;
	margin: 0 auto;
}

.popup .wrapper form label {
	display: inline-block;
	color: #666666;
	width: 100%;
	margin-bottom: 4px;
	font-size: 14px;
	font-weight: 600;
}

.popup .wrapper form .email, .popup .wrapper form .name, .popup .wrapper form .phone {
	color: #111111;
	width: 100%;
	border: 2px solid #111111;
    background-color: #FFFFFF;
	padding: 0 16px;
	height: 48px;
	margin-bottom: 16px;
    border-radius: 0;
    transition: all 0.2s ease;
}

.popup .wrapper form .email:focus, .popup .wrapper form .name:focus, .popup .wrapper form .phone:focus {
    background-color: #FFFDEB;
    outline: none;
}


.popup .wrapper form .form_btn {
	width: 100%;
	height: 48px;
	cursor: pointer;
	margin-top: 20px;
	background-color: #FFD60A;
	color: #111111;
	border-color: #111111;
}
.popup .wrapper form .form_btn:hover {
	background-color: #111111;
	color: #FFFFFF;
}

.popup .wrapper .success {
	display: none;
	background: #FFFDEB;
	border: 2px solid #111111;
	width: 100%;
	text-align: center;
	color: #111111;
	font-weight: 600;
	padding: 20px 0px;
	border-radius: 0;
}

.popup .wrapper .active+.success { display: block; }

.active { display: none; }

/* Disclaimers and Banners - структура сохранена */
.discl {
	font-size: 16px;
	line-height: 1.2;
	margin: 10px 0;
	padding: 15px 0;
	text-align: center;
	background-color: #EEEEEE;
	color: #333333;
}

.discl p { padding: 0; margin: 0; }
.discl span { cursor: pointer; text-decoration: underline; }

.discl-footer {
	width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center;
}
.discl-footer .note { font-size: 16px; width: 100%; padding: 10px 0; background: rgb(238, 238, 238); color: rgb(102, 102, 102); }
.discl-footer .cellar { width: 100%; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; background: #000; font-size: 16px; line-height: 1.2; color: #fff; padding: 20px 0; text-align: center; }
.discl-footer p { margin: 0 2px; padding: 0; text-align: center; }
.discl-footer a { color: inherit; cursor: pointer; text-decoration: underline; margin: 0 2px; padding: 0; }

@media (max-width:540px) {
	.discl-footer .cellar { flex-direction: column; align-items: center; }
}

/* Cookie Notice - структура сохранена, изменены только цвета */
.cookie-notice {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 10px;
	background-color: #111111;
	color: #FFFFFF;
	border-top: 2px solid #FFD60A;
	font-family: Arial;
	font-size: 12px;
	line-height: 1;
	text-align: center;
	opacity: 0;
	transition: transform 0.5s ease, opacity 0.5s ease;
	transform: translateY(100%);
	transition-delay: 2s;
}

.cookie-notice span { cursor: pointer; text-decoration: underline; }
.cookie-notice .btn {
	width: 72px;
	border: 1px solid #FFFFFF;
	padding: 4px 0;
	border-radius: 0;
	text-align: center;
	cursor: pointer;
	color: #FFFFFF;
	font-size: 12px;
	transition: 0.3s all;
	margin-left: 30px;
	background: transparent;
}
.cookie-notice .btn:hover {
	background-color: #FFFFFF;
	color: #111111;
}

.cookie-active {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}
.cookie-active a { color: inherit; }

/* Responsive - структура сохранена из оригинала */
@media (max-width:700px) {
	.header { padding: 15px 0; }
	.header .logo { font-size: 22px; }
	.main { padding: 32px 0; }
	.main .inner { flex-direction: column-reverse; align-items: center; gap: 0; }
	.main .inner div { width: 100%; }
	.main .prod { margin: 24px 0; }

    /* Burger Menu - структура и стили из оригинала */
	.burger { display: block; width: 21px; height: 20px; cursor: pointer; position: absolute; top: 50%; transform: translateY(-50%); right: 15px; z-index: 1020; }
	.navigation nav a { font-size: 18px; color: #fff; margin: 0; }
	.navigation .burger-line { position: absolute; top: 0; width: 21px; height: 2px; background-color: #111111; transition: .5s all; left: 0; }
	.navigation .second, .navigation .third { margin-top: 9px; }
	.navigation .fourth { margin-top: 18px; }
	.navigation.open { top: 0; bottom: 0; }
	.navigation.open .inner { height: 100%; align-items: flex-start; }
	.navigation.open .nav-wrap { transition: none; transform: translateX(0%); overflow: auto; }
	.navigation.open .first { display: none; }
	.navigation.open .second { transform: rotate(45deg); background-color: #fff; }
	.navigation.open .third { transform: rotate(-45deg); background-color: #fff; }
	.navigation.open .fourth { display: none; }
	.navigation .nav-wrap { background-color: rgba(17, 17, 17, .9); backdrop-filter: blur(5px); max-width: 180px; display: flex; flex-direction: column; position: fixed; width: 100%; top: 0; right: 0; transform: translateX(100%); max-height: none; font-size: 0; overflow: hidden; transition: .5s all; z-index: 1019; padding: 12px 0 10px; }
	.navigation nav { max-width: 180px; display: flex; flex-direction: column; align-items: flex-start; }
	.navigation-top { width: 100%; padding: 8px 0; }
	.navigation.open .navigation-top { padding: 20px 0; }
}

/* Consent Popup - структура сохранена, изменены только цвета */
#consent-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #111111;
	border-top: 2px solid #FFD60A;
    color: #FFFFFF;
    padding: 20px;
    text-align: center;
    display: none;
    flex-direction: column;
    z-index: 1050; /* Самый высокий z-index */
}
#consent-message { max-width: 90%; margin: 0 auto; font-size: 0.9rem; line-height: 1.5; }
#consent-message a { color: #FFD60A; text-decoration: none; }
#consent-message a:hover { text-decoration: underline; }
.consent-buttons { margin-top: 20px; display: flex; flex-wrap: wrap; justify-content: center; }
.consent-button {
    background-color: #FFD60A;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    color: #111111;
    cursor: pointer;
    flex: 1;
    max-width: 150px;
    font-size: 0.9rem;
	border-radius: 0;
	font-weight: 600;
}
.consent-button:hover { background-color: #ffca00; }
#additional-settings { display: none; text-align: left; margin-top: 10px; max-width: 300px; margin: 0 auto; }
.switch { display: flex; justify-content: space-between; align-items: center; margin: 10px 0; }
.switch input[type="checkbox"] { width: 20px; height: 20px; }
.switch span { flex-grow: 1; margin-right: 10px; }
@media (max-width: 480px) {
	.consent-button { padding: 10px; margin: 3px; }
	#consent-message { font-size: 0.8rem; }
}
