/* Grocery Page Specific Styles */
.breadcrumb {
    background: var(--bg-card);
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--text-lighter);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateX(-5px);
}

.category-header {
    text-align: center;
}

/* Grocery Types Filters */
.grocery-types {
    padding: 2rem 0;
    background: var(--bg-dark);
}

.type-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.type-btn {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.type-btn.active,
.type-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* Grocery Grid */
.grocery-section {
    padding: 3rem 0;
    background: var(--bg-dark);
}

.grocery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.grocery-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
    position: relative;
}

.grocery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.grocery-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.grocery-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 0.5rem;
}

.grocery-title h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.grocery-badge {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.grocery-specialty {
    color: var(--text-lighter);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Service Badges */
.service-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.service-badge {
    background: linear-gradient(45deg, #10b981, #059669);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.delivery-badge {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.night-badge {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.grocery-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.grocery-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-lighter);
}

.grocery-contact i {
    color: var(--primary);
    width: 20px;
}

/* Shopping Tips Section */
.shopping-tips {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
}

.tips-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    box-shadow: var(--shadow);
    border-left: 4px solid #f59e0b;
}

.tips-icon {
    font-size: 3rem;
    color: #f59e0b;
}

.tips-content h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tip {
    text-align: center;
    padding: 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.tip i {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.tip h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.tip p {
    color: var(--text-lighter);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .type-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .type-btn {
        white-space: nowrap;
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .grocery-grid {
        grid-template-columns: 1fr;
    }
    
    .grocery-card {
        padding: 1.5rem;
    }
    
    .tips-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .service-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .type-filters {
        gap: 0.5rem;
    }
    
    .type-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .tip {
        padding: 1rem;
    }
}