/* ===============================================
   Product Details Page - Delivery Sidebar Styles
   Design: Franko Trading Style (Clean, Boxed)
   =============================================== */

/* Delivery Sidebar Container */
.delivery-sidebar {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Sidebar Item Wrapper */
.wrapper-delivery {
    padding: 12px 0;
}

/* Icons */
.wrapper-delivery .icon i {
    color: #f68b1e;
    /* Jumia/Franko orange-y color for icons */
    font-size: 24px;
    width: 30px;
    text-align: center;
}

/* Headings */
.wrapper-delivery h6 {
    font-size: 14px;
    font-weight: 600;
    color: #282828;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Links (Details) */
.wrapper-delivery a.text-primary {
    font-size: 12px;
    color: #f68b1e !important;
    /* Brand color */
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
}

.wrapper-delivery a.text-primary:hover {
    text-decoration: underline;
}

/* Delivery Text */
.wrapper-delivery p.text-dark {
    font-size: 13px;
    color: #333 !important;
    font-weight: 500;
    line-height: 1.4;
}

.wrapper-delivery p.text-muted {
    font-size: 12px;
    color: #757575 !important;
    line-height: 1.4;
    margin-top: 2px;
}

/* Borders */
.border-bottom {
    border-bottom: 1px solid #f0f0f0 !important;
}

/* Highlighted Dates */
.wrapper-delivery strong {
    color: #282828;
    font-weight: 600;
}

/* Responsive Handling */
@media (max-width: 767px) {
    .delivery-sidebar {
        margin-top: 20px;
        border: none;
        border-top: 8px solid #f5f5f5;
        /* Separator style on mobile */
        box-shadow: none;
        border-radius: 0;
        padding: 15px 0 !important;
    }

    .wrapper-delivery:first-child {
        padding-top: 0;
    }
}