/* =====================================================
   ROOT VARIABLES
===================================================== */

:root {
    --blue: #117aa6;
    --blue-dark: #0e688d;
    --blue-light: #eaf8fd;
    --pink: #de107b;
    --navy: #020619;
    --text: #101820;
    --gray: #666;
    --border: #dedede;
    --container: 1160px;
    --font-primary: 'Poppins', sans-serif;
    --font-roboto: 'Roboto', sans-serif;

    /* Additional variables for consistency */
    --primary: #117aa6;
    --primary-dark: #0e688d;
    --primary-light: #eaf8fd;
    --muted: #888;
    --white: #ffffff;
    --success: #269653;
    --danger: #d35454;
    --radius: 11px;
}


/* =====================================================
   RESET & BASE
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: #f7f9fa;
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* =====================================================
   UTILITY CLASSES
===================================================== */

/* .container {
    width: min(var(--container), 100%);
    margin: 0 auto;
    padding: 0 15px;
} */

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--muted);
}

.text-primary {
    color: var(--primary);
}



/* =====================================================
   =====================================================
   CHECKOUT PAGE
   =====================================================
   ===================================================== */

.checkout-page {
    width: 100%;
    padding: 55px 20px 80px;
}

.checkout-wrapper {
    width: 100%;
    max-width: 1180px;
    margin: auto;
}


/* --------------------------------------------
   CHECKOUT HEADER
-------------------------------------------- */

.checkout-top {
    margin-bottom: 32px;
}

.checkout-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 9px;
}

.checkout-eyebrow span {
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 20px;
}

.checkout-title {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 9px;
}

.checkout-subtitle {
    color: var(--muted);
    font-size: 14px;
}


/* --------------------------------------------
   CHECKOUT GRID
-------------------------------------------- */

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(330px, .8fr);
    gap: 25px;
    align-items: start;
}


/* --------------------------------------------
   CHECKOUT CARD
-------------------------------------------- */

.checkout-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 15px 45px rgba(20, 40, 55, .06);
}


/* --------------------------------------------
   BILLING SECTION
-------------------------------------------- */

.billing-card {
    padding: 30px;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
}

.section-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 19px;
    flex-shrink: 0;
}

.section-heading h2 {
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
}

.section-heading p {
    color: var(--muted);
    font-size: 12px;
    margin-top: 3px;
}


/* --------------------------------------------
   CHECKOUT FORM
-------------------------------------------- */

.checkout-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.checkout-form .form-group {
    display: flex;
    flex-direction: column;
}

.checkout-form .form-group.full {
    grid-column: 1 / -1;
}

.checkout-form .form-label {
    color: #273640;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.checkout-form .required {
    color: var(--danger);
}

.checkout-form .form-control,
.checkout-form .form-select {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    color: var(--text);
    outline: none;
    font-size: 13px;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.checkout-form textarea.form-control {
    height: 105px;
    padding: 13px 14px;
    resize: vertical;
}

.checkout-form .form-control::placeholder {
    color: #a3adb5;
}

.checkout-form .form-control:focus,
.checkout-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(17, 122, 166, .09);
}


/* --------------------------------------------
   CHECKBOX
-------------------------------------------- */

.check-row {
    margin-top: 23px;
    padding-top: 21px;
    border-top: 1px solid var(--border);
}

.custom-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #56636d;
    font-size: 13px;
    cursor: pointer;
}

.custom-check input {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: var(--primary);
    flex-shrink: 0;
}


/* --------------------------------------------
   ORDER SUMMARY
-------------------------------------------- */

.summary-card {
    position: sticky;
    top: 25px;
    overflow: hidden;
}

.summary-header {
    padding: 24px 25px;
    border-bottom: 1px solid var(--border);
}

.summary-header h2 {
    font-size: 21px;
    font-weight: 800;
}

.summary-header p {
    color: var(--muted);
    font-size: 12px;
    margin-top: 3px;
}


/* --------------------------------------------
   ORDER PRODUCTS
-------------------------------------------- */

.order-products {
    padding: 5px 25px 10px;
}

.product-row {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 0;
    border-bottom: 1px solid #edf0f2;
}

.product-row:last-child {
    border-bottom: none;
}

.product-image {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f6f7;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    flex: 1;
    min-width: 0;
}

.product-name {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}

.product-meta {
    color: var(--muted);
    font-size: 11px;
}

.product-price {
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}


/* --------------------------------------------
   COUPON
-------------------------------------------- */

.coupon-box {
    padding: 18px 25px;
    background: #fafcfd;
    border-bottom: 1px solid var(--border);
}

.coupon-title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.coupon-title i {
    color: var(--primary);
}

.coupon-form {
    display: flex;
    gap: 8px;
}

.coupon-input {
    flex: 1;
    min-width: 0;
    height: 43px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 9px;
    outline: none;
    font-size: 12px;
}

.coupon-input:focus {
    border-color: var(--primary);
}

.coupon-btn {
    height: 43px;
    padding: 0 18px;
    border: 0;
    border-radius: 9px;
    background: var(--text);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: .25s ease;
}

.coupon-btn:hover {
    background: var(--primary);
}

.coupon-message {
    display: none;
    font-size: 11px;
    margin-top: 8px;
}

.coupon-message.show {
    display: block;
}


/* --------------------------------------------
   ORDER TOTALS
-------------------------------------------- */

.order-total {
    padding: 20px 25px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    margin-bottom: 11px;
}

