.shop-main {
    max-width: 1440px;
    margin: 48px auto 38px auto;
    padding: 12px 16px 32px 16px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 14px #f2f5fa;
}

.shop-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: right;
    color: #0593d3;
    padding-right: 12px;
}

.shop-products-section {
    width: 100%;
}

.shop-products-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 38px;
}

.shop-product-card {
    position: relative;
    background: #fafbfc;
    border: 1px solid #eee;
    border-radius: 20px;
    min-width: 180px;
    max-width: 220px;
    width: 200px;
    margin: 0 6px;
    box-shadow: 0 2px 6px #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 12px 16px 12px;
    transition: box-shadow 0.22s;
    overflow: hidden;
}
.shop-product-card:hover {
    box-shadow: 0 6px 20px #c7e7ff;
}

.shop-img {
    width: 94px;
    height: 94px;
    object-fit: contain;
    border-radius: 14px;
    margin-bottom: 18px;
    background: #fff;
    border: 1px solid #eee;
}

.shop-product-title {
    font-size: 15px;
    color: #222;
    font-weight: bold;
    text-align: center;
    min-height: 48px;
    margin-bottom: 6px;
}
.shop-product-status {
    font-size: 14px;
    margin-bottom: 8px;
    text-align: center;
    font-weight: bold;
}
.shop-product-status.out-stock {
    color: #e00;
}
.shop-product-status.price {
    color: #0593d3;
}
.shop-stars {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 8px;
    direction: ltr;
}

.shop-hover-bar {
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 44px;
    background: rgba(255,255,255,0.92);
    border-radius: 0 0 14px 14px;
    box-shadow: 0 4px 16px #e4eaf1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 4;
}
.shop-hover-bar span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: #888;
    margin: 0 8px;     
    transition: color 0.18s;
}
.shop-hover-bar span:hover {
    color: #19a7e6;
}

.shop-cart-btn {
    position: absolute;
    left: 15px;
    bottom: 15px;
    width: 46px;
    height: 46px;
    background: #19a7e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 23px;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 2px 8px #b2e4fb;
    transition: opacity 0.18s;
    z-index: 5;
}
.shop-product-card:hover .shop-hover-bar {
    opacity: 1;
    pointer-events: auto;
}
.shop-product-card:hover .shop-cart-btn {
    opacity: 1;
    pointer-events: auto;
}