/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 172:0 Unexpected "<"

**/
<style>
    .product-detail__delivery-reviews {
    padding: 20px 0;
    }

    /* Delivery Timeline Styles */
    .delivery-timeline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 0px;
    position: relative;
    }

    .timeline-step {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    position: relative;
    flex: 1;
    }

    .step-content {
    text-align: center;
    }

    .step-date {
    font-weight: 600;
    color: #212529;
    margin-bottom: 0px;
    font-size: 16px;
    }

    .step-label {
    color: #6c757d;
    font-size: 14px;
    }

    /* Reviews Slider Styles */
    .reviews-slider-container {
    background: white;
    overflow: hidden;
    }

.reviews-slider {
    position: relative;
    height: auto;
    min-height: 100px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 10px 0;
}

.review-slide {
    flex: 0 0 70%;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 14px 14px;
}
    .review-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    height: 100%;
    }

    .review-content p{
    margin:0;
    }

    .review-text {
    font-style: italic;
    color: #495057;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    margin-top: 0;
    }

    .review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 4px;
    }

    .reviewer-name {
    font-weight: 600;
    color: #212529;
    line-height: 1;
    }

    .reviewer-location {
    color: #6c757d;
    font-size: 14px;
    line-height: 1;
    }

    .review-stars {
    line-height: 1;
    display: flex;
    gap: 2px;
    margin-left: auto;
    }

    .star {
    color: #ffc107;
    font-size: 16px;
    }

    .star.filled {
    color: #ffc107;
    }

    /* Animations */
    @keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
    .review-slide {
      flex: 0 0 84%;
    }
    .step-icon {
        margin-bottom: 0;
        margin-right: 16px;
        width: 50px;
        height: 50px;
    }
    .step-content {
        text-align: left;
    }
    .review-content p{
       margin:0;
       font-size: 13px;
    }
    .step-date {
       font-size: 14px;
    }
    .reviewer-name {
        font-size: 14px;
    }

    .reviewer-location {
        font-size: 14px;
    }
    }

</style>
