/*
Theme Name: Okonnyyverdict
Theme URI: http://example.com
Description: Базовая тема для WordPress
Version: 1.0
Author: Your Name
Text Domain: mytheme
*/

/* Базовые сбросы стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f4f4f4;
}

section {
	padding: 90px 0;
}

/* Контейнер */
.container {
    max-width: 1440px;
 	width: 100%;
	margin-right: auto;
	margin-left: auto;
    padding: 0 15px;
}

.pum-container .pum-content>:last-child {
	margin-top: 30px;
}

/* Шапка */
.landing-header {
    background: #1C1C1C;
    padding: 13px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    font-family: Arial, sans-serif;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.logo img {
    object-fit: cover;
    width: 70xp;
    height: 70px;
}

.site-title {
	max-width: 150px;
	line-height: 1;
}

.site-title .main-title {
    font-size: 12px;
    font-weight: bold;
    color: #FFF;
    line-height: .3;
}

.main-navigation {
    flex: 2;
    display: flex;
    justify-content: center;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.menu-link {
    text-decoration: none;
    color: #FFF;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.menu-link:hover {
    color: #1E7A3C;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1E7A3C;
    transition: width 0.3s ease;
}

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

.menu-link.active {
    color: #1E7A3C;
}

.menu-link.active::after {
    width: 100%;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-2px) rotate(-45deg);
}
.sub-menu {
    position: absolute;
    top: 120%; 
    left: 0;
    min-width: 200px;
    background-color: #1C1C1C;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
	padding: 0 25px;
}

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

.sub-menu {
    transform: translateY(10px);
}

.sub-menu ul {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.sub-menu li {
    display: block;
}

.sub-menu li a {
    display: block;
    padding: 8px 20px;
    color: #FFF;
    text-decoration: none;
}
.menu-item-has-children {
	position: relative;
}

@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        gap: 0;
    }
    
    .sub-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none; 
    }
    
    .menu li:hover .sub-menu {
        display: block;
    }
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

.phone-section {
    display: flex;
    gap: 15px;
}

.phone-main {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-link {
    font-size: 16px;
    font-weight: bold;
    color: #FFF;
    text-decoration: none;
    white-space: nowrap;
}

.phone-link:hover {
    color: #1E7A3C;
}

.messengers {
    display: flex;
    align-items: center;
	justify-content: center;
    gap: 8px;
}

.messenger-icons {
    display: flex;
    gap: 6px;
}

.messenger {
    transition: all 0.3s ease;
}

.messenger:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cta-button {
    background-color: #1E7A3C;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: rgba(30, 122, 60, 0.4) 0px 5px 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFF;
    transition: 0.3s;
}

/* ----------------------------------------------------------Баннер */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px; /* Высота шапки */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #090a0a 0%, rgba(31, 32, 32, 0.5) 69.81%, rgba(138, 140, 142, 0.1) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    height: 100%;
}

.hero-text {
    max-width: 600px;
    color: white;
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.2em;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInLeft 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInLeft 1s ease-out 0.4s both;
}

.hero-btn {
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 220px;
}

.primary-btn {
    background-color: #1E7A3C;
    color: white;
    box-shadow: 0 5px 20px rgba(30, 122, 60, 0.4);
	display: flex;
	gap: 20px;
	align-items: center;
}
.primary-btn .btn-arrow {
	background-color: rgb(255 255 255 / 10%);
	border-radius: 50%;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(30, 122, 60, 0.6);
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
}

/* Особенности в баннере */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeInLeft 1s ease-out 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.feature-icon {
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2em;
}

.feature-text {
    font-size: 1em;
    opacity: 0.9;
    font-weight: 500;
}

/* Правая сторона (можно использовать для формы) */
.hero-side {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease-out 0.8s both;
}

