/**/
:root{
	--bg-clr: #fff;
}
*{box-sizing: border-box; margin: 0;}
body{
	display: flex;
}
header{
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.body-wr{
	width: 900px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}
.main-img{
	width: 100%;
	height: 400px;
	overflow: hidden;
	position: relative;
}
.main-img img{
	position: absolute;
	width: 100%;
	top: -50%;
	left: 0;
}
.nav{
	width: 100%;
	background: #ccc;
	display: flex;
}
.nav ul{
	display: flex;
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav ul li{
	margin: 0;
	padding: 0;
	display: flex;
}
.nav ul li a{
	text-decoration: none;
	color: #000;
	font-weight: 500;
	padding: 10px 30px;
}
.nav ul li a:hover{
	background: #aea8a8;
}
.b-b-img{
	width: 100%;
	padding: 10px;
}
.b-b-img img{
	width: 100%;
	border-radius: 8px;
}
footer{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	background: #ccc;
}
.copyright{
	width: 100%;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 10px;
}
.btn{
	width: 100%;
	display: flex;
	margin-bottom: 20px;
	margin-top: 20px;
}
.btn a{
	margin: 0 auto;
	border: 3px solid #ffc93e;
	border-radius: 12px;
	padding: 10px 35px;
	color: #000;
	text-decoration: none;
}

/*--- text ---*/
h1, h2, p, li, a{
	margin-bottom: 10px;
	letter-spacing: 1.15px;
	font-family: Roboto, sans-serif;
}
p, li, a{
	line-height: 1.2;
	letter-spacing: 1.3px;
}

@media screen and (max-width: 1024px){
	h1{
		font-size: 22px;
	}
	h2{
		font-size: 20px;
	}
	.b-body{
		padding: 0px 5px;
	}
	.main-img{
		height: inherit;
	}
	.main-img img{
		position: relative;
		top: 0;
	}
} /* ← Закрой медиа-запрос */

/* Cookie Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    z-index: 99999;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.3);
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

#cookie-banner.hidden {
    transform: translateY(100%);
}

#cookie-banner p {
    margin: 0;
    font-size: 14px;
    flex: 1;
    margin-right: 20px;
}

#cookie-banner button {
    background: #ffc93e;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: background 0.2s ease;
    white-space: nowrap;
}

#cookie-banner button:hover {
    background: #ffb91a;
}

@media (max-width: 768px) {
    #cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    #cookie-banner p {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    #cookie-banner button {
        width: 100%;
        max-width: 200px;
    }
}