/* Wheel Dimensions Section */
.wheel-dimensions {
    display: inline-block;
    width: 100%;
    /* background: #f3f3f3; */
    padding: 20px;
    margin-top: 20px;
    font-family: 'Avenir LT Std', sans-serif;
}

.wheel-dimensions h2 {
    position: relative;
    z-index: 9;
    float: left;
    color: #0a80ff;
    margin-bottom: 20px;
    width: 100%;
    font: 24px/30px 'Avenir LT Std', sans-serif;
}

.wheel-dim-frame {
    display: grid;
    /* Explicitly set to 3 columns for desktop */
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    clear: both;
}

.wheel-dim-card {
    background-color: #f8f8f8;
    color: #333333;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    gap: 15px;
}

/* .wheel-dim-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
} */

.wheel-dim-text-bloc {
    flex: 1;
    min-width: 0;
}

.wheel-dim-label {
    font: 16px/20px 'Avenir LT Std', sans-serif;
    color: #666666;
    margin-bottom: 5px;
}

.wheel-dim-value {
    font: bold 22px/26px 'Avenir LT Std', sans-serif;
    color: #333333;
}

.wheel-dim-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-left: auto; /* Pushes the icon to the right */
}

/* Tablet Responsive Design */
@media screen and (max-width: 768px) {
    .wheel-dimensions {
        padding: 15px;
    }

    .wheel-dim-frame {
        /* Switch to 2 columns for tablet */
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .wheel-dim-card {
        padding: 12px;
    }

    .wheel-dimensions h2 {
        font-size: 20px;
        line-height: 26px;
    }

    .wheel-dim-label {
        font: 14px/18px 'Avenir LT Std', sans-serif;
    }

    .wheel-dim-value {
        font: bold 18px/22px 'Avenir LT Std', sans-serif;
    }

    .wheel-dim-icon {        
        width: 50px;
        height: 50px;
    }
}

/* Mobile Responsive Design */
@media screen and (max-width: 480px) {
    .wheel-dimensions {
        padding: 10px;
    }

    .wheel-dim-frame {
        /* Single column for mobile */
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .wheel-dim-card {
        padding: 10px;
    }

    .wheel-dimensions h2 {
        font-size: 18px;
        line-height: 24px;
    }

    .wheel-dim-icon {
        width: 40px;
        height: 40px;
    }
} 