/* Анимации */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}
/* --------------------------------------------------------------ПРЕИМУЩЕСТВА */
.features {
	background-image: url('/wp-content/themes/okonnyyverdikt.by/img/features-bg.webp');
	background-repeat: no-repeat;
	background-size: cover;
	
}
.sec-small-heading span {
	position: relative;
	color: #1E7A3C;
	font-size: 16px;
	font-weight: bold;
}
.sec-small-heading h6 {
	text-align: center;
}
.sec-small-heading span::after {
	content: "";
	display: inline-block;
    width: 50px;
    height: 2px;
    background-color: #1E7A3C;
    margin-left: 10px;
	vertical-align: middle;
}
.sec-heading h2 {
	font-size: 45px;
	color: #1C1C1C;
	text-align: center;
}
.sec-heading h3 {
	text-align: center;
	max-width: 800px;
	font-size: 18px;
	color: #1C1C1C;
	margin: 0 auto;
	font-weight: 400;
}
.sec-heading {
	width: 100%;
}
.features-wrapper {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
	align-items: stretch;
	margin-top: 50px;
}
.features-item h3 {
	font-size: 23px;
	color: #1C1C1C;
}
.features-item h4 {
	flex-grow: 1;
	font-weight: 400;
}
.features-item img {
	animation: fadeY 2s ease-in-out infinite;
}

@keyframes fadeY {
    0% {
        transform: translateY(0px);
    }
	50% {
		transform: translateY(-8px);
	}
    100% {
        transform: translateY(0);
    }
}

.features-item {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	align-items: center;
	text-align: center;
	height: 100%;
}

/* --------------------------------------------------------------УСЛУГИ */
.services {
	background-color: #F7F7F7;

}
.services-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
	max-width: 1200px;
	margin: 30px auto 0;
}

.service-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

.service-btn {
	color: white;
    backdrop-filter: blur(10px);
    background: transparent;
    border: 2px solid #FFF;
	font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    min-width: 220px;
    padding: 15px 30px;
}

.service-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
	transition: all 0.4s ease;
	filter: brightness(0.5);
}

.caption {
	position: absolute;
	top: 0;
    left: 0;
	right: 0;
    margin: 30px;
    border: 1px solid #fff;
    width: auto;
    height: 82%;
    padding: 50px 30px;
    text-align: center;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.caption h3 {
    margin: 0 0 15px 0;
    font-size: 26px;
    color: #FFF;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item:hover img {
    transform: scale(1.05);
}
/* --------------------------------------------------------------О НАС */

.about-us {
	background-image: url('/wp-content/themes/okonnyyverdikt.by/img/about-bg.webp');
	background-repeat: no-repeat;
    background-size: cover;
}

.side-title .sec-small-heading span {
	position: relative;
	color: #1E7A3C;
	font-size: 16px;
	font-weight: bold;
}
.side-title .sec-small-heading span::after {
	content: '';
	display: none;
}
.side-title .sec-small-heading h6 {
	text-align: left;
}

.side-title .sec-heading h2 {
	font-size: 45px;
	color: #1C1C1C;
	text-align: left;
}
.side-title .sec-heading h3 {
	text-align: left;
	max-width: 800px;
	font-size: 18px;
	color: #1C1C1C;
	margin: 0;
	font-weight: 400;
	padding-left: 25px;
}
.side-title .sec-heading {
	width: 100%;
}
.num-project {
    position: absolute;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    background-color: #1E7A3C;
    left: 0;
    top: 0;
    padding: 10px 50px;
    margin-top: 30px;
}
.num-project h5 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0px;
    margin-left: 0;
    padding: 0px 11px;
}
.num-project p {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0px;
    padding: 0px 10px 0px 0px;
}
.info {
	position: relative;
	padding-left: 100px;
}
.us-img {
	position: absolute;
    width: 100%;
    animation: fadeY 4s ease-in-out infinite;
    transition: transform 0.4s ease;
	max-width: 360px;
}
.circle {
	width: 426px;
	height: 426px;
}
.about-wrapper {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 12px;
}
.side-title {
	grid-column: span 2 / span 2;
}
.line-title {
	border-left: 4px solid #1E7A3C;
	padding-left: 20px;
}
.info {
	 grid-column-start: 3;
}
.adv {
	display: flex;
	gap: 30px;
	margin-top: 16px;
	padding-left: 25px;
}
.time, .expert {
	display: flex;
	gap: 15px;
	align-items: center;
}
.time span, .expert span {
	font-size: 16px;
	color: #1C1C1C;
	font-weight: 500;
}

