:root {
    --dark: #171717;
    --primary: #3E6AE1;
    --green: #3E6AE1;
    --light-bgr-color: #f4f4f4;
    --white: #ffffff;
    --transparent: #0000;
    --grey: #e0e0e0;
    --orange: #3E6AE1;
    --black: #171717;
}

* {
    scroll-behavior: smooth;
}

iframe {
    width: 100% !important;
}

h1, p {
    transition: font-size 0.7s ease;
}

select {
    
}

h1.visible {
    opacity: 1; 
    transform: translateX(0);
}

a {
    text-decoration: none !important;
}

.sold-banner {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: red;
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
}

.shop-one-image-block {
    position: relative;
}

.main-shop-list-item {
    position: relative;
}

.sold-tag-car-page {
    width: 100px;
    text-align: center;
    background-color: #d9534f;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    text-transform: uppercase;
    border-radius: 5px;
    z-index: 1000; 
}

.main-service-one img {
    max-height: 400px;
    min-width: 350px;
}

.add-to-cart-2 {
    background-color: #fff; 
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    margin-bottom: 2em;
    width: 100%;
    max-width: 500px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.add-to-cart-2:hover {
    transform: translateY(-5px); 
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); 
}

.product-detail-tag {
    background-color: var(--green); 
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 20px; 
    display: inline-block;
    text-transform: capitalize; 
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.product-detail-tag:hover {
    background-color: #2d55c8;
    transform: scale(1.05); 
}

.product-detail-tag:focus {
    outline: none;
    box-shadow: 0 0 4px rgba(62, 106, 225, 0.5);
}

.product-detail-tag {
    margin-bottom: 5px; 
}

.car-top-mobile {
    display: none;
}

.car-top-mobile .price-wrap {
    flex-direction: inherit;
}

.car-top-mobile .button-wrapper-home-2 {
    justify-content: left;
}

@media screen and (max-width: 991px) {
    .car-top-mobile {
        display: block;
    }
    .car-top-desktop {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .add-to-cart-2 {
        padding: 15px; 
    }

    .product-tag-block {
        gap: 10px; 
    }

    .product-detail-tag {
        font-size: 13px; 
        padding: 6px 10px; 
    }
}

.inventory-section {
    padding-top: 2rem;
}

.filter-bar {
    display: flex;
    align-items: stretch;
    background: #111;
    border-radius: 12px;
    margin: 0 0 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    width: 100%;
    position: relative;
}

.filter-bar__body {
    display: contents;
}

.filter-bar__label-chevron {
    display: none;
}

.filter-bar__label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #3E6AE1;
    color: #fff;
    padding: 0 2rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 12px 0 0 12px;
}

.filter-bar__group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.1rem 2rem;
    flex: 1;
    min-width: 0;
    cursor: pointer;
    transition: background 0.2s;
}

.filter-bar__group:hover {
    background: rgba(255,255,255,0.05);
}

.filter-bar__group-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.2rem;
    cursor: pointer;
}

.fbar-dd {
    position: relative;
}

.fbar-dd__trigger {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    user-select: none;
}

.fbar-dd__value {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}

