.product-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    background: #fff;
    display: block;
    padding: 0.45rem;
}

.product-title {
    margin: 0 0 0.75rem;
    color: var(--tenant-text);
    font-size: 1rem;
    font-weight: 700;
}

.price {
    display: inline-flex;
    align-items: center;
    color: var(--tenant-primary);
    font-size: 1.05rem;
    font-weight: 800;
}

.buy-btn {
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--tenant-primary), color-mix(in srgb, var(--tenant-primary) 78%, #111827));
    border-radius: 14px;
    padding: 0.85rem 1rem;
}

.buy-btn:hover,
.buy-btn:focus {
    color: #fff;
    background: linear-gradient(135deg, color-mix(in srgb, var(--tenant-primary) 78%, #111827), var(--tenant-primary));
}

.app-toast {
    border-radius: 14px;
}

body.swal2-toast-shown .swal2-container {
    width: min(300px, calc(100vw - 1rem)) !important;
    padding: 0.55rem !important;
}

.swal2-popup.swal2-toast {
    width: 100% !important;
    min-height: 0 !important;
    padding: 0.6rem 0.75rem !important;
    border-radius: 10px !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14) !important;
}

.swal2-popup.swal2-toast .swal2-icon {
    width: 1.9rem !important;
    min-width: 1.9rem !important;
    height: 1.9rem !important;
    margin: 0 0.65rem 0 0 !important;
}

.swal2-popup.swal2-toast .swal2-title {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.92rem !important;
    line-height: 1.2 !important;
}

.swal2-popup.swal2-toast .swal2-html-container {
    margin: 0.2rem 0 0 !important;
    padding: 0 !important;
    font-size: 0.82rem !important;
    line-height: 1.25 !important;
}
