/* General Styling */
.catalog-section {
    background-color: #f9f3e4;
    color: #5a3921;
    padding: 70px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #a67c52;
    margin-bottom: 10px;
}



/* Grid Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Product Card */
.product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 6px 14px rgba(255, 215, 0, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    padding: 15px;
    text-align: center;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(255, 215, 0, 0.25);
}

/* Product Image */
.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* Product Details */
.product-details {
    padding: 15px;
}

.product-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: #d4af37;
}

.product-desc {
    font-size: 1rem;
    color: grey;
    margin: 8px 0;
}

/* Product Pricing */
.product-pricing {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.discounted-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #d4af37;
}

.actual-price {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: red;
}

/* Rating */
.rating {
    font-size: 1rem;
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 5vh;
}

/* Buy Now Button */
.btn-golden {
    background-color: #d4af37;
    color: black;
    border: none;
    padding: 12px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-golden:hover {
    background-color: #c49a2c;
}

/* Responsive Design */
@media (max-width: 992px) {
    .col-lg-4 {
        flex: 0 0 48%;
        max-width: 48%;
    }
}

@media (max-width: 768px) {
    .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