.fbar-dd__arrow {
    color: rgba(255,255,255,0.45);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.fbar-dd.is-open .fbar-dd__arrow {
    transform: rotate(180deg);
}

.fbar-dd__list {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: -2rem;
    min-width: 200px;
    background: #1c1c1e;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
    overflow: hidden;
    z-index: 200;
    max-height: 280px;
    overflow-y: auto;
    border: 1px solid rgba(255,255,255,0.06);
}

.fbar-dd.is-open .fbar-dd__list {
    display: block;
}

.fbar-dd__option {
    padding: 0.7rem 1.25rem;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.fbar-dd__option:hover {
    background: rgba(255,255,255,0.07);
    color: #fff;
}

.fbar-dd__option.is-active {
    color: #3E6AE1;
    font-weight: 600;
}

.filter-bar__divider {
    width: 1px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
    margin: 0.75rem 0;
}

.filter-bar__reset {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.35);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0 1.5rem;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.2s;
}

.filter-bar__reset:hover {
    color: #fff;
}

.filter-bar__count {
    display: flex;
    align-items: center;
    padding: 0 2rem;
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.02em;
    border-radius: 0 12px 12px 0;
}

@media (max-width: 700px) {
    .filter-bar {
        flex-direction: column;
        border-radius: 10px;
    }

    .filter-bar__label {
        padding: 1rem 1.25rem;
        cursor: pointer;
        justify-content: space-between;
        border-radius: 10px;
    }

    .filter-bar.is-open .filter-bar__label {
        border-radius: 10px 10px 0 0;
    }

    .filter-bar__label-chevron {
        display: block;
        color: rgba(255,255,255,0.6);
        transition: transform 0.25s ease;
        flex-shrink: 0;
    }

    .filter-bar.is-open .filter-bar__label-chevron {
        transform: rotate(180deg);
    }

    .filter-bar__body {
        display: none;
        flex-direction: column;
    }

    .filter-bar.is-open .filter-bar__body {
        display: flex;
    }

    .filter-bar__group {
        padding: 1rem 1.25rem;
    }

    .filter-bar__divider {
        width: auto;
        height: 1px;
        margin: 0 1.25rem;
    }

    .filter-bar__count {
        padding: 0.85rem 1.25rem;
        justify-content: center;
        border-radius: 0 0 10px 10px;
    }
}

.image-cover {
    object-position: center center;
}

@media screen and (max-width: 767px) {
    .collection-list-details {
        grid-template-columns: 1fr 1fr;
    }

    .lightbox-link {
        height: 140px;
    }

    .lightbox-link-shop {
        height: 300px;
    }
}

@media screen and (max-width: 479px) {
    .lightbox-link-shop {
        height: 260px;
    }

    .lightbox-link {
        height: 120px;
    }
}

@media (max-width: 480px) and (orientation: landscape) {
    .tsla-slider {
        height: 100svh;
        min-height: 400px;
    }
}

@media screen and (min-width: 1280px) {
    .base-container.display.testimonials-section {
        flex-direction: column;
        align-items: stretch;
    }

    .testimonials-section .section-title-green {
        text-align: center;
        align-items: center;
        max-width: 720px;
        margin: 0 auto 40px;
    }

    .testimonials-section .white-paragraph-with-margin {
        max-width: 720px;
    }

    .testimonials-section .cart-content-right {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}

.td-showcase-outer {
    margin: 0 0 48px;
}

.td-showcase__clip {
    position: relative;
    overflow: hidden;
}

.td-showcase__track {
    display: flex;
    gap: 16px;
    padding-left: 40px;
    transition: transform 0.6s ease;
    will-change: transform;
}

.td-showcase__card {
    position: relative;
    flex: 0 0 calc(65vw);
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
}

.td-showcase__img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.td-showcase__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.12);
    transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.td-showcase__card.is-visible .td-showcase__img {
    transform: scale(1.0);
}

.td-showcase__card.is-visible:hover .td-showcase__img {
    transform: scale(1.04);
}

.td-showcase__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0.0) 0%,
        rgba(0,0,0,0.15) 45%,
        rgba(0,0,0,0.55) 65%,
        rgba(0,0,0,0.82) 100%);
    pointer-events: none;
}

.td-showcase__category {
    position: absolute;
    top: 20px;
    left: 24px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}

.td-showcase__sold-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 4px;
}

.td-showcase__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 28px 24px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.82) 100%);
}

.td-showcase__name {
    color: #fff;
    font-size: clamp(24px, 2.6vw, 38px);
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.td-showcase__price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 0 0 10px;
}

.td-showcase__price {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.td-showcase__mileage {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 400;
}

.td-showcase__price-original {
    text-decoration: line-through;
    opacity: 0.6;
    margin-right: 6px;
}

.td-showcase__specs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 0;
    margin: 0 0 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.td-showcase__specs span + span::before {
    content: '·';
    margin: 0 6px;
    opacity: 0.5;
}

.td-showcase__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.td-showcase__btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 11px 26px;
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.18s;
}
.td-showcase__btn-primary:hover { background: #2d55c8; border-color: #2d55c8; color: #fff; }

.td-showcase__btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 11px 26px;
    background: rgba(255,255,255,0.92);
    color: #171717;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.18s;
}
.td-showcase__btn-secondary:hover { background: #fff; color: #171717; }

.td-showcase__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 0;
}

.td-showcase__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #d0d0d0;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: width 0.35s ease, background 0.35s ease;
}

.td-showcase__dot.is-active {
    width: 24px;
    background: var(--primary);
}

@media (max-width: 900px) {
    .td-showcase__card { flex: 0 0 calc(78vw); height: 460px; }
    .td-showcase__track { padding-left: 20px; gap: 14px; }
}

