/* EV Product Information Widget - fd7fb1e3 */
.ev-product-info-fd7fb1e3 {
    --ev-accent: #22c55e;
    --ev-accent-hover: #16a34a;
    --ev-radius: 12px;
    --ev-shadow: 0 2px 12px rgba(0,0,0,0.07);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Section Base */
.ev-section-fd7fb1e3 {
    background: #ffffff;
    border-radius: var(--ev-radius);
    box-shadow: var(--ev-shadow);
    padding: 20px;
}

.ev-section-title-fd7fb1e3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

/* Quick Specs Grid */
.ev-specs-grid-fd7fb1e3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.ev-spec-box-fd7fb1e3 {
    background: #f8fafc;
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ev-spec-box-fd7fb1e3:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.ev-spec-icon-fd7fb1e3 {
    font-size: 24px;
    color: var(--ev-accent);
    margin-bottom: 8px;
}

.ev-spec-icon-fd7fb1e3 svg {
    width: 24px;
    height: 24px;
    fill: var(--ev-accent);
}

.ev-spec-value-fd7fb1e3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.ev-spec-label-fd7fb1e3 {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Variant Cards */
.ev-variants-grid-fd7fb1e3 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ev-variant-card-fd7fb1e3 {
    background: #f8fafc;
    border-radius: 10px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    transition: border-color 0.2s ease;
}

.ev-variant-card-fd7fb1e3:hover {
    border-color: var(--ev-accent);
}

.ev-variant-name-fd7fb1e3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.ev-variant-price-fd7fb1e3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--ev-accent);
    margin-bottom: 12px;
}

.ev-variant-specs-fd7fb1e3 {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.ev-variant-specs-fd7fb1e3 li {
    font-size: 13px;
    color: #475569;
    padding: 4px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.ev-variant-btn-fd7fb1e3 {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    background: var(--ev-accent);
    color: #ffffff !important;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
    box-sizing: border-box;
}

.ev-variant-btn-fd7fb1e3:hover {
    background: var(--ev-accent-hover);
    transform: translateY(-1px);
    color: #ffffff !important;
}

/* Additional Features Grid */
.ev-features-grid-fd7fb1e3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.ev-feature-box-fd7fb1e3 {
    background: #f8fafc;
    border-radius: 10px;
    padding: 14px 8px;
    text-align: center;
    transition: transform 0.2s ease;
}

.ev-feature-box-fd7fb1e3:hover {
    transform: translateY(-2px);
}

.ev-feature-icon-fd7fb1e3 {
    font-size: 22px;
    color: var(--ev-accent);
    margin-bottom: 6px;
}

.ev-feature-icon-fd7fb1e3 svg {
    width: 22px;
    height: 22px;
    fill: var(--ev-accent);
}

.ev-feature-title-fd7fb1e3 {
    font-size: 12px;
    font-weight: 600;
    color: #334155;
    line-height: 1.3;
}

/* Description */
.ev-description-text-fd7fb1e3 {
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
}

.ev-description-text-fd7fb1e3 p {
    margin: 0 0 10px 0;
}

/* Specification Table */
.ev-table-fd7fb1e3 {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.ev-table-fd7fb1e3 thead th {
    background: #f1f5f9;
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    color: #334155;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ev-table-fd7fb1e3 tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}

.ev-table-fd7fb1e3 tbody tr:last-child td {
    border-bottom: none;
}

.ev-table-fd7fb1e3 tbody td:first-child {
    font-weight: 600;
    color: #1e293b;
}

.ev-table-fd7fb1e3 tbody tr:hover {
    background: #f8fafc;
}

/* Brochure Button */
.ev-brochure-fd7fb1e3 {
    text-align: center;
    padding: 16px 20px !important;
}

.ev-brochure-btn-fd7fb1e3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: var(--ev-accent);
    color: #ffffff !important;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
    box-shadow: 0 4px 14px rgba(34,197,94,0.3);
    box-sizing: border-box;
}

.ev-brochure-btn-fd7fb1e3:hover {
    background: var(--ev-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34,197,94,0.4);
    color: #ffffff !important;
}

.ev-brochure-btn-fd7fb1e3 i {
    font-size: 20px;
}

/* Warranty Box */
.ev-warranty-fd7fb1e3 {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    color: #ffffff;
    text-align: center;
    padding: 28px 20px !important;
    border-radius: var(--ev-radius);
    position: relative;
    overflow: hidden;
}

.ev-warranty-fd7fb1e3::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.ev-warranty-icon-fd7fb1e3 {
    font-size: 36px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.ev-warranty-title-fd7fb1e3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    border: none;
    padding: 0;
}

.ev-warranty-text-fd7fb1e3 {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.92);
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Tablet */
@media (min-width: 600px) {
    .ev-product-info-fd7fb1e3 {
        padding: 20px;
        gap: 20px;
    }

    .ev-specs-grid-fd7fb1e3 {
        grid-template-columns: repeat(4, 1fr);
    }

    .ev-variants-grid-fd7fb1e3 {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .ev-variant-card-fd7fb1e3 {
        flex: 1 1 calc(50% - 6px);
        min-width: 240px;
    }

    .ev-features-grid-fd7fb1e3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .ev-section-title-fd7fb1e3 {
        font-size: 20px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .ev-variant-card-fd7fb1e3 {
        flex: 1 1 calc(33.333% - 8px);
    }

    .ev-features-grid-fd7fb1e3 {
        grid-template-columns: repeat(6, 1fr);
    }

    .ev-section-fd7fb1e3 {
        padding: 24px;
    }
}
