/**
 * PS Product Drawer
 *
 * Style wysuwanego panelu produktu.
 */

.ps-product-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
    z-index: 9998;
}

.ps-product-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 9999;
    overflow-y: auto;
}

.ps-product-drawer__close {
    border: 0;
    background: transparent;
    font-size: 32px;
    cursor: pointer;
    padding: 16px;
}

.ps-product-drawer__content {
    padding: 24px;
}

.ps-product-drawer__product {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ps-product-drawer__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.ps-product-drawer__title {
    margin: 0;
    font-size: 24px;
    line-height: 1.3;
}

.ps-product-drawer__title a,
.ps-product-drawer__title a:visited,
.ps-product-drawer__title a:hover,
.ps-product-drawer__title a:active {
    color: #111 !important;
    text-decoration: none;
}

.ps-product-drawer__price {
    margin-top: 10px;
    color: #111;
    font-size: 22px;
    font-weight: 700;
}

.ps-product-drawer__stock {
    margin-top: 8px;
    font-size: 14px;
}

.ps-product-drawer__description {
    margin-top: 16px;
    line-height: 1.6;
}

.ps-product-drawer__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.ps-product-drawer__button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.ps-product-drawer__button {
    border: 1px solid #111;
    background: #fff;
    color: #111;
}

.ps-product-drawer__button:hover {
    background: #f2f2f2;
    color: #111;
    border-color: #111;
}

.ps-product-drawer__button:visited,
.ps-product-drawer__button:hover,
.ps-product-drawer__button:active,
.ps-product-drawer__button:focus {
    color: #111;
}

.ps-product-drawer__button.add_to_cart_button,
.ps-product-drawer__button.add_to_cart_button:link,
.ps-product-drawer__button.add_to_cart_button:visited,
.ps-product-drawer__button.add_to_cart_button:hover,
.ps-product-drawer__button.add_to_cart_button:active,
.ps-product-drawer__button.add_to_cart_button:focus,
.ps-product-drawer__button.ajax_add_to_cart,
.ps-product-drawer__button.ajax_add_to_cart:link,
.ps-product-drawer__button.ajax_add_to_cart:visited,
.ps-product-drawer__button.ajax_add_to_cart:hover,
.ps-product-drawer__button.ajax_add_to_cart:active,
.ps-product-drawer__button.ajax_add_to_cart:focus {
    color: #111 !important;
}

.ps-product-drawer__button--secondary {
    border: 1px solid #d8d8d8;
    background: #fff;
    color: #111;
}

.ps-product-drawer__button--secondary:hover {
    border-color: #111;
    color: #111;
}

.ps-product-drawer__link {
    align-self: center;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.ps-product-drawer__link:hover {
    color: #111;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .ps-product-drawer__content {
        padding: 20px 28px 32px;
    }

    .ps-product-drawer__title {
        font-size: 22px;
        font-weight: 700;
    }

    .ps-product-drawer__description {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .ps-product-drawer {
        width: 100%;
    }

    .ps-product-drawer__content {
        padding: 18px;
    }
}

.ps-product-drawer.is-open {
    transform: translateX(0);
}

.ps-product-drawer-overlay.is-open {
    opacity: 1;
    visibility: visible;
}