@charset "utf-8";
/* CSS Document */


/* -----------------------------------------
   PRODUCT PAGE QUANTITY CONTROL (NEW)
------------------------------------------ */

.product-qty-row {
    margin: 1.75rem 0;
    width: 100%;
    text-align: center;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #ccc;
    border-radius: 8px;

    overflow: hidden;
    background-color: #fff;

    padding: 0; /* no inner padding so alignment stays crisp */
}

/* Increase button size */
.qty-btn {
    border: none;
    background: #f5f5f5;
    padding: 12px 18px;    /* bigger top/bottom + side padding */
    font-size: 22px;       /* larger +- symbols */
    font-weight: 600;
    cursor: pointer;
    user-select: none;
}

.qty-btn:hover {
    background: #e9e9e9;
}

/* Large centered input */
.qty-input {
    width: 70px;          /* larger, clean width */
    text-align: center;
    border: none;
    font-size: 22px;      /* BIGGER text */
    padding: 12px 0;
    font-weight: 600;
}

.qty-input:focus {
    outline: none;
}

/* MOBILE TWEAKS */
@media (max-width: 767px) {
    .product-qty-row {
        margin: 2rem 0;
    }

    .qty-btn {
        padding: 14px 20px;
        font-size: 24px;
    }

    .qty-input {
        width: 80px;
        font-size: 24px;
    }

    .qty-control {
        border-radius: 10px;
    }
}
