/* ===============================
   AUTH / LOGIN PAGE ONLY
================================ */

.auth-page {
    --green: #2e7d32;
    --green-light: #e8f5e9;
    --border-green: #8bc34a;
    --text-dark: #2b2b2b;
}
.text-blue{
    color: #1976d2 !important;
}
/* ===== PAGE BACKGROUND ===== */
.auth-page.signIn-area {
    background: #ffffff;
    min-height: 100vh;
}
.rounded-1 {
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #f43397;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 24px;
    text-align: center;
}

/* ===== LOGO ===== */
.auth-page .text-center img {
    max-width: 180px;
}
.fa-2x{
    font-size: 20px !important;
}

/* ===== FORM CARD ===== */
.auth-page .tf-container {
    max-width: 420px;
    margin: auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 24px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* ===== TEXT ===== */
.auth-page .body-2 {
    color: #6b6b6b;
}

/* ===== INPUT WRAPPER ===== */
.auth-page .input-icon {
    position: relative;
}

.auth-page .input-icon .icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
}

/* ===== INPUT ===== */
.auth-page .form-control {
    height: 50px;
    border-radius: 12px;
    border: 1.5px solid var(--border-green);
    padding-left: 46px;
    font-size: 15px;
    background: #fff;
}

.auth-page .form-control::placeholder {
    color: #9e9e9e;
}

.auth-page .form-control:focus {
    border-color: var(--green);
    box-shadow: none;
}

/* ===== PASSWORD TOGGLE ===== */
.auth-page .box-view-hide {
    position: relative;
}

.auth-page .show-pass {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* ===== BUTTON ===== */
.auth-page .tf-btn.primary {
    width: 100%;
    height: 52px;
    border-radius: 26px;
    background: var(--green);
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.auth-page .tf-btn.primary:hover {
    opacity: 0.9;
}

/* ===== LINKS ===== */
.auth-page .text-primary,
.auth-page p.text-center a {
    color: var(--green) !important;
    font-weight: 650;
}

/* ===== HEADER (ONLY HERE) ===== */
.auth-page .header {
    background: transparent;
    box-shadow: none;
}
.auth-field {
    position: relative;
}

.auth-select {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    border: 1.5px solid var(--border-green);
    padding: 0 44px 0 14px; /* space for arrow */
    font-size: 15px;
    background: #fff;
    color: #333;
    cursor: pointer;

    /* REMOVE default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* CUSTOM ARROW */
.auth-field::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}


.search-field {
    border: 1.5px solid #2e7d32 !important;
    outline: none;
    box-shadow: none;
}

/* .search-field:focus {
    border-color: #2e7d32 !important;
    outline: 2px solid #2e7d32 !important;
    outline-offset: 1px;
    box-shadow: none;
} */

.menubar-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    z-index: 1040;
}

.inner-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    margin: 0;
    list-style: none;
}

.inner-bar li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 11px;
    color: #9e9e9e;
    text-decoration: none;
}

.inner-bar li svg {
    stroke: #9e9e9e;
    fill: none;
}

/* Active state */
.inner-bar li.active a {
    color: #01a458;
}

.inner-bar li.active svg {
    fill: #01a458;
    stroke: #01a458;
}

/* Center Add Button */
.action-add a {
    background: #01a458;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin-top: -30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-add svg {
    stroke: #fff;
}

.inner-bar span {
    font-weight: 500;
}

/* Base badge */
.badge1 {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    border-radius: 20px;
    text-transform: uppercase;
    white-space: nowrap;
}
.stock-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 11px;
    padding: 4px 6px;
    border-radius: 4px;
    color: #fff;
}

.stock-badge.in {
    background-color: #28a745;
}

.stock-badge.out {
    background-color: #dc3545;
}
.product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
/* Order Status */
.badge-success {
    background-color: #22c55e; /* Green */
    color: #fff;
}

.badge-secondary {
    background-color: #9ca3af; /* Gray */
    color: #fff;
}

.badge-danger {
    background-color: #ef4444; /* Red */
    color: #fff;
}

.badge-info {
    background-color: #3b82f6; /* Blue */
    color: #fff;
}

.badge-warning {
    background-color: #f59e0b; /* Orange */
    color: #fff;
}
.product-rating {
            font-size: 13px;
            margin-top: 4px;
            color: #777;
        }

        .product-rating i {
            color: #ffcc00;
            margin-right: 2px;
        }
.address-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.address-list li {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.address-list input[type="radio"] {
    display: none;
}

.address-list li.active {
    border-color: #000;
    background: #f9f9f9;
}

.address-type {
    font-weight: 600;
    font-size: 14px;
}

.address-text {
    font-size: 13px;
    color: #555;
}
/* Pagination Wrapper */
.toolbox-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.toolbox-pagination .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Pagination Items */
.toolbox-pagination .page-item {
    display: inline-block;
}

.toolbox-pagination .page-item a,
.toolbox-pagination .page-item span {
    display: block;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #01a458;
    border: 1px solid #01a458;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Current Page */
.toolbox-pagination .page-item.active span {
    background-color: #01a458;
    color: #fff;
    border-color: #01a458;
}

/* Hover Effect */
.toolbox-pagination .page-item a:hover {
    background-color: #01a458;
    color: #fff;
    border-color: #01a458;
}

/* Disable links style (optional) */
.toolbox-pagination .page-item.disabled span {
    color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
    background: #f5f5f5;
}