/* Premium Tyre Card Design - EXACT DESIGN MATCH */
.premium-tyre-section {
    padding: 80px 0;
    background: #fbfbfb;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.premium-title-wrapper {
    position: relative;
    display: inline-block;
}

.premium-title-wrapper h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    padding-bottom: 12px;
}

.premium-title-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #ee0000;
}

.slider-nav-controls {
    display: flex;
    gap: 12px;
}

.slider-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 14px;
}

.slider-nav-btn:hover {
    background: #ee0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 0, 0, 0.3);
}

.premium-tyre-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.03);
    padding: 25px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-height: 550px;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
}



.tyre-brand-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    max-width: 90px;
    height: 35px;
    display: flex;
    align-items: center;
}

.tyre-brand-badge img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.car-brand-logo-small {
    position: absolute;
    top: 65%;
    right: 25px;
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-brand-logo-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.premium-tyre-card .main-image {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 20px;
}

.premium-tyre-card .main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05));
    transition: transform 0.5s ease;
}



.premium-tyre-card .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.premium-tyre-card .car-model {
    font-size: 19px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.size-badges-wrapper {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.size-badge {
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tyre-model-name {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin: 15px 0 10px;
    border-top: 1px dashed #eee;
    padding-top: 15px;
}

.card-year {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.price-tag {
    font-size: 22px;
    font-weight: 900;
    color: #111;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    border-top: 1px solid #f5f5f5;
    padding-top: 15px;
}

.feature-list li {
    font-size: 12.5px;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li i {
    color: #28a745;
    font-size: 11px;
}

.enquiry-btn-whatsapp {
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
    border: none;
}



.premium-tyre-slider-dots {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.premium-tyre-slider-dots .slick-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-tyre-slider-dots .slick-dots li {
    margin: 0;
}

.premium-tyre-slider-dots .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    font-size: 0;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s ease;
}

.premium-tyre-slider-dots .slick-dots li.slick-active button {
    background: #ee0000;
    width: 32px;
    border-radius: 20px;
}

@media (max-width: 991px) {
    .premium-tyre-card {
        min-height: auto;
        margin-bottom: 20px;
    }
}