/* --------------------------------------------------------------АКЦИИ */
.sales {
	background-image: url('/wp-content/themes/okonnyyverdikt.by/img/sales-bg.webp');
	background-size: cover;
	background-repeat: no-repeat;
}
.sales-item {
	display: flex;
	align-items: center;
}
.sale-image {
	max-width:603px;
	height: auto;
	width: 100%;
	position: relative;
	left: 100px;
}
.sale-text{
	padding: 30px 40px;
	background-color: #FFF;
	margin-left: -100px;
	max-width: 700px;
	width: 100%;
	position: relative;
	box-shadow: 2px 4px 8px 2px rgba(0, 0, 0, 0.1);
}
.sale-text h3 {
	font-size: 28px;
	color: #1C1C1C;
}
.sale-text p {
	font-size: 20px;
}
.sales-slider {
	margin-top: 30px;
}

.sale-image .num-project h5 {
	font-size: 30px;
}
.sale-image .num-project {
	left: -100px;
}

.custom-nav {
	margin-left: 100px;
}

.custom-prev, .custom-next, .custom-work-prev, .custom-work-next {
    background: url('/wp-content/themes/okonnyyverdikt.by/icons/arrow.svg') center/10px no-repeat !important;
    width: 40px;
    height: 40px;
    background-color: #FFF !important;
	border: 1px solid #1E7A3C !important;
}

.custom-prev, .custom-work-prev {
   transform: rotate(180deg);
	margin-right: 8px;
}


/* --------------------------------------------------------------ФОРМА */
.form {
	background-image: url('/wp-content/themes/okonnyyverdikt.by/img/form-bg.webp');
}
.form-wrapper {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	width: 100%;
}
.request {
	background: rgba(255, 255, 255, 0.1);
	width: 600px;
	height: auto;
	border: 1px solid #FFF;
	padding: 15px 20px;
	 backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}
.request h3 {
	font-size: 31px;
	color: #FFF;
	text-transform: uppercase;
	text-align: center;
}
.request p {
	color: #FFFFFCCC;
	font-size: 16px;
	text-align: center;
}
.wpcf7-form {
	margin-top: 20px;
}
 .wpcf7-form p {
	text-align: left;
}
 .wpcf7-form input {
	width: 100%;
	padding: 12px 15px;
	margin-bottom: 15px;
}
.request .wpcf7-submit {
	background-color: #FFF;
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	color: #1C1C1C;
	border: none;
	margin-top: 8px;
}
#popmake-30 .wpcf7-submit {
	background-color: #1E7A3C;
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	color: #FFF;
	border: none;
	margin-top: 8px;
}

.wpcf7 form.sent .wpcf7-response-output {
	color: #1c1c1c!important;
}

.wpcf7-list-item {
	margin: 0;
}
 .wpcf7-form input[type="checkbox"] {
	width: auto;
	margin-bottom: 0;
}
.form-text h3 {
	font-size: 45px;
	color: #FFF;
}
.form-text h4 {
	font-size: 18px;
	color: #FFFFFCCC;
}
.phone {
	display: flex;
	align-items: center;
	gap: 15px;
}
.form a {
	color: #FFF;
	text-decoration: none;
	font-weight: 500;
	font-size: 18px;
}
.form-text h4 {
	font-size: 26px;
	color: #FFF;
	margin-top: 30px;
}
.form-text p {
	font-size: 18px;
	font-weight: 500;
	color: #FFF;
}
/* -------------------------------------------------------------ПОДВАЛ */
.site-footer {
	background-color: #1C1C1C;
	padding: 20px 0;
}
.footer-content p {
	color: #BABABA;
	font-size: 14px;
}
.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.site-footer a {
	color: #FFF;
	text-decoration: none;
}

 .map-container {
	 flex: 1;
	
	 width: 100%;
	 height: 300px;
	 margin-top: 30px;
}
        
#map {
	width: 100%;
	max-width: 680px;
    height: 100%;
	box-shadow: 2px 4px 8px 4px rgba(255, 255, 255, 0.3);
}

.ymaps-2-1-79-map {
	width: 100%!important;
}
.wpcf7-response-output {
	color: #FFF;
}
/* --------------------------------------------------------------МОСКИТНЫЕ СЕТКИ */