.total-row span:first-child {
    color: var(--muted);
}

.total-row strong {
    font-weight: 700;
}

.grand-total {
    padding-top: 16px;
    margin-top: 15px;
    border-top: 1px solid var(--border);
    margin-bottom: 0;
}

.grand-total span:first-child {
    color: var(--text);
    font-size: 15px;
    font-weight: 800;
}

.grand-total strong {
    color: var(--primary);
    font-size: 21px;
}


/* --------------------------------------------
   PAYMENT OPTIONS
-------------------------------------------- */

.payment-box {
    padding: 0 25px 20px;
}

.payment-option {
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 11px;
    margin-bottom: 9px;
    cursor: pointer;
    transition: .25s ease;
}

.payment-option:hover {
    border-color: #b8d9e5;
}

.payment-option.active {
    border-color: var(--primary);
    background: var(--primary-light);
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
}

.payment-option input {
    accent-color: var(--primary);
}

.payment-description {
    color: var(--muted);
    font-size: 10px;
    margin: 7px 0 0 25px;
}


/* --------------------------------------------
   PLACE ORDER BUTTON
-------------------------------------------- */

.place-order {
    padding: 0 25px 25px;
}

.place-order-btn {
    width: 100%;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 11px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(17, 122, 166, .20);
    transition: .25s ease;
}

.place-order-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.place-order-btn.loading {
    opacity: .7;
    pointer-events: none;
}

.secure-note {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 10px;
    margin-top: 12px;
}

.secure-note i {
    color: var(--success);
}


/* --------------------------------------------
   SUCCESS MESSAGE
-------------------------------------------- */

.success-message {
    display: none;
    margin-top: 15px;
    padding: 12px;
    border-radius: 9px;
    background: #eaf8f1;
    color: var(--success);
    text-align: center;
    font-size: 11px;
}

.success-message.show {
    display: block;
}


/* =====================================================
   CHECKOUT PAGE - TABLET
===================================================== */

@media (max-width: 900px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .summary-card {
        position: relative;
        top: auto;
    }
}


/* =====================================================
   CHECKOUT PAGE - MOBILE
===================================================== */

@media (max-width: 600px) {
    .checkout-page {
        padding: 35px 14px 55px;
    }

    .checkout-title {
        font-size: 30px;
    }

    .billing-card {
        padding: 21px 17px;
    }

    .checkout-form .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .checkout-form .form-group.full {
        grid-column: auto;
    }

    .summary-header,
    .order-products,
    .coupon-box,
    .order-total,
    .payment-box,
    .place-order {
        padding-left: 17px;
        padding-right: 17px;
    }

    .product-image {
        width: 56px;
        height: 56px;
    }

    .coupon-form {
        flex-direction: column;
    }

    .coupon-btn {
        width: 100%;
    }
}


/* =====================================================
   CHECKOUT PAGE - SMALL MOBILE
===================================================== */

@media (max-width: 380px) {
    .checkout-title {
        font-size: 27px;
    }

    .product-row {
        gap: 9px;
    }

    .product-image {
        width: 48px;
        height: 48px;
    }

    .product-price {
        font-size: 12px;
    }
}


/* thankyou page section  */


.thankyou-page {
    width: 100%;
    min-height: 100vh;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.thankyou-container {
    width: 100%;
    max-width: 1000px;
}

/* ==============================
           SUCCESS HEADER
        ============================== */

.success-header {
    text-align: center;
    margin-bottom: 35px;
}

.success-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #e8f8f0;
    border: 8px solid #f5fcf8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    font-size: 38px;
    box-shadow: 0 10px 35px rgba(32, 166, 106, 0.12);
}

.success-header h1 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.7px;
}

.success-header p {
    max-width: 600px;
    margin: auto;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ==============================
           ORDER CARD
        ============================== */

.order-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(24, 54, 72, 0.07);
}

.order-card-header {
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.order-title {
    font-size: 17px;
    font-weight: 700;
}

.order-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 50px;
    background: #eaf8f1;
    color: var(--success);
    font-size: 12px;
    font-weight: 700;
}

.order-status i {
    font-size: 14px;
}

/* ==============================
           ORDER INFO
        ============================== */

.order-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--border);
}

.info-box {
    padding: 25px 28px;
    border-right: 1px solid var(--border);
}

.info-box:last-child {
    border-right: 0;
}

.info-label {
    display: block;
    color: #8a969f;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 8px;
}

.info-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

/* ==============================
           PRODUCT
        ============================== */

.products-section {
    padding: 28px;
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.product-item:last-child {
    border-bottom: 0;
}

.product-image {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 25px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    flex: 1;
}

.product-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.product-meta {
    color: var(--muted);
    font-size: 12px;
}

.product-price {
    font-size: 14px;
    font-weight: 700;
}

/* ==============================
           TOTALS
        ============================== */

.order-totals {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    color: var(--muted);
    font-size: 13px;
}

.total-row strong {
    color: var(--text);
    font-weight: 600;
}

.total-row.grand-total {
    padding-top: 17px;
    margin-top: 8px;
    border-top: 1px dashed var(--border);
    color: var(--text);
    font-size: 16px;
    font-weight: 700;
}

.grand-total strong {
    color: var(--primary);
    font-size: 19px;
}

/* ==============================
           TWO COLUMNS
        ============================== */

.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.small-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(24, 54, 72, 0.04);
}

.small-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
}

.small-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.small-card h3 {
    font-size: 14px;
    font-weight: 700;
}

