/*
Static snapshot — Plast-Vent landing page styles
*/

:root {
    --primary-color: #3c3287;
    --secondary-color: #f0f0f0;
    --text-color: #333;
    --light-text: #666;
    --accent-color: #E52329;
    --font-main: 'Inter', sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

    .cpv-ventilyatori-main * {
        box-sizing: border-box;
    }

    .cpv-ventilyatori-main a {
        text-decoration: none;
        transition: color 0.3s;
    }

    .cpv-ventilyatori-main ul {
        list-style: none;
    }

    .cpv-ventilyatori-main img {
        max-width: 100%;
        height: auto;
    }

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

    .cpv-btn {
        display: inline-block;
        padding: 12px 30px;
        border-radius: 5px;
        font-weight: 600;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s;
        border: none;
        line-height: 1.2;
    }

    .cpv-btn-primary {
        background-color: var(--primary-color);
        color: #fff;
    }

    .cpv-btn-primary:hover {
        background-color: var(--primary-color);
    }

    .cpv-btn-outline {
        background-color: transparent;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
    }

    .cpv-btn-outline:hover {
        background-color: var(--primary-color);
        color: #fff;
    }

    .cpv-btn-accent {
        background-color: var(--accent-color);
        color: #fff;
    }

    .cpv-btn-accent:hover {
        background-color: #b71c1c;
    }

    .cpv-btn-sm {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .cpv-btn-catalog {
        background-color: #F8E502;
        color: black;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .cpv-btn-catalog:hover {
        background-color: #F8E502;
    }

    .cpv-site-header {
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: 10px 0;
    }

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

    .cpv-logo {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .cpv-logo__text {
        font-size: 24px;
        font-weight: 700;
        color: #333;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .cpv-logo__sub {
        font-size: 12px;
        color: #666;
        font-weight: 500;
    }

    .cpv-main-nav ul {
        display: flex;
        gap: 30px;
    }

    .cpv-main-nav a {
        font-weight: 500;
        color: var(--text-color);
        font-size: 16px;
    }

    .cpv-main-nav a:hover {
        color: var(--primary-color);
    }

    .cpv-header-contacts {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .cpv-header-phone {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-color);
    }

    .cpv-header-btn {
        margin-top: 5px;
        padding: 6px 16px;
        font-size: 14px;
    }

    .cpv-hero {
        padding: 60px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        position: relative;
        overflow: hidden;
    }

    .cpv-hero__container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }

    .cpv-hero__content {
        flex: 1;
        max-width: 600px;
    }

    .cpv-hero__badge {
        display: inline-block;
        background: #e8f0fe;
        color: var(--primary-color);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .cpv-hero h1 {
        font-size: 3rem;
        line-height: 1.2;
        margin-bottom: 15px;
        color: #222;
    }

    .cpv-hero__subtitle {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .cpv-hero__buttons {
        display: flex;
        gap: 15px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .cpv-hero__benefits {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .cpv-hero__benefits li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 500;
    }

    .cpv-check-icon {
        color: #27ae60;
        font-weight: bold;
    }

    .cpv-hero__image-wrapper {
        flex: 1;
        position: relative;
    }

    .cpv-hero__image-wrapper img {
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

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

    .cpv-section__title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 15px;
        color: #222;
    }

    .cpv-section__subtitle {
        text-align: center;
        color: #666;
        max-width: 700px;
        margin: 0 auto 40px;
        font-size: 1.1rem;
    }

    .cpv-features__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .cpv-feature-card {
        background: #fff;
        padding: 25px;
        border-radius: 12px;
        border: 1px solid #eee;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .cpv-feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .cpv-feature-card__icon {
        font-size: 36px;
        margin-bottom: 15px;
        color: var(--primary-color);
    }

    .cpv-feature-card__title {
        font-size: 1.25rem;
        margin-bottom: 10px;
        color: #222;
    }

    .cpv-feature-card__text {
        color: #666;
        font-size: 0.95rem;
    }

    .cpv-products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .cpv-product-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #eee;
        transition: all 0.3s;
    }

    .cpv-product-card:hover {
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .cpv-product-image {
        height: 250px;
        background: #f8f9fa;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .cpv-product-image img {
        max-height: 90%;
        max-width: 90%;
        object-fit: contain;
    }

    .cpv-product-info {
        padding: 20px;
    }

    .cpv-product-info .cpv-btn-primary {
        width: 100%;
        box-sizing: border-box;
    }

    .cpv-product-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
        color: #222;
    }

    .cpv-product-specs {
        margin-bottom: 15px;
        color: #555;
        font-size: 0.95rem;
    }

    .cpv-product-specs li {
        margin-bottom: 6px;
        padding-left: 15px;
        position: relative;
    }

    .cpv-product-specs li::before {
        content: "•";
        color: var(--primary-color);
        position: absolute;
        left: 0;
        font-weight: bold;
    }

    .cpv-gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .cpv-gallery-item {
        border-radius: 8px;
        overflow: hidden;
        height: 250px;
    }

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

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

    .cpv-form-wrapper {
        max-width: 500px;
        margin: 0 auto;
        background: #fff;
        padding: 25px;
        border-radius: 12px;
        color: #333;
    }

    .cpv-form-group {
        margin-bottom: 15px;
    }

    .cpv-form-control {
        width: 100%;
        padding: 10px 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-family: inherit;
        font-size: 1rem;
    }

    .cpv-form-control:focus {
        border-color: var(--primary-color);
        outline: none;
    }

    .cpv-footer {
        background-color: #2c3e50;
        color: #adb5bd;
        padding: 50px 0 20px;
    }

    .cpv-footer__container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 30px;
    }

    .cpv-footer h4 {
        color: #fff;
        margin-bottom: 15px;
        font-size: 1.2rem;
    }

    .cpv-footer a {
        color: #adb5bd;
    }

    .cpv-footer a:hover {
        color: #fff;
    }

    .cpv-footer__contacts li {
        margin-bottom: 10px;
        display: flex;
        gap: 10px;
    }

    .cpv-footer__links li {
        margin-bottom: 8px;
    }

    .cpv-footer__bottom {
        border-top: 1px solid #3e4c59;
        padding-top: 20px;
        text-align: center;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .cpv-hero__container {
            flex-direction: column-reverse;
            text-align: center;
        }
        .cpv-hero__buttons {
            justify-content: center;
        }
        .cpv-hero__benefits {
            align-items: center;
        }
        .cpv-header-inner {
            flex-direction: column;
            gap: 15px;
        }
        .cpv-main-nav ul {
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .cpv-header-contacts {
            align-items: center;
        }
    }



.th-container-checkbox {
    display: block;
    position: relative;
    padding-left: 30px;
    padding-top: 5px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255,255,255,.4);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.th-container-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer
}

.th-container-checkbox .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #221e3f;
    border-radius: 2px
}

.th-container-checkbox_gray .checkmark {
    background-color: #edeef2
}

.th-container-checkbox:hover input~.checkmark {
    background-color: #ccc
}

.th-container-checkbox input:checked~.checkmark {
    background-color: #221e3f
}

.th-container-checkbox input:checked~.checkmark {
    background-color: #edeef2
}

.th-container-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none
}

.th-container-checkbox input:checked~.checkmark:after {
    display: block
}

.th-container-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid #000;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.th-container-checkbox_gray .checkmark:after {
    border-color: #828892
}

.th-container-checkbox a {
    font-size: 14px;
    color: rgba(255,255,255,.4)!important
}

.th-container-checkbox_gray,.th-container-checkbox_gray a {
    color: #828892!important
}

.th-required-marker {
    color: red;
    font-style: normal
}

.th-container-checkbox .checkmark {
    background-color: #edeef2 !important;
}

.th-container-radio {
    display: block;
    position: relative;
    padding-left: 25px;
    padding-top: 4px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.th-container-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer
}

.th-container-radio .checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 18px;
    width: 18px;
    border-radius: 25px;
    background-color: #eee
}

