.delivery-options {
    padding: 1rem 0;
}

.delivery-option-card {
    display: block;
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    text-decoration: none !important;
    color: inherit;
}

.delivery-option-card:hover {
    border-color: #ffd700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.delivery-option-card.active {
    border-color: #ffd700;
    background-color: #fffdf0;
}

.delivery-icon {
    margin-bottom: 1rem;
    color: #333;
}

.delivery-info h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.delivery-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.delivery-price {
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .delivery-option-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .delivery-info h6 {
        font-size: 1rem;
    }

    .delivery-info p {
        font-size: 0.85rem;
    }
}

/* Selected Products Styles */
.selected-products {
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
}

.products-scroll {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

.products-scroll::-webkit-scrollbar {
    width: 6px;
}

.products-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.products-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.product-item {
    transition: background-color 0.2s;
}

.product-item:hover {
    background-color: #f8f9fa;
}

.product-item img {
    border-radius: 6px;
}

.product-details h6 {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 4px;
}

.product-details .quantity {
    font-size: 0.8rem;
    color: #666;
}

.product-details .price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

/* Payment Methods Styles */
.payment-methods {
    border-top: 1px solid #eee;
}

.payment-methods-header h6 {
    color: #333;
    font-size: 0.9rem;
}

.payment-icons {
    gap: 15px;
}

.payment-icons img {
    filter: grayscale(0.2);
    transition: filter 0.2s;
}

.payment-icons img:hover {
    filter: grayscale(0);
}

.cash-icon {
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.cash-icon i {
    color: #28a745;
    margin-right: 4px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .products-scroll {
        max-height: 250px;
    }

    .payment-icons {
        gap: 10px;
    }

    .payment-icons img {
        height: 20px;
    }

    .cash-icon {
        font-size: 0.8rem;
        padding: 3px 8px;
    }
} 