* {
    font-family: 'Vazirmatn', sans-serif;
}

html {
    scroll-behavior:smooth;
}

body {
    background: linear-gradient(135deg, #F3E8FF 0%, #EDE9FE 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Container استاندارد */
.max-w-7xl {
    max-width: 1280px;
}

/* استپر پیشرفت */
.h-50 {
    height: 50px;
    min-height: 50px;
}

.progress-step {
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.progress-step:not(:last-child)::after {
    content: "";
    flex: 1;
    height: 2px;
    background: #E5E7EB;
    margin: 0 16px;
    min-width: 30px;
}

.progress-step.active .step-circle {
    background: #7C3AED;
    color: white;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.2);
}

.progress-step.completed .step-circle {
    background: #10B981;
    color: white;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* سوییچر دوره زمانی */
.duration-switcher {
    background: white;
    border-radius: 16px;
    padding: 6px;
    display: flex;
    gap: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 32px;
    position: relative;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.duration-option {
    flex: 1;
    padding: 10px 12px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    color: #6B7280;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    overflow: visible;
}

.duration-option.active {
    color: white;
}

.duration-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    background: linear-gradient(135deg, #7C3AED, #8B5CF6);
    border-radius: 12px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
    z-index: 1;
    will-change: transform, width;
    opacity: 0;
}

.duration-slider.is-ready {
    opacity: 1;
}

.discount-badge {
    display: none;
}
#durationOptions {
    display: flex;
    width: 100%;
}

.duration-option-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    color: #047857;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 999px;
    padding: 2px 12px;
    min-height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.duration-option-badge--empty {
    display: none;
}

.duration-option-label {
    display: block;
    margin-top: 4px;
}

.duration-option.active .duration-option-badge {
    background: rgb(0, 125, 48);
    color: #ECFDF5;
}

/* کارت پکیج */
.package-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    border: 2px solid #E5E7EB;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .package-card {
        border-radius: 20px;
        padding: 24px;
        min-height: 200px;
    }
}

.package-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card:hover {
    border-color: #7C3AED;
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.package-card:hover::before {
    opacity: 1;
}

.package-card.selected {
    border-color: #7C3AED;
    background: white;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
}

/* دایره انتخاب */
.selection-circle {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    border: 2px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.package-card.selected .selection-circle {
    background: #10B981;
    border-color: #10B981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
}

.selection-circle i {
    color: white;
    font-size: 14px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.package-card.selected .selection-circle i {
    opacity: 1;
    transform: scale(1);
}

/* برچسب‌ها */
.package-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
}

.badge-hot {
    background: linear-gradient(135deg, #EF4444, #F87171);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.badge-special {
    background: linear-gradient(135deg, #F59E0B, #FCD34D);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.badge-popular {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* محتوای پکیج */
.package-content {
    position: relative;
    z-index: 5;
}

.package-title {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
    padding-right: 40px;
}

.package-price {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #7C3AED, #8B5CF6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 8px;
}

.package-unit {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 12px;
}

.package-saving {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #D1FAE5;
    color: #065F46;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

/* چیدمان اصلی */
.checkout-grid {
    align-items: flex-start;
}

.checkout-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 768px) {
    .checkout-main {
        gap: 32px;
    }
}

.order-summary-wrapper {
    width: 100%;
}

@media (min-width: 1024px) {
    .order-summary-wrapper {
        position: sticky;
        top: 24px;
        align-self: flex-start;
    }
}

/* خلاصه سفارش */
.order-summary {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.1);
    width: 100%;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
}

@media (min-width: 768px) {
    .order-summary {
        border-radius: 24px;
        padding: 28px;
    }
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #F3F4F6;
}

.summary-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #7C3AED, #8B5CF6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.summary-title {
    font-size: 22px;
    font-weight: 800;
    color: #1F2937;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #F3F4F6;
}

.summary-item:last-child {
    border-bottom: none;
    padding-top: 20px;
    font-weight: 800;
    font-size: 20px;
    color: #7C3AED;
}

.summary-item-name {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4B5563;
    flex: 1;
}

.summary-item-price {
    font-weight: 600;
    color: #1F2937;
    text-align: left;
}

/* بخش پرداخت با bid */
.bid-payment-section {
    margin: 24px 0;
    padding: 20px;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-radius: 16px;
    border: 2px solid #FCD34D;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.15);
    transition: all 0.3s ease;
}

.bid-payment-section:hover {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.25);
    transform: translateY(-2px);
}

.bid-payment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.bid-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #F59E0B, #FCD34D);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.bid-info {
    flex: 1;
}

.bid-title {
    font-size: 18px;
    font-weight: 800;
    color: #92400E;
    margin: 0 0 4px 0;
}

.bid-description {
    font-size: 13px;
    color: #78350F;
    margin: 0;
    font-weight: 500;
}

.bid-balance {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 2px solid rgba(245, 158, 11, 0.2);
}

.bid-balance-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #78350F;
    font-weight: 600;
    font-size: 14px;
}

.bid-balance-label i {
    color: #F59E0B;
    font-size: 18px;
}

.bid-balance-value {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.bid-count {
    font-size: 24px;
    font-weight: 800;
    color: #92400E;
    line-height: 1;
}

.bid-unit {
    font-size: 14px;
    font-weight: 600;
    color: #78350F;
}

.bid-payment-btn {
    background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);
    color: #78350F;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bid-payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #D97706 0%, #FBBF24 100%);
}

.bid-payment-btn:active {
    transform: translateY(0);
}

.bid-payment-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.bid-payment-btn i {
    font-size: 18px;
}

.bid-message {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    display: none;
}

.bid-message.success {
    background: #D1FAE5;
    color: #065F46;
    display: block;
}

.bid-message.error {
    background: #FEE2E2;
    color: #991B1B;
    display: block;
}

.bid-message.info {
    background: #DBEAFE;
    color: #1E40AF;
    display: block;
}

@media (max-width: 768px) {
    .bid-payment-section {
        padding: 16px;
        margin: 20px 0;
    }

    .bid-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .bid-title {
        font-size: 16px;
    }

    .bid-description {
        font-size: 12px;
    }

    .bid-balance {
        padding: 12px 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .bid-balance-value {
        width: 100%;
        justify-content: space-between;
    }

    .bid-count {
        font-size: 22px;
    }

    .bid-payment-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* کد تخفیف - اصلاح شده */
.discount-section {
    margin: 24px 0;
    padding: 20px;
    background: #F9FAFB;
    border-radius: 16px;
    border: 2px dashed #E5E7EB;
}

.discount-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.discount-label i {
    color: #7C3AED;
    font-size: 18px;
}

.discount-label span {
    font-weight: 600;
    color: #374151;
}

.discount-input-group {
    display: flex;
    gap: 8px;
    width: 100%;
}

.discount-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    min-width: 0;
}

.discount-input:focus {
    outline: none;
    border-color: #7C3AED;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.discount-btn {
    background: linear-gradient(135deg, #7C3AED, #8B5CF6);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

.discount-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.discount-message {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    display: none;
}

.discount-message.success {
    background: #D1FAE5;
    color: #065F46;
    display: block;
}

.discount-message.error {
    background: #FEE2E2;
    color: #991B1B;
    display: block;
}

/* دکمه پرداخت */
.payment-btn {
    background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
    color: white;
    padding: 18px 32px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    width: 100%;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
}

.payment-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.payment-btn:hover::before {
    left: 100%;
}

.payment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
}

.payment-btn:active {
    transform: translateY(-1px);
}

/* تایمر پیشنهاد ویژه */
.offer-timer {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    color: #92400E;
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.timer-icon {
    font-size: 28px;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.timer-content {
    flex: 1;
}

.timer-title {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 4px;
}

.timer-countdown {
    font-weight: 700;
    font-size: 20px;
    font-family: 'Courier New', monospace;
}

/* نشان‌های امنیت */
.security-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #F3F4F6;
    border-radius: 20px;
    color: #4B5563;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.security-badge:hover {
    background: #E5E7EB;
    transform: translateY(-2px);
}

.security-badge i {
    color: #10B981;
    font-size: 14px;
}

/* بخش پشتیبانی */
.support-section {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 50;
}

.support-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7C3AED, #8B5CF6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.support-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.3);
    animation: ripple 2s infinite;
}

.support-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5);
}

.support-btn i {
    color: white;
    font-size: 24px;
    position: relative;
    z-index: 2;
}

/* انیمیشن‌ها */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ریسپانسیو - بهینه شده */
@media (max-width: 1024px) {
    .order-summary-wrapper {
        position: static;
        top: auto;
    }

    .order-summary {
        margin-top: 2rem;
        max-height: none;
        overflow: visible;
    }
    
    .max-w-7xl {
        max-width: 100%;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .package-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .support-section {
        bottom: 16px;
        left: 16px;
    }
    
    .offer-timer {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 14px 20px;
    }
    
    .package-card {
        padding: 18px;
        min-height: 160px;
    }
    
    .package-title {
        font-size: 18px;
        padding-right: 36px;
    }
    
    .package-price {
        font-size: 22px;
    }
    
    .summary-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }
    
    .summary-title {
        font-size: 20px;
    }
    
    .discount-input-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .discount-btn {
        width: 100%;
    }
    
    .security-badges {
        gap: 8px;
    }
    
    .security-badge {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .payment-btn {
        font-size: 16px;
        padding: 16px 24px;
    }
    
    .timer-title {
        font-size: 16px;
    }
    
    .timer-countdown {
        font-size: 18px;
    }
    
    .progress-step:not(:last-child)::after {
        margin: 0 8px;
        min-width: 20px;
    }
    
    .step-circle {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .duration-option {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .duration-switcher {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .order-summary {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .min-h-screen {
        padding: 1rem 0.75rem;
    }
    
    h1 {
        font-size: 26px !important;
        line-height: 1.3;
    }
    
    .package-card {
        padding: 16px;
        min-height: 150px;
        border-radius: 14px;
    }
    
    .package-title {
        font-size: 16px;
        margin-bottom: 8px;
        padding-right: 32px;
    }
    
    .package-price {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .package-unit {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .package-saving {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .order-summary {
        padding: 18px;
        border-radius: 16px;
    }
    
    .summary-header {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
    
    .summary-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .summary-title {
        font-size: 18px;
    }
    
    .summary-item {
        padding: 12px 0;
    }
    
    .summary-item:last-child {
        font-size: 18px;
    }
    
    .discount-section {
        margin: 16px 0;
        padding: 16px;
    }
    
    .discount-input {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .discount-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .payment-btn {
        font-size: 14px;
        padding: 14px 20px;
    }
    
    .security-badges {
        gap: 6px;
    }
    
    .security-badge {
        font-size: 10px;
        padding: 5px 8px;
    }
    
    .security-badge i {
        font-size: 12px;
    }
    
    .support-btn {
        width: 50px;
        height: 50px;
    }
    
    .support-btn i {
        font-size: 20px;
    }
    
    .offer-timer {
        padding: 12px 16px;
    }
    
    .timer-icon {
        font-size: 24px;
    }
    
    .timer-title {
        font-size: 14px;
    }
    
    .timer-countdown {
        font-size: 16px;
    }
    
    .progress-step span {
        font-size: 12px;
    }
    
    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .progress-step:not(:last-child)::after {
        margin: 0 6px;
    }
    
    .duration-option {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .duration-switcher {
        max-width: 280px;
    }
    
    .discount-badge {
        font-size: 10px;
        padding: 3px 8px;
        right: 10px;
    }
}

@media (max-width: 360px) {
    .package-card {
        padding: 12px;
    }
    
    .package-title {
        font-size: 14px;
    }
    
    .package-price {
        font-size: 18px;
    }
    
    .package-unit {
        font-size: 11px;
    }
    
    .package-saving {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .order-summary {
        padding: 16px;
    }
    
    .summary-title {
        font-size: 16px;
    }
    
    .summary-item {
        padding: 10px 0;
    }
    
    .summary-item:last-child {
        font-size: 16px;
    }
    
    .discount-section {
        padding: 12px;
    }
    
    .discount-input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .discount-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .payment-btn {
        font-size: 13px;
        padding: 12px 16px;
    }
    
    .security-badge {
        font-size: 9px;
        padding: 4px 6px;
    }
    
    .security-badge i {
        font-size: 11px;
    }
    
    .support-btn {
        width: 45px;
        height: 45px;
    }
    
    .support-btn i {
        font-size: 18px;
    }
    
    .timer-title {
        font-size: 13px;
    }
    
    .timer-countdown {
        font-size: 14px;
    }
    
    .step-circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .progress-step:not(:last-child)::after {
        margin: 0 4px;
    }
    
    .duration-option {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .duration-switcher {
        max-width: 260px;
    }
}

