/* static/css/product.css */
/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.product-card {
    border: 1px solid #e0e0e0;
    padding: 15px;
    background: white;
    border-radius: 4px;
    transition: box-shadow 0.2s;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-image {
    text-align: center;
    margin-bottom: 15px;
}

.product-image img {
    max-width: 200px;
    height: 200px;
    object-fit: contain;
}

.product-title {
    font-size: 16px;
    color: #0066c0;
    text-decoration: none;
    height: 44px;
    overflow: hidden;
    display: block;
    margin-bottom: 10px;
}

.product-title:hover {
    color: #c45500;
    text-decoration: underline;
}

.price-section {
    margin: 10px 0;
}

.price {
    color: #b12704;
    font-size: 20px;
    font-weight: bold;
}

.price-label {
    font-size: 12px;
    color: #565959;
}

.shop-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
}

.shop-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border: 1px solid #d5d9d9;
    border-radius: 4px;
    text-decoration: none;
    background: #f8f9fa;
    transition: background 0.2s;
}

.shop-button:hover {
    background: #e3e6e6;
}

.shop-name {
    font-size: 14px;
    color: #333;
}

.shop-price {
    font-size: 14px;
    font-weight: bold;
    color: #b12704;
}

.add-to-cart-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.add-to-cart-btn {
    width: 100%;
    padding: 8px;
    background: #ffd814;
    border: 1px solid #fcd200;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.add-to-cart-btn:hover {
    background: #f7ca00;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.quantity-selector select {
    padding: 5px;
    border: 1px solid #888c8c;
    border-radius: 4px;
    background: white;
}

/* Star Ratings */
.star-rating-section {
    margin: 8px 0;
    display: flex;
    align-items: center;
}

.simple-stars {
    color: #ffa41c;
    display: inline-block;
}

.star {
    font-size: 16px;
}

.star.empty {
    color: #ddd;
}

.rating-text {
    font-size: 12px;
    color: #0066c0;
    margin-left: 5px;
}

.rating-count {
    font-size: 11px;
    color: #555;
    margin-left: 3px;
}

/* Badge */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff9900;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    z-index: 1;
}

/* Categories */
.categories-section {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #e7e7e7;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0 15px;
}

.category-card {
    text-align: center;
    text-decoration: none;
    color: #333;
    padding: 10px 5px;
    border-radius: 4px;
    transition: all 0.2s;
}

.category-card:hover {
    background: #f7f7f7;
}

.category-icon {
    font-size: 24px;
    margin-bottom: 5px;
    display: block;
}

.category-name {
    font-size: 12px;
    font-weight: 500;
}