/* =============================
   Fleet (Safety & Tracking Solutions) Main Store Styles
   ============================= */
/* =============================
   Layout & Containers
   ============================= */

.fleet-main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
}

/* =============================
   Hero Section
   ============================= */

.fleet-hero {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.fleet-hero-left {
    flex: 1;
}

.fleet-hero-title {
    font-weight: 700 !important;
    color: var(--solera-jacarta-800);
}

.fleet-hero-description {
    color: var(--solera-mako-base);
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

.fleet-hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fleet-hero-right img {
    max-height: 16.25rem;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

/* =============================
   Product Grid & Cards
   ============================= */

.fleet-product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.fleet-product-card {
    min-width: 17.5rem;
    max-width: 23.75rem;
    flex: 1 1 calc(33.333% - 2rem);
    background: var(--solera-white);
    border-radius: 0.25rem 0 0 0;
    border: 0.063rem solid #E5E7EB;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding: 2rem 2rem 1rem 2rem;
    overflow: hidden;
}

/* 1. Product Title */
.fleet-product-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    font-weight: 700 !important;
    color: #080808;
    margin: 0 !important;
    min-height: 1.688rem;
    letter-spacing: 0;
}

.fleet-product-title a {
    color: inherit;
    text-decoration: none;
}

.fleet-product-title a:hover {
    text-decoration: underline;
}

/* 2. Short Description */
.fleet-product-short-description {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    min-height: 2rem;
}

/* 3. Product Image */
.fleet-product-image-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 12.5rem;
}

.fleet-product-image {
    max-width: 100%;
    height: auto;
    max-height: 12.5rem;
    object-fit: contain;
}

/* 4. Access Description */
.fleet-product-access {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    min-height: 8rem;
    flex-grow: 1;
}

/* 5. Price Display */
.fleet-product-prices {
    display: flex;
    min-height: 3rem;
}

.fleet-price-wrap {
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
}

.fleet-product-regular-price {
    font-size: 0.813rem;
    color: #999;
    font-weight: 500;
    text-decoration: line-through;
}

.fleet-product-sale-price {
    font-family: "Montserrat", sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--solera-jacarta);
    line-height: 2rem;
}

.fleet-price-period {
    font-size: 0.813rem;
    color: #666;
    margin-bottom: 0.125rem;
    margin-left: 0.125rem;
    font-weight: 500;
}

/* 6. Button Row */
.fleet-button-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    margin-top: auto;
    align-items: center;
    min-height: 6rem;
}

/* Read More — plain link */
.fleet-read-more {
    font-size: 0.875rem;
    color: var(--solera-cobalt-500);
    text-decoration: none;
    text-align: center;
    min-height: 1.75rem;
}

.fleet-read-more:hover {
    text-decoration: underline;
}

/* =============================
   Gradient Text Utility
   → use .solera-gradient-text (assets/main.css) directly on elements
   .fleet-gradient-text adds fleet-specific alignment only
   ============================= */

.fleet-gradient-text {
    text-align: center;
}

/* =============================
   Experience Section
   ============================= */

.fleet-experience {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    background-color: var(--solera-smoke);
    padding: 2rem 1rem;
}

.fleet-experience video {
    max-width: 100%;
    height: auto;
    border-radius: 0.25rem;
}

/* =============================
   Testimonials Section
   ============================= */

.fleet-testimonials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    background-color: var(--solera-smoke);
}

.fleet-testimonial-videos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 56.25rem; 
}

.fleet-testimonial-iframe {
    width: 100%;
    flex: 1;
    min-width: 0;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 0.25rem;
}

/* =============================
   Mobile Responsive
   ============================= */

@media (max-width: 48rem) {
    .fleet-hero {
        flex-direction: column;
        gap: 1rem;
    }

    .fleet-hero-right {
        display: none;
    }

    .fleet-product-grid {
        gap: 1rem;
    }

    .fleet-product-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .fleet-testimonial-videos {
        flex-direction: column;
        gap: 1rem;
    }

    .fleet-footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .fleet-footer-right {
        align-items: center;
    }
}
.fleet-info-section {
    color: var(--solera-shark);
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 2rem;
}