.th-container-radio:hover input~.checkmark {
    background-color: #ccc
}

.th-container-radio input:checked~.checkmark {
    background-color: #2d8db7
}

.th-container-radio .checkmark:after {
    content: "";
    position: absolute;
    display: none
}

.th-container-radio input:checked~.checkmark:after {
    display: block
}

.th-container-radio .checkmark:after {
    left: 50%;
    top: 50%;
    margin: -4px 0 0 -4px;
    width: 8px;
    height: 8px;
    border-radius: 12px;
    background-color: #eee
}



.lds-container {
  background-color: #f3aa0b;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
    background: #E52329;
    border-radius: 50px;
}

.lds-ellipsis {
  display: block;
  position: absolute;
  width: 52px;
  height: 12px;
  
  top: 50%;
  left: 50%;
  
  -webkit-transform: translate(-60%, -50%);
  -ms-transform: translate(-60%, -50%);
  transform: translate(-60%, -50%);
}

.lds-ellipsis div {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.lds-ellipsis_sm div {
  width: 10px;
  height: 10px;
}
.lds-ellipsis div:nth-child(1) {
  left: 10px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 10px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 30px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 49px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}

.th-form {
    position: relative;
}

.th-send-response-msg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    text-align: center;
    flex-direction: column;
}

.th-send-response-msg__title {
    line-height: 1.2;
    font-size: 20px;
    font-weight: 700;
}

.th-send-response-msg__txt {
    padding-top: 20px;
    font-size: 16px;
    line-height: 1.3;
}

@media (max-width:1599.98px) {
    .th-send-response-msg__title {
        font-size: 18px;
    }

    .th-send-response-msg__txt {
        font-size: 14px;
    }
}

@media (max-width:639.98px) {
    
}