/* Bakery & Bread Page Specific Styles */

.category-hero {
    background: linear-gradient(135deg, #F9C74F, #F8961E);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
  }
  
  .category-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    /* font-family: 'Dancing Script', cursive; */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }
  
  .category-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .category-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
  }
  
  .category-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    /* background: rgba(255, 255, 255, 0.2); */
    padding: 0.5rem 1rem;
    /* border-radius: 20px;
    backdrop-filter: blur(5px); */
  }
  
  .category-stats i {
    font-size: 1.2rem;
  }
  
  .category-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  .category-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
    /* background: #fff; */
    padding: 15px 20px;
    border-radius: 10px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
  }
  
  .category-search {
    position: relative;
    flex: 1;
    max-width: 400px;
  }
  
  .category-search input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .category-search input:focus {
    border-color: #F9C74F;
    box-shadow: 0 0 0 3px rgba(249, 199, 79, 0.2);
    outline: none;
  }
  
  .category-search i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
  }
  
  .category-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .category-filters select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
    cursor: pointer;
    min-width: 180px;
    transition: all 0.3s ease;
  }
  
  .category-filters select:focus {
    border-color: #F9C74F;
    outline: none;
  }
  
  .product-section {
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 10px;
    justify-content: center;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    /* background: #F9C74F; */
    border-radius: 3px;
  }
  
  .section-title i {
    color: #F9C74F;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
  }
  
  .product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
  }
  
  .product-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  .product-image {
    position: relative;
    height: 160px;
    overflow: hidden;
  }
  
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .product-badge.fresh {
    background: #4caf50;
    color: white;
  }
  
  .product-badge.popular {
    background: #ff9800;
    color: white;
  }
  
  .product-badge.premium {
    background: #9c27b0;
    color: white;
  }
  
  .product-badge.organic {
    background: #8bc34a;
    color: white;
  }
  
  .product-info {
    padding: 20px;
  }
  
  .product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.4;
  }
  
  .product-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    min-height: 40px;
  }
  
  .product-meta {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 15px;
  }
  
  .product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e67e22;
  }
  
  .product-unit {
    font-size: 0.8rem;
    color: #888;
  }
  
  .product-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
  }
  
  .btn-quantity {
    width: 32px;
    height: 32px;
    border: 2px solid #F9C74F;
    background: white;
    color: #e67e22;
    border-radius: 50%;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
  }
  
  .btn-quantity:hover {
    background: #F9C74F;
    color: white;
  }
  
  .quantity {
    font-weight: 600;
    min-width: 24px;
    text-align: center;
    font-size: 0.95rem;
  }
  
  .add-to-cart {
    flex: 1;
    padding: 10px 16px;
    background: #F9C74F;
    color: #333;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .add-to-cart:hover {
    background: #F8961E;
    color: white;
    transform: translateY(-1px);
  }
  
  .add-to-cart i {
    font-size: 1rem;
  }
  
  .social-icons{
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  /* Responsive Styles */