/* ============================================
    Plunksna Woo Add to Cart - v1.10.83
   ============================================ */

form.plunksna-woo-atc-form {
    margin: 0;
    padding: 0;
    border: 0;
}

.plunksna-woo-atc {
    display: flex;
    align-items: stretch;
    gap: 0;
}

/* ─── Quantity ─── */

.plunksna-woo-atc__qty-wrap {
    display: flex;
    align-items: center;
    border: 2px solid #4a7fa5;
    border-radius: 0;
    background: #fff;
    box-sizing: border-box;
    width: 140px;
    flex-shrink: 0;
    overflow: hidden;
}

.plunksna-woo-atc__qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #4a6e89;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
    user-select: none;
    line-height: 1;
    padding: 0;
}

.plunksna-woo-atc .plunksna-woo-atc__qty-btn:hover {
    color: #1d4e74;
    background: transparent;
}

.plunksna-woo-atc .plunksna-woo-atc__qty-btn:active,
.plunksna-woo-atc .plunksna-woo-atc__qty-btn:focus {
    color: #4a6e89;
    background: transparent;
    outline: none;
    box-shadow: none;
}

.plunksna-woo-atc__qty-input {
    width: 100%;
    flex: 1;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #3a5c75;
    outline: none;
    padding: 0;
    -moz-appearance: textfield;
}

.plunksna-woo-atc__qty-input::-webkit-inner-spin-button,
.plunksna-woo-atc__qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ─── Add to cart button ─── */

.plunksna-woo-atc__button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: #4a7fa5;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    padding: 0 28px;
    white-space: nowrap;
    box-sizing: border-box;
}

.plunksna-woo-atc__button:hover {
    background: #3a6a8e;
}

.plunksna-woo-atc__button.is-loading {
    pointer-events: none;
    opacity: 0.7;
}

/* ─── Wishlist ─── */

.plunksna-woo-atc__wishlist {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: auto;
    flex-shrink: 0;
    border: 2px solid #4a7fa5;
    background: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
    padding: 0;
    box-sizing: border-box;
}

.plunksna-woo-atc__wishlist svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #4a7fa5;
    transition: fill 0.2s ease, stroke 0.2s ease;
}

.plunksna-woo-atc__wishlist:hover {
    background: #f0f6fb;
}

.plunksna-woo-atc__wishlist.is-active svg {
    fill: #4a7fa5;
    stroke: #4a7fa5;
}

/* ─── Notice (editor) ─── */

.plunksna-woo-atc__notice {
    padding: 14px 16px;
    border: 1px dashed #cbd5e1;
    color: #5d6e7d;
    background: #f8fafc;
}

/* ─── Disabled state ─── */

.plunksna-woo-atc--disabled {
    opacity: 0.45;
    pointer-events: none;
    user-select: none;
}

/* ─── Responsive ─── */

@media (max-width: 480px) {
    .plunksna-woo-atc {
        flex-wrap: wrap;
    }

    .plunksna-woo-atc__qty-wrap {
        width: 100%;
    }

    .plunksna-woo-atc__button {
        width: 100%;
        flex: auto;
        padding: 14px 20px;
    }

    .plunksna-woo-atc__wishlist {
        width: 100%;
        height: 50px;
    }
}
