.cse-shipping-estimates {
    margin: 20px 0 10px;
    font-size: 14px;
}

.cse-toggle {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    padding: 8px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #0b2f4b;
    width: 100%;
    text-align: left;
}

.cse-toggle:hover {
    color: #C5A065;
}

.cse-arrow {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.cse-toggle[aria-expanded="true"] .cse-arrow {
    transform: rotate(90deg);
}

.cse-subtitle {
    font-weight: 400;
    color: #5b6871;
    margin-left: 8px;
    font-size: 12px;
}

.cse-table-wrap {
    display: none;
    padding: 0 0 8px;
}

.cse-table-wrap.cse-open {
    display: block;
}

.cse-table {
    width: 100%;
    border-collapse: collapse;
    margin: 8px 0;
    font-size: 13px;
}

.cse-table th {
    text-align: left;
    padding: 6px 10px;
    border-bottom: 2px solid #0b2f4b;
    color: #0b2f4b;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cse-table td {
    padding: 6px 10px;
    border-bottom: 1px solid #eee;
    color: #444;
}

.cse-table tr:last-child td {
    border-bottom: none;
}

.cse-table tr:hover td {
    background: #f9f7f4;
}

.cse-note {
    margin: 8px 0 0;
    font-size: 12px;
    color: #888;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .cse-table th,
    .cse-table td {
        padding: 5px 6px;
        font-size: 12px;
    }

    .cse-table th {
        font-size: 11px;
    }
}

/* Delivery timeline */
.cse-timeline {
    margin: 14px 0 6px;
    padding: 12px 14px;
    background: #f7f8f7;
    border-radius: 8px;
    font-size: .88em;
    color: #2c3338;
}
.cse-tl-head {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.cse-tl-title { font-weight: 600; }
.cse-tl-range {
    color: #946820;
    font-size: 1.15em;
    white-space: nowrap;
}
.cse-tl-region { margin-left: auto; margin-bottom: 0; }
.cse-tl-region select {
    border: 1px solid #d5d9dc;
    border-radius: 999px;
    background: #fff;
    font-size: .85em;
    height: auto;
    padding: 3px 26px 3px 10px;
    max-width: 190px;
    box-shadow: none;
}
.cse-tl-track {
    display: flex;
    align-items: center;
    margin: 10px 0 4px;
}
.cse-tl-node {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b2f4b;
    color: #fff;
    box-sizing: border-box;
}
.cse-tl-node.is-open {
    background: #fff;
    color: #0b2f4b;
    border: 2px solid #0b2f4b;
}
.cse-tl-bar {
    flex: 1 1 auto;
    height: 2px;
    background: #0b2f4b;
}
.cse-tl-bar.is-open {
    background: repeating-linear-gradient(90deg, #9aa6ad 0 6px, transparent 6px 11px);
}
.cse-tl-labels {
    display: flex;
    justify-content: space-between;
    gap: 6px;
}
.cse-tl-labels span {
    flex: 1;
    font-weight: 600;
    font-size: .92em;
}
.cse-tl-labels span:nth-child(2) { text-align: center; }
.cse-tl-labels span:last-child { text-align: right; }
.cse-tl-labels em {
    display: block;
    font-style: normal;
    font-weight: 400;
    color: #5b6770;
    white-space: nowrap;
}
@media (max-width: 549px) {
    .cse-tl-region { margin-left: 0; width: 100%; }
    .cse-tl-region select { max-width: 100%; width: 100%; }
    .cse-tl-labels span { font-size: .85em; }
}