.address {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

/* ==============================
           PAYMENT
        ============================== */

.payment-method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fbfcfd;
}

.payment-name {
    font-size: 13px;
    font-weight: 600;
}

.payment-status {
    font-size: 11px;
    font-weight: 700;
    color: var(--success);
    background: #eaf8f1;
    padding: 5px 9px;
    border-radius: 30px;
}

/* ==============================
           ACTION BUTTONS
        ============================== */

.actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    min-height: 46px;
    padding: 0 22px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(17, 122, 166, 0.18);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ==============================
           RESPONSIVE
        ============================== */

@media (max-width: 768px) {

    .thankyou-page {
        padding: 40px 15px;
    }

    .success-header h1 {
        font-size: 28px;
    }

    .success-icon {
        width: 72px;
        height: 72px;
        font-size: 32px;
    }

    .order-info {
        grid-template-columns: 1fr 1fr;
    }

    .info-box:nth-child(2) {
        border-right: 0;
    }

    .info-box:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {

    .thankyou-page {
        padding: 28px 12px;
    }

    .success-header {
        margin-bottom: 25px;
    }

    .success-header h1 {
        font-size: 24px;
    }

    .success-header p {
        font-size: 13px;
    }

    .order-card {
        border-radius: 15px;
    }

    .order-card-header {
        padding: 18px;
        align-items: flex-start;
        flex-direction: column;
    }

    .order-info {
        grid-template-columns: 1fr;
    }

    .info-box {
        border-right: 0 !important;
        border-bottom: 1px solid var(--border);
        padding: 17px 18px;
    }

    .info-box:last-child {
        border-bottom: 0;
    }

    .products-section {
        padding: 20px 18px;
    }

    .product-item {
        gap: 12px;
    }

    .product-image {
        width: 58px;
        height: 58px;
    }

    .product-name {
        font-size: 13px;
    }

    .product-price {
        font-size: 13px;
    }

    .small-card {
        padding: 20px;
    }

    .actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}

/* thankyou page section  */



/* account section  */


/* =====================================================
   RB USER ACCOUNT PAGE
   LARGER FONT + FULL RESPONSIVE CSS
===================================================== */

.rb-user-area {
    width: 100%;
    min-height: 100vh;
    padding: 55px 20px;
    background: #f6f9fb;
    font-family: "Inter", Arial, sans-serif;
    color: #17212b;
}

.rb-user-shell {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =====================================================
   PAGE HEADER
===================================================== */

.rb-user-heading {
    margin-bottom: 32px;
}

.rb-user-kicker {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 11px;
    color: #117aa6;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rb-user-kicker span {
    width: 26px;
    height: 2px;
    display: inline-block;
    background: #117aa6;
    border-radius: 10px;
}

.rb-user-heading h1 {
    margin: 0 0 9px;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.7px;
}

.rb-user-heading p {
    margin: 0;
    color: #71808d;
    font-size: 15px;
    line-height: 1.7;
}


/* =====================================================
   MAIN GRID
===================================================== */

.rb-user-layout {
    display: grid;
    grid-template-columns: 255px minmax(0, 1fr);
    gap: 25px;
    align-items: start;
}


/* =====================================================
   SIDEBAR
===================================================== */

.rb-user-menu {
    background: #fff;
    border: 1px solid #e4eaee;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(20, 55, 75, .05);
}

.rb-user-profile {
    padding: 23px 19px;
    border-bottom: 1px solid #e8edf0;
}

.rb-user-profile-row {
    display: flex;
    align-items: center;
    gap: 13px;
}

.rb-user-avatar {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 50%;
    background: #eaf8fd;
    color: #117aa6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
}

.rb-user-profile-info {
    min-width: 0;
}

.rb-user-profile-info h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 700;
}

.rb-user-profile-info p {
    margin: 0;
    color: #87939c;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* =====================================================
   NAVIGATION
===================================================== */

.rb-user-links {
    padding: 11px;
}

.rb-user-links a {
    min-height: 45px;
    padding: 0 13px;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 9px;
    color: #65737d;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: .2s ease;
}

.rb-user-links a i {
    width: 19px;
    text-align: center;
    font-size: 16px;
}

.rb-user-links a:hover {
    background: #f2f9fc;
    color: #117aa6;
}

.rb-user-links a.rb-current-link {
    background: #eaf8fd;
    color: #117aa6;
}

.rb-user-links a.rb-logout-link {
    margin-top: 9px;
    padding-top: 12px;
    border-top: 1px solid #edf0f2;
    border-radius: 0;
    color: #d05252;
}


/* =====================================================
   CONTENT AREA
===================================================== */

.rb-user-main {
    min-width: 0;
}


/* =====================================================
   STAT BOXES
===================================================== */

.rb-user-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 21px;
}

.rb-user-metric {
    padding: 21px;
    background: #fff;
    border: 1px solid #e4eaee;
    border-radius: 15px;
    box-shadow: 0 10px 28px rgba(20, 55, 75, .04);
}

.rb-user-metric-icon {
    width: 41px;
    height: 41px;
    margin-bottom: 14px;
    border-radius: 10px;
    background: #eaf8fd;
    color: #117aa6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.rb-user-metric h3 {
    margin: 0 0 5px;
    font-size: 25px;
    line-height: 1;
    font-weight: 800;
}

.rb-user-metric p {
    margin: 0;
    color: #81909a;
    font-size: 13px;
}


/* =====================================================
   GENERAL CARD
===================================================== */

.rb-user-card {
    margin-bottom: 21px;
    padding: 27px;
    background: #fff;
    border: 1px solid #e4eaee;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(20, 55, 75, .04);
}

.rb-user-card:last-child {
    margin-bottom: 0;
}

.rb-user-card-head {
    margin-bottom: 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.rb-user-card-head h2 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
}

.rb-user-card-head p {
    margin: 0;
    color: #89959e;
    font-size: 13px;
}


/* =====================================================
   FORM
===================================================== */

.rb-user-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.rb-user-field {
    min-width: 0;
}

.rb-user-field.rb-wide-field {
    grid-column: 1 / -1;
}

.rb-user-field label {
    display: block;
    margin-bottom: 8px;
    color: #53616b;
    font-size: 13px;
    font-weight: 700;
}

.rb-user-field input {
    width: 100%;
    height: 47px;
    padding: 0 14px;
    border: 1px solid #dfe6ea;
    border-radius: 9px;
    outline: none;
    background: #fff;
    color: #17212b;
    font-family: inherit;
    font-size: 13px;
    transition: .2s ease;
}

.rb-user-field input::placeholder {
    color: #9aa6ae;
    font-size: 13px;
}

.rb-user-field input:focus {
    border-color: #117aa6;
    box-shadow: 0 0 0 3px rgba(17, 122, 166, .08);
}

.rb-user-save-area {
    grid-column: 1 / -1;
}

.rb-user-save {
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 9px;
    background: #117aa6;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 7px 18px rgba(17, 122, 166, .16);
    transition: .2s ease;
}

.rb-user-save i {
    font-size: 16px;
}

.rb-user-save:hover {
    background: #0b6287;
}


/* =====================================================
   ORDERS
===================================================== */

.rb-user-orders-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.rb-user-all-orders {
    color: #117aa6;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.rb-user-all-orders:hover {
    text-decoration: underline;
}

.rb-user-order-list {
    border-top: 1px solid #e8edf0;
}

.rb-user-order-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr .8fr .8fr .8fr;
    gap: 15px;
    align-items: center;
    padding: 19px 0;
    border-bottom: 1px solid #e8edf0;
}

