.category-box {
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
}

.category-title {
    background-color: #0f3e3e;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.category-box .list-group-item {
    font-size: 14px;
    padding: 8px 15px;
    cursor: pointer;
    border: none;
}

.category-box .list-group-item:hover {
    background-color: #f5f5f5;
}

.promo-banner {
    position: relative;
    margin-top: 20px;
}

.promo-text {
    position: absolute;
    bottom: 20px;
    left: 10px;
    font-weight: bold;
    font-size: 20px;
    color: white;
    text-shadow: 1px 1px 2px black;
}

.product-card {
    border: 1.5px solid #0f3e3e;
    border-radius: 12px;
    overflow: hidden;
}

.product-card img {
    height: 240px;
    object-fit: contain;
    padding: 15px;
    background-image: url('../images/logo-watermark.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
}

.product-price {
    font-weight: 500;
}

.btn-add-to-cart {
    background-color: #0f3e3e;
    color: white;
    border-radius: 0;
    width: 100%;
}