.banner {
	background-image: url('/wp-content/themes/okonnyyverdikt.by/img/moskitnye-bg.webp');
	background-repeat: no-repeat;
	background-size: cover;
	padding: 60px 0;
}
.page-template-moskitnye .hero {
	margin-top: 0;
	padding: 180px 0 90px;
	height: auto;
}
.page-template-moskitnye .hero-subtitle {
	font-size: 1.1em;
}
ul.hero-subtitle {
	padding-left: 30px;
}
.hero-img {
	position: relative;
	background-image: url('/wp-content/themes/okonnyyverdikt.by/img/circle.png');
	background-repeat: no-repeat;
	background-size: contain;
}
.info-one {
	top: 50px;
	left: 53px;
	width: 40px;
	height: 40px;
}
.info-two {
	top: 140px;
	left: 2px;
	width: 30px;
	height: 30px;
}
.info-three {
	bottom: 180px;
	left: -7px;
	width: 30px;
	height: 30px;
}
.info-four {
	bottom: 100px;
	left: 25px;
	width: 30px;
	height: 30px;
}
.info-icon {
	background-color: #1E7A3C; 
	border-radius: 50%;
}
.info-one:hover .info-one-text {
	display: block;
}
.info-two:hover .info-two-text {
	display: block;
}
.info-three:hover .info-three-text {
	display: block;
}
.info-four:hover .info-four-text {
	display: block;
}
.info-one-text {
	top: -110px;
	left: -90px;
	width: 250px;
}
.info-two-text {
	top: -110px;
	left: -100px;
	width: 250px;
}
.info-three-text {
	top: -90px;
	left: -90px;
	width: 250px;
}
.info-four-text {
	bottom: 50px;
	left: -90px;
	width: 250px;
}
.info-text {
	display: none;
	border-radius: 15px;
	background-color: #FFF;
	color: #3C3C3C;
	font-size: 14px;
	padding: 12px;
	box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
	position: absolute;
}
.info-item {
	background-color: #1E7A3C; 
	border-radius: 50%;
	position: absolute;
}
.info-item svg {
	display: inline-block;
	vertical-align: middle;
}
.advantages {
	background: #FFF;
}
.advantages__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  margin-bottom: 28px;
}

.advantages__row:last-child {
  margin-bottom: 0;
}

.advantage {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.advantage__icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: #1E7A3C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-bottom: 12px;
}

.advantage__title {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.25;
}

.advantage__text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  max-width: 260px;
}
.advantage__icon img {
 	width: 44px;
	height: auto;
}


.product-types {
	background: #f7f7f7;
}

.product-types__title {
	margin: 0 0 26px;
	font-size: 36px;
	line-height: 1.12;
	font-weight: 700;
	letter-spacing: 0.2px;
}

.product-types__title span {
	color: #1E7A3C;
}

.product-types__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.product-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 20px 18px 18px;
	position: relative;
	display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid #4b8df7;
	color: #2d72e6;
	border-radius: 999px;
	padding: 8px 14px;
	font-size: 12px;
	line-height: 1;
	font-weight: 500;
	margin: 2px auto 14px;
	text-align: center;
	background: #f8fafc;
	width: fit-content;
	max-width: 100%;
}

.product-card__image {
	background-image: url('/wp-content/themes/okonnyyverdikt.by/img/antimoskit.webp');
	background-size: contain;
	background-repeat: no-repeat;
	height: 365px;
	background-color: #f2f5f8;
	border-radius: 10px;
	margin-bottom: 14px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 30px;
	justify-content: flex-end;
	overflow: hidden;
	padding: 15px;
}
.product-card__image img {
	margin-left: auto;
	width: 138px;
	height: 138px;
}

.product-card__name {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.2px;
	text-transform: uppercase;
	line-height: 1.25;
}

.product-card__desc {
	margin: 0 0 18px;
	color: #6b7280;
	font-size: 13px;
	line-height: 1.45;
	flex: 1;
}

.product-card__price, .curtain__price {
	color: #2e2e2e;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 30px 30px 30px 30px;
    background-color: #ffffff;
	border: 1px solid #2E2E2E;
	padding: 8px 15px;
	margin-bottom: 5px;
    width: fit-content;
	margin-left: auto;
}
.curtain__price {
	position: absolute;
	bottom: 10px;
    right: 10px;
}

