/* Product Box Styles */
.product-box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 0px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}
.product-box {
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    width: 240px;
    padding: 18px 14px 16px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    margin: 0;
    
}
.product-box:hover {
    box-shadow: 0 4px 16px rgba(42,157,143,0.13);
    transform: translateY(-4px) scale(1.03);
}
.product-image {
    width: 170px;
    height: 170px;
    object-fit: contain;
    margin-bottom: 12px;
}
.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2a9d8f;
    margin-bottom: 6px;
    text-align: center;
}
.product-desc {
    font-size: 0.97rem;
    color: #555;
    margin-bottom: 10px;
    text-align: center;
}
.product-price {
    font-size: 1.05rem;
    color: #e76f51;
    font-weight: 700;
    margin-bottom: 10px;
}
.product-action {
    margin-top: auto;
}
.product-action button {
    background: #2a9d8f;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 18px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.product-action button:hover {
    background: #21867a;
}
@media (max-width: 600px) {
    .product-box-container {
        gap: 12px;
        padding: 12px;
        margin: 0;
    }
    .product-box {
        width: calc(50% - 8px);
        min-width: 140px;
        max-width: 200px;
        margin: 0;
        padding: 12px 8px;
    }
    .product-image {
        width: 120px;
        height: 120px;
    }
    .product-title {
        font-size: 1rem;
    }
    .product-desc {
        font-size: 0.9rem;
    }
    .product-price {
        font-size: 1rem;
    }
    .product-action button {
        width: 100%;
        padding: 8px 12px;
        font-size: 0.95rem;
    }
}
