.container {
    justify-content: center;
}

.wheels-hero {
    background: linear-gradient(135deg, #3a7764 0%, #6da386 50%, #b4d6b7 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.hero-content {
    z-index: 2;
}

.hero-logo-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 180px;
    height: 180px;
    animation: spin-slow 30s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.25));
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-text h1 {
    font-size: 2.4rem;
}

.text-light-glow {
    color: #f8fdf9;
    text-shadow: 0 0 25px rgba(180, 255, 210, 0.45);
}

.btn-hero {
    background: linear-gradient(135deg, #a9dc91, #6dbf8a);
    border: none;
    color: #1c2d23;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(165, 231, 185, 0.35);
}

.btn-hero:hover {
    background: linear-gradient(135deg, #bff5a6, #89d3b1);
    box-shadow: 0 0 30px rgba(180, 255, 200, 0.5);
    transform: translateY(-2px);
}

.wheels-section {
    background: linear-gradient(180deg, #ecf7f0 0%, #f8efe6 100%);
    padding-bottom: 100px;
    font-family: "Poppins", sans-serif;
}

.wheel-card {
    position: relative;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(70, 120, 85, 0.12);
    transition: all 0.35s ease;
    height: 420px;
    backdrop-filter: blur(15px);
}

.wheel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(79, 163, 126, 0.22);
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at top left,
            rgba(180, 255, 210, 0.2),
            rgba(255, 255, 255, 0.05)
    );
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.wheel-card:hover .card-glow {
    opacity: 1;
}

.wheel-body {
    background: linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.55),
            rgba(240, 255, 245, 0.8)
    );
    border-radius: 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wheel-body h5 {
    color: #25352d;
    font-size: 1.2rem;
}

.wheel-body p {
    color: #536358;
    line-height: 1.55;
    font-size: 0.95rem;
}

.btn-wheel {
    background: linear-gradient(135deg, #3a7764, #9bb95d);
    color: #fff;
    padding: 11px 26px;
    border: none;
    border-radius: 45px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(79, 163, 126, 0.35);
}

.btn-wheel:hover {
    background: linear-gradient(135deg, #4fa37e, #3a7764);
    box-shadow: 0 0 25px rgba(90, 190, 130, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-logo {
        width: 140px;
        height: 140px;
        margin-bottom: 1rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .wheel-card {
        height: auto;
    }

    .container__wheels {
        width: auto;
    }
}
