/* ================================
   SINGLE PRODUCT PAGE LAYOUT
================================ */

.egle-single-wrapper {
    max-width: 1350px;
    margin: 20px auto 120px;
    padding: 0 20px;

    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 40px;
    align-items: start;
}



/* ================================
   LEFT BLOCK (IMAGE)
================================ */

.egle-left {
    background: #fff;
    padding: 20px;
    border-radius: 22px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);

    display: flex;
    justify-content: center;
    align-items: center;

    max-height: 620px; /* фиксируем высоту */
    overflow: hidden;
}

.egle-main-image img {
    max-height: 580px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 14px;
}



/* ================================
   RIGHT COLUMN (ALL RIGHT BLOCKS)
================================ */

.egle-right-column {
    max-height: 620px; /* ТА ЖЕ ВЫСОТА ЧТО У ЛЕВОГО */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}



/* ================================
   CONTACT BOX
================================ */

.egle-contacts {
    background: #fff;
    padding: 18px 22px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.egle-contacts-title {
    font-size: 18px;
    font-weight: 700;
}

.egle-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.egle-contact-item img {
    width: 20px;
    height: 20px;
}



/* ================================
   PRODUCT CARD (PRICE, TITLE, BUTTON)
================================ */

.egle-right-card {
    background: #fff;
    padding: 26px 28px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);

    display: flex;
    flex-direction: column;
    gap: 16px;
}

.egle-title {
    font-size: 28px;
    font-weight: 700;
}

/* FEATURES */
.egle-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.egle-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.egle-features img {
    width: 18px;
    height: 18px;
}


/* PRICE — CENTER */
.egle-price {
    font-size: 40px;
    font-weight: 700;
    color: #009FE3;
    margin: 10px auto 0;
    text-align: center;
    display: block;
}



/* ================================
   BUTTON — FIXED WHITE TEXT
================================ */

.egle-btn {
    display: block;
    background: #E3000F !important;
    color: #fff !important;
    text-decoration: none !important;

    padding: 7px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;

    width: fit-content;
    margin: 0 auto;
    transition: 0.2s;
}

/* Белый текст везде */
.egle-btn *,
.egle-btn span,
.egle-btn strong {
    color: #fff !important;
}

.egle-btn svg,
.egle-btn svg * {
    fill: #fff !important;
}

/* Hover */
.egle-btn:hover {
    background: #C3000E !important;
}



/* ================================
   BOTTOM INFO BLOCK
================================ */

.egle-bottom-info {
    background: #fff;
    padding: 20px 22px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ebi-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.ebi-item img {
    width: 24px;
    height: 24px;
}



/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1100px) {
    .egle-single-wrapper {
        grid-template-columns: 1fr;
    }

    .egle-left {
        max-height: none;
    }

    .egle-main-image img {
        max-height: none;
        width: 100%;
    }

    .egle-right-column {
        max-height: none;
    }
}

@media (max-width: 700px) {
    .egle-title {
        font-size: 22px;
    }

    .egle-price {
        font-size: 30px;
    }

    .egle-right-card {
        padding: 20px;
    }
}
/* ===============================
   CHECKOUT (BLOCKS) — BUTTON STYLE
=============================== */

.wc-block-components-checkout-place-order-button,
.wc-block-components-checkout-place-order-button button {
    width: 100% !important;
    background: #d32528 !important;
    color: #fff !important;
    padding: 16px !important;
    border-radius: 14px !important;
    border: none !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    text-align: center;
    cursor: pointer;
    display: block !important;
    box-shadow: 0 10px 24px rgba(211, 37, 40, 0.25) !important;
    transition: 0.2s ease !important;
}

/* text inside */
.wc-block-components-checkout-place-order-button__text {
    color: #fff !important;
}

/* hover */
.wc-block-components-checkout-place-order-button:hover,
.wc-block-components-checkout-place-order-button button:hover {
    background: #b81f22 !important;
}
/* center button text */
.wc-block-components-checkout-place-order-button,
.wc-block-components-checkout-place-order-button button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.wc-block-components-checkout-place-order-button__text {
    width: 100%;
    text-align: center !important;
}
