.fruit-store-aeebace0 {
    --bg-color: #0b130c;
    --card-bg: #141f16;
    --input-bg: #111a13;
    --input-border: #223326;
    --primary-green: #6cb83a;
    --text-main: #ffffff;
    --text-muted: #8fa093;
    --accent-orange: #f2a900;
    --accent-pink: #d946ef;
    --accent-red: #ef4444;
    --divider-color: #2a3b2e;

    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Hind Siliguri', Arial, sans-serif;
    padding: 20px;
    border-radius: 12px;
}

.fruit-store-aeebace0 * {
    box-sizing: border-box;
}

.fruit-store-aeebace0 .container {
    max-width: 1200px;
    margin: 0 auto;
}

.fruit-store-aeebace0 .steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}
.fruit-store-aeebace0 .step {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    transition: 0.3s;
}
.fruit-store-aeebace0 .step.completed { color: var(--primary-green); }
.fruit-store-aeebace0 .step.active { color: var(--primary-green); font-weight: bold; }

.fruit-store-aeebace0 .step-num {
    width: 24px;
    height: 24px;
    border: 1px solid var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    transition: 0.3s;
}
.fruit-store-aeebace0 .step.completed .step-num {
    border-color: var(--primary-green);
    background: var(--primary-green);
    color: #000;
}
.fruit-store-aeebace0 .step.active .step-num {
    border-color: var(--primary-green);
    background: rgba(108, 184, 58, 0.1);
    box-shadow: 0 0 10px rgba(108, 184, 58, 0.3);
}
.fruit-store-aeebace0 .step-line {
    width: 80px;
    height: 1px;
    background: #2a3b2e;
    margin: 0 15px;
    transition: 0.3s;
}
.fruit-store-aeebace0 .step-line.filled { background: var(--primary-green); }

.fruit-store-aeebace0 .main-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

@media (max-width: 900px) {
    .fruit-store-aeebace0 .main-layout { grid-template-columns: 1fr; }
}

.fruit-store-aeebace0 .form-step-panel {
    display: none;
}
.fruit-store-aeebace0 .form-step-panel.active {
    display: block;
}

.fruit-store-aeebace0 h2.title { font-size: 24px; margin-bottom: 5px; color: var(--text-main); }
.fruit-store-aeebace0 h2.title span { color: var(--primary-green); }
.fruit-store-aeebace0 .subtitle { color: var(--text-muted); margin-bottom: 20px; font-size: 14px; }

.fruit-store-aeebace0 .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}
.fruit-store-aeebace0 .product-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 15px;
    border: 2px solid transparent;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}