.product-card__actions {
	display: flex;
	gap: 14px;
	margin-top: auto;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 18px;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	border: 1.5px solid transparent;
	flex: 1;
	white-space: nowrap;
}

.btn--primary {
	background: #1E7A3C;
	color: #fff;
}

.btn--outline {
	background: transparent;
	border-color: #2f80ea;
	color: #2f80ea;
}
.card-content {
	display: flex;
	flex-direction: column;
}
.product-form {
	grid-column: span 2 / span 2;
	background-image: url('/wp-content/themes/okonnyyverdikt.by/img/product-form-bg2.svg');
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 12px;
	padding: 25px 45px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.product-form h3 {
	font-size: 36px;
	text-transform: uppercase;
	color: #FFF;
	margin-bottom: 30px;
}
.product-form form {
	display: flex;
	flex-direction: row;
}
.product-form form label {
	color: #FFF;
}
.product-form .wpcf7-form input {
	border-radius: 5px;
	border: none;
	font-size: 18px;
}
input:focus {
	outline: none;
}
.product-form .wpcf7-submit {
	font-size: 22px;
	text-transform: uppercase;
	background-color: #1E7A3C;
	color: #FFF;
	font-weight: 700;
	margin-top: 30px;
}

.catalog-types {
	background-color: #FFF;
}

.catalog-types__title {
	margin: 0 0 26px;
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 0.2px;
}

.catalog-types__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.type-card {
	background: #f7f7f7;
	border-radius: 10px;
	padding: 16px 16px 14px;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05), 0 1px 5px #0000000d;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.type-card__media {
	height: 170px;
	border-radius: 10px;
	background: #FFF;
	position: relative;
	overflow: hidden;
	margin-bottom: 12px;
	display: flex;
	align-items: center; 
	justify-content: center;
}

.type-card__static {
	display: block;
	width: auto;
	height: auto;
	max-width: 166px;
	max-height: 100%;
	margin: 0;
}

.type-card__gif-overlay {
	display: none;
	width: auto;
	height: auto;
	max-width: 166px;
	max-height: 100%;
	margin: 0;
}

.type-card:hover .type-card__gif-overlay {
	display: block;
}

.type-card:hover .type-card__static {
	display: none;
}

.type-card__actions {
	margin-top: auto;
}

.btn--full {
	width: 100%;
	flex: 0 0 auto;
}

.works__inner {
	max-width: 1180px;
	margin: 0 auto;
}

.works__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 22px;
	margin-bottom: 22px;
}

.works__title {
	margin: 0;
	font-size: 34px;
	line-height: 1.05;
	font-weight: 500;
	color: #111827;
	max-width: 280px;
}

.works__desc {
	margin: 0;
	color: #6b7280;
	font-size: 13px;
	line-height: 1.45;
	max-width: 520px;
}

.works-slider {
	margin: 0 -8px;
}

.works-slide {
	padding: 0 8px;
}

.works-slide a {
	display: block;
	border-radius: 10px;
	overflow: hidden;
	background: #f3f4f6;
}

.works-slide img {
	width: 100%;
	height: 310px;
	object-fit: cover;
	display: block;
}

.works .custom-nav {
	margin-left: 0;
}

/* --------------------------------------------------------------РУЛОННЫЕ ШТОРЫ И ЖАЛЮЗИ */
.page-template-rulony .hero-img {
	background-image: none;
}
.page-template-rulony .hero-img img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.page-template-rulony .hero {
	margin-top: 0px;
    padding: 0;
    height: auto;
}
.page-template-rulony .hero-content {
	padding-top: 60px;
}
.hero-rulony .info-one {
    top: 190px;
    left: 203px;
}
.hero-rulony .info-two {
    top: 280px;
    left: 82px;
}
.hero-rulony .info-three {
	bottom: 380px;
    left: 107px;
}
.hero-rulony .info-four {
	bottom: 180px;
    left: 65px;	
}
.hero-rulony .info-one-text {
	left: 90px;
	top: -70px;
}
.hero-rulony .info-three-text {
	left: 90px;
}
.hero-rulony .info-text {
	padding: 12px 12px 12px 30px;
}
.hero-rulony .info-two-text {
	left: 100px;
}
.hero-rulony .info-four-text {
    bottom: -150px;
    left: 90px;
}

