:root {
    --eh-blue: #0d4b9f;
    --eh-blue-light: #1a5eb8;
    --eh-blue-very-light:rgb(226, 238, 255);
    --eh-dark: #1a1a1a;
    --eh-gray: #6b7280;
    --eh-green: #008800;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

h1 {font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem;}
h2 {font-size: 2rem; font-weight: 700; margin-bottom: 1.25rem;}
h3 {font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem;}
h4 {font-size: 1.125rem; font-weight: 700; margin-bottom: .75rem;}




a {color:var(--eh-blue);}
a:hover, a:active {color:var(--eh-blue-light);}

.eh-blue {color:var(--eh-blue);}
.eh-bg-blue {background-color:var(--eh-blue); color:#fff;}

.btn {border-radius: 24px;}
.btn-blue {background-color:var(--eh-blue); color:#fff;}
.btn-blue:hover {background-color:var(--eh-blue-light); color:#fff;}
.btn-white {background-color: #fff; color:var(--eh-blue);}
.btn-white:hover {background-color: #f0f0f0;}
.oh-x {overflow-x: auto;}

/* Header styles */
.header {
    background-color: #fff;
    position: relative;
    z-index: 100;
}

.header-top-row {
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.header-top-content {
    width: 100%;
}

.header-top-content .row {
    margin: 0;
}

/* Mobile controls - hidden on desktop */
.header .mobile-controls {
    display: none;
}

.logo-text {
    color: var(--eh-blue);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
}

.logo-subtitle {
    color: var(--eh-blue);
    font-size: 0.85rem;
    margin-top: 2px;
}

.city-select {
    display: flex;
    align-items: center;
}

.city-select-dropdown {
    border: 1px solid var(--eh-blue);
    color: var(--eh-blue);
    border-radius: 20px;
    padding: 8px 35px 8px 20px;
    background: transparent;
    font-size: 0.95rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%230d4b9f' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    transition: border-color 0.3s ease;
}

.city-select-dropdown:hover {
    border-color: var(--eh-blue-light);
}

.city-select-dropdown:focus {
    outline: none;
    border-color: var(--eh-blue-light);
    box-shadow: 0 0 0 0.2rem rgba(13, 75, 159, 0.15);
}

.city-tags ul {display: flex; list-style: none; padding: 0; margin: 0; gap: 8px}
.city-tags ul li a, .city-tags ul li span {display: inline-block; padding: 4px 8px; font-size: 0.9rem; background: #f0f5ff; border: solid 1px #d8e5ff; border-radius: 4px; text-decoration: none;}
.city-tags ul li a:hover {background-color:#d8e5ff;}

.phone-block {
    text-align: left;
}

.phone-number {
    color: var(--eh-blue);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
}

.phone-number:hover {
    color: var(--eh-blue-light);
}

.phone-info {
    color: #666;
    font-size: 0.8rem;
    margin-top: 2px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--eh-blue);
    border-radius: 50%;
    color: var(--eh-blue);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--eh-blue);
    color: #fff;
}

.btn-callback {
    background-color: var(--eh-blue);
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-callback:hover {
    background-color: var(--eh-blue-light);
}

/* Responsive visibility helpers */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Mobile Controls */
.mobile-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-call-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--eh-blue);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mobile-call-btn:hover {
    background-color: var(--eh-blue-light);
}

/* Burger Button */
.burger-btn {
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    position: relative;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--eh-blue);
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Desktop Navigation */
.desktop-nav {
    border-top: 1px solid #e5e5e5;
    padding: 0;
    display: block;
}

.desktop-nav .container {
    display: block;
}

.desktop-nav .navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 1rem 0;
    margin: 0;
    list-style: none;
}

.desktop-nav .navbar-nav > li {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.desktop-nav .navbar-nav > li:not(:last-child):not(.more-menu)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background-color: #e5e5e5;
}

.desktop-nav .navbar-nav > li > a {
    color: var(--eh-blue);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 15px 20px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    white-space: nowrap;
    position: relative;
}

/* Touch device dropdown toggle arrow */
@media (hover: none) and (pointer: coarse) {
    .desktop-nav .navbar-nav > li.has-dropdown:not(.more-menu) {
        position: relative;
        padding-right: 15px;
    }

    .desktop-nav .navbar-nav > li.has-dropdown:not(.more-menu) > a {
        padding-right: 10px;
    }

    .desktop-nav .navbar-nav > li.has-dropdown:not(.more-menu)::after {
        content: '';
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid var(--eh-blue);
        width: 0;
        height: 0;
        cursor: pointer;
        z-index: 10;
        transition: transform 0.3s ease;
    }

    .desktop-nav .navbar-nav > li.has-dropdown.opened:not(.more-menu)::after {
        transform: translateY(-50%) rotate(180deg);
    }
}

.desktop-nav .navbar-nav > li > a:hover {
    color: var(--eh-blue-light);
}

/* Dropdown arrow indicator */
.desktop-nav .navbar-nav > li > ul::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    z-index: 1001;
}

/* Dropdown submenu */
.desktop-nav .navbar-nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

/* Hover works on non-touch devices */
body:not(.touch-device) .desktop-nav .navbar-nav > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Opened class works on touch devices only */
body.touch-device .desktop-nav .navbar-nav > li.opened > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Opened class for .more-menu on all devices (click toggle) */
.desktop-nav .navbar-nav > li.more-menu.opened > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-nav .navbar-nav ul li {
    position: relative;
}

.desktop-nav .navbar-nav ul a {
    color: var(--eh-dark);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.desktop-nav .navbar-nav ul a:hover {
    background-color: #f8f9fa;
    color: var(--eh-blue);
}

/* More Menu - initially hidden */
.desktop-nav .navbar-nav > li.more-menu {
    display: none;
}

/* Скрываем вложенные more-menu, которые генерирует MODX в подменю */
.desktop-nav .navbar-nav ul .more-menu {
    display: none !important;
}

.desktop-nav .navbar-nav > li.more-menu > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.desktop-nav .navbar-nav > li.more-menu > ul {
    right: 0;
    left: auto;
}

.desktop-nav .navbar-nav > li.more-menu > ul::before {
    left: auto;
    right: 20px;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -270px;
    width: 270px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    z-index: 280;
    overflow-y: auto;
    transition: right 0.3s ease;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-content {
    padding: 20px;
    position: relative;
}

/* Sidebar Close Button */
.sidebar-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    color: var(--eh-blue);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 10;
    transition: color 0.3s ease;
}

.sidebar-close-btn:hover {
    color: var(--eh-blue-light);
}

.sidebar-close-btn i {
    font-weight: bold;
}

/* Phone Numbers Section */
.mobile-sidebar-phones {
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 15px;
}

.mobile-sidebar-phone {
    margin-bottom: 12px;
}

.mobile-sidebar-phone:last-child {
    margin-bottom: 0;
}

.mobile-phone-number {
    color: var(--eh-blue);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: block;
}

.mobile-phone-info {
    color: #666;
    font-size: 0.7rem;
    margin-top: 2px;
}

/* Messengers & Callback Actions */
.mobile-sidebar-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 15px;
}

.mobile-sidebar-messengers {
    display: flex;
    gap: 8px;
}

.mobile-sidebar-messengers a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--eh-blue);
    border-radius: 50%;
    color: var(--eh-blue);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.mobile-sidebar-messengers a:hover {
    background-color: var(--eh-blue);
    color: #fff;
}

.mobile-callback-btn {
    flex: 1;
    background-color: var(--eh-blue);
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.mobile-callback-btn:hover {
    background-color: var(--eh-blue-light);
}

/* City Select */
.mobile-sidebar-city {
    margin-bottom: 20px;
}

.mobile-sidebar-city .city-select-dropdown {
    width: 100%;
    font-size: 0.85rem;
    padding: 10px 30px 10px 15px;
}

/* Mobile Sidebar Navigation */
.mobile-sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-sidebar-nav > ul > li {
    border-bottom: 1px solid #e5e5e5;
}

/* Menu item wrapper for items with submenu */
.menu-item-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.mobile-sidebar-nav > ul > li > a,
.menu-item-wrapper > a {
    color: var(--eh-blue);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
    flex: 1;
}

.mobile-sidebar-nav > ul > li > a {
    display: block;
    padding: 15px 0;
}

.mobile-sidebar-nav > ul > li > a:hover,
.menu-item-wrapper > a:hover {
    color: var(--eh-blue-light);
}

/* Submenu toggle button */
.submenu-toggle {
    background: none;
    border: none;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eh-blue);
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.submenu-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.has-submenu.active .submenu-toggle i {
    transform: rotate(90deg);
}

/* Mobile Submenu */
.mobile-sidebar-nav ul ul {
    max-height: 0;
    overflow: hidden;
    background-color: #f8f9fa;
    margin: 0 -20px;
    padding: 0 20px;
    transition: max-height 0.3s ease;
}

.mobile-sidebar-nav ul ul.active {
    max-height: 500px;
    padding: 10px 20px;
}

.mobile-sidebar-nav ul ul li {
    border-bottom: 1px solid #e0e0e0;
}

.mobile-sidebar-nav ul ul li:last-child {
    border-bottom: none;
}

.mobile-sidebar-nav ul ul a {
    display: block;
    padding: 12px 0 12px 15px;
    color: var(--eh-dark);
    font-weight: 500;
    font-size: 0.8rem;
    text-decoration: none;
}

.mobile-sidebar-nav ul ul a:hover {
    color: var(--eh-blue);
}

/* Mobile Sidebar Overlay */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 200;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Breakpoints */


/* Desktop (>=1400px) - Hide "More" menu */
@media (min-width: 1400px) {
    .desktop-nav .navbar-nav > li.more-menu {
        display: none !important;
    }

    .desktop-nav .navbar-nav .show-small,
    .desktop-nav .navbar-nav .show-medium {
        display: none !important;
    }
}

/* Compact Header for medium screens (992-1400px) */
@media (min-width: 992px) and (max-width: 1399.98px) {
    /* Reduce logo size */
    .logo img {
        height: 40px !important;
    }

    /* Reduce phone font sizes */
    .phone-number {
        font-size: 1rem;
    }

    .phone-info {
        font-size: 0.7rem;
    }

    /* Reduce city select font */
    .city-select-dropdown {
        font-size: 0.85rem;
        padding: 6px 30px 6px 15px;
    }

    /* Make callback button icon-only */
    .btn-callback {
        padding: 10px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        justify-content: center;
        gap: 0;
    }

    .btn-callback .btn-callback-text {
        display: none;
    }

    .btn-callback i {
        margin: 0 !important;
        font-size: 1.1rem;
    }

    /* Reduce social icon sizes */
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    /* Reduce gaps */
    .header-top-row .d-flex {
        gap: 15px !important;
    }

    .col-auto .d-flex {
        gap: 15px !important;
    }

    .col-auto.d-flex {
        gap: 15px !important;
    }
}

/* Medium Desktop (990-1200px) - Show some items in "More" */
@media (min-width: 992px) and (max-width: 1399.98px) {
    .desktop-nav .navbar-nav .hide-small {
        display: none !important;
    }

    .desktop-nav .navbar-nav .hide-medium {
        display: none !important;
    }

    .desktop-nav .navbar-nav > li.more-menu {
        display: inline-block !important;
    }

    .desktop-nav .navbar-nav ul .more-menu {
        display: none !important;
    }

    .desktop-nav .navbar-nav > li.more-menu .show-medium {
        display: none !important;
    }

    .desktop-nav .navbar-nav .always-visible::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 20px;
        width: 1px;
        background-color: #e5e5e5;
    }
}

/* Small Desktop (992-1100px) - Show more items in "More" */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .desktop-nav .navbar-nav .hide-medium {
        display: none !important;
    }

    .desktop-nav .navbar-nav > li.more-menu .show-medium {
        display: block !important;
    }
}

/* Tablet & Mobile (<992px) - Hide desktop, show mobile */
@media (max-width: 991.98px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .desktop-nav {
        display: none;
    }

    .header-top-row {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: #fff;
        z-index: 101;
        border-bottom: 1px solid #e5e5e5;
    }

    .header .mobile-controls {
        display: flex !important;
        align-items: center;
        gap: 10px;
        position: static;
        transform: none;
        justify-content: flex-end;
        padding: 0 5px;
    }

    body {
        padding-top: 80px;
    }
}

/* Small Mobile (<576px) - Optimize spacing */
@media (max-width: 575.98px) {
    .header-top {
        padding: 10px 0;
    }

    .logo img {
        height: 40px !important;
    }

    .mobile-call-btn,
    .burger-btn {
        width: 40px;
        height: 40px;
    }

    body {
        padding-top: 60px;
    }


    h1 {font-size: 2rem;}
    h2 {font-size: 1.5rem;}
    h3 {font-size: 1.125rem;}
    h4 {font-size: 1rem;}
}

/* Modal styles */
.modal-content {
    border: none;
    border-radius: 15px;
}

.modal-header {
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 25px;
}

.modal-title {
    color: var(--eh-blue);
    font-weight: 700;
}

.modal-body {
    padding: 25px;
}

.modal-body .form-label {
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
}

.modal-body .form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.modal-body .form-control:focus {
    border-color: var(--eh-blue);
    box-shadow: 0 0 0 0.2rem rgba(13, 75, 159, 0.15);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background-color: #fff;
}

.hero-snow {
    position: absolute;
    top: 0;
    left: 50px;
    opacity: 0.6;
    pointer-events: none;

}

.hero-snow img {
    width: 350px;
    height: auto;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    color: var(--eh-dark);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 30px;
}

.hero-features {
    display: grid;
    gap:20px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 30px;
}

.hero-feature {


}

.hero-feature-title {
    color: var(--eh-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-feature-text {
    color: var(--eh-gray);
    font-size: 0.95rem;
    line-height: 1.3;
}

.btn-hero {
    background-color: var(--eh-blue);
    border: none;
    border-radius: 25px;
    padding: 14px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-hero:hover {
    background-color: var(--eh-blue-light);
}

.hero-image {
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .hero-image {
        margin-top: 40px;
        text-align: center;
    }

    .hero-snow {
        display: none;
    }
}

/* Stories Slider */
.stories-section {
    padding: 60px 0;
    background-color: #fff;
}

.stories-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

.stories-slider {
    overflow: hidden;
}

.story-card {
    display: block;
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
}

.story-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.story-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
}

.story-card-content h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    text-transform: uppercase;
}

.stories-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 10px;
    background-color: var(--eh-blue);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.stories-nav:hover {
    background-color: var(--eh-blue-light);
}

.stories-nav-prev {
    left: 0;
}

.stories-nav-next {
    right: 0;
}

.stories-nav.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 991.98px) {
    .stories-section {
        padding: 40px 0;
    }

    .stories-slider-wrapper {
        padding: 0;
    }

    .story-card {
        height: 350px;
    }

    .stories-nav {
        display: none;
    }
}

/* Section Title */
.section-title {
    color: var(--eh-dark);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Products Section */
.swiperProducts {position: relative;}
.swiperProducts .stories-nav {top:130px;}
.swiperProducts .stories-nav-prev {
    left: 10px;
}

.swiperProducts .stories-nav-next {
    right: 10px;
}

.products-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}



.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

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

.product-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-badges {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
}

.badge-size {
    background-color: var(--eh-blue);
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-year {
    background-color: #fff;
    color: var(--eh-dark);
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #e5e5e5;
}

.product-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-title {
    color: var(--eh-blue);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card-specs li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--eh-gray);
}

.product-card-specs li i {
    color: var(--eh-blue);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.product-card-footer {
    margin-top: auto;
}

.product-card-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.product-card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--eh-dark);
}

.product-card-price.on-demand {
    font-size: 1rem;
    font-weight: 600;
    color: var(--eh-gray);
}

.product-card-price.from-price {
    font-size: 1rem;
    font-weight: 400;
    color: var(--eh-dark);
}

.product-card-price.from-price strong {
    font-size: 1.25rem;
    font-weight: 700;
}

.product-card-stock {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-card-stock.in-stock {
    color: #22c55e;
}

.product-card-stock.on-order {
    color: var(--eh-gray);
}

.product-card-buttons {
    display: flex;
    gap: 10px;
}

.product-card-buttons .btn {
    padding: 12px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 25px;
    text-transform: uppercase;
    flex: 1 0 auto;
}

.product-card-buttons.two-buttons .btn {
    flex: 1;
}

.product-card-buttons .btn-primary {
    background-color: var(--eh-blue);
    border-color: var(--eh-blue);
}

.product-card-buttons .btn-primary:hover {
    background-color: var(--eh-blue-light);
    border-color: var(--eh-blue-light);
}

.product-card-buttons .btn-outline-primary {
    color: var(--eh-blue);
    border-color: var(--eh-blue);
    background-color: transparent;
}

.product-card-buttons .btn-outline-primary:hover {
    background-color: var(--eh-blue);
    color: #fff;
}

.product-card-image {
    display: block;
}

.product-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card-title a:hover {
    color: var(--eh-blue-light);
}

@media (max-width: 991.98px) {
    .products-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
}

.single-swiper-wrapper {position: relative;}
.single-swiper-wrapper .stories-nav-next {right:1rem;}
.single-swiper-wrapper .stories-nav-prev {left:1rem;}


/* Products Slider Section */
.products-slider-section {
    padding: 60px 0;
    background-color: #fff;
}

.products-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

.products-slider {
    overflow: hidden;
}

.products-slider .product-card {
    height: 100%;
}

.products-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 10px;
    background-color: var(--eh-blue);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.products-nav:hover {
    background-color: var(--eh-blue-light);
}

.products-nav-prev {
    left: 0;
}

.products-nav-next {
    right: 0;
}

.products-nav.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 991.98px) {
    .products-slider-section {
        padding: 40px 0;
    }

    .products-slider-wrapper {
        padding: 0;
    }

    .products-nav {
        display: none;
    }
}

/* Footer */
.footer {
    position: relative;
    background-color: #0a2a4a;
    padding: 60px 0;
    overflow: hidden;
}

.footer-snow {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.1;
    pointer-events: none;
}

.footer-snow img {
    width: 350px;
    height: auto;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 70px;
    width: auto;
}

.footer-nav {
    margin-bottom: 30px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--eh-blue-light);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--eh-blue);
    border-color: var(--eh-blue);
}

