.product-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 4em 0;
}

.product-image {
    width: 45%;
}

.product-info {
    width: 55%;
}

.product-image img {
    border-radius: 10px;
}

.product-info ul li:before {
    content: "\f00c";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
    font-family: "Font Awesome 5 Free";
}

.product-info ul li {
    position: relative;
    padding: 0 0 0 25px;
}

.product-info ul {
    margin: 0 0 20px;
}

.consprodwrap .price span.woocommerce-Price-amount.amount bdi,
.consprodwrap .price span.woocommerce-Price-amount.amount bdi span {
    font-size: 48px;
    font-weight: 700;
    color: var(--teal);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0;
}

.consprodwrap .row {
    max-width: 1400px !important;
}

.product-info a.button {
    font-size: 22px !important;
}

.product-info h1 {
    font-size: 40px;
    margin: 0;
}

.below-cart p,
.below-cart p a {
    margin: 0 !important;
    font-size: 14px;
}

.below-cart p a {
    color: var(--teal);
    text-decoration: underline;
}

.below-cart {
    padding: 10px 0;
}

/* Extra info */
.extra-info {
    padding: 24px 40px 32px;
    border-top: 1px solid var(--light-gray);
}

.extra-info p {
    font-size: 14px;
    line-height: 1.6;
}

.extra-info a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.extra-info a:hover {
    text-decoration: underline;
}


.consprodwrap .price del span.woocommerce-Price-amount.amount bdi,
.consprodwrap .price del span.woocommerce-Price-amount.amount bdi span {
    font-size: 18px;
    color: #888;
}

.consprodwrap .price ins {
    text-decoration: none;
}

.notice-box p, .notice-box p a {
    margin: 0;
    font-size: 16px;
}

.notice-box {
    margin-bottom: 30px;
    border-radius: 10px;
}

/** followup cons **/
.consultancy-selector-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.variation-card {
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    background: #fff;
}

.variation-card:hover {
    border-color: var(--teal);
}

.variation-card.selected {
    border-color: var(--teal);
    background-color: #f6fdfc;
}

.variation-card.highlight.selected {
    background-color: #e8f7f6;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.card-header .title {
    font-weight: 800;
    font-size: 1.1rem;
    color: #000;
    max-width: 70%;
}

.card-header .price {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--teal);
}

.description {
    font-size: 18px;
    line-height: 1.4;
    color: #000;
    margin: 0;
    text-transform: none;
}

.savings-badge {
    display: inline-block;
    background-color: var(--teal);
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: absolute;
    top: -10px;
    left: -10px;
}

.atc-wrapper {
    margin-top: 20px;
}

.add-to-cart-btn.disabled {
    background-color: #ccc;
    cursor: not-allowed;
    pointer-events: none;
}

@media only screen and (max-width: 768px) {
    .product-layout {
        flex-flow: wrap;
    }

    .product-image {
        width: 100%;
    }

    .product-info {
        width: 100%;
    }
}

@media only screen and (max-width: 639px) {
    .product-info h1 {
        font-size: 24px;
    }

    .consprodwrap .price span.woocommerce-Price-amount.amount bdi,
    .consprodwrap .price span.woocommerce-Price-amount.amount bdi span {
        font-size: 35px;
    }

    .product-info .price {
        margin: 10px 0;
    }
}