.curtains__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.curtains__title {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
}

.curtains__subtitle {
  margin: 0 0 26px;
  font-size: 14px;
  color: #6b7280;
  max-width: 520px;
}

.curtains__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.curtain-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
	height:100%;
}

.curtain-card__image {
  height: 350px;
  background: linear-gradient(135deg, #dbeafe, #f3e8ff);
  position: relative;
  overflow: hidden;
  position: relative;
}
.curtain-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.curtain-card__body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
	flex: 1;
}
.curtain-card .btn--primary {
	margin: 0 14px 14px;
}

.curtain-card__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.curtain-card__text {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.45;
}
.steps__grid {
	display: grid;
  	grid-template-columns: repeat(3, minmax(0, 1fr));
  	gap: 18px;
}
.steps__card {
	border-radius: 12px;
	background: url('/wp-content/themes/okonnyyverdikt.by/img/steps-bg.webp');
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: space-between;
	padding: 20px;
}
.steps__arrow {
	background-color: #FFF;
	border-radius: 5px;
	width: 47px;
	height: 47px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 150px;
}
.steps__title {
	text-transform: uppercase;
	color: #FFF;
	font-size: 30px;
	margin-bottom: 30px;
}
.steps__text {
	font-size: 14px;
	color: #FFF;
}
.steps__text a {
	color: #FFF;
	text-decoration: underline;
}


/* --------------------------------------------------------------АДАПТИВНОСТЬ */
@media (max-width: 1253px) {
	.page-template-rulony .hero-content {
		padding: 140px 0 0px;
	}
}
@media (max-width: 1200px) {
    .header-content {
        gap: 20px;
    }
    
    .menu {
        gap: 20px;
    }
    
    .menu-link {
        font-size: 15px;
    }
	.form-wrapper {
		flex-wrap: wrap;
		justify-content: center;
	}
	.phone-section{
		flex-wrap: wrap;
		justify-content: center;
	}
	.page-template-rulony .hero-content {
		padding: 180px 0 90px;
	}
}

