

:root {
    --purple: #6b46c1;
    --cyan: #06b6d4;
    --dark: #0f0f1e;
    --card-bg: #1a212e;
    --text: #f5f5f5;
    --main-font-color: rgb(6, 147, 227);
    --main-accent-color: rgb(6, 147, 227);
}

.carousel-items {
    display: flex;
    gap: 1.5rem;
}

.carousel-container {
    position: relative;
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 40px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.highlighted {
    border: 2px solid var(--main-accent-color)!important;
    box-shadow: 0 16px 32px rgba(70, 109, 193, 0.2)!important;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .offer-description,
    .carousel-item {
        width: calc(100vw - 1rem)!important;
        min-width: 100vw!important;
    }
    .carousel-container {
        padding: unset!important;
    }
    .equipment-select {
        width: 100%!important;
    }
    .
}

.offer-description,
.carousel-item{
    min-width: 640px;
    background: var(--card-bg);
    border-radius: 24px;
    padding: 48px 40px;
    scroll-snap-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.carousel-item:not(.highlighted) {
    transform: translate3d(0, -5px, 0);
}

.carousel-item.highlighted {
    transform: translate3d(0, 10px, 0);
}

.offer-description:hover,
.carousel-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(70, 109, 193, 0.2);
    border-color: var(--main-accent-color);
}


.card-description {
    color: rgba(245, 245, 245, 0.7);
    line-height: 1.6;
    margin-bottom: 32px;
    flex-grow: 1;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    height: 49px;
}

.features-list li:not(:empty)::before {
    content: '✓';
    color: var(--cyan);
    font-weight: bold;
    font-size: 1.2rem;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--main-accent-color);
    margin-bottom: 24px;
}

.price-tag::after {
    content: '*';
    font-size: 1.5rem;
    vertical-align: super;
    color: rgba(245, 245, 245, 0.7);
}

.cta-button {
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(107, 70, 193, 0.4);
}


.equipment-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.equipment-item {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    /* CHANGE REMOVED CURSOR POINTER SINCE WE'RE USING SELECT DROPDOWNS */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.equipment-item:hover {
    border-color: rgba(107, 70, 193, 0.3);
    background: rgba(107, 70, 193, 0.05);
}

/* CHANGE REMOVED SELECTED STATE STYLES AS WE'RE USING DROPDOWNS NOW */

/* CHANGE REMOVED CHECKBOX STYLES AND ADDED SELECT DROPDOWN STYLES */
.equipment-select {
    padding: 8px 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    flex-basis: 50%;
    flex-grow: 0;
}

.equipment-select:hover {
    border-color: var(--purple);
}

.equipment-select:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.equipment-select option {
    background: #1a1a2e;
    color: white;
    padding: 8px;
}

.equipment-info {
    flex-basis: 50%;
    flex-grow: 0;
}

.equipment-name {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.equipment-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--cyan);
    flex-shrink: 0;
}


.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.7s ease;
}

.nav-dot.active {
    background: var(--main-accent-color);
    width: 32px;
    border-radius: 6px;
}