.aoms-card{
    max-width:520px;
    margin:40px auto;
    background:#fff;
    padding:30px;
    border-radius:22px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.aoms-card h2{
    text-align:center;
    margin-bottom:20px;
}

.aoms-card input,
.aoms-card select,
.aoms-card textarea{
    width:100%;
    padding:14px 16px;
    margin-bottom:15px;
    border:1px solid #e5e5e5;
    border-radius:12px;
    font-size:15px;
}

.aoms-card textarea{
    min-height:120px;
}

.aoms-card button{
    width:100%;
    padding:14px;
    border:none;
    border-radius:14px;
    background:#e51560;
    color:#fff;
    font-size:16px;
    cursor:pointer;
}

.aoms-popup{
    display:none;
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    background:#000;
    color:#fff;
    padding:18px 28px;
    border-radius:14px;
    z-index:9999;
}




.aoms-wide{max-width:900px;}
.aoms-row{display:flex;gap:15px}
.aoms-row input{flex:1}

.aoms-products{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.aoms-product{
    border:1px solid #eee;
    padding:12px;
    border-radius:12px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}











/* ===============================
   AOMS LOGIN BUTTON FIX
================================ */

/* Login button base */
.aoms-card button {
    background-color: #e51560 !important;
    color: #ffffff !important;

    /* font ke hisaab se size */
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;

    /* auto height (font based) */
    padding: 14px 0 !important;

    border-radius: 14px;
    border: none;

    cursor: pointer;
    transition: none !important; /* hover animation band */
}

/* Hover, focus, active — SAME COLOR */
.aoms-card button:hover,
.aoms-card button:focus,
.aoms-card button:active {
    background-color: #e51560 !important;
    color: #ffffff !important;
    box-shadow: none !important;
    transform: none !important;
}



























/* ===============================
   PLACE ORDER BUTTON – CENTER ALIGNED
================================ */

#aoms_place_order,
.aoms-btn {
    width: auto !important;
    padding: 12px 28px !important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    background: #e51560;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: none !important;
}

/* Hover same color */
#aoms_place_order:hover,
.aoms-btn:hover {
    background: #e51560 !important;
    color: #fff !important;
}

/* ✅ Center alignment */
.aoms-card .aoms-btn {
    display: block;
    margin: 24px auto 0 auto; /* top | left-right auto | bottom */
}



















/* ===============================
   PRODUCT CARD – FINAL LOOK
================================ */

.aoms-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.aoms-product {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Checkbox + product name */
.aoms-product label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 17px;
    font-weight: 600;
    color: #222;
}

/* Checkbox style */
.aoms-product input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Qty box */
.aoms-product input[type="number"] {
    width: 120px;
    padding: 10px 12px;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
    font-size: 15px;
}

/* Mobile view – single column */
@media (max-width: 767px) {
    .aoms-products {
        grid-template-columns: 1fr;
    }
}




















/* ===============================
   LOGOUT BUTTON STYLE
================================ */

.aoms-logout-wrap {
    text-align: right;
    margin-bottom: 15px;
}

.aoms-logout-btn {
    display: inline-block;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    background: #f3f3f3;
    color: #333;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid #ddd;
}

.aoms-logout-btn:hover {
    background: #f3f3f3;
    color: #333;
}












/* ===============================
 FIND STORE – CARD VIEW
================================ */

.aoms-find-store-wrap{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin: 40px auto;
}

.aoms-store-card{
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.aoms-store-name{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.aoms-store-address{
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
}

.aoms-store-phone{
    font-size: 15px;
    font-weight: 600;
    color: #e51560;
}

/* Tablet */
@media (max-width: 1024px){
    .aoms-find-store-wrap{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px){
    .aoms-find-store-wrap{
        grid-template-columns: 1fr;
    }
}


