/* Guidebook Card Styling */

.wd-product.wd-hover-fw-button .product-wrapper.guidebook-product-wrapper {
    background: #F0F0F0;
    border-radius: 30px;
    border: 0;
    padding: 35px 10px 35px 45px;
}

.guidebook-content-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    direction: rtl;
}

/* Right: Image */
.guidebook-image {
    flex: 0 0 220px;
}

.guidebook-image img {
    width: 100%;
    height: auto;
}

/* Middle: Details */
.guidebook-details {
    flex: 1;
    text-align: right;
}

.guidebook-details .product-title {
    font-size: 36px;
    line-height: 1.1;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--wd-primary-color);
    /* Tomato red */
}

.guidebook-short-desc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guidebook-short-desc ul li {
    position: relative;
    padding-right: 30px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #000;
}

.guidebook-short-desc ul li::before {
    content: "✔";
    position: absolute;
    right: 0;
    top: 0;
    color: #e9594b;
    font-weight: bold;
    font-size: 18px;
}

/* Left: Actions */
.guidebook-actions {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guidebook-subsidy-badge {
    background-color: var(--wd-primary-color);
    color: #fff;
    padding: 0 15px 0 25px;
    border-radius: 30px;
    font-weight: 700;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-align: right;
}

.guidebook-price-box {
    border: 1px solid #e9594b;
    padding: 20px 30px;
    border-radius: 30px;
    text-align: center;
}

.guidebook-price-box .price-label {
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
    font-weight: bold;
}

.guidebook-price-box .price-amount,
.guidebook-price-box .price-amount .amount {
    font-size: 64px;
    font-weight: 700;
    color: var(--wd-primary-color);
    line-height: 1;
    margin-bottom: 12px;
    display: inline-block;
}

.guidebook-price-box .price-amount .woocommerce-Price-currencySymbol {
    font-size: 24px;
}

@media (max-width: 992px) {

    .guidebook-price-box .price-label {
        font-size: 20px;
    }

    .guidebook-image {
        flex: auto;
    }

    .guidebook-price-box .price-amount,
    .guidebook-price-box .price-amount .amount {
        font-size: 32px;
    }

    .guidebook-price-box .price-amount .woocommerce-Price-currencySymbol {
        font-size: 16px;
    }

    .guidebook-content-row {
        flex-direction: column;
        align-items: center;
    }

    .guidebook-details {
        padding: 20px 0;
    }

    .guidebook-short-desc ul li {
        text-align: right;
    }

    .guidebook-content-row {
        gap: 10px;
    }

    .wd-product.wd-hover-fw-button .product-wrapper.guidebook-product-wrapper {
        padding: 10px 20px 20px;
    }

    .guidebook-details .product-title {
        font-size: 24px;
    }

    .guidebook-image img {
        height: 150px;
    }
}