/* ===============================
   MAIN FORM WRAPPER
================================ */
.awoms-box {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    font-family: Arial, sans-serif;
}

/* ===============================
   INPUTS & DROPDOWNS
================================ */
.awoms-box input,
.awoms-box select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 14px;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    font-size: 15px;
    background: #fff;
}

.awoms-box input:focus,
.awoms-box select:focus {
    outline: none;
    border-color: #e51560;
}

/* ===============================
   TWO INPUTS IN ONE ROW
================================ */
@media (min-width: 768px) {
    #awoms_name,
    #awoms_phone {
        width: 49%;
        display: inline-block;
    }

    #awoms_phone {
        float: right;
    }
}

/* ===============================
   SECTION TITLE
================================ */
.awoms-box h4 {
    font-size: 26px;
    font-weight: 700;
    margin: 30px 0 20px;
    color: #222;
}

/* ===============================
   PRODUCTS GRID (DESKTOP)
================================ */
@media (min-width: 768px) {
    .awoms-products-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .awoms-product {
        width: calc(50% - 10px);
    }
}

/* ===============================
   PRODUCT CARD
================================ */
.awoms-product {
    display: flex;
    align-items: center;              /* 🔥 vertical alignment fix */
    justify-content: space-between;
    padding: 18px 22px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #eee;
    box-sizing: border-box;
}

/* ===============================
   PRODUCT LABEL (LEFT)
================================ */
.awoms-product label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 600;
    color: #222;
    max-width: 55%;
}

/* ===============================
   CHECKBOX
================================ */
.awoms-product input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #e51560;
}

/* ===============================
   QTY CONTROLS (RIGHT) ✅ FIXED
================================ */
.qty {
    display: flex;
    align-items: center;              /* 🔥 SAME BASELINE */
    justify-content: center;
    gap: 10px;
}

.qty button {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;              /* 🔥 CENTER SYMBOL */
    justify-content: center;
    font-size: 20px;
    border-radius: 14px;
    border: 1px solid #ddd;
    background: #ffffff;
    color: #333;
    cursor: pointer;
}

.qty input {
    width: 80px;
    height: 44px;
    text-align: center;
    border-radius: 14px;
    border: 1px solid #ddd;
    font-size: 16px;
    line-height: 44px;
    padding: 0;
}

/* ❌ REMOVE ALL HOVER / ACTIVE EFFECTS (QTY) */
.qty button:hover,
.qty button:focus,
.qty button:active {
    background: #ffffff !important;
    color: #333 !important;
    border-color: #ddd !important;
    box-shadow: none !important;
    transform: none !important;
}

/* ===============================
   PLACE ORDER BUTTON (NO HOVER)
================================ */
.awoms-btn {
    display: block;
    margin: 40px auto 10px;
    padding: 16px 50px;
    background: #e51560;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 14px 35px rgba(229,21,96,0.4);
}

/* ❌ COMPLETELY DISABLE HOVER */
.awoms-btn:hover,
.awoms-btn:focus,
.awoms-btn:active {
    background: #e51560 !important;
    color: #ffffff !important;
    opacity: 1 !important;
    box-shadow: 0 14px 35px rgba(229,21,96,0.4) !important;
    transform: none !important;
}

/* ===============================
   MOBILE VIEW
================================ */
@media (max-width: 767px) {
    .awoms-product {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        width: 100%;
    }

    .awoms-product label {
        max-width: 100%;
    }

    .qty {
        width: 100%;
        justify-content: flex-end;
    }

    .qty input {
        width: 70px;
    }
}



/* ===============================
   FORCE PRODUCT GRID LAYOUT
================================ */

/* Desktop: 2 products per row */
@media (min-width: 768px) {

    .awoms-product {
        width: 48%;
        display: inline-flex !important;
        vertical-align: top;
        margin-right: 2%;
        box-sizing: border-box;
    }

    /* Every 2nd item no right margin */
    .awoms-product:nth-of-type(2n) {
        margin-right: 0;
    }
}

/* Mobile: 1 product per row */
@media (max-width: 767px) {

    .awoms-product {
        width: 100% !important;
        display: flex !important;
        margin-right: 0;
    }
}

