/* store.css - Updated product cards */
.store-section 
{ padding: 4rem 2rem; 
    background: #FFF8F0; }

.category-tabs 
{ display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 1rem; margin-bottom: 3rem; }

.category-btn 
{ background: white;
     border: 2px solid var(--border-color);
      padding: 0.6rem 1.5rem; border-radius: 40px;
       font-weight: 600; cursor: pointer;
        transition: var(--transition); }

.category-btn.active, .category-btn:hover 
{ background: var(--primary-color);
     color: white;
      border-color: var(--primary-color); }

.products-grid 
{ display: grid;
     grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 2rem; }

.product-card 
{ background: white; 
    border-radius: 20px; overflow: hidden;
     box-shadow: var(--shadow-sm);
      transition: var(--transition); 
     cursor: pointer; }


.product-card:hover 
{ transform: translateY(-8px);
     box-shadow: var(--shadow-lg); }

.product-image 
{ height: 220px; 
    overflow: hidden;
     background: #f5f0e8; }

.product-image img 
{ width: 100%;
     height: 100%; object-fit: cover;
      transition: transform 0.4s; }

.product-card:hover .product-image img 
{ transform: scale(1.05); }

.product-info 
{ padding: 1.5rem; }

.product-name 
{ font-size: 1.2rem;
     font-weight: 700; 
     margin-bottom: 0.5rem; }

.product-price 
{ font-size: 1.4rem; color: var(--primary-color);
    font-weight: 700; }

.product-btn 
{ background: var(--primary-color);
 border: none; padding: 0.5rem 1rem;
border-radius: 30px; color: white; 
transition: var(--transition); }

.size-option, .weight-option 
{ background: #f0ebe0;
 border: none; padding: 0.4rem 1rem;
border-radius: 30px; margin: 0.3rem;
cursor: pointer; 
transition: var(--transition); }

.size-option.active, .weight-option.active 
{ background: 
var(--primary-color); 
color: white; }

/* ========== MODERN QUANTITY SELECTOR ========== */
.modern-qty {
    background: #f8f5f0;
    padding: 1.25rem;
    border-radius: 16px;
    margin: 1rem 0;
}

.modern-qty label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border-radius: 60px;
    width: fit-content;
    padding: 0.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.qty-btn {
    width: 44px;
    height: 44px;
    border-radius: 60px;
    border: none;
    background: #f0ebe0;
    color: #d35400;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #d35400;
    color: white;
    transform: scale(0.96);
}

.qty-selector input {
    width: 60px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    background: transparent;
    color: #2c3e50;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    
}

.qty-selector input::-webkit-outer-spin-button,
.qty-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-unit {
    display: inline-block;
    margin-left: 1rem;
    font-size: 0.85rem;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
}

.qty-selector:focus-within {
    box-shadow: 0 0 0 2px #d35400, 0 4px 12px rgba(0,0,0,0.1);
}

.product-rating {
    margin: 8px 0;
    color: #f39c12;
    font-size: 0.85rem;
}
.product-rating i {
    margin-right: 2px;
}
.product-rating span {
    color: #7f8c8d;
    margin-left: 5px;
}