:root {
    --aj-primary: #ae47b2;
    --border: #e9edf3;
    --radius: 14px;
}

body {
    background: #f6f7fb;
    color: var(--ajColor1);
}

.soft-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 6px 18px rgba(16,24,40,.06);
}

.badge-soft {
    border: 1px solid var(--border);
    background: #fff;
    color: #475569;
}

.thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.carousel-thumbnails {
    display: flex;
    overflow-x: auto;
    gap: .5rem;
    padding: .5rem 0;
}

    .carousel-thumbnails img {
        width: 120px;
        height: 80px;
        object-fit: cover;
        border-radius: 10px;
        cursor: pointer;
        opacity: .8;
        transition: all .2s;
        border: 2px solid transparent;
    }

        .carousel-thumbnails img.active {
            opacity: 1;
            border-color: var(--aj-primary);
        }

.specs dt {
    color: #64748b;
    font-weight: 600;
}

.specs dd {
    margin-bottom: .6rem;
}

.jet-section {
    display: flex;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 0 40px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.jet-image {
    flex: 2;
    background: #fff;
    max-height: 400px;
}

    .jet-image img {
        width: 100%;
        height: 100%;
        display: block;
    }

.jet-content {
    flex: 1;
    padding: 25px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .jet-content h1 {
        font-size: 3em;
        margin-bottom: 20px;
        color: #111827;
    }

    .jet-content p {
        font-size: 1.1em;
        color: #4b5563;
        margin-bottom: 30px;
        line-height: 1.6;
    }

.jet-icons {
    display: flex;
    gap: 40px;
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 30px;
    color: #1f2937;
}

    .jet-icons span {
        display: flex;
        align-items: center;
        gap: 8px;
    }

.jet-button {
    background-color: #0099ff;
    color: white;
    padding: 15px 30px;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    width: fit-content;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .jet-button:hover {
        background-color: #007acc;
    }

@media (min-width: 992px) {
    .sticky-side {
        position: sticky;
        top: 20px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1320px;
    }
}

.carousel-control-prev {
    left: 15px;
}

.carousel-control-next {
    right: 15px;
}

.carousel-control-next, .carousel-control-prev {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    top: 50%;
    margin-top: -15px;
    background: #3e3e3e;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 12px;
    height: 12px;
}

.carousel-control-next, .carousel-control-prev {
    display: none !important;
}
