#ecc-calculator.premium {
    font-family: 'Inter', sans-serif;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

.ecc-header {
    text-align: center;
    margin-bottom: 40px;
}

.ecc-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.ecc-header p {
    color: #555;
    font-size: 16px;
}

.ecc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Inputs */
.ecc-inputs {
    background: #f4f6f9;
    padding: 30px;
    border-radius: 15px;
}

.ecc-field {
    margin-bottom: 20px;
}

.ecc-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.ecc-field input,
.ecc-field select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.ecc-field input[type=range] {
    cursor: pointer;
}

/* Results Cards */
.ecc-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ecc-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
	border: solid 1px rgba(174,208,59,0.30);
}

.ecc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.ecc-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.ecc-total {
    font-size: 22px;
    font-weight: bold;
    margin-top: 15px;
    color: #aed03b;
}

.ecc-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #AED03B;
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.ecc-savings {
    display: inline-block;
    margin-top: 10px;
    background: rgba(174,208,59,0.20);
    padding: 10px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    width: 100%;
}

/* CTA */
.ecc-footer {
    text-align: center;
    margin-top: 50px;
}

.ecc-cta {
    background: #2c7be5;
    color: white;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.ecc-cta:hover {
    background: #1a5fd0;
}
.ecc-card.main {
    border: solid 2px rgba(174,208,59,0.30);
/*     background: linear-gradient(135deg, #e6f4ff, #ffffff); */
	background-color: rgba(174,208,59,0.10)
}

.ecc-card.main .ecc-savings p {
    margin: 2px 0;
    font-size: 14px;
    color: #101010;
}
.ecc-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, #aed03b, #1279AA);
    color: white;
    box-shadow: 0 6px 20px rgba(44, 123, 229, 0.3);
    transition: all 0.3s ease;
}

/* Hover */
.ecc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(44, 123, 229, 0.4);
}

/* Click effect */
.ecc-btn:active {
    transform: scale(0.98);
}
.ecc-card p {
    margin-bottom: 10px;
}
/* Responsive */
@media (max-width: 768px) {
    .ecc-grid {
        grid-template-columns: 1fr;
    }
    .ecc-card-grid {
        grid-template-columns: 1fr;
    }
}