/* استایل اصلی */
.tick-shipping-below-cart {
    width: 100%;
    padding: 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-top: 20px;
    background: #fff;
}

.tick-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.tick-icon {
    width: 40px;
    height: 40px;
}

.tick-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.tick-items {
    margin-top: 8px;
}

.tick-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #444;
}

.tick-dot {
    width: 8px;
    height: 8px;
    background: #00bfd6;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

/* نسخه فوق‌العاده کوچک مخصوص موبایل */
@media (max-width: 480px) {

    .tick-shipping-below-cart {
        padding: 6px !important;
        border-radius: 8px !important;
    }

    .tick-head {
        gap: 4px !important;
        margin-bottom: 6px !important;
    }

    .tick-icon {
        width: 20px !important;
        height: 20px !important;
    }

    .tick-title {
        font-size: 12px !important;
        line-height: 1.3 !important;
    }

    .tick-item {
        font-size: 11px !important;
        gap: 4px !important;
        margin-bottom: 4px !important;
        line-height: 1.4 !important;
    }

    .tick-dot {
        width: 5px !important;
        height: 5px !important;
        margin-top: 4px !important;
    }
}