.rb-user-order-row:last-child {
    border-bottom: 0;
}

.rb-user-order-code {
    margin-bottom: 5px;
    color: #17212b;
    font-size: 13px;
    font-weight: 700;
}

.rb-user-order-date {
    color: #8a969f;
    font-size: 11px;
}

.rb-user-order-price {
    font-size: 13px;
    font-weight: 700;
}

.rb-user-state {
    width: max-content;
    padding: 7px 10px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
}

.rb-user-state-done {
    background: #eaf8f1;
    color: #20a66a;
}

.rb-user-state-progress {
    background: #fff6df;
    color: #b17a00;
}

.rb-user-view {
    color: #117aa6;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
}

.rb-user-view:hover {
    text-decoration: underline;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .rb-user-layout {
        grid-template-columns: 225px minmax(0, 1fr);
        gap: 18px;
    }

    .rb-user-heading h1 {
        font-size: 34px;
    }

    .rb-user-order-row {
        grid-template-columns: 1.3fr .9fr .8fr .7fr;
    }

    .rb-user-order-row .rb-user-view {
        display: none;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .rb-user-area {
        padding: 38px 14px;
    }

    .rb-user-heading {
        margin-bottom: 25px;
    }

    .rb-user-kicker {
        font-size: 12px;
    }

    .rb-user-heading h1 {
        font-size: 29px;
    }

    .rb-user-heading p {
        font-size: 14px;
    }

    .rb-user-layout {
        grid-template-columns: 1fr;
    }

    .rb-user-menu {
        border-radius: 15px;
    }

    .rb-user-profile {
        padding: 18px;
    }

    .rb-user-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        padding: 10px;
    }

    .rb-user-links a {
        min-height: 44px;
        margin: 0;
        font-size: 12px;
    }

    .rb-user-links a.rb-logout-link {
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
    }

    .rb-user-metrics {
        gap: 10px;
    }

    .rb-user-metric {
        padding: 17px;
    }

    .rb-user-metric-icon {
        width: 37px;
        height: 37px;
        margin-bottom: 11px;
        font-size: 16px;
    }

    .rb-user-metric h3 {
        font-size: 22px;
    }

    .rb-user-metric p {
        font-size: 12px;
    }

    .rb-user-card {
        padding: 22px 18px;
        border-radius: 15px;
    }

    .rb-user-card-head h2 {
        font-size: 17px;
    }

    .rb-user-card-head p {
        font-size: 12px;
    }

    .rb-user-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rb-user-field.rb-wide-field,
    .rb-user-save-area {
        grid-column: auto;
    }

    .rb-user-field label {
        font-size: 12px;
    }

    .rb-user-field input {
        height: 46px;
        font-size: 13px;
    }

    .rb-user-save {
        width: 100%;
        min-height: 46px;
        font-size: 13px;
    }

    .rb-user-order-list {
        border-top: 0;
    }

    .rb-user-order-row {
        grid-template-columns: 1fr auto;
        gap: 11px;
        padding: 17px 0;
    }

    .rb-user-order-code {
        font-size: 13px;
    }

    .rb-user-order-date {
        font-size: 11px;
    }

    .rb-user-order-price {
        text-align: right;
        font-size: 13px;
    }

    .rb-user-state {
        font-size: 10px;
    }

    .rb-user-order-row .rb-user-view {
        display: block;
        text-align: right;
        font-size: 11px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 450px) {

    .rb-user-area {
        padding: 28px 10px;
    }

    .rb-user-heading {
        margin-bottom: 22px;
    }

    .rb-user-heading h1 {
        font-size: 26px;
    }

    .rb-user-heading p {
        font-size: 13px;
    }

    .rb-user-kicker {
        font-size: 11px;
    }

    .rb-user-metrics {
        grid-template-columns: 1fr;
    }

    .rb-user-metric {
        display: flex;
        align-items: center;
        gap: 13px;
        padding: 15px;
    }

    .rb-user-metric-icon {
        margin: 0;
        flex-shrink: 0;
    }

    .rb-user-metric h3 {
        font-size: 21px;
    }

    .rb-user-metric p {
        font-size: 12px;
    }

    .rb-user-links {
        grid-template-columns: 1fr;
    }

    .rb-user-links a {
        font-size: 13px;
    }

    .rb-user-card {
        padding: 20px 16px;
    }

    .rb-user-card-head {
        align-items: flex-start;
    }

    .rb-user-card-head h2 {
        font-size: 16px;
    }

    .rb-user-card-head p {
        font-size: 12px;
    }

    .rb-user-order-row {
        grid-template-columns: 1fr;
    }

    .rb-user-order-price {
        text-align: left;
        font-size: 13px;
    }

    .rb-user-state {
        justify-self: start;
    }

    .rb-user-order-row .rb-user-view {
        text-align: left;
    }

    .rb-user-save {
        width: 100%;
    }
}

/* account section  */











/* productsingle page   */

/* =========================================================
   PAGE
========================================================= */

.page{
    width:100%;

    /*max-width:1500px;*/

    margin:auto;

    padding:
      0 !important;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.breadcrumb{
    margin-bottom:18px;

    color:#999;

    font-size:10px;
}

.breadcrumb span{
    color:#333;
}


/* =========================================================
   TITLE
========================================================= */

.title-row{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    margin-bottom:20px;
}

.page-title{

    margin:0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:27px;

    font-weight:400;

    color:#333;
}

.title-right{

    display:flex;

    align-items:center;

    gap:15px;
}

.product-count{

    color:#777;

    font-size:11px;
}

.sort-box{

    width:175px;

    height:36px;

    padding:0 10px;

    border:1px solid #ddd;

    background:#fff;

    outline:none;

    font-size:11px;
}

.sort-box:focus{

    border-color:#333;
}


/* =========================================================
   WISHLIST HEADER
========================================================= */

.wishlist-summary{

    display:flex;

    align-items:center;

    gap:6px;

    color:#333;

    font-size:11px;

    cursor:pointer;

    user-select:none;
}

.wishlist-summary i{

    font-size:17px;

    color:#333;
}

.wishlist-summary:hover i{

    color: var(--blue);
}

#wishlistCount{

    min-width:18px;

    height:18px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#222;

    color:#fff;

    font-size:9px;

    font-weight:700;
}


/* =========================================================
   CONTENT
========================================================= */

.content{

    display:grid;

    grid-template-columns:
        225px
        minmax(0,1fr);

    gap:30px;
}


/* =========================================================
   SIDEBAR
========================================================= */

.sidebar{

    width:100%;

    padding-right:20px;

    border-right:1px solid #eee;
}

.filter-heading{

    padding-bottom:15px;

    border-bottom:1px solid #eee;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;
}


/* =========================================================
   FILTER SECTION
========================================================= */

.filter-section{

    border-bottom:1px solid #eee;
}

.filter-header{

    min-height:53px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    cursor:pointer;
}

.filter-header-left{

    display:flex;

    align-items:center;

    gap:9px;

    color:#333;

    font-size:12px;
}

.filter-header-left .plus{

    width:12px;

    font-size:14px;

    font-weight:700;
}

.filter-header-right{

    display:flex;

    align-items:center;

    gap:8px;
}

.select-actions{

    display:none;

    align-items:center;

    gap:5px;

    color:#0875c1;

    font-size:8px;

    white-space:nowrap;
}

.filter-section.active
.select-actions{

    display:flex;
}

.select-actions span{

    cursor:pointer;
}

.select-actions span:hover{

    text-decoration:underline;
}

.chevron{

    font-size:12px;

    transition:.2s;
}

.filter-section.active
.chevron{

    transform:rotate(180deg);
}


/* =========================================================
   FILTER CONTENT
========================================================= */

.filter-content{

    display:none;

    padding:
        0
        0
        15px;
}

.filter-section.active
.filter-content{

    display:block;
}


/* =========================================================
   FILTER LIST
========================================================= */

.filter-list{

    margin:0;
    padding:0;

    list-style:none;
}

.filter-list li{

    min-height:30px;

    display:flex;

    align-items:center;

    gap:8px;

    color:#555;

    font-size:11px;
}

.filter-list input[type="checkbox"]{

    width:14px;
    height:14px;

    margin:0;

    accent-color:#0875c1;

    cursor:pointer;
}


/* =========================================================
   MORE
========================================================= */

.more-btn{

    margin-top:7px;

    color:#c77725;

    font-size:10px;

    cursor:pointer;
}


/* =========================================================
   PRICE
========================================================= */

.price-inputs{

    display:flex;

    gap:7px;
}

.price-inputs input{

    width:50%;

    height:32px;

    padding:0 8px;

    border:1px solid #ddd;

    outline:none;

    font-size:10px;
}

.price-inputs input:focus{

    border-color:#333;
}

.apply-price{

    width:100%;

    height:32px;

    margin-top:8px;

    border:0;

    background:#222;

    color:#fff;

    font-size:10px;
}


/* =========================================================
   COLOR
========================================================= */

.color-list{

    display:flex;

    flex-direction:column;

    gap:10px;
}

.color-item{

    display:flex;

    align-items:center;

    gap:8px;

    color:#555;

    font-size:11px;

    cursor:pointer;
}

.color-checkbox{

    width:14px;
    height:14px;

    accent-color:#0875c1;
}

.color-circle{

    width:17px;
    height:17px;

    display:inline-block;

    border:1px solid #ddd;

    border-radius:50%;
}

.color-beige{
    background:#f2edda;
}

.color-cream{
    background:#fffccf;
}

.color-khaki{
    background:#eee38a;
}

.color-white{
    background:#fff;
}

.color-grey{
    background:#d3d3d3;
}

.color-black{
    background:#111;
}

.color-blue{
    background:#7299bd;
}

.color-red{
    background:#d84545;
}

.color-green{
    background:#82a895;
}

.color-brown{
    background:#9a775d;
}


/* =========================================================
   PRODUCTS AREA
========================================================= */

.products-area{

    min-width:0;
}


/* =========================================================
   TOOLBAR
========================================================= */

.toolbar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:17px;
}

