.wpi-quote-btn {
    background: #16a34a;
    border: 2px solid #111;
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight:600;
    font-size: 1.08em;
    transition: background 0.3s, border 0.3s;
    cursor:pointer;
    margin: 5px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    font-family: inherit;
}
.wpi-quote-btn:hover {
    background: linear-gradient(90deg, #16a34a 0%, #a8ff78 100%);
    color: #222;
    border: 2px solid #4ade80;
}
.wpi-quote-btn-wrap {
    text-align: left;
}
.wpi-info-desc {
    color: #222;
    font-size: 1.07em;
    margin-bottom: 6px;
    font-weight: 500;
    font-family: inherit;
}
#wpi-popup-backdrop {
    position: fixed; top:0; left:0; width: 100vw; height:100vh;
    background: rgba(0,0,0,0.28);
    z-index: 9000;
    display: flex; align-items: center; justify-content: center;
    animation: fadein 0.2s;
}
#wpi-popup-box {
    background: #fff;
    border-radius: 12px;
    max-width: 380px;
    width: 95vw;
    box-shadow: 0 8px 32px rgba(0,0,0,0.19);
    padding: 32px 22px 22px;
    position: relative;
    animation: popupin 0.19s;
}
#wpi-popup-box h2 {
    margin-bottom: 18px;
    font-size: 1.24em;
    color: #111;
    font-weight: 700;
}
.wpi-field {
    margin-bottom: 15px;
    display: flex; flex-direction: column;
}
.wpi-field label {
    font-size: 1em;
    margin-bottom: 4px;
    color: #222;
    font-weight: 500;
}
.wpi-phone-flex {
    display: flex;
    align-items: center;
}
.wpi-phone-ext {
    font-weight: 600;
    background: #f3f3f3;
    padding: 8px 10px;
    border-radius: 6px 0 0 6px;
    border: 1.5px solid #e5e7eb;
    border-right: 0;
    font-size: 1.08em;
    height: 40px;
    display: flex;
    align-items: center;
}
#wpi-phone {
    border-radius: 0 6px 6px 0;
    border-left: 0;
    flex: 1;
    height: 40px;
}
.wpi-field input {
    border: 1.5px solid #e5e7eb;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 1em;
    transition: border 0.2s;
}
.wpi-field input:focus {
    border: 1.5px solid #16a34a;
    outline: none;
}
.wpi-contact-btn {
    background: #16a34a;
    border: 2px solid #111;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.08em;
    transition: background 0.3s, border 0.3s;
    cursor:pointer;
    margin-top: 10px;
}
.wpi-contact-btn:hover {
    background: linear-gradient(90deg, #16a34a 0%, #a8ff78 100%);
    color: #222;
    border: 2px solid #4ade80;
}
#wpi-close-btn {
    position: absolute; top:10px; right:12px; background: none; border:none; font-size: 1.6em; color: #555; cursor: pointer; padding:0;
}
#wpi-thankyou {
    font-size: 1.14em;
    color: #16a34a;
    text-align: center;
    padding: 24px 0;
    font-weight: 600;
}
/* Show spinner arrows for quantity */
.wpi-field input[type="number"]::-webkit-inner-spin-button,
.wpi-field input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: auto !important;
  margin: 0;
}
.wpi-field input[type="number"] {
  -moz-appearance: textfield;
}
/* Responsive: summary at side (desktop), below (mobile) */
@media (min-width: 992px) {
    .woocommerce-summary-inner {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
    }
    .woocommerce-summary-inner .summary.entry-summary {
        max-width: 400px;
        margin-left: 32px;
        margin-right: 0;
    }
}
@media (max-width: 991px) {
    .woocommerce-summary-inner {
        display: block;
    }
    .woocommerce-summary-inner .summary.entry-summary {
        margin: 0 auto;
        max-width: 100%;
    }
}
@keyframes fadein { from{opacity:0;} to{opacity:1;} }
@keyframes popupin { from{transform:scale(0.93);} to{transform:scale(1);} }
@media (min-width: 992px) {
}
@media (min-width: 992px) {
    .woocommerce-summary-inner .summary.entry-summary {
        flex: 1;
        margin-left: 24px;
        margin-right: 0;
    }
}