.products-page-section {
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.products-title {
    font-size: 32px;
    font-weight: 700;
    color: #01A3D4;
}

.products-subtitle {
    font-size: 15px;
    color: #666;
}

/* Card Design */
.market-product-card {
    background: #e9f3f4;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s ease;
}

.market-product-card:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* Image Area */
.market-product-img {
    width: 100%;
    height: 220px;
    background: #e9f3f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.market-product-img img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Body */
.market-product-body {
    padding: 12px;
    text-align: left;
}

.market-product-title {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
}

.market-product-price {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 6px 0;
}

.market-product-desc {
    font-size: 12px;
    color: #777;
    line-height: 1.4;
    height: 34px;
    overflow: hidden;
}

/* Button */
.market-product-btn {
    display: block;
    text-align: center;
    background: #01A3D4;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    margin-top: 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.market-product-btn:hover {
    background: #0087b2;
    color: #fff;
}