.toolbar-left{

    display:flex;

    align-items:center;

    gap:8px;
}

.toolbar-label{

    color:#888;

    font-size:10px;
}


/* =========================================================
   MOBILE FILTER BUTTON
========================================================= */

.mobile-filter-btn{

    display:none;

    align-items:center;

    justify-content:center;

    gap:6px;

    height:34px;

    padding:0 12px;

    border:1px solid #ddd;

    background:#fff;

    font-size:10px;
}


/* =========================================================
   VIEW OPTIONS
========================================================= */

.view-options{

    display:flex;

    align-items:center;

    gap:5px;
}

.view-btn{

    position:relative;

    width:38px;
    height:32px;

    display:flex;

    align-items:center;
    justify-content:center;

    border:1px solid #ddd;

    background:#fff;

    color:#555;

    transition:.2s;
}

.view-btn:hover{

    border-color:#222;

    color:#222;
}

.view-btn.active{

    border-color:#222;

    background:#222;

    color:#fff;
}

.view-btn i{

    font-size:16px;
}


/* =========================================================
   VIEW TOOLTIP
========================================================= */

.view-btn::after{

    content:attr(data-tooltip);

    position:absolute;

    left:50%;

    bottom:-31px;

    transform:
        translateX(-50%);

    padding:5px 7px;

    background:#222;

    color:#fff;

    font-size:8px;

    white-space:nowrap;

    opacity:0;

    visibility:hidden;

    z-index:50;

    transition:.2s;
}

