/* === HERO SECTION (white background per design) === */

/* Breadcrumb */
.ebc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--ebc-gray-400);
    margin-bottom: 16px;
    padding-top: 8px;
}
.ebc-breadcrumb-home {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--ebc-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.ebc-breadcrumb-home:hover {
    color: var(--ebc-navy);
    text-decoration: none;
}
.ebc-breadcrumb-sep {
    color: var(--ebc-gray-300);
    font-size: 15px;
}
.ebc-breadcrumb-current {
    color: var(--ebc-gray-500);
    font-weight: 500;
}

/* Country page tabs — show all 10 countries */
.ebc-country-page-tabs .ebc-country-tabs {
    flex-wrap: wrap;
    gap: 6px;
}
.ebc-country-page-tabs .ebc-tab {
    font-size: 12px;
    padding: 5px 12px;
}


.ebc-hero-top {
    margin-bottom: 20px;
}
.ebc-hero-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--ebc-navy);
    line-height: 1.15;
    margin-bottom: 10px;
}
.ebc-hero-subtitle {
    font-size: 15px;
    color: var(--ebc-gray-500);
    line-height: 1.7;
    max-width: 550px;
}

/* Country Tabs */
.ebc-hero-tabs {
    margin-bottom: 20px;
}
.ebc-hero-tabs-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--ebc-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.ebc-country-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.ebc-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    background: var(--ebc-white);
    border: 1px solid var(--ebc-gray-300);
    border-radius: var(--ebc-radius-sm);
    color: var(--ebc-gray-600);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--ebc-font);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.ebc-tab:hover {
    border-color: var(--ebc-blue);
    color: var(--ebc-navy);
    text-decoration: none;
}
.ebc-tab.active {
    background: var(--ebc-navy);
    border-color: var(--ebc-navy);
    color: var(--ebc-white);
}

/* === CALCULATOR (white bg, dark text) === */
.ebc-calculator-wrapper { width: 100%; }
.ebc-calc-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: start;
}
.ebc-calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ebc-calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.ebc-calc-row-single {
    grid-template-columns: 1fr;
}
.ebc-calc-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--ebc-gray-600);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ebc-required { color: var(--ebc-red); }

.ebc-input-wrap {
    display: flex;
    align-items: center;
    background: var(--ebc-white);
    border: 1px solid var(--ebc-gray-300);
    border-radius: var(--ebc-radius-sm);
    overflow: hidden;
    transition: border-color 0.2s;
}
.ebc-input-wrap:focus-within {
    border-color: var(--ebc-blue);
}
.ebc-currency-symbol {
    padding: 9px 10px;
    color: var(--ebc-gray-500);
    font-size: 14px;
    background: var(--ebc-gray-50);
    border-right: 1px solid var(--ebc-gray-300);
}
.ebc-calc-field input,
.ebc-calc-field select {
    width: 100%;
    padding: 9px 12px;
    background: var(--ebc-white);
    border: 1px solid var(--ebc-gray-300);
    border-radius: var(--ebc-radius-sm);
    color: var(--ebc-navy);
    font-size: 14px;
    font-family: var(--ebc-font);
    transition: border-color 0.2s;
}
.ebc-calc-field input:focus,
.ebc-calc-field select:focus {
    outline: none;
    border-color: var(--ebc-blue);
}
.ebc-input-wrap input {
    border: none;
    background: transparent;
    padding: 9px 10px;
}
.ebc-calc-field select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--ebc-navy);
    color: var(--ebc-white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    border-color: var(--ebc-navy);
}
.ebc-calc-field select option {
    background: var(--ebc-navy);
    color: var(--ebc-white);
}

/* Seller Options Row */
.ebc-calc-row-triple {
    grid-template-columns: 1fr 1fr 1fr;
}

.ebc-calc-button {
    width: 100%;
    padding: 12px;
    background: var(--ebc-blue);
    color: var(--ebc-white);
    border: none;
    border-radius: var(--ebc-radius-sm);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--ebc-font);
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    margin-top: 4px;
}
.ebc-calc-button:hover {
    background: var(--ebc-blue-light);
    transform: translateY(-1px);
}

/* Results card (white card with border) */
.ebc-results-card {
    background: var(--ebc-white);
    border: 1px solid var(--ebc-gray-200);
    border-radius: var(--ebc-radius);
    padding: 24px 20px;
    box-shadow: var(--ebc-shadow);
}
.ebc-results-label {
    font-size: 11px;
    color: var(--ebc-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
    font-weight: 600;
}
.ebc-results-amount {
    font-size: 40px;
    font-weight: 800;
    color: var(--ebc-navy);
    margin-bottom: 16px;
    line-height: 1.1;
}
.ebc-results-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ebc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--ebc-gray-600);
}
.ebc-result-row span:last-child {
    font-weight: 600;
    color: var(--ebc-gray-800);
}
.ebc-result-section-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--ebc-gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 12px;
    margin-bottom: 2px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--ebc-gray-200);
}
.ebc-result-section-title:first-child {
    margin-top: 0;
}
.ebc-result-subtotal {
    padding-top: 6px;
    margin-top: 2px;
    border-top: 1px dashed var(--ebc-gray-200);
    font-weight: 600;
}
.ebc-result-subtotal span:last-child {
    color: var(--ebc-navy);
}
.ebc-result-divider {
    padding-top: 8px;
    border-top: 1px solid var(--ebc-gray-200);
    font-weight: 600;
}
.ebc-profit-highlight {
    color: var(--ebc-green-dark);
}
.ebc-profit-highlight.negative {
    color: var(--ebc-red);
}
.ebc-result-profit {
    margin-top: 4px;
}
.ebc-result-profit span:last-child {
    color: var(--ebc-green-dark);
    font-size: 15px;
    font-weight: 700;
}
.ebc-result-profit.negative span:last-child {
    color: var(--ebc-red);
}
.ebc-result-margin span:last-child {
    color: var(--ebc-blue);
    font-size: 15px;
    font-weight: 700;
}

/* Reset button */
.ebc-reset-btn {
    width: 100%;
    padding: 10px;
    margin-top: 12px;
    background: var(--ebc-gray-100);
    border: 1px solid var(--ebc-gray-200);
    border-radius: var(--ebc-radius-sm);
    font-size: 11px;
    font-weight: 700;
    font-family: var(--ebc-font);
    color: var(--ebc-gray-600);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.2s;
}
.ebc-reset-btn:hover {
    background: var(--ebc-gray-200);
}

.ebc-results-note {
    margin-top: 12px;
    padding: 8px;
    background: var(--ebc-gray-50);
    border-radius: var(--ebc-radius-sm);
    font-size: 10px;
    color: var(--ebc-gray-400);
    line-height: 1.5;
    text-align: center;
}