@media (max-width: 1024px) {
    .main-navigation {
        order: 3;
        flex: 1 0 100%;
        margin-top: 15px;
    }
    
    .menu {
        justify-content: center;
    }
    
    .header-contacts {
        flex: 0 0 auto;
    }
	 .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .feature-item {
        max-width: 400px;
    }
	
	.about-wrapper {
		display: flex;
    	gap: 50px;
    	flex-wrap: wrap;
    	justify-content: center;
	}
	.services-wrapper {
    	grid-template-columns: repeat(2, 1fr);
	}
	.product-types__grid {
    	grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.primary-btn {
		margin: 0 auto;
	}
	ul.hero-subtitle {
		width: fit-content;
		margin: 0 auto 20px;
	}
	.hero-img {
		background-position: center;
	}
	.hero-content {
		display: flex;
		flex-wrap: wrap;
	}
	.hero-img {
		max-width: 546px;
    	margin: 0 auto;
    	width: 100%;
	}
	.hero-img img {
		object-fit: contain;
    	width: 100%;
	}
	.curtains__grid {
    	grid-template-columns: repeat(3, minmax(0, 1fr));
  	}
}

@media (max-width: 768px) {
    .landing-header {
        padding: 10px 0;
    }
    
    .header-content {
        position: relative;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1C1C1C;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 20px;
        margin-top: 0;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .menu-link {
        font-size: 16px;
        padding: 10px 0;
        display: block;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .phone-main {
        flex-direction: column;
        gap: 5px;
        align-items: flex-end;
    }
    
    .messengers {
        justify-content: flex-end;
    }
	.hero {
        height: auto;
        min-height: auto;
        padding: 100px 0 60px;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .feature-item {
        width: 100%;
        max-width: 300px;
    }
	.features-wrapper {
		grid-template-columns: repeat(2, 1fr);
    	grid-template-rows: repeat(3, 1fr);
	}
	.services-wrapper {
		grid-template-columns: repeat(1, 1fr);
	}
	.sales-item {
		flex-wrap: wrap;
	}
	.sale-text {
		margin-left: 0;
		margin-top: 20px;
	}
	.form-wrapper {
		flex-wrap: wrap;
		justify-content: center;
	}
	.popup-content {
        padding: 30px 20px;
        margin: 20px;
     }
            
     .content h1 {
         font-size: 2em;
      }
            
     .content p {
         font-size: 1em;
      }
	.footer-content {
		flex-wrap: wrap;
		justify-content: center;
		gap: 15px;
	}
	.footer-content p {
		text-align: center;
	}
	.site-title {
		display: none;
	}
	.cta-button {
		display: none;
	}
	.sec-heading h2 {
		font-size: 28px;
	}
	.sec-heading h3 {
		font-size: 16px;
	}
	.features-item h3 {
		font-size: 18px;
	}
	.side-title .sec-heading h2, .form-text h3 {
		font-size: 28px;
	}
	.side-title .sec-heading h3, .form-text p {
		font-size: 16px;
	}
	.sale-text h3 {
		font-size: 18px;
	}
	.sale-text p {
		font-size: 16px;
	}
	.sale-image .num-project, .sale-image {
		left: 0;
	}
	.custom-nav {
    	display: flex;
    	justify-content: center;
		margin-left: 0;
	}
	section {
		padding: 60px 0;
	}
	.request h3 {
		font-size: 22px;
	}
	.advantages__row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.catalog-types__grid {
    	grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.page-template-moskitnye .hero {
		padding: 120px 0 60px;
	}
	.curtains__grid {
    	grid-template-columns: repeat(2, minmax(0, 1fr));
 	 }
	.page-template-rulony .hero-content {
		padding: 180px 0 60px;
	}
	.hero-rulony {
		display: none;
	}
	.steps__grid {
   		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
	.steps__title {
		margin-bottom: 0;
	}
	.steps__arrow {
		margin-bottom: 50px;
	}


}

@media (max-width: 540px) {
	.circle {
		width: 356px;
		height: 356px;
	}
	.us-img {
		max-width: 300px;
	}
	.phone-section {
		flex-direction: column;
		gap: 5px;
	}
	.features-wrapper {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(6, 1fr);
    }
	.advantages__row {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
	.advantage__text {
		max-width: 100%;
	}
	.product-types__title, .catalog-types__title {
		font-size: 26px;
	}
	.product-form {
        grid-column: auto;
    }
	.product-types__grid {
        grid-template-columns: 1fr;
    }
	.product-form h3 {
		font-size: 26px;
		margin-bottom: 10px;
	}
	.catalog-types__grid {
    	grid-template-columns: repeat(1, minmax(0, 1fr));
	}
	.info-item {
		display: none;
	}
	.product-form {
		padding: 15px;
	}
	.curtains__grid {
    	grid-template-columns: 1fr;
  	}
}

@media (max-width: 480px) {
    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .site-title .main-title {
        font-size: 14px;
    }
    
    .phone-link {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .header-contacts {
        align-items: center;
    }
    
    .phone-section {
        align-items: center;
    }
    
    .phone-main {
        align-items: center;
    }
    
    .messengers {
        justify-content: center;
    }
	.hero-title {
        font-size: 1.8em;
    }
    
    .hero-subtitle {
        font-size: 1em;
    }
    
    .hero-btn {
        padding: 15px 25px;
        font-size: 1em;
        min-width: auto;
    }
    
    .feature-item {
        padding: 10px 15px;
    }
	
	.num-project {
		padding: 5px 25px;
	}
	.circle {
		width: 316px;
		height: 326px;
	}
	.num-project h5 {
		font-size: 40px;
	}
	.info {
		padding-left: 30px;
	}
	.works__header {
		flex-wrap: wrap;
		gap: 0px;
		justify-content: center;
	}
	.product-card__image {
		height: 265px;
	}
	.product-card__image img {
		width: 100px;
		height: 100px;
	}
	.primary-btn {
		max-width: 100%;
		padding: 15px 7px;
	}
	.steps__title {
		font-size: 26px;
	}
}