/* Products Section Styles */

.products-section {
    padding: 60px 0;
    background-color: #fff;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: #5a4532;
}

.section-title:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #d4af37;
    margin-top: 10px;
    margin-left: 0;
}

.view-all-link {
    display: inline-block;
    margin-right: 20px;
    color: #8b5a2b;
    font-weight: 600;
    float: right;
    margin-top: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: #d4af37;
    text-decoration: underline;
}

.category-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.category-img {
    height: 200px;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-title {
    padding: 15px;
    font-size: 1.1rem;
    text-align: center;
    background-color: #f8f6f2;
    margin: 0;
    color: #5a4532;
}

/* Featured Products */
.featured-products {
    background-color: #f8f6f2;
    padding: 60px 0;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

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

.product-img {
    height: 200px;
    overflow: hidden;
}

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

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

.product-info {
    padding: 15px;
    flex-grow: 1;
}

.product-title {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
}

.product-price {
    font-weight: 700;
    color: #8b5a2b;
    margin-bottom: 0;
}

.add-to-cart-btn {
    margin: 0 15px 15px;
    color: #5a4532;
    border-color: #5a4532;
}

.add-to-cart-btn:hover {
    background-color: #5a4532;
    color: white;
    border-color: #5a4532;
}

/* Buttons */
.btn-primary {
    background-color: #5a4532;
    border-color: #5a4532;
    color: white;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #8b5a2b;
    border-color: #8b5a2b;
}

.btn-outline-primary {
    color: #5a4532;
    border-color: #5a4532;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #5a4532;
    color: white;
    border-color: #5a4532;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .category-img,
    .product-img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .view-all-link {
        display: block;
        float: none;
        margin-bottom: 20px;
    }
    
    .category-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .category-img,
    .product-img {
        height: 160px;
    }
}