@media (max-width: 600px) {
    .td-showcase__card { flex: 0 0 calc(86vw); height: 340px; }
    .td-showcase__track { padding-left: 16px; gap: 12px; }
    .td-showcase__name { font-size: 20px; }
    .td-showcase__price { font-size: 13px; margin-bottom: 14px; }
    .td-showcase__info { padding: 16px 16px 14px; }
    .td-showcase__btn-primary,
    .td-showcase__btn-secondary { padding: 9px 16px; font-size: 13px; }
}

.primary-button,
.primary-button.w-button,
.green-button,
.green-button.w-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s;
}
.primary-button:hover,
.primary-button.w-button:hover,
.green-button:hover,
.green-button.w-button:hover {
    background: #2d55c8;
    border-color: #2d55c8;
    color: #fff;
}

.tsla-sbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s;
}
.tsla-sbtn--fill {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}
.tsla-sbtn--fill:hover { background: #2d55c8; border-color: #2d55c8; color: #fff; }
.tsla-sbtn--outline {
    background: rgba(255,255,255,0.85);
    color: #171717;
    border: 1px solid rgba(0,0,0,0.2);
}
.tsla-sbtn--outline:hover { background: #fff; color: #171717; }

.legal-page {
    background: #fff;
    font-family: inherit;
    padding: 72px 0 100px;
    overflow-x: hidden;
}
.legal-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
}
.legal-meta {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 52px;
    padding-bottom: 28px;
    border-bottom: 1px solid #f0f0f0;
}
.legal-label {
    font-size: 22px;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.02em;
    margin: 0;
}
.legal-date {
    font-size: 13px;
    color: #999;
    margin: 0;
}
.legal-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
    align-items: start;
}
.legal-nav {
    position: sticky;
    top: 80px;
    min-width: 0;
}
.legal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.legal-nav li {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
}
.legal-nav a {
    font-size: 13px;
    color: #888;
    -webkit-text-fill-color: #888;
    padding: 6px 10px;
    border-radius: 6px;
    display: block;
    transition: color 0.15s, background 0.15s;
    line-height: 1.4;
}
.legal-nav a:hover { color: #111; -webkit-text-fill-color: #111; background: #f5f5f5; }
.legal-content {
    min-width: 0;
}
.legal-intro {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin: 0 0 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #f5f5f5;
}
.legal-section {
    padding: 32px 0;
    border-bottom: 1px solid #f5f5f5;
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
    font-size: 17px;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
}
.legal-section p {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin: 0 0 12px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
    padding-left: 20px;
    margin: 10px 0 14px;
}
.legal-section ul li {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 4px;
}
.legal-section strong { color: #333; font-weight: 600; }
@media (max-width: 860px) {
    .legal-page { padding: 48px 0 72px; }
    .legal-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 32px;
        padding-bottom: 20px;
    }
    .legal-label { font-size: 20px; }
    .legal-layout { grid-template-columns: 1fr; gap: 32px; }
    .legal-nav { position: static; }
    .legal-nav ul {
        flex-direction: column;
        gap: 0;
        border: 1px solid #eee;
        border-radius: 10px;
        overflow: hidden;
    }
    .legal-nav li { border-bottom: 1px solid #eee; }
    .legal-nav li:last-child { border-bottom: none; }
    .legal-nav a {
        background: #fff;
        color: #333;
        -webkit-text-fill-color: #333;
        font-size: 13px;
        padding: 11px 16px;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .legal-nav a::after { content: '→'; color: #bbb; -webkit-text-fill-color: #bbb; font-size: 12px; }
    .legal-nav a:hover { background: #f9f9f9; color: #111; -webkit-text-fill-color: #111; }
}

.collection-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
}

.inv-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.inv-card:hover {
    box-shadow: 0 8px 36px rgba(0,0,0,0.14);
    transform: translateY(-3px);
}

.inv-card__img-wrap {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f4f4f4;
    text-decoration: none;
}

.inv-card__slides {
    position: absolute;
    inset: 0;
}

.inv-card__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.04);
}

.inv-card__slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.inv-card__slide.hover-enter {
    animation: invCardHoverEnter 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes invCardHoverEnter {
    from { opacity: 0; transform: scale(1.08); filter: brightness(1.3); }
    to   { opacity: 1; transform: scale(1);    filter: brightness(1);   }
}

.inv-card__dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 2;
}

.inv-card__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    transition: background 0.3s, transform 0.3s;
}

.inv-card__dot.is-active {
    background: #fff;
    transform: scale(1.4);
}

.inv-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    background: #444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
}

