@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu72xKOzY.woff2') format('woff2');
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #424242;
    background-color: #fff;
}

.container {
    max-width: 1210px;
    margin: 0 auto;
    padding: 0 15px;
}

#registrationForm .mb-4:nth-child(2) {
	display: none !important;
}

.slogan {
	font-size: 0.8em;
	line-height: 1.3em;
	letter-spacing: 0.05em;
	color: #828282;
	text-align: left;
}

.logo {
	max-width: 148px;
	flex-shrink: 0;
	position: relative;
}

.logo img {
	max-width: 100%;
	max-height: 100%;
}

.logo > a {
	display: flex;
	align-items: center;
	height: 56px;
	line-height: 0;
}

.title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
	color: #424242;
}

.card {
	background-color: #d2eb98;
	border-radius: 0.125rem;
	padding: 1.25rem;
	text-align: center;
	min-height: 150px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	font-size: 20px;
	color: (oklch(0.49 0.15 133.74));
}

.card:hover {
	background-color: #c7e87c;
}

.card-delivery {
	background-color: #fff195;
}

.card-delivery:hover {
	background-color: #fdec7e;
}

.dark-green {
	color: oklch(0.49 0.15 133.74);
	font-weight: 500;
}

/* Custom details/summary styling for + and - symbols */
details summary {
    list-style: none;
    position: relative;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::before {
    content: "+";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: bold;
    color: #000;
    transition: transform 0.2s ease;
}

details[open] summary::before {
    content: "-";
    transform: translateY(-50%);
}

.btn {
	min-width: 113px;
	max-width: 320px;
	padding: 12px 40px;
	min-height: 48px;
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	background-color: #8cba25;
	border: none;
	border-radius: 50px;
	text-align: center;
	box-sizing: border-box;
	transition: all .2s ease;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn:hover {
    background-color: #9fca33;
}

.btn-telegram {
	background-color: #2AABEE;
	padding: 5px 10px;
	min-height: 48px;
	max-width: 280px;
	width: 100%;
	gap: 10px;
}

.btn-telegram:hover {
	background-color: #00aaff;
}

.btn-telegram svg {
	max-height: 30px;
	max-width: 30px;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
	padding: 10px 10px;
	font-size: 14px;
	background-color: #f5f5f5;
	border: 1px solid #e7e7e7;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
    min-width: 400px;
}

input[type="checkbox"] {
	display: none;
}

input[type="checkbox"] + label {
	position: relative;
	padding-left: 26px;
	line-height: 1.25em;
	user-select: none;
}

input[type="checkbox"] + label::before {
	content: '';
	position: absolute;
	top: 1px;
	left: 0;
	display: block;
	width: 16px;
	height: 16px;
	background-color: #e7e7e7;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 11px;
	border-radius: 4px;
	cursor: pointer;
	box-sizing: border-box;
}

input[type="checkbox"]:checked + label::before {
	background-image: url('https://baryton.com.ua/local/templates/magnet/img/icons/check.svg');
	background-color: #8cba25;
}

label a {
    color: #8cba25;
    text-decoration: underline;
}

.faq-question {
	cursor: pointer;
	padding: 15px;
	background: #fff;
	position: relative;
	font-weight: 400;
	font-size: 18px;
    text-align: left;
	margin-bottom: 0;
}

.faq-answer {
	padding: 15px;
	font-size: 14px;
	background: #fff;
	border-top: 1px solid #eee;
}

.bg-image {
    background-image: url('../img/bg_pc.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 500px;
}

.bg-blur {
	backdrop-filter: blur(15px);
	background-color: rgba(255, 255, 255, 0.3);
	padding: 30px;
	color: #222;
}

.slogan-mobile {
	display: none;
}


/* Custom Swiper pagination styles */
.swiper-pagination-bullet {
    background-color: #9ca3af;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background-color: #6b7280;
    opacity: 1;
}

.swiper-pagination {
	margin-bottom: -13px;
	margin-top: 0;
}

@media (max-width: 768px) {
	.logo {
		margin: 0 auto;
		max-width: 110px;
	}
	.slogan {
		display: none;
	}
	.slogan-mobile {
		display: block;
		position: absolute;
		text-align: center;
		font-size: 12px;
		width: 170px;
		bottom: -3px;
		left: -30px;
	}
    .container {
        padding: 0 15px;
        font-size: 15px;
    }
    
    .title {
        font-size: 1.35rem;
    }
    
    .btn {
        min-width: 100px;
        padding: 8px 20px;
		font-size: 15px;
    }
    
    input[type="text"],
    input[type="tel"],
    input[type="email"] {
        min-width: 100%;
    }
	.bg-image {
    	background-image: url('../img/bg_mobile.webp');
	}
	.card {
		min-height: 100px;
		margin: 0 30px;
	}
}

@media (max-width: 500px) {
	.btn {
		width: 100%;
		max-width: 100%;
	}
}