.shop-price-tag{
    font-family: 'Inter', serif;
    font-style: normal;
    font-size: 16px;
    line-height: 29px;
    color: #333333;
    text-align: center;
    margin-top: 5px;
}

.shop-buy-button{
    font-family: 'Inter', serif;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 132px;
    height: 40px;
    color: #fff;
    background: #006600;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 12px;
}

.shop-buy-button-2{
    font-family: 'Inter', serif;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 132px;
    height: 40px;
    color: #006600;
    background: #fff;
    border-radius: 5px;
    border:1px solid#006600;
    outline: none;
    font-size: 12px;
}

.shop-buy-button:hover{
    color: #006600;
    background: #fff;
    border: 1px solid #006600;
}

.shop-item-name{
    font-family: 'Inter', serif;
    font-style: normal;
    font-size: 22px;
    color: #006600;
    margin-bottom: 0;
    margin-top: 2px;
}

.shop-vendor-name{
    font-family: 'Inter', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
}

.shop-category-tag{
    font-family: 'Inter', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    color: #ffffff;
    background: #ff9f55;
    padding: 2px;
    border-radius: 5px;
    margin-bottom: 1px;
}

.vue-multiselect {
    --ms-line-height: 2;
}

/* Homepage marketplace grid: fixed frame + center crop for any aspect ratio */
.marketplace-thumb {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 0.375rem 0.375rem 0 0;
    background: #f3f4f6;
}

.marketplace-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Similar products / compact tiles */
.marketplace-thumb--sm {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 0.375rem;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
}

.marketplace-thumb--sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-card .card {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    border-radius: 0.375rem;
    overflow: hidden;
}

.product-card .card:hover {
    box-shadow: 0 8px 24px rgba(0, 102, 0, 0.12);
    transform: translateY(-2px);
}

.marketplace-price-row {
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-card a.vendor-name {
    color: #dc5d01;
    text-decoration: none;
}

.product-card a.vendor-name:hover {
    text-decoration: underline;
}

.product-link:hover{
    color: #dc5d01;
}

.product-card .vendor-name:not(a) {
    color: #333333;
}

.shop-item-box {
    width: 98%;
    box-shadow: 2px 4px 4px rgba(0, 102, 0, 0.2);
    border: 2px solid #C4C4C4;
    border-radius: 10px 10px 10px 10px;
    height: 360px;
}

.shop-category-item{
    font-family: 'Inter', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 0;
    border-top: none;
    border-bottom: none;
    border-right: 1px solid #DC5D01;
    border-left: 1px solid #DC5D01;
}

/*Vue pagination, overwrite default*/
.pagination .page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #006600;
}

.pagination .page-item .page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    background-color: #fff;
    border: 1px solid #dee2e6;
    color: #006600;
}

.modal-img {
    width: 100%;
    border: 1px solid #C4C4C4;
    height: 242px;
    border-radius: 5px;
    overflow: hidden;
    background: #f3f4f6;
}

.modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
