/* =========================================
   PRODUCT CARD
========================================= */

.product-card {
    position: fixed;
    inset: 0;

    z-index: 1000;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity 0.2s ease;
}


/* =========================================
   VISIBLE
========================================= */

.product-card--visible {
    opacity: 1;

    pointer-events: auto;
}


/* =========================================
   OVERLAY
========================================= */

.product-card__overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 24px;

    background: rgba(0, 0, 0, 0.45);
}


/* =========================================
   PANEL
========================================= */

.product-card__panel {
    width: min(
        100%,
        480px
    );

    max-height: 90vh;

    overflow-y: auto;

    padding: 28px;

    background: white;

    border-radius: 18px;

    box-sizing: border-box;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25);
}


/* =========================================
   HEADER
========================================= */

.product-card__header {
    margin-bottom: 24px;
}


.product-card__title {
    margin: 0;

    font-size: 24px;

    line-height: 1.2;
}


/* =========================================
   CONTENT
========================================= */

.product-card__content {
    margin-bottom: 28px;
}


.product-card__message {
    margin: 0 0 12px;

    line-height: 1.5;
}


.product-card__code {
    margin: 0;

    font-family: monospace;

    font-size: 14px;

    opacity: 0.7;
}


/* =========================================
   DATA
========================================= */

.product-card__data {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


.product-card__row {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-bottom: 10px;

    border-bottom: 1px solid #eeeeee;
}


.product-card__label {
    font-size: 14px;

    opacity: 0.65;
}


.product-card__value {
    font-weight: 600;

    text-align: right;
}


/* =========================================
   ACTIONS
========================================= */

.product-card__actions {
    display: flex;

    justify-content: flex-end;

    gap: 12px;

    flex-wrap: wrap;
}


.product-card__button {
    min-height: 44px;

    padding: 0 18px;

    border: none;

    border-radius: 10px;

    font: inherit;

    cursor: pointer;

    transition:
        transform 0.15s ease,
        opacity 0.15s ease;
}


.product-card__button:hover {
    opacity: 0.9;
}


.product-card__button:active {
    transform: scale(0.97);
}


.product-card__button--primary {
    background: #111111;

    color: white;
}


.product-card__button--secondary {
    background: #eeeeee;

    color: #111111;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .product-card__overlay {
        padding: 16px;
    }


    .product-card__panel {
        padding: 22px;

        border-radius: 16px;
    }


    .product-card__actions {
        flex-direction: column;
    }


    .product-card__button {
        width: 100%;
    }

}