/**
 * Delivery Time Cards Widget Styles
 * Professional and customizable design
 */

/* Cards Grid */
.dtcw-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

/* Individual Card */
.dtcw-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Icon */
.dtcw-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EDE9FE;
    color: #7C3AED;
    margin-bottom: 15px;
}

.dtcw-icon i {
    font-size: 24px;
}

.dtcw-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Area Title */
.dtcw-area-title {
    font-size: 16px;
    font-weight: 600;
    color: #1A202C;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Time Display */
.dtcw-time {
    margin-bottom: 15px;
    line-height: 1.2;
}

.dtcw-time-number {
    font-size: 36px;
    font-weight: 700;
    color: #7C3AED;
}

.dtcw-time-unit {
    font-size: 20px;
    font-weight: 400;
    color: #1A202C;
}

/* Description */
.dtcw-description {
    font-size: 13px;
    color: #718096;
    line-height: 1.6;
}

/* Bottom Line */
.dtcw-bottom-line {
    width: 60px;
    height: 3px;
    background-color: #7C3AED;
    border-radius: 2px;
    margin-top: 20px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .dtcw-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dtcw-card {
        padding: 25px 20px;
    }

    .dtcw-icon {
        width: 55px;
        height: 55px;
    }

    .dtcw-icon i {
        font-size: 22px;
    }

    .dtcw-area-title {
        font-size: 15px;
    }

    .dtcw-time-number {
        font-size: 32px;
    }

    .dtcw-time-unit {
        font-size: 18px;
    }

    .dtcw-description {
        font-size: 12px;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .dtcw-cards-grid {
        grid-template-columns: 1fr;
    }

    .dtcw-card {
        padding: 25px 20px;
    }

    .dtcw-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .dtcw-icon i {
        font-size: 20px;
    }

    .dtcw-area-title {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .dtcw-time {
        margin-bottom: 12px;
    }

    .dtcw-time-number {
        font-size: 28px;
    }

    .dtcw-time-unit {
        font-size: 16px;
    }

    .dtcw-description {
        font-size: 12px;
    }

    .dtcw-bottom-line {
        margin-top: 15px;
    }
}