.product-card {
    padding: 0;
    border-radius: 26px;
    background:
        radial-gradient(circle at top left, rgba(255,213,139,0.12), transparent 48%),
        radial-gradient(circle at bottom right, rgba(145,175,255,0.12), transparent 42%),
        rgba(17, 14, 26, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
    min-height: 100%;
    cursor: pointer;
    backdrop-filter: blur(22px);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.95);
    border-color: rgba(255, 213, 139, 0.9);
}

.product-img-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 26px 26px 0 0;
    background: rgba(255,255,255,0.03);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(17, 14, 26, 0.95), transparent);
    pointer-events: none;
}

.product-card-body {
    padding: 12px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    z-index: 3;
    backdrop-filter: blur(8px);
}

.badge-sold_out {
    background: rgba(239, 68, 68, 0.85);
    color: #fff;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
}

.badge-expected {
    background: rgba(245, 158, 11, 0.85);
    color: #1a1005;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}

.badge-available {
    display: none;
}

.product-name {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.4;
    min-height: 44px;
    margin-top: 0;
    font-weight: 600;
}

.product-price {
    color: #ffd58b;
    margin-top: 8px;
    font-size: 22px;
    font-weight: 800;
}

.product-smart {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12px;
    color: #c9c3ff;
}

.product-smart-title {
    font-weight: 600;
    color: #ffd58b;
    margin-bottom: 4px;
}

.product-smart-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2px;
}

.add-btn {
    margin-top: auto;
    padding: 12px 14px;
    width: 100%;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(135deg, #ffd58b, #fff0c6);
    color: #22160b;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
}

.add-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

.add-btn:active {
    transform: translateY(1px) scale(0.97);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.add-btn-disabled,
.add-btn-disabled:hover,
.add-btn-disabled:active {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.06);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.product-card:active {
    transform: translateY(-1px) scale(0.98);
}