.inv-card__badge--sold {
    background: #888;
}

.inv-card__body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.inv-card__title {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin: 0;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.inv-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.inv-card__price-main {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
}

.inv-card__price-old {
    font-size: 14px;
    font-weight: 500;
    color: #aaa;
    text-decoration: line-through;
}

.inv-card__price-new {
    font-size: 18px;
    font-weight: 700;
    color: #3E6AE1;
    letter-spacing: -0.02em;
}

.inv-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.inv-card__specs span {
    display: inline-flex;
    align-items: center;
}

.inv-card__specs span + span::before {
    content: '·';
    margin: 0 6px;
    color: #ccc;
}

.inv-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #3E6AE1;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: gap 0.2s ease;
}

.inv-card__cta:hover {
    gap: 9px;
}

@media (max-width: 1024px) {
    .collection-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .collection-list { grid-template-columns: 1fr; gap: 16px; }
    .inv-card__img-wrap { aspect-ratio: 16/10; }
}

.contact-page {
    background: #fff;
}

.cp-body {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.cp-body__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cp-info__heading,
.cp-form-wrap__heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 12px;
}
.cp-info__lead {
    font-size: 15px;
    color: #666;
    margin: 0 0 36px;
    line-height: 1.6;
}
.cp-info__list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cp-info__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}
.cp-info__item a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.18s;
}
.cp-info__item a:hover {
    color: var(--primary);
}
.cp-info__icon {
    width: 36px;
    height: 36px;
    background: #f0f4ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.cp-info__hours {
    border-top: 1px solid var(--grey);
    padding-top: 28px;
}
.cp-info__hours-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.cp-info__hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}
.cp-info__hours-row:last-child {
    border-bottom: none;
}

.cp-form-wrap {
    background: var(--light-bgr-color);
    border-radius: 12px;
    padding: 36px 32px;
}
.cp-form-wrap__heading {
    margin-bottom: 28px;
}
.cp-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.cp-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.cp-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cp-form__label {
    font-size: 13px;
    font-weight: 500;
    color: #444;
    letter-spacing: 0.02em;
}
.cp-form__input,
.cp-form__textarea {
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 15px;
    color: var(--dark);
    transition: border-color 0.18s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
}
.cp-form__input:focus,
.cp-form__textarea:focus {
    border-color: var(--primary);
}
.cp-form__input::placeholder,
.cp-form__textarea::placeholder {
    color: #aaa;
}
.cp-form__textarea {
    min-height: 130px;
    resize: vertical;
}
.cp-form__submit {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
}

.cp-map {
    width: 100%;
    height: 420px;
    overflow: hidden;
}
.cp-map iframe,
.cp-map > * {
    width: 100% !important;
    height: 100% !important;
    display: block;
    border: none;
}

@media (max-width: 900px) {
    .cp-body__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .cp-body {
        padding: 60px 24px;
    }
}
@media (max-width: 600px) {

    .cp-form-wrap {
        padding: 24px 18px;
    }
    .cp-form__row {
        grid-template-columns: 1fr;
    }
    .cp-map {
        height: 280px;
    }
}

.cp-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.cp-reveal--visible {
    opacity: 1;
    transform: none;
}

.cp-info__item.cp-reveal {
    transform: translateX(-20px);
}
.cp-info__item.cp-reveal.cp-reveal--visible {
    transform: none;
}

.cp-form-wrap.cp-reveal {
    transform: translateX(28px);
}
.cp-form-wrap.cp-reveal.cp-reveal--visible {
    transform: none;
}

.cp-info__hours.cp-reveal {
    transform: translateY(16px);
}

.cp-map.cp-reveal {
    transform: translateY(20px);
}

.cp-form__input,
.cp-form__textarea {
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.cp-form__input:focus,
.cp-form__textarea:focus {
    box-shadow: 0 0 0 3px rgba(62, 106, 225, 0.12);
    transform: translateY(-1px);
}

.cp-form__submit {
    transition: background 0.18s, border-color 0.18s, transform 0.12s, box-shadow 0.12s;
}
.cp-form__submit:hover {
    box-shadow: 0 4px 16px rgba(62, 106, 225, 0.3);
    transform: translateY(-1px);
}
.cp-form__submit:active {
    transform: translateY(0);
    box-shadow: none;
}

.cp-info__icon {
    transition: background 0.2s, transform 0.2s;
}
.cp-info__item:hover .cp-info__icon {
    background: #dce7ff;
    transform: scale(1.15);
}