.fruit-store-aeebace0 .product-card.selected {
    border-color: var(--primary-green);
    box-shadow: 0 0 15px rgba(108, 184, 58, 0.2);
}
.fruit-store-aeebace0 .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
}
.fruit-store-aeebace0 .badge.popular { background: var(--primary-green); color: #000; }
.fruit-store-aeebace0 .badge.classic { background: var(--accent-pink); color: #fff; }
.fruit-store-aeebace0 .badge.premium { background: var(--accent-orange); color: #000; }

.fruit-store-aeebace0 .product-img { width: 100%; height: 160px; object-fit: cover; border-radius: 8px; margin-bottom: 12px; }
.fruit-store-aeebace0 .rating { color: #fbbf24; font-size: 14px; margin-bottom: 10px; }
.fruit-store-aeebace0 .product-info-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.fruit-store-aeebace0 .product-name { font-size: 18px; font-weight: bold; margin: 0; color: var(--text-main); }
.fruit-store-aeebace0 .product-price { font-size: 18px; color: var(--primary-green); font-weight: bold; }
.fruit-store-aeebace0 .price-unit { font-size: 11px; color: var(--text-muted); display: block; text-align: right; }
.fruit-store-aeebace0 .product-desc { color: var(--text-muted); font-size: 12px; line-height: 1.5; margin: 0; }

.fruit-store-aeebace0 .quantity-box { background: var(--card-bg); border-radius: 12px; padding: 20px; }
.fruit-store-aeebace0 .q-title { font-size: 16px; margin-bottom: 15px; color: var(--text-main); }
.fruit-store-aeebace0 .q-controls { display: flex; gap: 15px; align-items: center; flex-wrap: wrap; }
.fruit-store-aeebace0 .counter { display: flex; align-items: center; background: #1e2d21; border-radius: 8px; padding: 5px 15px; }
.fruit-store-aeebace0 .counter button { background: none; border: none; color: var(--text-muted); font-size: 20px; cursor: pointer; padding: 0 10px; }
.fruit-store-aeebace0 .counter .count { font-size: 18px; font-weight: bold; margin: 0 15px; min-width: 20px; text-align: center; }
.fruit-store-aeebace0 .q-btn { background: #1e2d21; border: 1px solid #2a3b2e; color: var(--text-main); padding: 10px 20px; border-radius: 8px; cursor: pointer; font-size: 14px; }
.fruit-store-aeebace0 .q-btn.active { background: var(--primary-green); color: #000; border-color: var(--primary-green); font-weight: bold; }
.fruit-store-aeebace0 .min-order-text { color: var(--text-muted); font-size: 12px; margin-top: 10px; }

.fruit-store-aeebace0 .form-box { background: var(--card-bg); border-radius: 12px; padding: 25px; border: 1px solid var(--input-border); }
.fruit-store-aeebace0 .form-group { margin-bottom: 20px; }
.fruit-store-aeebace0 .form-label { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--text-main); }
.fruit-store-aeebace0 .form-label span.req { color: var(--accent-red); }
.fruit-store-aeebace0 .form-label span.opt { color: var(--text-muted); font-weight: normal; font-size: 12px; }
.fruit-store-aeebace0 .form-control { width: 100%; background: var(--input-bg); border: 1px solid var(--input-border); border-radius: 8px; padding: 12px 15px; color: var(--text-main); font-size: 14px; box-sizing: border-box; font-family: inherit; }
.fruit-store-aeebace0 .form-control:focus { outline: none; border-color: var(--primary-green); }
.fruit-store-aeebace0 textarea.form-control { resize: vertical; min-height: 80px; }
.fruit-store-aeebace0 input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; }

.fruit-store-aeebace0 .review-box { background: var(--card-bg); border-radius: 12px; padding: 20px; border: 1px solid var(--input-border); margin-bottom: 20px; }
.fruit-store-aeebace0 .section-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--divider-color); padding-bottom: 10px; margin-bottom: 15px; }
.fruit-store-aeebace0 .section-header h3 { margin: 0; font-size: 16px; color: var(--text-main); }
.fruit-store-aeebace0 .change-link { color: var(--text-muted); font-size: 13px; text-decoration: none; cursor: pointer; }
.fruit-store-aeebace0 .change-link:hover { color: var(--primary-green); }
.fruit-store-aeebace0 .product-info-block { display: flex; align-items: center; gap: 15px; }
.fruit-store-aeebace0 .prod-img { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; }
.fruit-store-aeebace0 .prod-details h4 { margin: 0 0 5px 0; font-size: 16px; color: var(--text-main); }
.fruit-store-aeebace0 .prod-details p { margin: 0; font-size: 13px; color: var(--text-muted); }
.fruit-store-aeebace0 .info-table { width: 100%; border-collapse: collapse; }
.fruit-store-aeebace0 .info-table td { padding: 8px 0; font-size: 14px; vertical-align: top; color: var(--text-main); }
.fruit-store-aeebace0 .info-table td.label { color: var(--text-muted); width: 120px; }

.fruit-store-aeebace0 .payment-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}
.fruit-store-aeebace0 .pay-opt-btn {
    background: #111a13;
    border: 1px solid var(--input-border);
    color: var(--text-muted);
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}
.fruit-store-aeebace0 .pay-opt-btn.active {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background: rgba(108, 184, 58, 0.05);
}
.fruit-store-aeebace0 .manual-pay-box {
    background: #1a241c;
    border: 1px solid #2a3b2e;
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
}
.fruit-store-aeebace0 .number-highlight {
    color: var(--accent-orange);
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}

.fruit-store-aeebace0 .price-summary-box { background: var(--card-bg); border-radius: 12px; padding: 20px; border: 1px solid var(--input-border); }
.fruit-store-aeebace0 .price-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 12px; }
.fruit-store-aeebace0 .price-row.final-total { border-top: 1px solid var(--divider-color); padding-top: 15px; margin-top: 15px; font-size: 18px; font-weight: bold; }
.fruit-store-aeebace0 .price-row.final-total .green-txt { color: var(--primary-green); }
.fruit-store-aeebace0 .price-row.due-total { font-size: 16px; font-weight: bold; color: var(--accent-orange); margin-top: 8px; }
.fruit-store-aeebace0 .notice-text { text-align: center; color: var(--text-muted); font-size: 13px; margin-top: 25px; }

.fruit-store-aeebace0 .summary-card { background: var(--card-bg); border-radius: 12px; padding: 20px; height: fit-content; border: 1px solid var(--input-border); position: sticky; top: 20px; }
.fruit-store-aeebace0 .summary-title { display: flex; align-items: center; gap: 8px; font-size: 16px; margin-bottom: 20px; border-bottom: 1px solid var(--divider-color); padding-bottom: 10px; color: var(--text-main); }
.fruit-store-aeebace0 .item-row { display: flex; gap: 12px; margin-bottom: 20px; }
.fruit-store-aeebace0 .item-img { width: 50px; height: 50px; border-radius: 6px; object-fit: cover; }
.fruit-store-aeebace0 .item-details h4 { margin: 0 0 4px 0; font-size: 14px; color: var(--text-main); }
.fruit-store-aeebace0 .item-details p { margin: 0; font-size: 12px; color: var(--text-muted); }
.fruit-store-aeebace0 .calc-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-muted); margin-bottom: 10px; }
.fruit-store-aeebace0 .calc-row.total { color: var(--text-main); font-size: 18px; font-weight: bold; border-top: 1px solid var(--divider-color); padding-top: 15px; margin-top: 15px; }
.fruit-store-aeebace0 .total-price { color: var(--primary-green); }
.fruit-store-aeebace0 .guarantee-box { background: rgba(108, 184, 58, 0.05); border: 1px solid rgba(108, 184, 58, 0.1); border-radius: 8px; padding: 12px; margin-top: 20px; font-size: 12px; color: var(--text-muted); display: flex; gap: 8px; }

.fruit-store-aeebace0 .footer-buttons { display: flex; gap: 15px; margin-top: 30px; }
.fruit-store-aeebace0 .btn-main { background: var(--primary-green); color: #000; width: 100%; border: none; padding: 15px; border-radius: 30px; font-size: 16px; font-weight: bold; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 10px; transition: 0.2s; }
.fruit-store-aeebace0 .btn-main:hover { opacity: 0.9; }
.fruit-store-aeebace0 .btn-secondary { background: transparent; color: var(--text-main); border: 1px solid var(--input-border); padding: 15px 30px; border-radius: 30px; font-size: 16px; font-weight: bold; cursor: pointer; white-space: nowrap; }
.fruit-store-aeebace0 .btn-secondary:hover { background: rgba(255, 255, 255, 0.05); }