.view-btn:hover::after{

    opacity:1;

    visibility:visible;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.products-grid{

    display:grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    column-gap:10px;

    row-gap:38px;
}

.products-grid.grid-3{

    grid-template-columns:
        repeat(3,minmax(0,1fr));
}

.products-grid.grid-4{

    grid-template-columns:
        repeat(4,minmax(0,1fr));
}

.products-grid.grid-5{

    grid-template-columns:
        repeat(5,minmax(0,1fr));
}

.products-grid.grid-6{

    grid-template-columns:
        repeat(6,minmax(0,1fr));
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card{

    position:relative;

    min-width:0;

    cursor:pointer;
}

.product-image-wrap{

    position:relative;

    width:100%;

    aspect-ratio:1 / 1.08;

    overflow:hidden;

    background:#f4f4f4;
}

.product-image{

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    transition:
        transform .4s ease;
}

.product-card:hover
.product-image{

    transform:scale(1.035);
}


/* =========================================================
   HIGHLIGHT
========================================================= */

.highlight-badge{

    position:absolute;

    top:7px;
    left:7px;

    z-index:5;

    padding:4px 7px;

    background:#303030;

    color:#fff;

    font-size:8px;

    font-weight:500;

    letter-spacing:.2px;
}


/* =========================================================
   PRODUCT HEART
========================================================= */

.product-wishlist{

    position:absolute;

    top:7px;
    right:7px;

    z-index:10;

    width:34px;
    height:34px;

    display:flex;

    align-items:center;
    justify-content:center;

    border:0;

    border-radius:50%;

    background:rgba(255,255,255,.96);

    color:#555;

    box-shadow:
        0 2px 8px rgba(0,0,0,.12);

    transition:
        transform .2s,
        color .2s;
}

.product-wishlist:hover{

    transform:scale(1.08);

    color: var(--blue);
}

.product-wishlist i{

    font-size:17px;
}

.product-wishlist.active{

    color: var(--blue);
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.product-info{

    padding:
        10px
        4px
        0;

    text-align:center;
}

.brand{

    overflow:hidden;

    color:#9b6a18;

    font-size:11px;

    font-weight:700;

    white-space:nowrap;

    text-overflow:ellipsis;
}

.product-name{

    min-height:30px;

    margin-top:5px;

    display:-webkit-box;

    overflow:hidden;

    color:#555;

    font-size:11px;

    line-height:15px;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;
}


/* =========================================================
   RATING
========================================================= */

.rating{

    display:inline-flex;

    align-items:center;

    gap:4px;

    margin-top:7px;

    padding:5px 7px;

    border-radius:4px;

    background:#008b39;

    color:#fff;

    font-size:10px;

    font-weight:700;
}

.rating i{

    font-size:9px;
}


/* =========================================================
   PRICE
========================================================= */

.price-row{

    display:flex;

    align-items:center;

    justify-content:center;

    flex-wrap:wrap;

    gap:5px;

    margin-top:7px;
}

.price{

    color:#333;

    font-size:11px;

    font-weight:700;
}

.mrp{

    color:#888;

    font-size:10px;

    text-decoration:line-through;
}

.discount-text{

    color:#a76822;

    font-size:9px;

    font-weight:600;
}


/* =========================================================
   OFFER PRICE
========================================================= */

.offer-price{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:4px;

    margin-top:7px;

    color:#008b39;

    font-size:9px;

    font-weight:600;
}

.offer-price i{

    font-size:10px;
}


/* =========================================================
   PRODUCT COLOR
========================================================= */

.product-colors{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:4px;

    margin-top:6px;
}

.product-color-dot{

    width:10px;
    height:10px;

    border:1px solid #ddd;

    border-radius:50%;
}


/* =========================================================
   ADD TO WISHLIST BUTTON
========================================================= */

.add-wishlist-btn{

    width:100%;

    height:34px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:7px;

    margin-top:10px;

    border:1px solid #222;

    background:#fff;

    color:#222;

    font-size:10px;

    font-weight:600;

    text-transform:uppercase;

    transition:
        background .2s,
        color .2s,
        border-color .2s;
}

.add-wishlist-btn:hover{

    background:#222;

    color:#fff;
}

.add-wishlist-btn i{

    font-size:14px;
}


/* =========================================================
   ADDED WISHLIST STATE
========================================================= */

.add-wishlist-btn.added{

    border-color: var(--blue);

    background: var(--blue);

    color:#fff;
}

.add-wishlist-btn.added:hover{

    background:#c62828;

    border-color:#c62828;
}


/* =========================================================
   PAGINATION
========================================================= */

.pagination{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:6px;

    margin-top:60px;
}

.page-btn{

    width:34px;
    height:34px;

    border:1px solid #ddd;

    background:#fff;

    color:#444;

    font-size:11px;
}

.page-btn:hover{

    border-color:#222;
}

.page-btn.active{

    border-color:#222;

    background:#222;

    color:#fff;
}


/* =========================================================
   NO RESULT
========================================================= */

.no-results{

    grid-column:1 / -1;

    padding:80px 20px;

    color:#999;

    text-align:center;

    font-size:13px;
}


/* =========================================================
   MOBILE SIDEBAR
========================================================= */

.overlay{

    display:none;

    position:fixed;

    inset:0;

    z-index:1500;

    background:rgba(0,0,0,.4);
}

.sidebar-close{

    display:none;

    width:30px;
    height:30px;

    align-items:center;

    justify-content:center;

    float:right;

    border:0;

    background:#f5f5f5;

    font-size:14px;
}


/* =========================================================
   1200
========================================================= */

@media(max-width:1200px){

    .page{

        padding-left:22px;

        padding-right:22px;
    }

    .products-grid.grid-6{

        grid-template-columns:
            repeat(5,minmax(0,1fr));
    }

}


/* =========================================================
   1050
========================================================= */

@media(max-width:1050px){

    .content{

        grid-template-columns:
            200px
            minmax(0,1fr);

        gap:20px;
    }

    .products-grid.grid-5,
    .products-grid.grid-6{

        grid-template-columns:
            repeat(4,minmax(0,1fr));
    }

}


/* =========================================================
   850
========================================================= */

@media(max-width:850px){

    .page{

        padding:
            18px
            15px
            50px;
    }

    .content{

        display:block;
    }

    .sidebar{

        position:fixed;

        top:0;
        left:-310px;

        width:290px;

        height:100vh;

        overflow-y:auto;

        z-index:2000;

        padding:20px;

        border:0;

        background:#fff;

        transition:left .3s ease;
    }

    .sidebar.open{

        left:0;
    }

    .sidebar-close{

        display:flex;
    }

    .overlay.show{

        display:block;
    }

    .mobile-filter-btn{

        display:flex;
    }

    .products-grid.grid-5,
    .products-grid.grid-6{

        grid-template-columns:
            repeat(3,minmax(0,1fr));
    }

}


/* =========================================================
   650
========================================================= */

@media(max-width:650px){

    .page{

        padding:
            14px
            10px
            45px;
    }

    .title-row{

        flex-direction:column;

        align-items:flex-start;

        gap:12px;
    }

    .page-title{

        font-size:22px;
    }

    .title-right{

        width:100%;

        justify-content:space-between;
    }

    .sort-box{

        width:145px;

        height:34px;
    }

    .wishlist-summary span:not(#wishlistCount){

        display:none;
    }

    .toolbar{

        margin-bottom:15px;
    }

    .toolbar-label{

        display:none;
    }

    .view-btn{

        width:34px;

        height:31px;
    }

    .products-grid,
    .products-grid.grid-3,
    .products-grid.grid-4,
    .products-grid.grid-5,
    .products-grid.grid-6{

        grid-template-columns:
            repeat(2,minmax(0,1fr));

        column-gap:7px;

        row-gap:28px;
    }

    .product-image-wrap{

        aspect-ratio:1 / 1.05;
    }

    .highlight-badge{

        top:5px;
        left:5px;

        padding:3px 5px;

        font-size:7px;
    }

    .product-wishlist{

        top:5px;
        right:5px;

        width:29px;
        height:29px;
    }

    .product-wishlist i{

        font-size:15px;
    }

    .brand{

        font-size:10px;
    }

    .product-name{

        font-size:9px;

        line-height:13px;
    }

    .rating{

        padding:4px 6px;

        font-size:9px;
    }

    .price{

        font-size:10px;
    }

    .mrp{

        font-size:9px;
    }

    .discount-text{

        font-size:8px;
    }

    .offer-price{

        font-size:8px;
    }

    .add-wishlist-btn{

        height:32px;

        margin-top:8px;

        font-size:8px;
    }

}


/* =========================================================
   400
========================================================= */

@media(max-width:400px){

    .sort-box{

        width:130px;

        font-size:9px;
    }

    .view-btn{

        width:31px;
    }

    .add-wishlist-btn{

        font-size:7px;

        gap:4px;
    }

}
/* productsingle page   */



/* product review section  */


.simple-review {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    padding: 60px 20px;
    color: #222;
}

.simple-review-container {
    max-width: 1100px;
    margin: auto;
}

.simple-review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 35px;
}

.simple-review-label {
    display: block;
    color: #777;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.simple-review-head h2 {
    margin: 0 0 8px;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
}

.simple-review-head p {
    margin: 0;
    font-size: 15px;
    color: #777;
}

.simple-write-btn {
    border: 0;
    background: #111;
    color: #fff;
    padding: 13px 22px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.simple-write-btn:hover {
    background: #333;
}

/* RATING */
.simple-rating-box {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 25px;
    background: #f7f7f7;
    border-radius: 10px;
    margin-bottom: 30px;
}

.simple-rating-left {
    min-width: 180px;
}

.simple-rating-left strong {
    display: block;
    font-size: 50px;
    line-height: 1;
    margin-bottom: 7px;
}

.simple-stars {
    color: #f5b301;
    font-size: 17px;
    letter-spacing: 2px;
}

.simple-rating-left span {
    display: block;
    color: #777;
    font-size: 13px;
    margin-top: 5px;
}

.simple-rating-right {
    width: 100%;
    max-width: 500px;
}

.simple-rating-right > div {
    display: grid;
    grid-template-columns: 15px 1fr 40px;
    align-items: center;
    gap: 10px;
    margin: 7px 0;
}

.simple-rating-right span,
.simple-rating-right small {
    font-size: 12px;
    color: #666;
}

.simple-rating-right > div > div {
    height: 7px;
    background: #ddd;
    border-radius: 20px;
    overflow: hidden;
}

.simple-rating-right i {
    display: block;
    height: 100%;
    background: #111;
    border-radius: 20px;
}

/* REVIEWS */
.simple-review-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.simple-review-item {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 22px;
}

.simple-review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.simple-review-avatar {
    width: 42px;
    height: 42px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
}

.simple-review-user strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.simple-review-user span {
    display: block;
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}

.simple-review-item .simple-stars {
    margin-bottom: 8px;
}

.simple-review-item h3 {
    margin: 0 0 7px;
    font-size: 16px;
    font-weight: 600;
}

.simple-review-item p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.7;
}

/* POPUP */
.simple-review-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.simple-review-popup.active {
    display: flex;
}

.simple-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);
}

