    /* ===== RESET & BASE ===== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #1a2a3a;
        background: #f8fafc;
        line-height: 1.6;
    }
    a {
        text-decoration: none;
        color: inherit;
    }
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* ===== COLORS ===== */
    :root {
        --primary: #01adee;
        --dark: #112543;
        --light: #ffffff;
        --gray: #f0f4f8;
        --text: #2c3e50;
    }

    /* ===== HEADER ===== */
    .main-header {
        background: var(--light);
        box-shadow: 0 2px 20px rgba(17,37,67,0.08);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
    }
    .logo a {
        display: flex;
        align-items: center;
    }
    .logo img {
        height: 56px;
        width: auto;
    }
    .nav-menu {
        display: flex;
        gap: 30px;
        align-items: center;
        list-style: none;
    }
    .nav-menu > li {
        position: relative;
    }
    .nav-menu > li > a {
        color: var(--dark);
        font-weight: 600;
        font-size: 15px;
        padding: 8px 0;
        transition: 0.3s;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .nav-menu > li > a:hover,
    .nav-menu > li.current > a {
        color: var(--primary);
    }
    .nav-menu .sub-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--light);
        min-width: 180px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-radius: 8px;
        padding: 8px 0;
        list-style: none;
    }
    .nav-menu li:hover .sub-menu {
        display: block;
    }
    .nav-menu .sub-menu li a {
        display: block;
        padding: 8px 20px;
        color: var(--text);
        font-size: 14px;
        transition: 0.3s;
    }
    .nav-menu .sub-menu li a:hover {
        background: var(--primary);
        color: #fff;
    }
    .mobile-toggle {
        display: none;
        font-size: 24px;
        color: var(--dark);
        cursor: pointer;
    }

    /* ===== HERO ===== */
    .hero {
        padding: 60px 0 70px;
        background: linear-gradient(135deg, #e8f4fe 0%, #ffffff 100%);
    }
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .hero h1 {
        font-size: 3.2rem;
        font-weight: 800;
        color: var(--dark);
        line-height: 1.15;
        margin-bottom: 20px;
    }
    .hero h1 span {
        color: var(--primary);
    }
    .hero p {
        font-size: 1.15rem;
        color: #4a5a72;
        max-width: 480px;
        margin-bottom: 30px;
    }
    .hero-btn {
        display: inline-block;
        background: var(--primary);
        color: #fff;
        padding: 14px 40px;
        border-radius: 40px;
        font-weight: 700;
        font-size: 1rem;
        transition: 0.3s;
        border: none;
        cursor: pointer;
    }
    .hero-btn:hover {
        background: var(--dark);
        transform: translateY(-2px);
    }

    .hero-image {
        border-radius: 20px;
        position: relative;
        height: 360px;
        overflow: hidden;
        background: var(--gray);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .hero-image img {
        box-shadow: 0 20px 40px rgba(17,37,67,0.12);
        width: 100%;
        display: block;
        max-width: 100%;
        height: auto;
    }

    /* ===== SECTION TITLE ===== */
    .section-title {
        text-align: center;
        margin-bottom: 40px;
    }
    .section-title h5 {
        color: var(--primary);
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    .section-title h5 span {
        display: inline-block;
        width: 40px;
        height: 2px;
        background: var(--primary);
    }
    .section-title h2 {
        font-size: 2.4rem;
        color: var(--dark);
        margin-top: 8px;
    }

    /* ===== GOODS GRID ===== */
    .goods-section {
        padding: 60px 0;
    }
    .goods-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
    .goods-card {
        background: var(--light);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        border: 1px solid #eef2f7;
        transition: 0.3s;
        display: flex;
        flex-direction: column;
    }
    .goods-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 35px rgba(1,173,238,0.12);
        border-color: var(--primary);
    }
    .goods-thumb {
        position: relative;
        height: 220px;
        overflow: hidden;
        background: var(--gray);
    }
    .goods-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .goods-badge {
        position: absolute;
        bottom: 12px;
        left: 12px;
        background: rgba(17,37,67,0.85);
        color: #fff;
        padding: 4px 16px;
        border-radius: 20px;
        font-size: 13px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .goods-body {
        padding: 18px 20px 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .goods-body h3 {
        font-size: 1.1rem;
        color: var(--dark);
        margin-bottom: 6px;
    }
    .goods-body h3 a:hover {
        color: var(--primary);
    }
    .goods-desc {
        color: #5a6a7e;
        font-size: 14px;
        margin-bottom: 14px;
        flex: 1;
    }
    .goods-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #eef2f7;
        padding-top: 14px;
    }
    .goods-price {
        font-size: 14px;
        color: #5a6a7e;
    }
    .goods-price span {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary);
    }
    .goods-btn {
        background: var(--primary);
        color: #fff;
        padding: 8px 20px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 14px;
        transition: 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .goods-btn:hover {
        background: var(--dark);
        color: #fff;
    }

    /* ===== FOOTER ===== */
    .footer {
        background: var(--dark);
        color: #b0c4de;
        padding: 50px 0 20px;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 30px;
    }
    .footer h4 {
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    .footer p {
        font-size: 14px;
        line-height: 1.7;
    }
    .footer-logo img {
        height: 40px;
        margin-bottom: 12px;
    }
    .footer-social {
        display: flex;
        gap: 10px;
        margin-top: 16px;
    }
    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        color: #fff;
        transition: 0.3s;
    }
    .footer-social a:hover {
        background: var(--primary);
        color: #fff;
    }
    .footer-links {
        list-style: none;
    }
    .footer-links li {
        margin-bottom: 8px;
    }
    .footer-links a {
        color: #b0c4de;
        font-size: 14px;
        transition: 0.3s;
    }
    .footer-links a:hover {
        color: var(--primary);
    }
    .footer-contact li {
        list-style: none;
        margin-bottom: 10px;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .footer-contact li i {
        width: 20px;
        color: var(--primary);
    }
    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.08);
        padding-top: 18px;
        text-align: center;
        font-size: 14px;
        color: #7a8fa0;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
        .hero-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .hero p {
            margin-left: auto;
            margin-right: auto;
        }
        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }
    }
    @media (max-width: 768px) {
        .nav-menu {
            display: none;
            flex-direction: column;
            background: var(--light);
            padding: 20px;
            position: absolute;
            top: 70px;
            left: 0;
            right: 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .nav-menu.active {
            display: flex;
        }
        .mobile-toggle {
            display: block;
        }
        .hero h1 {
            font-size: 2.2rem;
        }
        .goods-grid {
            grid-template-columns: 1fr 1fr;
        }
        .footer-grid {
            grid-template-columns: 1fr;
        }
    }
    @media (max-width: 480px) {
        .goods-grid {
            grid-template-columns: 1fr;
        }
        .section-title h2 {
            font-size: 1.8rem;
        }
    }


    /* ===== СТРАНИЦА КАТЕРА ===== */

    .boat-detail-section {
        padding: 40px 0 60px;
        background: var(--gray, #f0f4f8);
    }

    /* Хлебные крошки */
    .breadcrumbs {
        margin-bottom: 30px;
    }
    .breadcrumbs ol {
        list-style: none;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        padding: 0;
    }
    .breadcrumbs li {
        font-size: 14px;
        color: #6a7a8e;
    }
    .breadcrumbs li:not(:last-child)::after {
        content: '/';
        margin-left: 10px;
        color: #b0c4de;
    }
    .breadcrumbs a {
        color: var(--primary, #01adee);
        transition: 0.3s;
    }
    .breadcrumbs a:hover {
        color: var(--dark, #112543);
    }
    .breadcrumbs [aria-current="page"] {
        color: var(--dark, #112543);
        font-weight: 600;
    }

    /* Сетка детальной страницы */
    .boat-detail-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        background: var(--light, #ffffff);
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }

    /* Галерея */
    .boat-gallery {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .gallery-main {
        border-radius: 16px;
        overflow: hidden;
        background: var(--gray, #f0f4f8);
        aspect-ratio: 4/3;
    }
    .gallery-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.3s;
    }
    .gallery-thumbs {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 10px;
    }
    .thumb-item {
        border-radius: 10px;
        overflow: hidden;
        aspect-ratio: 1;
        cursor: pointer;
        border: 2px solid transparent;
        transition: 0.3s;
        background: var(--gray, #f0f4f8);
    }
    .thumb-item:hover {
        transform: scale(1.05);
    }
    .thumb-item.active {
        border-color: var(--primary, #01adee);
    }
    .thumb-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Информация о катере */
    .boat-info {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .boat-type-badge {
        display: inline-block;
        background: var(--primary, #01adee);
        color: #fff;
        padding: 4px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        width: fit-content;
    }
    .boat-info h1 {
        font-size: 2.2rem;
        color: var(--dark, #112543);
        margin: 0;
        line-height: 1.2;
    }
    .boat-attributes {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        padding: 12px 0;
        border-top: 1px solid #eef2f7;
        border-bottom: 1px solid #eef2f7;
    }
    .attr-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #4a5a72;
        font-size: 14px;
    }
    .attr-item i {
        color: var(--primary, #01adee);
        font-size: 18px;
    }
    .boat-price-block {
        background: linear-gradient(135deg, #e8f4fe, #f8fafc);
        padding: 16px 20px;
        border-radius: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .price-label {
        color: #4a5a72;
        font-size: 14px;
    }
    .price-value {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary, #01adee);
    }
    .boat-description h3,
    .boat-equipment h3,
    .boat-video h3 {
        font-size: 1.1rem;
        color: var(--dark, #112543);
        margin-bottom: 10px;
    }
    .boat-description p {
        color: #4a5a72;
        line-height: 1.8;
        font-size: 15px;
    }
    .equipment-list {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .equipment-list li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: #4a5a72;
    }
    .equipment-list li i {
        color: var(--primary, #01adee);
    }
    .boat-video-player {
        width: 100%;
        border-radius: 12px;
        max-height: 300px;
        background: #000;
    }
    .boat-actions {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        margin-top: 10px;
    }
    .btn-primary {
        background: var(--primary, #01adee);
        color: #fff;
        padding: 14px 32px;
        border-radius: 40px;
        font-weight: 700;
        transition: 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        border: none;
    }
    .btn-primary:hover {
        background: var(--dark, #112543);
        color: #fff;
        transform: translateY(-2px);
    }
    .btn-large {
        font-size: 1.1rem;
        padding: 16px 40px;
    }
    .btn-secondary {
        background: transparent;
        color: var(--dark, #112543);
        padding: 14px 24px;
        border-radius: 40px;
        font-weight: 600;
        transition: 0.3s;
        border: 2px solid #eef2f7;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    .btn-secondary:hover {
        border-color: var(--primary, #01adee);
        color: var(--primary, #01adee);
    }

    /* Похожие предложения */
    .similar-boats {
        margin-top: 50px;
        padding-top: 40px;
        border-top: 1px solid #eef2f7;
    }
    .similar-boats .section-title {
        text-align: center;
        font-size: 1.8rem;
        color: var(--dark, #112543);
        margin-bottom: 30px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
        .boat-detail-grid {
            grid-template-columns: 1fr;
            padding: 30px;
        }
        .boat-info h1 {
            font-size: 1.8rem;
        }
        .price-value {
            font-size: 1.6rem;
        }
        .equipment-list {
            grid-template-columns: 1fr;
        }
    }
    @media (max-width: 768px) {
        .boat-detail-grid {
            padding: 20px;
            gap: 30px;
        }
        .boat-actions {
            flex-direction: column;
        }
        .btn-primary, .btn-secondary {
            justify-content: center;
        }
        .gallery-thumbs {
            grid-template-columns: repeat(4, 1fr);
        }
    }
    @media (max-width: 480px) {
        .boat-detail-grid {
            padding: 16px;
        }
        .boat-info h1 {
            font-size: 1.4rem;
        }
        .price-value {
            font-size: 1.3rem;
        }
        .boat-attributes {
            flex-direction: column;
            gap: 10px;
        }
    }
