.popup-product__products {
    padding: 0 20px;
}
.popup-product__products > .products {
    border: 1px solid #141417;
    margin-bottom: 20px;
}
.fs-extra-fastcheckout-title {
    text-align: center;
    margin: 0 0 20px;
}
#fs-extra-fastcheckout {
    display: flex;
    justify-content: center;
    align-items: start;
}
#fs-extra-fastcheckout > span {
    margin: 0!important;
}
#fs-extra-fastcheckout > span  + span {
    margin-left: 20px!important;
}

/* Google Pay */
#fs-extra-fastcheckout .gpay-card-info-container,
#fs-extra-fastcheckout .gpay-button {
    min-height: 35px !important;
    height: 35px !important;
    max-height: 35px !important;
    overflow: hidden;
}
#fs-extra-fastcheckout .gpay-card-info-iframe {
    height: 35px !important;
    max-height: 35px !important;
}
#fs-extra-fastcheckout .gpay-button-fill {
    height: 35px !important;
    max-height: 35px !important;
    overflow: hidden !important;
}
body.page .categories-block.my-mover-cat {
    padding: 0;
}
body.page .categories-block.my-mover-cat .categories-form {
    /*display: none;*/
}
body.page .categories-block.my-mover-cat .wrapper {
    /*margin-top: 0;*/
}
body.page .categories-block.my-mover-cat .container {
    padding: 30px 0 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 300px;
    max-width: 300px;
    box-sizing: border-box;
    margin-right: 30px;
}
.woocommerce-account .woocommerce-MyAccount-content {
    width: calc(100% - 330px);
    max-width: calc(100% - 330px);
}
.my-mower-actions {
    text-align: center;
    margin-top: 30px;
}

/* === Mower Popup Overlay === */
.mower-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.mower-popup.hidden {
    visibility: hidden;
}

.mower-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Popup Box */
.mower-popup-inner {
    position: relative;
    background: #fff;
    width: 95%;
    max-width: 480px;
    padding: 30px 24px;
    border-radius: 8px;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.35s ease;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    z-index: 2;
}

/* Active state */
.mower-popup.active {
    pointer-events: auto;
    visibility: visible;
}

.mower-popup.active .mower-popup-overlay {
    opacity: 1;
}

.mower-popup.active .mower-popup-inner {
    transform: scale(1);
    opacity: 1;
}

/* Close Button */
.mower-popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #444;
}

/* === Form Styling === */
#mower-popup-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row label {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 600;
}

.form-row select {
    width: 100%;
    height: 40px;
    border-radius: 4px;
    padding: 0 10px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* Button */
#mower-popup-form button {
    height: 42px;
    background: #e23c2d;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    transition: background 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

#mower-popup-form button:hover {
    background: #c63225;
    transform: translateY(-1px);
}
.select-mower-inline {
    margin-bottom: 20px;
}
body .products[data-type=grid] .products-wrap .theme-product .title {
    margin-bottom: 20px!important;
}

/* Responsive */
@media (max-width: 480px) {
    .mower-popup-inner {
        padding: 20px;
    }
}