.footer-contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.footer-contact-block {
    margin-bottom: 0;
}

.footer-contact-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.footer-contact-phone {
    display: block;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-contact-phone:hover {
    color: var(--eh-blue-light);
}

.footer-contact-address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-btn-callback {
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-btn-callback:hover {
    background-color: #fff;
    color: var(--eh-dark);
}


.footer-law-links {padding-top: 2rem; border-top: solid 1px rgba(255, 255, 255, 0.5);}
.footer-law-links ul {list-style: none; padding: 0; margin: 0; display: flex; gap: 20px; flex-wrap: wrap;}
.footer-law-links ul li a {text-decoration: none; color: #fff; opacity: 0.7; font-size: 0.8rem;}
.footer-law-links ul li a:hover {opacity: 1;}

@media (max-width: 991.98px) {
    .footer {
        padding: 40px 0;
    }

    .footer-snow {
        display: none;
    }

    .footer-contact-phone {
        font-size: 1.1rem;
    }

    .footer .col-lg-3,
    .footer .col-lg-6 {
        margin-bottom: 30px;
    }

    .footer .col-lg-6 {
        margin-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .footer-contacts-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Content Page Styles + Custom
   ============================================ */

.page-header {
  overflow: hidden;
}

.page-header__bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  position: relative;
  border-radius: 1rem;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 1;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header__content {
  max-height: none;
  padding: 15vh 2rem 2rem 2rem;
  position: relative;
  z-index: 2;
}

.page-header__content h1 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-header__intro {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  max-width: 600px;
}

.page-header__content .btn {
  padding: 0.625rem 1.75rem;
}

@media (max-width: 767.98px) {
  .page-header {
    aspect-ratio: auto;
    min-height: 50vh;
  }

  .page-header__content h1 {
    font-size: 1.75rem;
  }

  .page-header__content {
    padding-bottom: 1.5rem;
  }
}



.item-category {
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0e0e0;
}

.item-category .item-image a {
  display: block;
  line-height: 0;
}

.item-category .item-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.item-category .item-text {
  background: #f5f5f5;
  padding: 1.25rem;
  border-radius: 0 0 0.75rem 0.75rem;
}

.item-category .item-title a {
  font-size: 1.125rem;
  font-weight: 600;
  color: #212529;
  text-decoration: none;
}

.item-category .item-title a:hover {
  color: var(--bs-primary);
}




.page-nav-cards ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.page-nav-cards li {
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  background: #f5f5f5;
  transition: background 0.2s, box-shadow 0.2s;
}

.page-nav-cards li:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-nav-cards li a {
  display: block;
  padding: 1.25rem 1.5rem;
  color: #212529;
  font-weight: 600;
  text-decoration: none;
}

.page-nav-cards li a:hover {
  color: var(--bs-primary);
}

.page-nav-cards.sm ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-nav-cards.sm li a {
  display: block;
  white-space: nowrap;
  padding: 0.5rem 0.5rem;
    
}

@media (max-width: 767.98px) {
  .page-nav-cards ul {
    grid-template-columns: 1fr;
  }
}


.mFilter-filters {display: flex; gap:15px; justify-content: space-between;}
.mFilter-prodyear {flex:1 0 70%}
.mFilter-brand {flex:1 0 25%}

.mFilter-prodyear .mFilter-items {display: flex; flex-wrap: wrap; gap:10px;}


/* FAQ Section */
.faq {
  background-color: #f8f9fa;
}

.faq h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--eh-dark);
  margin-bottom: 3rem;
}

.faq .accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq .accordion-item {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}

.faq .accordion-item:last-child {
  margin-bottom: 0;
}

.faq .accordion-header {
  margin: 0;
}

.faq .accordion-button {
  font-size: 1rem;
  font-weight: 600;
  color: var(--eh-dark);
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  border: none;
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: var(--eh-blue);
  box-shadow: none;
}

.faq .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d4b9f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  width: 1.25rem;
  height: 1.25rem;
}

.faq .accordion-body {
  padding: 1.5rem;
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .faq h2 {
    font-size: 2.5rem;
  }

  .faq .accordion-button {
    font-size: 1.125rem;
    padding: 1.5rem 2rem;
  }

  .faq .accordion-body {
    padding: 1.5rem 2rem;
    font-size: 1.0625rem;
  }
}

@media (min-width: 992px) {
  .faq {
    padding: 5rem 0;
  }

  .faq h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
  }
}


/* ============================================
   Product Page Styles
   ============================================ */

/* Product Hero Section */
.product-hero {
    padding: 40px 0 60px;
    background-color: #fff;
}

.product-title {
    color: var(--eh-dark);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

/* Product Gallery */
.product-gallery {
    display: flex;
    gap: 15px;
}

.product-gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.product-thumb {
    width: 80px;
    height: 60px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: none;
    transition: border-color 0.3s ease;
}

.product-thumb:hover {
    border-color: var(--eh-blue-light);
}

.product-thumb.active {
    border-color: var(--eh-blue);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-main {
    position: relative;
    flex-grow: 1;
    border-radius: 15px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.product-gallery-slider {
    width: 100%;
    height: 100%;
}

.product-gallery-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery-slider .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
}

.product-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background-color: var(--eh-blue);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.product-gallery-nav:hover {
    background-color: var(--eh-blue-light);
}

.product-gallery-prev {
    left: 15px;
}

.product-gallery-next {
    right: 15px;
}

.product-gallery-watermark {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 8px;
}

.product-gallery-watermark img {
    height: 30px;
    width: auto;
}

.product-gallery-watermark span {
    color: var(--eh-blue);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Product Info */
.product-info {
    padding-left: 30px;
}

.product-specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-specs-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--eh-gray);
}

.product-specs-list li i {
    color: var(--eh-blue);
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.product-specs-list li.icon-green i {
    color: var(--eh-green);

}


.product-price-block {
    margin-bottom: 25px;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--eh-dark);
    margin-bottom: 5px;
}

.product-price-question {
    color: var(--eh-blue);
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 1px dashed var(--eh-blue);
    transition: border-color 0.3s ease;
}

.product-price-question:hover {
    color: var(--eh-blue-light);
    border-color: transparent;
}

.product-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-buttons .btn {
    flex: 1;
    padding: 15px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
}

.product-buttons .btn-primary {
    background-color: var(--eh-blue);
    border-color: var(--eh-blue);
}

.product-buttons .btn-primary:hover {
    background-color: var(--eh-blue-light);
    border-color: var(--eh-blue-light);
}

.product-buttons .btn-outline-primary {
    color: var(--eh-blue);
    border-color: var(--eh-blue);
    background-color: transparent;
}

.product-buttons .btn-outline-primary:hover {
    background-color: var(--eh-blue);
    color: #fff;
}

.product-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.product-action {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--eh-blue);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.product-action:hover {
    color: var(--eh-blue-light);
}

.product-action i {
    font-size: 1.3rem;
}

.product-action span {
    line-height: 1.3;
}

/* Product Features Section */
.product-features {
    padding: 50px 0;
    background-color: #fff;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.product-feature {
    text-align: center;
    padding: 0 15px;
}

.product-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f5ff;
    border-radius: 10px;
}

.product-feature-icon i {
    font-size: 1.5rem;
    color: var(--eh-blue);
}

.product-feature-title {
    color: var(--eh-dark);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-feature-text {
    color: var(--eh-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Product Tabs Section */
.product-tabs-section {
    padding: 60px 0;
    background-color: #fff;
}

.product-tabs {
    border-bottom: 2px solid #e5e5e5;
    margin-bottom: 30px;
}

.product-tabs .nav-link {
    color: var(--eh-gray);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s ease;
}

.product-tabs .nav-link:hover {
    color: var(--eh-blue);
    border-color: transparent;
}

.product-tabs .nav-link.active {
    color: var(--eh-blue);
    background-color: transparent;
    border-color: var(--eh-blue);
}

.product-tabs-content {
    padding: 20px 0;
}

/* Specs Table */
.specs-table {
    max-width: 600px;
}

.specs-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
}

.specs-row:last-child {
    border-bottom: none;
}

.specs-label {
    color: var(--eh-gray);
    font-size: 0.95rem;
}

.specs-value {
    color: var(--eh-dark);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Product Description */
.product-description {
    max-width: 800px;
}

.product-description p {
    color: var(--eh-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.product-description p:last-child {
    margin-bottom: 0;
}





/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.newsletter-wrapper {
    background: linear-gradient(135deg, var(--eh-blue) 0%, var(--eh-blue-light) 100%);
    border-radius: 20px;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
}

.newsletter-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.newsletter-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: 10%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-title {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.newsletter-form {
    position: relative;
    z-index: 1;
}

.newsletter-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.newsletter-input {
    flex: 1;
    background-color: #fff;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    color: var(--eh-dark);
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: var(--eh-gray);
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
    background-color: #fff;
    color: var(--eh-blue);
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #f0f5ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.newsletter-btn i {
    font-size: 1.1rem;
}

.newsletter-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.newsletter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--eh-dark);
}

.newsletter-checkbox .checkbox-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
}

.newsletter-checkbox .checkbox-text a {
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.newsletter-checkbox .checkbox-text a:hover {
    opacity: 0.8;
}

@media (max-width: 991.98px) {
    .newsletter-section {
        padding: 40px 0;
    }

    .newsletter-wrapper {
        padding: 35px 30px;
    }

    .newsletter-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .newsletter-title {
        font-size: 1.5rem;
    }

    .newsletter-form-row {
        flex-direction: column;
    }

    .newsletter-btn {
        justify-content: center;
        width: 100%;
    }

    .newsletter-checkbox {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .newsletter-wrapper {
        padding: 30px 20px;
    }

    .newsletter-title {
        font-size: 1.35rem;
    }

    .newsletter-text {
        font-size: 0.9rem;
    }

    .newsletter-checkbox .checkbox-text {
        font-size: 0.8rem;
    }
}

/* How to Buy Section Wrapper */
.how-to-buy-wrapper {
    padding: 60px 0;
    background-color: #fff;
}

/* How to Buy Section */
.how-to-buy {
    background-color: #F2F9FF;
    color: var(--eh-dark);
    border-radius: 20px;
    padding: 50px;
    overflow: hidden;
}


.how-to-buy-intro {
    padding-right: 30px;
}

.how-to-buy-title {
    color: var(--eh-dark);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.how-to-buy-subtitle {
    color: var(--eh-gray);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

.how-to-buy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.how-to-buy-action {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--eh-blue);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.how-to-buy-action:hover {
    color: var(--eh-blue-light);
}

.how-to-buy-action i {
    font-size: 1.2rem;
}

.how-to-buy-action span {
    line-height: 1.3;
}

.how-to-buy-steps {
    display: block;
}

.how-to-buy-step {
    position: relative;
    display: flex;
    margin-bottom: 1.5rem;
}

.how-to-buy-step .bi {font-size: 1.5rem;}


.how-to-buy-step-title {
    color: var(--eh-dark);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.how-to-buy-step p {
    color: var(--eh-gray);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.how-to-buy-image {
    border-radius: 15px;
    overflow: hidden;
}

.how-to-buy-image img {
    width: 100%;
    height: auto;
    display: block;
}

.how-to-buy-btn {
    margin-top: 30px;
    padding: 15px 40px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    background-color: var(--eh-blue);
    border-color: var(--eh-blue);
}

.how-to-buy-btn:hover {
    background-color: var(--eh-blue-light);
    border-color: var(--eh-blue-light);
}

/* Product Page Responsive */
@media (max-width: 991.98px) {
    .product-hero {
        padding: 30px 0 40px;
    }

    .product-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .product-gallery {
        flex-direction: column-reverse;
    }

    .product-gallery-thumbs {
        flex-direction: row;
        justify-content: center;
    }

    .product-gallery-main {
        min-height: 300px;
    }

    .product-info {
        padding-left: 0;
        margin-top: 30px;
    }

    .product-features {
        padding: 40px 0;
    }

    .product-feature {
        margin-bottom: 30px;
    }

    .product-tabs-section {
        padding: 40px 0;
    }

    .product-tabs .nav-link {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .how-to-buy-wrapper {
        padding: 40px 0;
    }

    .how-to-buy {
        padding: 30px;
        border-radius: 15px;
    }

    .how-to-buy-intro {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .how-to-buy-steps {
        margin-bottom: 30px;
        grid-template-columns: 1fr;
    }

    .how-to-buy-btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .product-buttons {
        flex-direction: column;
    }

    .product-actions {
        justify-content: center;
    }

    .specs-table {
        max-width: 100%;
    }

    .specs-row {
        flex-direction: column;
        gap: 5px;
    }

    .how-to-buy-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   CTA Section Styles
   ============================================ */

.cta-delivery {background-color: var(--eh-blue-very-light);}

.city-list {display: flex; gap:10px; flex-wrap: wrap;}
.city-button {border:none; border-radius: 8px; background-color:#f2f2f2; padding:15px;}
.city-button:hover, .city-button:active {background-color: #cae1ff;}

.cta-section {
    padding: 40px;
    background-color: #f9f9f9;
}

.cta-content {
    padding-right: 30px;
}

.cta-title {
    color: var(--eh-dark);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.cta-subtitle {
    color: var(--eh-gray);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

.cta-image {
    max-width: 100%;
}

.cta-image img {
    width: 100%;
    height: auto;
}

.cta-form {

}

.cta-form .form-label {
    color: var(--eh-gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.cta-form .form-control,
.cta-form .form-select {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    color: var(--eh-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-form .form-control:focus,
.cta-form .form-select:focus {
    border-color: var(--eh-blue);
    box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.1);
}

.cta-form .form-control::placeholder {
    color: #adb5bd;
}

.cta-form textarea.form-control {
    resize: none;
}

.cta-privacy {
    margin-top: 15px;
    margin-bottom: 20px;
}

.cta-privacy .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border-color: #e5e5e5;
}

.cta-privacy .form-check-input:checked {
    background-color: var(--eh-blue);
    border-color: var(--eh-blue);
}

.cta-privacy .form-check-label {
    color: var(--eh-gray);
    font-size: 0.8rem;
    line-height: 1.4;
    padding-left: 5px;
}

.cta-privacy .form-check-label a {
    color: var(--eh-blue);
    text-decoration: none;
}

.cta-privacy .form-check-label a:hover {
    text-decoration: underline;
}

.cta-submit {
    width: 100%;
    padding: 15px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    background-color: var(--eh-blue);
    border-color: var(--eh-blue);
}

.cta-submit:hover {
    background-color: var(--eh-blue-light);
    border-color: var(--eh-blue-light);
}

/* CTA Section Responsive */
@media (max-width: 991.98px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .cta-section {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-form .row > div {
        width: 100%;
    }
}
