
/* RTS Interactive Delivery Calculator Styles (2026) */
.rts-delivery-box {
    max-width: 1140px;
    margin: 40px auto;
    padding: 30px;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    border: 1px solid #374151;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
    color: #f9fafb;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.rts-deliv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #374151;
    padding-bottom: 20px;
    margin-bottom: 24px;
}
.rts-deliv-title {
    display: flex;
    align-items: center;
    gap: 16px;
}
.rts-deliv-icon {
    font-size: 38px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 12px;
}
.rts-deliv-h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
.rts-deliv-sub {
    margin: 4px 0 0;
    font-size: 14px;
    color: #9ca3af;
}
.rts-deliv-badge {
    background: #f59e0b;
    color: #111827;
    font-weight: 800;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.rts-deliv-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #e5e7eb;
}
.rts-deliv-input-row {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}
.rts-deliv-input {
    flex: 1;
    background: #0f172a;
    border: 1px solid #475569;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 16px;
    color: #fff;
    outline: none;
    transition: all 0.2s;
}
.rts-deliv-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.rts-deliv-calc-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 8px;
    padding: 0 28px;
    cursor: pointer;
    transition: all 0.2s;
}
.rts-deliv-calc-btn:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}
.rts-deliv-quick-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.rts-chip {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.2s;
}
.rts-chip:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}
.rts-chip-eaec {
    border-color: #059669;
    color: #34d399;
}
.rts-chip-cis {
    border-color: #d97706;
    color: #fbbf24;
}
.rts-deliv-result-card {
    background: #0f172a;
    border: 1px solid #3b82f6;
    border-radius: 12px;
    padding: 24px;
    margin-top: 16px;
    animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.rts-res-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 16px;
    margin-bottom: 16px;
}
.rts-res-city-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.rts-deliv-badge-eaec {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid #10b981;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
}
.rts-deliv-badge-cis {
    display: inline-block;
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid #f59e0b;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
}
.rts-res-price {
    font-size: 26px;
    font-weight: 800;
    color: #fbbf24;
}
.rts-res-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}
.rts-res-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #1e293b;
}
.rts-res-label {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.rts-res-item strong {
    font-size: 14px;
    color: #f1f5f9;
}
.rts-gold-text {
    color: #fbbf24 !important;
}
.rts-res-note {
    font-size: 13px;
    color: #94a3b8;
    background: rgba(59, 130, 246, 0.08);
    border-left: 3px solid #3b82f6;
    padding: 10px 14px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 20px;
}
.rts-res-action {
    display: flex;
    align-items: center;
    gap: 20px;
}
.rts-res-order-btn {
    font-size: 15px;
    font-weight: 700;
    padding: 12px 28px;
}
.rts-res-security {
    font-size: 13px;
    color: #10b981;
    font-weight: 600;
}
@media (max-width: 768px) {
    .rts-delivery-box { padding: 18px; margin: 20px 10px; }
    .rts-deliv-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .rts-deliv-input-row { flex-direction: column; }
    .rts-deliv-calc-btn { padding: 12px; }
    .rts-res-header { flex-direction: column; gap: 10px; }
    .rts-res-action { flex-direction: column; align-items: stretch; }
}
