/* Product Grid Styles */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-weight: 700;
}

.quick-view-btn {
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.quick-view-btn:hover {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .product-card {
        margin-bottom: 1rem;
    }
    
    .product-name {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}
/
* Social Share Buttons */
.social-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-share-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.social-share-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-share-btn svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

/* Responsive social buttons */
@media (max-width: 640px) {
    .social-share-buttons {
        gap: 0.5rem;
    }
    
    .social-share-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .social-share-btn svg {
        width: 0.875rem;
        height: 0.875rem;
        margin-right: 0.375rem;
    }
}

/* Category info section */
.category-info-card {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border: 1px solid #d8b4fe;
    border-radius: 0.5rem;
    padding: 1rem;
}

.category-info-card:hover {
    background: linear-gradient(135deg, #e9d5ff 0%, #ddd6fe 100%);
    transition: background 0.2s ease;
}

/* Delivery info cards */
.delivery-card {
    transition: all 0.2s ease;
}

.delivery-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}