.simple-popup-box {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-sizing: border-box;
}

.simple-popup-close {
    position: absolute;
    top: 12px;
    right: 15px;
    border: 0;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
    color: #555;
}

.simple-popup-box h2 {
    margin: 0 0 25px;
    font-size: 28px;
}

.simple-popup-box label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin: 15px 0 7px;
}

.simple-select-stars {
    display: flex;
    gap: 5px;
}

.simple-select-stars button {
    border: 0;
    background: transparent;
    padding: 0;
    color: #ccc;
    font-size: 28px;
    cursor: pointer;
}

.simple-select-stars button.active {
    color: #f5b301;
}

.simple-popup-box input,
.simple-popup-box textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    outline: none;
}

.simple-popup-box input:focus,
.simple-popup-box textarea:focus {
    border-color: #111;
}

.simple-popup-box textarea {
    height: 120px;
    resize: vertical;
}

.simple-submit-btn {
    width: 100%;
    border: 0;
    background: #111;
    color: #fff;
    padding: 13px;
    border-radius: 6px;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.simple-submit-btn:hover {
    background: #333;
}

/* MOBILE */
@media (max-width: 768px) {

    .simple-review {
        padding: 40px 15px;
    }

    .simple-review-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .simple-review-head h2 {
        font-size: 30px;
    }

    .simple-write-btn {
        width: 100%;
    }

    .simple-rating-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .simple-rating-right {
        max-width: 100%;
    }

    .simple-review-list {
        grid-template-columns: 1fr;
    }

    .simple-popup-box {
        padding: 28px 20px;
    }

    .simple-popup-box h2 {
        font-size: 24px;
    }
}

/* product review section  */


.woocommerce {
    max-width: 100% !important
    ;
    margin: auto !important
    ;
    padding: 0px !important
    ;
    display:unset !important
    ;
    gap: 0px !important
    ;
    align-items: unset !important
    ;
    font-family: inherit !important
    ;
}

main.page.woocommerce-page.single-product-page {
    width: 100% !important
    ;
    max-width: 1500px !important
    ;
    margin: auto !important
    ;
    padding: 20px 30px 70px !important
    ;
}