body {
    font-family: "Poppins", sans-serif;
    margin: 0px !important;
    padding: 0px !important;
    background: #fbf8fd;
}

/* Prevent scrolling when dropdown is open */
body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

* {
    box-sizing: border-box;
}

button {
    cursor: pointer;
}

button,
select,
input,
select,
textarea {
    border: none;
    background: none;
    outline: none;
    font-family: "Poppins", sans-serif !important;
    outline: none;
    -webkit-appearance: none;
}

select {
    background-image: url(../img/select-arrow.svg);
    background-repeat: no-repeat;
    background-position-x: 99%;
    background-position-y: 50%;
    width: 100%;
}

a {
    text-decoration: none;
}

:root {
    --primary: #4e008e;
    --yellow: #fbb041;
    --white: #fcfcfc;
    --violet-100: #e8ddf1;
    --violet-200: #9569ba;
    --black: #373239;
    --ligher-black: #47424a;
    --grey-400: #605767;
    --grey-300: #9b9aa5;
    --grey-200: #cacaca;
    --grey-100: #f1eef4;
    --error: #c33e36;
    --background: #fbf8fd;
    --dark-primary: #3d145e;
    --system-red: #ff7f77;
    --green: #aed44c;
    --dark-green: #67783d;
    --light-yellow: #faf2e5;
    --light-red: #fff2f2;
    --light-green: #f4fdd4;

    /* Fonts */
    --font-family: "Poppins", sans-serif;
    --second-family: "SF Pro Text", sans-serif;
    --third-family: "Inter", sans-serif;
    --font3: "Inter Tight", sans-serif;
    --font4: "Dense", sans-serif;
    --font5: "Lato", sans-serif;
    --font6: "Segoe UI", sans-serif;
    --font7: "IBM Plex Mono", sans-serif;
    --font8: "Outfit", sans-serif;
}

.main-wrapper {
    display: grid;
    grid-template-columns: max-content 1fr;
}

.select {
    border: 1px solid #cfcdd0;
    padding: 10px 12px;
    border-radius: 12px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
    gap: 8px;

    .select-arrow-down {
        transition: all 0.3s;
    }

    .select-dropdown {
        position: absolute;
        top: calc(100% + 4px);
        right: 0;
        width: 100%;
        min-width: 220px;
        border-radius: 12px;
        background: #fff;
        overflow: hidden;
        display: none;

        div {
            max-height: 150px;
            overflow: auto;
            display: flex;
            flex-direction: column;
            gap: 2px;
            padding: 8px;
        }

        span {
            display: flex;
            padding: 8px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 400;
            line-height: 16px;
        }
    }

    &:focus {
        .select-dropdown {
            display: block;
        }

        .select-arrow-down {
            transform: rotate(180deg);
        }
    }
}

/* Adaptive dropdown positioning */
.select.dropdown-up {
    .select-dropdown {
        top: auto !important;
        bottom: calc(100% + 4px) !important;
    }
}

.select.dropdown-down {
    .select-dropdown {
        top: calc(100% + 4px) !important;
        bottom: auto !important;
    }
}

.sidebar {
    width: 247px;
    position: relative;
    transition: all 0.3s;

    @media (max-width: 750px) {
        width: 100%;
    }

    .sidebar-toggler {
        position: absolute;
        top: 33px;
        right: 10px;
        height: 30px;
        width: 30px;
        cursor: pointer;

        &.active {
            display: none;
        }

        @media (max-width: 750px) {
            display: none;
        }
    }

    .sidebar-content {
        background: #4e008e;
        padding: 32px 0 0;
        min-height: 100vh;
        height: 100%;
        /* overflow: auto; */
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: all 0.3s;
    }

    img {
        display: block;
    }

    .sidebar-logo {
        width: 138px;
        height: 36px;
        margin: 0 24px;
    }

    .sidebar-logo-exit-store {
        display: inline-block;
        cursor: pointer;
        transition: opacity 0.2s ease;

        &:hover {
            opacity: 0.7;
        }

        &:active {
            opacity: 0.5;
        }
    }

    .sidebar-store-switcher {
        margin: 16px 24px 0;
    }

    .sidebar-store-selector {
        position: relative;
        border: 1px solid #605767;
        border-radius: 12px;
        padding: 12px;
        cursor: pointer;
        transition: all 0.2s;
        background: transparent;

        &:hover {
            background: rgba(96, 87, 103, 0.15);
            border-color: #7a6f84;
        }

        &.open {
            background: rgba(96, 87, 103, 0.25);
            border-color: #fbb041;

            .sidebar-store-selector-arrow {
                transform: rotate(180deg);
            }
        }
    }

    .sidebar-store-selector-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .sidebar-store-selector-text {
        flex: 1;
        min-width: 0;
    }

    .sidebar-store-selector-title {
        font-size: 12px;
        font-weight: 700;
        line-height: 16px;
        color: #fbb041;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .sidebar-store-selector-arrow {
        flex-shrink: 0;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        color: #fbb041;
    }

    .sidebar-store-dropdown {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        right: 0;
        background: #2a2530;
        border-radius: 12px;
        border: 1px solid rgba(96, 87, 103, 0.5);
        box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.4);
        display: none;
        z-index: 1000;
        padding: 8px;
        max-height: 280px;
        overflow-y: auto;

        &.show {
            display: block;
        }

        &::-webkit-scrollbar {
            width: 6px;
        }

        &::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 4px;
        }

        &::-webkit-scrollbar-thumb {
            background: #7a6f84;
            border-radius: 4px;
        }
    }

    .sidebar-store-dropdown-item {
        padding: 9px 16px;
        cursor: pointer;
        transition: all 0.2s;
        border-radius: 8px;
        margin-bottom: 2px;

        &:last-child {
            margin-bottom: 0;
        }

        &:hover {
            background: rgba(96, 87, 103, 0.3);
        }

        &.active {
            background: rgba(96, 87, 103, 0.4);
        }
    }

    .sidebar-store-dropdown-item-name {
        font-size: 14px;
        font-weight: 400;
        line-height: 157%;
        color: #e8ddf1;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;

        .active & {
            color: #fbb041;
            font-weight: 500;
        }
    }

    .sidebar-store-view-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 12px;
        margin-top: 8px;
        background: transparent;
        font-weight: 400;
        font-size: 12px;
        line-height: 133%;
        text-decoration: underline;
        text-decoration-skip-ink: none;
        color: var(--violet-100);
        cursor: pointer;
        transition: all 0.2s;

        &:hover {
            color: #fbb041;

            svg path {
                stroke: #fbb041;
            }
        }

        svg {
            flex-shrink: 0;
        }
    }

    .sidebar-to-main-dashboard-btn {
        width: 193px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        text-align: center;
        color: var(--white);
        border-radius: 12px;
        padding: 10px 16px;
        background: var(--primary);
        cursor: pointer;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        margin: 8px auto 0;

        @media screen and (max-width: 440px) {
            width: 100%;
        }
    }

    .sidebar-to-main-dashboard-btn-wrapper {

        @media screen and (max-width: 440px) {
            padding: 0 24px;
            margin-bottom: 24px;
        }
    }

    .sidebar-links {
        display: flex;
        flex-direction: column;
        margin-top: 32px;
        gap: 2px;
        padding: 0 24px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

        a {
            display: flex;
            align-items: center;
            padding: 12px;
            gap: 8px;
            font-size: 14px;
            font-weight: 400;
            line-height: 22px;
            color: #fcfcfc;
            border-radius: 4px;
            border-left: 2px solid transparent;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

            span {
                padding: 2px 8px;
                background: #fbb041;
                border: 1px solid #cfcdd0;
                font-size: 12px;
                font-weight: 400;
                line-height: 16px;
                color: #374151;
                border-radius: 20px;
            }

            svg {
                margin-right: 4px;
            }

            path {
                stroke: #fcfcfc;
            }

            &.active,
            &:hover {
                background: #3d145e;
                color: #fbb041;
                border-left: 2px solid #fbb041;
                border-radius: 4px;

                path {
                    stroke: #fbb041;
                }
            }
        }
    }

    .sidebar-settings {
        box-shadow: -6px 0px 12.3px 0px #480282, 0px 6px 12.3px 0px #480282, 0px -6px 12.3px 0px #480282;
        border-radius: 16px;
        padding: 8px;
        color: #eeecf0;
        padding: 16px 24px 36px;
        margin: 0;

        .sidebar-settings-link {
            padding: 12px 4px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 500;
            line-height: 20px;
            text-align: left;
            color: #eeecf0;
            border-radius: 4px;

            &.logout {
                color: #ff7f77;
            }

            &.active {
                border-left: 2px solid #fbb041;
                background: #41362c4d;
                color: #fbb041 !important;

                path {
                    stroke: #fbb041;
                }
            }
        }

        .sidebar-settings-user {
            background: #3d145e;
            border-radius: 12px;
            padding: 8px 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            font-weight: 400;
            line-height: 16px;
        }

        .sidebar-settings-user-avatar {
            width: 32px;
            height: 32px;
            border-radius: 100%;
            background: #fcfcfc;
            display: flex;
            align-items: center;
            justify-content: center;

            color: #4e008e;
        }

        .sidebar-settings-user-name {
            color: #fcfcfc;
        }

        .sidebar-settings-user-role {
            color: #cfcdd0;
        }
    }

    &.active {
        .sidebar-content {
            background: #1e1920;
        }

        .sidebar-store-selector {
            border-color: #605767;
        }

        .sidebar-store-dropdown {
            background: #2a2530;
            border: 1px solid rgba(96, 87, 103, 0.5);
            box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.4);
        }

        .sidebar-store-view-btn {
            border-color: #605767;
        }

        .sidebar-links {
            a {

                border-left: 2px solid transparent;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                border-radius: 4px;

                svg {
                    margin-right: 4px;
                }

                &.active,
                &:hover {
                    background: #41362c4d;
                    border-left: 2px solid #fbb041;
                    border-radius: 4px;
                    color: #fbb041;
                }
            }
        }

        .sidebar-settings {
            box-shadow: none;
            background: #221e25;

            .sidebar-settings-user {
                background: none;
                border: 1px solid #605767;
            }
        }
    }

    .sidebar-logo-toggler {
        display: none;
        width: 54px;
        margin: 0 6px;
        cursor: pointer;
    }

    @media (min-width: 750px) {
        &.toggled {
            width: 65px;

            .sidebar-logo {
                width: 42px;
                height: 13px;
                margin: 0 15px;
                display: none;
            }

            .sidebar-logo-toggler {
                display: block;
            }

            .sidebar-store-switcher {
                opacity: 0;
                height: 0;
                margin: 0;
                overflow: hidden;
            }

            .sidebar-links {
                padding: 0 12px;

                a {
                    width: 37px;
                    overflow: hidden;
                    padding-left: 8px;

                    svg {
                        flex-shrink: 0;
                    }
                }
            }

            .sidebar-settings {
                padding: 12px;
            }

            .sidebar-settings-link {
                width: 37px;
                overflow: hidden;
                padding-left: 8px;

                svg {
                    flex-shrink: 0;
                }
            }

            .sidebar-settings-user-name,
            .sidebar-settings-user-role {
                display: none;
            }

            .sidebar-settings-user {
                padding: 0;
                flex-shrink: 0;
                justify-content: center;
                gap: 0;
                border-radius: 100%;
            }

            .sidebar-settings-user-avatar {
                flex-shrink: 0;
            }
        }
    }
}

.main-wrapper-content {
    /* height: 100vh; */
    overflow: auto;
    padding: 56px 18px;
    /* max-width: 1184px; */

    &.stores-page {
        overflow: hidden;
    }

    &.orders-page {
        overflow: hidden;
    }
}

.overview-page {
    .overview-page-title {
        font-size: 24px;
        font-weight: 700;
        line-height: 32px;
        color: #2e2c30;
        margin-bottom: 24px;
    }

    .overview-page-welcome {
        margin-bottom: 24px;

        div {
            font-size: 18px;
            font-weight: 600;
            line-height: 24px;
            color: #2e2c30;
            margin-bottom: 8px;
        }

        span {
            font-size: 16px;
            font-weight: 400;
            line-height: 20px;
            color: #605767;
        }
    }

    .overview-page-create-block {
        background: #eeecf0;
        border: 1px solid #9569ba;
        border-radius: 8px;
        margin-bottom: 24px;
        padding: 24px;
        display: flex;
        align-items: center;

        .overview-page-create-block-icon {
            margin-right: 24px;
        }

        button {
            padding: 10px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            border-radius: 12px;
            font-weight: 400;
            font-size: 14px;
            line-height: 157%;
            background: var(--primary);
            color: var(--white);
            margin-left: auto;

            img {
                width: 16px;
                height: 16px;
            }
        }

        @media (max-width: 1000px) {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 10px;
            padding: 10px;

            button,
            .overview-page-create-block-icon {
                margin: 0;
            }
        }
    }

    .overview-page-create-block-title {
        font-size: 18px;
        font-weight: 600;
        line-height: 24px;
        color: #09090b;
        margin-bottom: 4px;
    }

    .overview-page-create-block-subtitle {
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
        color: #605767;
    }

    .overview-page-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .overview-page-header-title {
        font-size: 18px;
        font-weight: 600;
        line-height: 24px;
        color: #2e2c30;
    }

    .overview-page-header-header-periods {
        display: flex;

        button {
            font-size: 14px;
            font-weight: 400;
            line-height: 22px;
            color: #605767;
            padding: 8px 18px;
            border-radius: 8px;
            cursor: pointer;

            &.active {
                background: #fcfcfc;
                box-shadow: 0px 0px 8px 0px #14141414;
                color: #4e008e;
            }
        }
    }

    .overview-page-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        margin-bottom: 32px;

        @media (max-width: 1000px) {
            grid-template-columns: 1fr;
        }
    }

    .overview-page-card {
        background: #eeecf0;
        border: 1px solid #cfcdd0;
        border-radius: 16px;
        padding: 16px 24px;
        display: flex;
        gap: 16px;

        .overview-page-card-content {
            display: flex;
            align-items: center;
            color: #2e2c30;
            width: 100%;
            gap: 16px;
        }

        .overview-page-card-conten-icon {
            align-self: self-start;
        }

        .overview-page-card-title {
            font-size: 16px;
            font-weight: 400;
            line-height: 20px;
            text-align: left;
            margin-bottom: 8px;
        }

        .overview-page-card-value {
            font-size: 36px;
            font-weight: 500;
            line-height: 40px;
            margin-bottom: 8px;
        }

        .overview-page-card-subtitle {
            font-size: 12px;
            font-weight: 400;
            line-height: 16px;
            color: #605767;
        }

        .overview-page-card-count {
            width: 50px;
            height: 30px;
            border-radius: 16px;
            padding: 4px 12px;
            background: #f0fdf4;
            font-weight: 400;
            font-size: 14px;
            line-height: 157%;
            color: var(--dark-green);
            margin-left: auto;

            display: flex;
            justify-content: center;
            align-items: center;

            &.red {
                color: var(--system-red);
                background: var(--white);
            }
        }
    }

    .overview-page-charts {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;

        @media (max-width: 1000px) {
            grid-template-columns: 1fr;
        }
    }

    .overview-page-chart {
        .overview-page-chart-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 11px;
        }

        .overview-page-chart-header-title {
            font-size: 18px;
            font-weight: 600;
            line-height: 24px;
            color: rgba(46, 44, 48, 1);
        }

        .overview-page-chart-header-actions {
            display: flex;
            align-items: center;
            gap: 8px;

            button {
                box-shadow: 0px -3px 0px 0px #00000014 inset;
                border: 1px solid #cfcdd0;
                padding: 8px 16px;
                font-size: 12px;
                font-weight: 400;
                background: #fcfcfc;
                gap: 8px;
                flex-shrink: 0;
                width: max-content;
            }

            .more {
                width: 32px;
                height: 32px;
                padding: 0;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }

        .overview-page-chart-content {
            background: rgba(252, 252, 252, 1);
            border: 1px solid #cfcdd0;
            box-shadow: 0px 1px 2px 0px #1018280f;
            padding: 24px;
            color: #2e2c30;
            border-radius: 8px;
        }

        .overview-page-chart-title {
            font-size: 16px;
            font-weight: 400;
            line-height: 20px;
            margin-bottom: 8px;
        }

        .overview-page-chart-value {
            font-size: 36px;
            font-weight: 500;
            line-height: 40px;
            margin-bottom: 32px;

            span {
                display: block;
                font-size: 14px;
                font-weight: 400;
                line-height: 22px;
                text-align: left;
                color: #4e008e;
                margin-top: 8px;
                min-height: 25px;
            }
        }

        .overview-page-chart-months {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            font-size: 12px;
            font-weight: 400;
            line-height: 18.6px;
            color: #605767;
        }
    }
}

.stores-page {
    scrollbar-width: none;
    -ms-overflow-style: none;

    .stores-page-filter-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }

    .stores-page-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px 32px;

        @media (max-width: 1100px) {
            grid-template-columns: 1fr;
        }
    }

    .stores-page-card {
        background: #fcfcfc;
        border: 1px solid #cfcdd0;
        padding: 24px;
        border-radius: 12px;
        transition: all 0.3s;

        &:hover {
            border: 1px solid #4e008e;
            box-shadow: 0px 16px 24px 0px #00000014;
        }

        .stores-page-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 8px;
        }

        .stores-page-card-header-status {
            padding: 4px 8px;
            border-radius: 16px;
            font-size: 12px;
            font-weight: 400;
            line-height: 16px;
            color: #fcfcfc;
            background: #2e2c30;

            &.open {
                color: #2e2c30;
                background: #aed44c;
                box-shadow: -1px 0px 7px 3px #724f722b;
            }

            &.rejected {
                background: #c33e36;
            }

            &.pending {
                color: #2e2c30;
                background: #fbb041;
            }
        }

        .stores-page-card-header-copy {
            img {
                height: 24px;
                width: 24px;
            }
        }

        .stores-page-card-info {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 24px;
            font-weight: 700;
            line-height: 32px;
            color: #2e2c30;
            margin-bottom: 16px;

            img {
                height: 64px;
                width: 64px;
                object-fit: contain;
            }
        }

        .stores-page-card-date {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 14px;
            font-weight: 400;
            line-height: 22px;
            color: #605767;
        }

        .stores-page-card-desc {
            display: grid;
            grid-template-columns: max-content max-content;
            gap: 8px;
            font-size: 14px;
            font-weight: 400;
            line-height: 22px;
            color: #605767;
            margin-top: 8px;

            span {
                color: #2e2c30;
            }
        }

        .stores-page-card-type {
            padding: 2px 8px;
            background: #fbf8fd;
            border: 1px solid #cfcdd0;
            font-size: 14px;
            font-weight: 700;
            line-height: 18px;
            letter-spacing: 0.01em;
            color: #3d145e;

            &.solid {
                background: #e8ddf1;
            }
        }

        .stores-page-card-footer {
            margin-top: 16px;
            display: flex;
            align-items: end;
            justify-content: space-between;

            button {
                padding: 12px 24px;
                height: 46px;
                background: #eeecf0;
                border: 1px solid #4e008e;
                border-radius: 16px;
                font-size: 14px;
                font-weight: 400;
                line-height: 22px;
                color: #2e2c30;
            }
        }

        .stores-page-card-footer-date {
            font-size: 12px;
            font-weight: 400;
            line-height: 16px;
            color: #2e2c30;
        }

        .stores-page-card-footer-btns {
            display: flex;
            align-items: center;
            gap: 8px;

            .light {
                padding: 8px 16px;
                background: #fcfcfc;
                border: 1px solid #cacaca;
                box-shadow: 0px -3px 0px 0px #00000014 inset;
                font-weight: 400;
                font-size: 12px;
                line-height: 1;
                letter-spacing: 0%;
                text-align: center;
                color: #1e1920;
                border-radius: 6px;
                height: 32px;
            }

            .dark {
                padding: 8px 16px;
                background: #4e008e;
                box-shadow: 0px -3px 0px 0px #00000014 inset;
                font-weight: 400;
                font-size: 12px;
                line-height: 1.4;
                letter-spacing: 0%;
                text-align: center;
                color: #fcfcfc;
                border-radius: 6px;
                height: 32px;
            }
        }
    }

    /* Table styles for stores page */
    .stores-page-table-wrapper {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        margin-bottom: 16px;
        -webkit-overflow-scrolling: touch;
    }

    .stores-page-table-wrapper::-webkit-scrollbar {
        height: 8px;
    }

    .stores-page-table-wrapper::-webkit-scrollbar-track {
        background: #F1EEF4;
        border-radius: 4px;
    }

    .stores-page-table-wrapper::-webkit-scrollbar-thumb {
        background: #BFC2C5;
        border-radius: 4px;
    }

    .stores-page-table-wrapper::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }

    .stores-page-table {
        width: 100%;
        background: #fcfcfc;
        border-collapse: collapse;
        overflow: auto;

        input {
            height: 16px;
            width: 16px;
        }

        th {
            text-align: left;
            padding: 0;
            font-size: 14px;
            font-weight: 400;
            line-height: 22px;
            color: #605767;
            border-bottom: 1px solid #cfcdd0;
            background: #fcfcfc;
            white-space: nowrap;

            div {
                display: flex;
                align-items: center;
                gap: 8px;
            }

            &:first-child {
                padding: 0 0 0 32px;
            }
        }

        tr {
            cursor: pointer;

            &:hover {
                td {
                    background: #eeecf0;
                }
            }

            td {
                font-size: 13px;
                font-weight: 400;
                line-height: 22px;
                color: #2e2c30;
                padding: 8px 16px;
                border-bottom: 1px solid #cfcdd0;
                white-space: nowrap;

                .btn,
                a,
                button {
                    white-space: nowrap;
                }

                &:first-child {
                    padding: 0 0 0 32px;
                }
            }
        }

        .table-header-sortable {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            padding: 8px 16px;
            justify-content: space-between;

            span {
                white-space: nowrap;
            }

            img {
                width: 16px;
                height: 16px;
                flex-shrink: 0;
                opacity: 0.6;
                transition: opacity 0.2s;
            }

            &:hover img {
                opacity: 1;
            }
        }

        th:nth-child(2),
        td:nth-child(2) {
            width: 220px;
            min-width: 220px;
            max-width: 220px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        th:nth-child(3),
        td:nth-child(3) {
            width: 170px;
            min-width: 170px;
            max-width: 170px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        th:nth-child(19),
        td:nth-child(19) {
            width: 90px;
            min-width: 90px;
            max-width: 90px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        td {
            padding: 8px 16px;
            height: unset;
        }

        th {
            padding: 0;
        }

        th:first-child {
            padding: 0 0 0 32px;
        }

        th:last-child>div:not(.table-header-sortable) {
            padding: 8px 16px;
        }
    }

    .stores-page-table-status {
        height: 26px;
        padding: 2px 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        text-align: center;
        color: #2e2c30;
        border-radius: 24px;
        width: max-content;
    }

    .stores-page-table-status-vendor {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        text-align: center;
        color: #2e2c30;
        width: max-content;
    }

    .stores-page-table-actions {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;

        .stores-action-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border: 1px solid #a4a4b0;
            background: #ffffff;
            box-shadow: 0px 2px 4px 0px #1a2b440f;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 400;
            line-height: 22px;
            text-align: center;
            color: #2e2c30;
            height: 32px;
            cursor: pointer;

            img {
                width: 16px;
                height: 16px;
                flex-shrink: 0;
            }

            &:hover {
                background: #f8f8f9;
            }
        }

        .stores-action-dropdown {
            position: relative;
            display: inline-block;

            .stores-dropdown-trigger {
                padding: 8px;
                width: 32px;
                height: 32px;
                border-radius: 50%;
                justify-content: center;
                min-width: auto;

                &:hover {
                    background: #f0f0f0;
                }

                &.active {
                    background: #CACACA !important;
                }

                .dots-icon {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    justify-content: center;
                    gap: 2px;

                    span {
                        width: 3px;
                        height: 3px;
                        background-color: #09090B;
                        border-radius: 50%;
                        display: block;
                    }
                }
            }

            .stores-dropdown-menu {
                position: fixed;
                background: #F1EEF4;
                border: 1px solid #e0e0e0;
                border-radius: 8px;
                box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
                z-index: 99999;
                min-width: 150px;
                display: none;
                padding: 4px;

                &.show {
                    display: flex;
                    flex-direction: column;
                    gap: 2px;
                }

                button {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    width: 100%;
                    padding: 8px 12px;
                    border: 1px solid #9B9AA5;
                    background: #FCFCFC;
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 22px;
                    color: #373239;
                    cursor: pointer;
                    height: auto;
                    border-radius: 12px;
                    box-shadow: none;

                    img {
                        width: 16px;
                        height: 16px;
                        flex-shrink: 0;
                    }

                    &:hover {
                        background: #EEECF0;
                    }

                    &.delete-action {
                        color: #c33e36;

                        &:hover {
                            background: #fef2f2;
                        }
                    }
                }
            }
        }
    }

    /* Table filters styles */
    .stores-page-table-filters {
        padding: 10px 32px;
        margin: 0 -32px 0;
        background: #eeecf0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;

        @media screen and (max-width: 1210px) {
            padding: 20px 32px;
        }

        @media screen and (max-width: 800px) {
            margin: 0 -10px 0;
            padding: 10px;
        }
    }

    .stores-page-table-filters-left {

        .page-header-search {
            width: 250px;
        }


        @media screen and (max-width: 1210px) {
            width: 100%;

            .page-header-search {
                width: 100%;
                max-width: 100%;

                input {
                    width: 100%;
                }
            }

            .stores-page-table-filters-select-wide,
            .stores-page-table-filters-select {
                width: 100%;
            }
        }

        @media screen and (max-width: 834px) {
            width: 100%;
        }
    }

    /* Table view toggle switch */
    .stores-table-view-toggle {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .toggle-checkbox {
        display: none;
    }

    .toggle-label {
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        user-select: none;
    }

    .toggle-switch {
        position: relative;
        width: 42px;
        height: 24px;
        background: #E0E0E0;
        border-radius: 12px;
        transition: background-color 0.3s ease;
    }

    .toggle-switch::before {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        width: 20px;
        height: 20px;
        background: white;
        border-radius: 50%;
        transition: transform 0.3s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .toggle-checkbox:checked+.toggle-label .toggle-switch {
        background: #4E008E;
    }

    .toggle-checkbox:checked+.toggle-label .toggle-switch::before {
        transform: translateX(18px);
    }

    .toggle-text {
        font-size: 14px;
        font-weight: 500;
        line-height: 22px;
        color: #2E2C30;
    }

    .stores-page-table-filters-right {
        display: flex;
        align-items: flex-end;
        gap: 25px;
        flex-wrap: wrap;

        @media screen and (max-width: 1200px) {
            width: 100%;
        }

        @media screen and (max-width: 834px) {
            margin-top: 0;
        }
    }

    .stores-page-table-filters-dates {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;

        @media screen and (max-width: 834px) {
            width: 100%;
        }
    }

    .stores-page-filters-dates-input {
        padding: 13px 10px 13px 16px !important;
        border: 1px solid #9b9aa5;
        border-radius: 12px;
        height: 42px;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        width: fit-content;
        min-width: 222px;
        position: relative;

        .date-placeholder {
            font-size: 14px;
            font-weight: 400;
            line-height: 157%;
            color: var(--grey-400);
            white-space: nowrap;
            user-select: none;
        }
    }

    .stores-page-table-filters-select {
        width: 222px;

        .select {
            height: auto;
            border-radius: 12px;
            padding: 10px 16px;
            border: 1px solid var(--grey-300);
            background: #fff;
            position: relative;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 14px;
            font-weight: 400;
            line-height: 157%;
            color: var(--grey-400);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

            .select-value {
                flex: 1;
                text-align: left;
            }

            .select-arrow-down {
                width: 16px;
                height: 16px;
                transition: transform 0.2s;
                transform: rotate(90deg);
            }

            &:hover {
                border-color: var(--primary);
            }

            &:focus,
            &.focus {
                border-color: var(--primary);
                outline: none;

                .select-dropdown {
                    display: block;
                }

                .select-arrow-down {
                    transform: rotate(270deg);
                }
            }

            .select-dropdown {
                position: absolute;
                top: calc(100% + 4px);
                left: 0;
                width: 100%;
                min-width: 150px;
                border-radius: 12px;
                background: #fff;
                border: 1px solid #f3f2f8;
                box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.08);
                overflow: hidden;
                display: none;
                z-index: 1000;

                div {
                    max-height: 200px;
                    overflow: auto;
                    padding: 8px;

                    &::-webkit-scrollbar {
                        width: 6px;
                    }

                    &::-webkit-scrollbar-track {
                        background: #F1EEF4;
                        border-radius: 4px;
                    }

                    &::-webkit-scrollbar-thumb {
                        background: #BFC2C5;
                        border-radius: 4px;
                    }

                    span {
                        display: block;
                        padding: 9px 16px;
                        font-size: 14px;
                        font-weight: 400;
                        line-height: 157%;
                        color: var(--black);
                        cursor: pointer;
                        border-radius: 8px;
                        transition: all 0.2s;

                        &:hover {
                            background: var(--grey-100);
                            color: var(--black);
                        }

                        &.active {
                            background: var(--grey-100);
                            color: var(--black);
                        }
                    }
                }
            }
        }

        @media screen and (max-width: 834px) {
            width: 100%;
        }
    }

    .stores-page-table-filters-select-wide {
        width: 222px;

        .select {
            height: auto;
            border-radius: 12px;
            padding: 10px 16px;
            border: 1px solid var(--grey-300);
            background: #fff;
            position: relative;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 14px;
            font-weight: 400;
            line-height: 157%;
            color: var(--grey-400);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

            .select-value {
                flex: 1;
                text-align: left;
            }

            .select-arrow-down {
                width: 16px;
                height: 16px;
                transition: transform 0.2s;
                transform: rotate(90deg);
            }

            &:hover {
                border-color: var(--primary);
            }

            &:focus,
            &.focus {
                border-color: var(--primary);
                outline: none;

                .select-dropdown {
                    display: block;
                }

                .select-arrow-down {
                    transform: rotate(270deg);
                }
            }

            .select-dropdown {
                position: absolute;
                top: calc(100% + 4px);
                left: 0;
                width: 100%;
                min-width: 150px;
                border-radius: 12px;
                background: #fff;
                border: 1px solid #f3f2f8;
                box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.08);
                overflow: hidden;
                display: none;
                z-index: 1000;

                div {
                    max-height: 200px;
                    overflow: auto;
                    padding: 8px;

                    &::-webkit-scrollbar {
                        width: 6px;
                    }

                    &::-webkit-scrollbar-track {
                        background: #F1EEF4;
                        border-radius: 4px;
                    }

                    &::-webkit-scrollbar-thumb {
                        background: #BFC2C5;
                        border-radius: 4px;
                    }

                    span {
                        display: block;
                        padding: 9px 16px;
                        font-size: 14px;
                        font-weight: 400;
                        line-height: 157%;
                        color: var(--black);
                        cursor: pointer;
                        border-radius: 8px;
                        transition: all 0.2s;

                        &:hover {
                            background: var(--grey-100);
                            color: var(--black);
                        }

                        &.active {
                            background: var(--grey-100);
                            color: var(--black);
                        }
                    }
                }
            }
        }

        @media screen and (max-width: 834px) {
            width: 100%;
        }
    }

    .pagination-select {
        width: 78px;
        height: auto;
        border-radius: 12px;
        padding: 10px 16px;
        border: 1px solid var(--grey-300);
        background: var(--grey-100);
        position: relative;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 14px;
        font-weight: 400;
        line-height: 157%;
        color: var(--grey-400);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

        .select-value {
            flex: 1;
            text-align: left;
        }

        .select-arrow-down {
            width: 16px;
            height: 16px;
            transition: transform 0.2s;
            transform: rotate(90deg);
        }

        &:hover {
            border-color: var(--primary);
        }

        &:focus,
        &.focus {
            border-color: var(--primary);
            outline: none;

            .select-dropdown {
                display: block;
            }

            .select-arrow-down {
                transform: rotate(270deg);
            }
        }

        .select-dropdown {
            position: absolute;
            top: calc(100% + 4px);
            left: 0;
            width: 100%;
            min-width: 78px;
            border-radius: 12px;
            background: #fff;
            border: 1px solid #f3f2f8;
            box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.08);
            overflow: hidden;
            display: none;
            z-index: 1000;

            div {
                max-height: 200px;
                overflow: auto;
                padding: 8px;

                &::-webkit-scrollbar {
                    width: 6px;
                }

                &::-webkit-scrollbar-track {
                    background: #F1EEF4;
                    border-radius: 4px;
                }

                &::-webkit-scrollbar-thumb {
                    background: #BFC2C5;
                    border-radius: 4px;
                }

                span {
                    display: block;
                    padding: 9px 16px;
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 157%;
                    color: var(--black);
                    cursor: pointer;
                    border-radius: 8px;
                    transition: all 0.2s;

                    &:hover {
                        background: var(--grey-100);
                        color: var(--black);
                    }

                    &.active {
                        background: var(--grey-100);
                        color: var(--black);
                    }
                }
            }
        }
    }

    .stores-page-table-filters-select-label {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #2e2c30;
        margin-bottom: 8px;
    }

    .stores-page-table-filters-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;

        @media screen and (max-width: 1200px) {
            width: 100%;
            justify-content: flex-end;
        }
    }

    .stores-page-btn {
        padding: 1px 18px;
        height: 42px;
        border-radius: 16px;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        text-align: center;
        cursor: pointer;
        white-space: nowrap;
        border: none;

        &.stores-page-btn-compose {
            background: #4e008e;
            color: #fcfcfc;
        }

        &.stores-page-btn-delete {
            background: #c33e36;
            color: #fcfcfc;
        }
    }

    .stores-page::-webkit-scrollbar {
        display: none;
    }

    .stores-page-search {
        img {
            cursor: pointer;
            flex-shrink: 0;

            &.clear {
                display: none;
            }
        }

        &.active {
            img.clear {
                display: block;
            }
        }

        @media screen and (max-width: 834px) {
            width: 100%;
        }
    }

    /* Pagination styles */
    .pagination-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;

        &:has(.pagination-view:only-child) {
            justify-content: flex-end;
        }

        @media screen and (max-width: 1200px) {
            justify-content: center;
        }
    }

    .pagination-wrapper .pagination {
        margin: unset;
    }

    .pagination-view {
        display: flex;
        align-items: center;
        align-self: flex-end;
        gap: 8px;
        font-size: 14px;
        font-weight: 400;
        color: #373239;

        &:only-child {
            margin-left: auto;
        }

        .select {
            width: 319px;
            height: 42px;
            padding: 8px 12px;
            border: 1px solid #cfcdd0;
            border-radius: 8px;
            background: #ffffff;

            select {
                font-size: 14px;
                color: #605767;
                width: 100%;
            }
        }
    }
}

.stores-filters-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--grey-300);
    background: #ffffff;
    padding: 12px;
    border-radius: 16px;

    @media screen and (max-width: 1210px) {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        max-width: 100%;

        .filters-reset-btn {
            grid-column: 2;
            justify-self: end;
        }
    }

    @media screen and (max-width: 440px) {
        grid-template-columns: 1fr auto;
        align-items: center;

        >* {
            grid-column: 1 / -1;
        }

        .stores-page-table-filters-dates {
            grid-column: 1;
        }

        .filters-reset-btn {
            grid-column: 2;
            justify-self: end;
        }
    }
}

.filters-reset-btn {
    height: 42px;
    width: 42px;
    border-radius: 12px;
    background: #4e008e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-icon-btn {
    height: 42px;
    width: 42px;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--grey-300);
}

.action-icon-btn[aria-disabled="true"],
.action-icon-btn[disabled] {
    opacity: 0.5;
    pointer-events: none;
}

.action-add-store-btn {
    background: #4e008e;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
}

/* Compose Email Modal Styles */
.compose-modal-body {
    padding: 20px 0;
}

.modal-title-sub {
    font-weight: 400;
    color: #6a6471;

    @media screen and (max-width: 440px) {
        display: block;
        margin-top: 8px;
    }
}

.compose-field {
    margin-bottom: 20px;
}

.compose-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2e2c30;
}

.recipient-field {
    display: flex;
    align-items: center;
    gap: 8px;
}

.recipient-field input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #cfcdd0;
    border-radius: 8px;
    font-size: 14px;
}

.add-recipient-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #cfcdd0;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.add-recipient-btn img {
    width: 16px;
    height: 16px;
    transform: rotate(90deg);
}

.compose-field input[type="text"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #cfcdd0;
    border-radius: 8px;
    font-size: 14px;
}

.message-editor {
    border: 1px solid #cfcdd0;
    border-radius: 8px;
    overflow: hidden;
}

.editor-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #f6f5f9;
    border-bottom: 1px solid #cfcdd0;
}

.toolbar-buttons {
    display: flex;
    gap: 4px;
}

.toolbar-btn {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.toolbar-btn:hover {
    background: #edeaf2;
}

#emailContent {
    width: 100%;
    min-height: 200px;
    padding: 12px;
    border: none;
    outline: none;
    resize: vertical;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
}

.compose-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #ece8f2;
}

.stores-page-table td img.flash-sale-icon {
    display: block;
    margin: 0 auto;
    width: 20px;
    height: 20px;
}

.page-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 24px;

    @media (max-width: 800px) {
        gap: 10px;
        flex-wrap: wrap;
    }
}

.page-header-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #2e2c30;
}

.page-header-search {
    border: 1px solid #605767;
    border-radius: 12px;
    padding: 6px 8px 6px 11px;
    position: relative;
    width: 343px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;

    input {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        flex: 1;
        text-align: left;
        color: #000000;

        &::placeholder {
            color: #605767;
        }
    }

    .clear {
        display: none;
    }

    img {
        cursor: pointer;
    }

    &.active {
        img {
            display: none;

            &.clear {
                display: block;
            }
        }

        .page-header-search-dropdown {
            display: flex;
        }
    }
}

.page-header-search-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    background: #fcfcfc;
    box-shadow: 0px 16px 24px 0px #00000014;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    left: 0;
    width: 100%;
    border-radius: 12px;
    display: none;

    &.active {
        display: flex;
    }

    div {
        padding: 6px 12px;
        border-radius: 8px;
        transition: all 0.3s;
        cursor: pointer;
        font-size: 12px;
        font-weight: 400;
        line-height: 16px;
        color: #2e2c30;

        &:hover {
            background: #eeecf0;
        }
    }
}

.page-header-search-dropdown-title {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    padding: 6px 12px;
    color: #a4a4b0;
}

.filter-header-statuses {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f3f2f8;
    padding: 4px;
    border-radius: 12px;
    width: max-content;
    flex-wrap: wrap;
    max-width: 100svw;

    @media screen and (max-width: 834px) {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        width: max-content;
        min-width: 100%;
    }
}

.filter-header-status {
    background: #fcfcfc;
    border: 1px solid #cacaca;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 22px 22px 0 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #605767;
    flex-shrink: 0;


    span {
        padding: 2px 8px;
        border: 1px solid #eeecf0;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 400;
        line-height: 16px;
        color: #2e2c30;
        background: #fbf8fd;
    }

    &.active {
        box-shadow: 0px 0px 5px 2px #914cb845;
        color: #4e008e;
        font-weight: 700;
        line-height: 18px;
        letter-spacing: 0.01em;
        border: 1px solid #9b9aa5;

        span {
            background: #fbb041;
            border: 1px solid var(--grey-200);
        }
    }
}

.filter-header-periods {
    display: flex;

    button {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #605767;
        padding: 7px 20px;
        border-radius: 12px;
        cursor: pointer;

        &.active {
            background: #fcfcfc;
            box-shadow: 0px 0px 8px 0px #14141414;
            color: #4e008e;
        }
    }
}

.orders-page,
.customer-admin-orders-page {
    .orders-page-actions {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 8px;

        button {
            padding: 8px 16px;
            box-shadow: 0px -3px 0px 0px #00000014 inset;
            border: 1px solid #cfcdd0;
            height: 32px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 400;
            line-height: 16px;
            color: #2e2c30;
            cursor: pointer;
            gap: 8px;
        }
    }

    .orders-page-statuses {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }

    .orders-page-table-filters {
        padding: 19px 32px;
        margin: 0 -32px 0;
        background: #eeecf0;
        display: flex;
        align-items: flex-end;
        gap: 24px;
        flex-wrap: wrap;

        .filter-header-periods {
            padding: 2px;
            background: #fbf8fd;
            border-radius: 8px;
        }

        @media (max-width: 834px) {
            margin: 0 -10px 0;
            padding: 20px;
            flex-direction: column;
        }
    }

    .orders-page-table-filters-selects {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;

        @media screen and (max-width: 834px) {
            flex-direction: column;
            width: 100%;
        }
    }

    .orders-page-table-filters-select {
        width: 183px;

        @media screen and (max-width: 834px) {
            width: 100%;
        }

        .select {
            height: auto;
            border-radius: 12px;
            padding: 10px 16px;
            border: 1px solid var(--grey-300);
            background: var(--grey-100);
            font-size: 14px;
            font-weight: 400;
            line-height: 157%;
            color: var(--grey-400);

            select {
                width: 100% !important;
            }
        }
    }

    .orders-page-table-filters-select-label {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #2e2c30;
        margin-bottom: 8px;
    }

    .orders-page-delete {
        padding: 12px 24px;
        height: 46px;
        background: #eeecf0;
        border-radius: 16px;
        border: 1px solid #c33e36;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        text-align: center;
        color: #c33e36;
        cursor: pointer;
        margin-top: 20px;
    }
}

/* ==========================================================================
   Orders Page Custom Dropdown Styles - Override default select styles
   ========================================================================== */

button.orders-custom-select.select {
    width: 183px;
    height: 42px !important;
    border-radius: 12px;
    padding: 10px 16px;
    border: 1px solid var(--grey-300);
    background: var(--grey-100);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
    line-height: 157%;
    color: var(--grey-400);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    .select-value {
        flex: 1;
        text-align: left;
    }

    .select-arrow-down {
        width: 16px;
        height: 16px;
        transition: transform 0.2s;
        transform: rotate(90deg);
    }

    &:hover {
        border-color: var(--primary);
    }

    &:focus,
    &.focus {
        border-color: var(--primary);
        outline: none;

        .select-dropdown {
            display: block;
        }

        .select-arrow-down {
            transform: rotate(270deg);
        }
    }

    .select-dropdown {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        width: 100%;
        min-width: 183px;
        border-radius: 12px;
        background: #fff;
        border: 1px solid #f3f2f8;
        box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.08);
        overflow: hidden;
        display: none;
        z-index: 1000;

        &.dropdown-up {
            top: auto;
            bottom: calc(100% + 4px);
        }

        &.dropdown-left {
            left: auto;
            right: 0;
        }

        div {
            max-height: 200px;
            overflow: auto;
            padding: 8px;

            &::-webkit-scrollbar {
                width: 6px;
            }

            &::-webkit-scrollbar-track {
                background: #F1EEF4;
                border-radius: 4px;
            }

            &::-webkit-scrollbar-thumb {
                background: #BFC2C5;
                border-radius: 4px;
            }

            span {
                display: block;
                padding: 9px 16px;
                font-size: 14px;
                font-weight: 400;
                line-height: 157%;
                color: var(--black);
                cursor: pointer;
                border-radius: 8px;
                transition: all 0.2s;

                &:hover {
                    background: var(--grey-100);
                    color: var(--black);
                }

                &.active {
                    background: var(--grey-100);
                    color: var(--black);
                }
            }
        }
    }

    @media screen and (max-width: 834px) {
        width: 100% !important;
        max-width: 100%;
    }
}

/* ==========================================================================
   Main Product Custom Select Styles
   ========================================================================== */

button.main-product-custom-select.select {
    width: 183px;
    height: 42px !important;
    border-radius: 12px;
    padding: 10px 16px;
    border: 1px solid var(--grey-300);
    background: var(--grey-100);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
    line-height: 157%;
    color: var(--grey-400);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    &.selected {
        background: #fff;
    }

    .select-value {
        flex: 1;
        text-align: left;
        color: var(--black);
    }

    .select-arrow-down {
        width: 16px;
        height: 16px;
        transition: transform 0.2s;
        transform: rotate(90deg);
    }

    &:hover {
        border-color: var(--primary);
    }

    &:focus,
    &.focus {
        border-color: var(--primary);
        outline: none;

        .select-dropdown {
            display: block;
        }

        .select-arrow-down {
            transform: rotate(270deg);
        }
    }

    .select-dropdown {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        width: 100%;
        min-width: 183px;
        border-radius: 12px;
        background: #fff;
        border: 1px solid #f3f2f8;
        box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.08);
        overflow: hidden;
        display: none;
        z-index: 1000;

        div {
            max-height: 200px;
            overflow: auto;
            padding: 8px;

            &::-webkit-scrollbar {
                width: 6px;
            }

            &::-webkit-scrollbar-track {
                background: #F1EEF4;
                border-radius: 4px;
            }

            &::-webkit-scrollbar-thumb {
                background: #BFC2C5;
                border-radius: 4px;
            }

            span {
                display: block;
                padding: 9px 16px;
                font-size: 14px;
                font-weight: 400;
                line-height: 157%;
                color: var(--black);
                cursor: pointer;
                border-radius: 8px;
                transition: all 0.2s;

                &:hover {
                    background: var(--grey-100);
                    color: var(--black);
                }

                &.active {
                    background: var(--grey-100);
                    color: var(--black);
                }
            }
        }
    }

    &.dropdown-up {
        .select-dropdown {
            top: auto !important;
            bottom: calc(100% + 4px) !important;
        }
    }

    @media screen and (max-width: 834px) {
        width: 100% !important;
        max-width: 100%;
    }
}

/* Table wrapper for orders page with scrolling */
.orders-page-table-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 16px;
    -webkit-overflow-scrolling: touch;

    @media screen and (max-width: 834px) {
        margin: 0 -10px 16px;
    }
}

.orders-page-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.orders-page-table-wrapper::-webkit-scrollbar-track {
    background: #F1EEF4;
    border-radius: 4px;
}

.orders-page-table-wrapper::-webkit-scrollbar-thumb {
    background: #BFC2C5;
    border-radius: 4px;
}

.orders-page-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.orders-page-table {
    width: 100%;
    background: #fcfcfc;
    border-collapse: collapse;
    overflow: auto;

    input {
        height: 16px;
        width: 16px;
    }

    th {
        text-align: left;
        padding: 0;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #605767;
        border-bottom: 1px solid #cfcdd0;
        background: #fcfcfc;
        white-space: nowrap;

        div {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        &:first-child {
            padding: 0 0 0 32px;
        }
    }

    tr {
        cursor: pointer;
        height: 54px;

        &:hover {
            td {
                background: #eeecf0;
            }
        }

        td {
            font-size: 13px;
            font-weight: 400;
            line-height: 22px;
            color: #2e2c30;
            padding: 8px 16px;
            border-bottom: 1px solid #cfcdd0;
            white-space: nowrap;

            .btn,
            a,
            button {
                white-space: nowrap;
            }

            &:first-child {
                padding: 0 0 0 32px;
            }
        }
    }

    .order-page-table-row {
        height: 72px;

        @media screen and (max-width: 834px) {
            height: 54px;
        }
    }

    .orders-page-table-tr {
        height: 54px;
    }

    .table-header-sortable {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        padding: 8px 16px;
        justify-content: space-between;

        span {
            white-space: nowrap;
        }

        img {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            opacity: 0.6;
            transition: opacity 0.2s;
        }

        &:hover img {
            opacity: 1;
        }
    }

    th {
        width: auto;
        min-width: fit-content;
        white-space: nowrap;
    }

    td {
        padding: 8px 16px;
        height: unset;

        &:last-child {
            padding: 8px 0;
        }
    }
}

.orders-page-table-status {
    height: 26px;
    padding: 2px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    color: #2e2c30;
    border-radius: 24px;
    width: max-content;

    &.delayed {
        background: #C33E36;
        color: #fcfcfc;
    }

    &.shipped {
        background: #fff2f2;
        border: 1px solid #c33e36;
    }

    &.pending {
        background: #fff2da;
        border: 1px solid #fbb041;
    }

    &.delivered {
        background: #f4fdd4;
        border: 1px solid #aed44c;
    }

    &.processing {
        background: #e8ddf1;
        color: #2e2c30;
    }
}

.orders-page-table-filters-export {
    @media screen and (max-width: 834px) {
        width: 250px;
    }
}

.orders-page-table-status-vendor {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    color: #2e2c30;
    width: max-content;
}

.orders-page-table-tracking-status {
    height: 26px;
    padding: 2px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    color: #373239;
    border-radius: 24px;
    width: max-content;

    &.in-production {
        background: #FFF2F2;
        border: 1px solid #C33E36;
        color: #373239;
    }

    &.in-production_delayed {
        border: 1px solid var(--error);
        background: var(--light-red);
        color: var(--black);
    }

    &.in-transit {
        border: 1px solid var(--yellow);
        background: var(--light-yellow);
        color: var(--black);
    }

    &.delivered {
        color: var(--black);
        border: 1px solid var(--green);
        background: var(--light-green);
    }
}

.orders-page-table-actions {
    display: flex;
    align-items: center;
    gap: 8px;

    .orders-action-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        border: 1px solid #a4a4b0;
        background: #ffffff;
        box-shadow: 0px 2px 4px 0px #1a2b440f;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        text-align: center;
        color: #2e2c30;
        height: 32px;
        cursor: pointer;

        img {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        &:hover {
            background: #f8f8f9;
        }
    }

    button {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        border: 1px solid #a4a4b0;
        background: #ffffff;
        box-shadow: 0px 2px 4px 0px #1a2b440f;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        text-align: center;
        color: #2e2c30;
        height: 32px;
        cursor: pointer;

        img {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        &:hover {
            background: #f8f8f9;
        }
    }
}

.orders-page-row-note {
    display: -webkit-box;
    max-width: 180px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (max-width: 834px) {
    .orders-page-pagination .pagination {
        width: auto;
    }
}

.orders-page-pagination {
    display: flex;
    justify-content: center;
    padding: 16px 0;

    @media (max-width: 700px) {
        padding: 12px 16px;
    }

    @media (max-width: 480px) {
        padding: 12px 8px;
    }
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eeecf0;
    border: 1px solid #a4a4b0;
    width: max-content;
    margin: 0 auto;
    border-radius: 8px;
    height: 42px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #374151;
    overflow: hidden;

    button {
        padding: 9px 17.5px;
        border-right: 1px solid #d1d5db;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        height: 100%;

        &.active,
        &:hover {
            background: #fcfcfc;
        }

        @media (max-width: 700px) {
            padding: 9px 12px;
            font-size: 13px;
        }

        @media (max-width: 480px) {
            padding: 9px 10px;
            font-size: 12px;
        }
    }

    .pagination-nav {
        padding: 10px 16px;

        @media (max-width: 700px) {
            padding: 10px 12px;
            font-size: 0;
            gap: 0;

            img {
                margin: 0;
            }
        }

        @media (max-width: 480px) {
            padding: 10px 8px;
        }

        &:first-child {
            padding-left: 16px;
        }

        &:last-child {
            padding-right: 16px;
        }

        .pagination-nav-next-arrow {
            transform: rotate(180deg);
        }
    }

    @media (max-width: 700px) {
        max-width: calc(100vw - 32px);
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;

        &::-webkit-scrollbar {
            display: none;
        }
    }

    @media (max-width: 480px) {
        max-width: calc(100vw - 16px);
        height: 38px;
        font-size: 12px;
    }
}

.orders-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 300px);
    padding: 60px 20px;
    text-align: center;

    .orders-empty-state-image {
        width: 240px;
        height: auto;
        margin-bottom: 40px;

        @media (max-width: 768px) {
            width: 200px;
            margin-bottom: 32px;
        }

        @media (max-width: 480px) {
            width: 160px;
            margin-bottom: 24px;
        }
    }

    .orders-empty-state-title {
        font-weight: 400;
        font-size: 48px;
        line-height: 112%;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        text-align: center;
        color: var(--black);
        font-family: var(--font4);
        margin: 24px 0 4px 0;

        @media screen and (max-width: 768px) {
            font-size: 28px;
        }

        @media screen and (max-width: 480px) {
            font-size: 24px;
            letter-spacing: 0.03em;
        }
    }

    .orders-empty-state-text {
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        text-align: center;
        color: var(--black);
        margin: 0;
    }
}

.reports-page {
    padding: 56px 32px;

    .reports-page-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
    }

    .reports-page-title {
        font-size: 24px;
        font-weight: 700;
        line-height: 32px;
        text-align: left;
        color: #2e2c30;
        margin: 0;
    }

    .reports-page-header-actions {
        display: flex;
        align-items: center;
        gap: 16px;

        button {
            padding: 8px 16px;
            border-radius: 6px;
            background: #4e008e;
            height: 32px;
            font-size: 12px;
            font-weight: 400;
            line-height: 16px;
            text-align: center;
            color: #fcfcfc;
            cursor: pointer;
        }
    }

    .reports-page-filters {
        display: flex;
        align-items: end;
        justify-content: space-between;
        padding: 19px 64px;
        margin-bottom: 24px;
        background: #eeecf0;
        margin-left: -32px;
        width: calc(100% + 64px);
        flex-wrap: wrap;
        gap: 10px;

        @media (max-width: 1100px) {
            width: calc(100% + 20px);
            margin-left: -10px;
            padding: 10px;
        }
    }

    .reports-page-filters-selects {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .reports-page-filters-select {
        width: 183px;

        .select {
            padding: 13px 16px;
            height: 48px;
            border: 1px solid #4e008e;
        }
    }

    .reports-page-filters-select-label {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #2e2c30;
        margin-bottom: 8px;
    }

    .filter-header-periods {
        background: #fbf8fd;
        border-radius: 8px;
        padding: 2px;
    }

    .reports-page-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px 32px;

        @media (max-width: 1100px) {
            grid-template-columns: 1fr;
        }
    }

    .reports-page-top-filters {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F1EEF4;
        margin: 0 -32px 0;
        padding: 16px 32px;
        flex-wrap: wrap;
        gap: 10px;

        @media screen and (max-width: 834px) {
            flex-direction: column;
        }

        @media screen and (max-width: 440px) {
            margin: 0 -10px 0;
            padding: 16px 10px;
        }
    }

    .reports-page-top-filters-label {
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        color: #1e1920;
        margin-bottom: 8px;
    }

    .reports-page-top-filters-selects-group {
        display: flex;
        gap: 8px;
        align-items: flex-start;
        flex-wrap: wrap;

        @media screen and (max-width: 834px) {
            width: 100%;
        }

        @media screen and (max-width: 500px) {
            flex-direction: column;
            gap: 16px;
        }
    }

    .reports-page-top-filters-select {
        width: 183px;

        .select {
            height: auto;
            border-radius: 12px;
            padding: 10px 16px;
            border: 1px solid var(--grey-300);
            background: var(--grey-100);
            position: relative;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 14px;
            font-weight: 400;
            line-height: 157%;
            color: var(--grey-400);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

            .select-value {
                flex: 1;
                text-align: left;
            }

            .select-arrow-down {
                width: 16px;
                height: 16px;
                transition: transform 0.2s;
                transform: rotate(90deg);
            }

            &:hover {
                border-color: var(--primary);
            }

            &:focus,
            &.focus {
                border-color: var(--primary);
                outline: none;

                .select-dropdown {
                    display: block;
                }

                .select-arrow-down {
                    transform: rotate(270deg);
                }
            }

            .select-dropdown {
                position: absolute;
                top: calc(100% + 4px);
                left: 0;
                width: 100%;
                min-width: 183px;
                border-radius: 12px;
                background: #fff;
                border: 1px solid #f3f2f8;
                box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.08);
                overflow: hidden;
                display: none;
                z-index: 1000;

                div {
                    max-height: 200px;
                    overflow: auto;
                    padding: 8px;

                    &::-webkit-scrollbar {
                        width: 6px;
                    }

                    &::-webkit-scrollbar-track {
                        background: #F1EEF4;
                        border-radius: 4px;
                    }

                    &::-webkit-scrollbar-thumb {
                        background: #BFC2C5;
                        border-radius: 4px;
                    }

                    span {
                        display: block;
                        padding: 9px 16px;
                        font-size: 14px;
                        font-weight: 400;
                        line-height: 157%;
                        color: var(--black);
                        cursor: pointer;
                        border-radius: 8px;
                        transition: all 0.2s;

                        &:hover {
                            background: var(--grey-100);
                            color: var(--black);
                        }

                        &.active {
                            background: var(--grey-100);
                            color: var(--black);
                        }
                    }
                }
            }
        }

        @media screen and (max-width: 834px) {
            width: 100% !important;
            max-width: 100%;
        }
    }

    .reports-page-content {
        margin-top: 24px;
    }

    .reports-page-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 32px;

        @media (max-width: 1000px) {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        @media (max-width: 768px) {
            gap: 16px;
        }
    }

    .reports-page-card {
        background: #F1EEF4;
        border: 1px solid #CACACA;
        border-radius: 16px;
        padding: 16px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

        @media (hover: hover) {
            &:hover {
                border-color: #4E008E;
                transform: translateY(-2px);
                box-shadow: 0px 8px 24px rgba(78, 0, 142, 0.1);
            }
        }

        @media (max-width: 768px) {
            padding: 16px;
            flex-direction: column;
            text-align: center;
            min-height: auto;
        }
    }

    .reports-page-card-content {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        flex: 1;

        @media (max-width: 768px) {
            flex-direction: column;
            text-align: center;
            gap: 12px;
        }
    }

    .reports-page-card-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    .reports-page-card-info {
        flex: 1;
        min-width: 0;

        @media (max-width: 768px) {
            text-align: center;
        }
    }

    .reports-page-card-title {
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
        color: #373239;
        margin: 0 0 8px 0;
    }

    .reports-page-card-description {
        font-size: 12px;
        font-weight: 400;
        line-height: 16px;
        color: #605767;
        margin: 0;
    }

    .reports-page-card-btn {
        background: #4E008E;
        color: white;
        border: none;
        border-radius: 6px;
        padding: 8px 16px;
        font-size: 12px;
        font-weight: 400;
        line-height: 16px;
        cursor: pointer;
        flex-shrink: 0;
        white-space: nowrap;

        @media (max-width: 768px) {
            width: 100%;
            padding: 12px 16px;
        }
    }

    .reports-page-table-filters-dates {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;

        @media screen and (max-width: 834px) {
            width: 100%;
            gap: 16px;
        }

        @media screen and (max-width: 440px) {
            justify-content: space-between;
        }
    }

    .reports-page-table-filters-dates-item {
        display: flex;
        flex-direction: column;
        gap: 8px;

        @media screen and (max-width: 360px) {
            width: 100%;
        }
    }

    .reports-page-table-filters-label {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #2e2c30;
    }

    .reports-page-filters-dates-input {
        padding: 13px 10px 13px 16px !important;
        border: 1px solid #9b9aa5;
        border-radius: 16px;
        height: 42px;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        width: 183px;
        position: relative;

        input[type="date"] {
            width: 140px;
            font-size: 12px;
            font-weight: 400;
            line-height: 16px;
            color: #605767;
            background: transparent;
            border: none;
            outline: none;
            cursor: pointer;
            position: relative;
            z-index: 1;

            &::-webkit-datetime-edit-fields-wrapper {
                color: #605767;
            }

            &::-webkit-datetime-edit-text {
                color: #605767;
                padding: 0;
            }

            &::-webkit-datetime-edit-month-field,
            &::-webkit-datetime-edit-day-field,
            &::-webkit-datetime-edit-year-field {
                color: #605767;
            }

            &::-webkit-calendar-picker-indicator {
                position: absolute;
                left: -16px;
                top: -13px;
                width: 183px;
                height: 42px;
                opacity: 0;
                cursor: pointer;
                z-index: 2;
            }

            @media screen and (max-width: 360px) {
                width: 100%;
            }
        }

        img {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            pointer-events: none;
        }

        &:hover {
            border-color: #4E008E;
        }

        @media screen and (max-width: 834px) {
            width: 100%;
            min-width: unset;
        }
    }

    .reports-page-filters-dates-input-end {
        background: #FCFCFC;
    }

    .reports-page-cards-card {
        background: #eeecf0;
        border: 1px solid #cfcdd0;
        padding: 16px 24px;
        display: flex;
        align-items: center;
        border-radius: 16px;
        gap: 16px;
        justify-content: space-between;

        button {
            padding: 8px 21px 8px 16px;
            background: #4e008e;
            border-radius: 6px;
            box-shadow: 0px -3px 0px 0px #00000014 inset;
            font-size: 12px;
            font-weight: 400;
            line-height: 16px;
            text-align: center;
            color: #cfcdd0;
            width: max-content;
            flex-shrink: 0;
        }

        img {
            align-self: self-start;
        }
    }

    .reports-page-cards-card-title {
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
        color: #2e2c30;
    }

    .reports-page-cards-card-desc {
        font-size: 12px;
        font-weight: 400;
        line-height: 16px;
        color: #605767;
    }
}

.catalog-page {
    .catalog-page-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
    }

    .catalog-page-header-title {
        font-size: 24px;
        font-weight: 700;
        line-height: 32px;
        color: #2e2c30;
    }

    .catalog-page-header-actions {
        display: flex;
        align-items: center;
        gap: 15px;

        button {
            padding: 12px 24px;
            background: #eeecf0;
            border: 1px solid #4e008e;
            border-radius: 16px;
            height: 46px;
            font-size: 14px;
            font-weight: 400;
            line-height: 22px;
            color: #2e2c30;
            cursor: pointer;
        }
    }

    .catalog-page-content {
        display: grid;
        grid-template-columns: 264px 1fr;
        gap: 16px;
    }

    .catalog-page-sidebar-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .catalog-page-sidebar {
        padding: 12px;
        background: #eeecf0;
        border: 1px solid #cfcdd0;
        border-radius: 24px;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .catalog-page-sidebar-card {
        padding: 12px 16px;
        background: #fcfcfc;
        border-bottom: 1px solid #eeecf0;
        border-radius: 13px;

        &.active {
            .catalog-page-sidebar-card-list {
                display: flex;
            }

            .catalog-page-sidebar-card-header {
                .catalog-page-sidebar-card-header-arrow {
                    transform: rotate(0deg);
                }
            }
        }
    }

    .catalog-page-sidebar-card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 4px;

        .catalog-page-sidebar-card-header-arrow {
            transition: all 0.3s;
            transform: rotate(180deg);
        }
    }

    .catalog-page-sidebar-card-header-title {
        display: flex;
        align-items: center;
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
        letter-spacing: 1px;
    }

    .catalog-page-sidebar-card-list {
        display: none;
        flex-direction: column;
        gap: 8px;
        margin-top: 24px;
    }

    .catalog-page-sidebar-card-list-option {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #4a4a4a;
    }

    .catalog-page-sidebar-card-list-option-count {
        margin-left: auto;
        color: #605767;
    }

    .filter-count {
        margin-left: auto;
        font-size: 12px;
        font-weight: 400;
        color: #605767;
    }

    .catalog-page-sidebar-card-all {
        margin-top: 8px;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #4e008e;
        position: relative;
        width: max-content;
        padding: 0 4px;
        text-align: center;
        cursor: pointer;

        &::before {
            content: "";
            display: block;
            width: 100%;
            position: absolute;
            top: 100%;
            height: 1px;
            background: #4e008e;
            left: 0;
        }
    }

    .filter-item-hidden {
        display: none;
    }

    .filter-item-hidden.show {
        display: flex;
    }

    .filter-toggle-btn {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: opacity 0.2s ease;
    }

    .filter-toggle-btn:hover {
        opacity: 0.7;
    }

    .catalog-page-products-list {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 24px 2px;
        grid-auto-rows: max-content;

        @media (max-width: 1300px) {
            grid-template-columns: repeat(3, 1fr);
        }

        @media (max-width: 1200px) {
            grid-template-columns: repeat(2, 1fr);
        }

        @media (max-width: 1100px) {
            grid-template-columns: repeat(2, 1fr);
        }

        @media (max-width: 1000px) {
            grid-template-columns: repeat(1, 1fr);
        }

        @media (max-width: 750px) {
            grid-template-columns: repeat(2, 1fr);
        }

        @media (max-width: 400px) {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    .catalog-page-products-card {
        position: relative;
        border-radius: 6px;
        padding: 8px;
        transition: all 0.3s;
        border: 1px solid transparent;

        &:hover {
            border: 1px solid #cfcdd0;
            box-shadow: 0px 0px 5px 2px #914cb845;
            background: #fbfbfb;

            .catalog-page-products-card-colors {
                opacity: 1;
                visibility: visible;
            }
        }
    }

    .catalog-page-products-card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: 700;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0%;
        text-align: center;
        color: #373239;

        margin-bottom: 4px;
        text-align: center;

        .checkbox-input {
            margin: 0;
        }

        span {
            max-width: 300px;
        }
    }

    .catalog-page-products-card-photo {
        width: 100%;
        height: 208px;
        object-fit: contain;
    }

    .catalog-page-products-card-price {
        font-weight: 700;
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 1%;
        text-align: center;
        color: #373239;
    }

    .catalog-page-products-card-colors {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s;

        div {
            width: 24px;
            height: 24px;
            border-radius: 100%;
            border: 1px solid #cfcdd0;
            padding: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            cursor: pointer;
            background: #fcfcfc;

            span {
                display: flex;
                border: 1px solid #cfcdd0;
                width: 18px;
                height: 18px;
                border-radius: 100%;
                flex-shrink: 0;
            }
        }
    }
}

.info-hover-wrapper {
    position: relative;
    display: inline-block;
    margin-left: 8px;
    cursor: pointer;
    height: 16px;

    &:hover {
        .info-hover {
            opacity: 1;
            visibility: visible;
        }
    }
}

.info-hover {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    padding: 8px;
    max-width: 228px;
    border-radius: 6px;
    background: #2e2c30;
    width: max-content;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
    color: #fcfcfc;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;

    &::before {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #2e2c30;
        position: absolute;
        top: 99.9%;
        left: 50%;
        transform: translateX(-50%);
    }
}

.radial-input {
    width: 20px;
    height: 20px;
    border: 2px solid #a4a4b0;
    border-radius: 100%;
    cursor: pointer;
    margin-right: 6px;
    flex-shrink: 0;
    position: relative;

    &.active {
        border: 2px solid #4e008e;

        &::before {
            content: "";
            display: block;
            width: 10px;
            height: 10px;
            background: #4e008e;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 100%;
        }

        &.dark {
            border: 2px solid #2e2c30;

            &::before {
                background: #2e2c30;
            }
        }
    }
}

.checkbox-input {
    width: 16.5px;
    height: 16.5px;
    border: 2px solid #a4a4b0;
    margin-right: 7.5px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    background: #fff;
    position: relative;

    input {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 0;
        cursor: pointer;
    }

    &.active {
        border: 1.5px solid #9b9aa5;

        &::before {
            content: "";
            display: block;
            width: 16px;
            height: 11px;
            position: absolute;
            left: 0;
            background: url(../img/checkbox.svg) center/contain no-repeat;
            bottom: 2px;
        }
    }
}

.orders-page-main .overview-page-top-header-info-wrapper,
.customer-admin-orders-page .overview-page-top-header-info-wrapper {
    align-items: flex-start !important;
    flex-direction: column;
    gap: 32px !important;

    @media screen and (max-width: 834px) {
        width: 100%;

        .page-header-search {
            width: 100%;
        }
    }
}

.orders-page,
.customer-admin-orders-page {

    overflow: hidden;

    .orders-page-statuses {
        @media screen and (max-width: 834px) {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .filter-header-statuses {
            @media screen and (max-width: 834px) {
                flex-wrap: nowrap;
                width: max-content;
                min-width: 100%;
            }
        }

        .filter-header-status {
            @media screen and (max-width: 834px) {
                flex-shrink: 0;
                white-space: nowrap;
            }
        }
    }

    @media screen and (max-width: 834px) {
        .orders-page-table-filters {
            padding: 20px 10px;
        }

        .orders-page-table-wrapper {
            overflow-x: auto;
            overflow-y: hidden;
        }

        .orders-page-table {
            min-width: 1000px;
            width: max-content;
        }
    }

    @media screen and (max-width: 480px) {
        .orders-page-table-wrapper {
            width: calc(100svw - 0px);
        }
    }
}

.order-page {
    background: #eeecf0;

    .order-page-header {
        display: flex;
        align-items: start;
        margin-bottom: 39px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .order-page-header-wrapper {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 24px;
    }

    .order-page-header-info {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 8px;
        flex-wrap: wrap;
    }

    .order-page-header-title {
        font-size: 24px;
        font-weight: 700;
        line-height: 32px;
        color: #2e2c30;
    }

    .order-page-header-status {
        padding: 2px 16px;
        width: max-content;
        border-radius: 24px;
        background: #ff7f77;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #2e2c30;

        &.manual {
            background: var(--error);
            border: 1px solid var(--system-red);
            color: var(--white);
        }

        &.progress {
            background: #fbb041;
        }
    }

    .order-page-header-info-date {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #605767;
    }

    .order-page-header-actions {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 8px;

        button {
            font-weight: 400;
            font-size: 12px;
            line-height: 133%;
            color: var(--black);
            text-align: center;
            border: 1px solid var(--grey-200);
            border-radius: 6px;
            padding: 8px 16px;
            box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.08);
            background: var(--white);
            cursor: pointer;
        }

        .order-show-custom-select {
            position: relative;
            border: 1px solid var(--grey-200);
            border-radius: 6px;
            padding: 8px 16px;
            box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.08);
            background: var(--white);
            font-weight: 400;
            font-size: 12px;
            line-height: 133%;
            color: var(--black);
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

            .select-value {
                white-space: nowrap;
            }

            .select-arrow-down {
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                flex-shrink: 0;
            }

            .select-dropdown {
                display: none;
                position: absolute;
                top: calc(100% + 4px);
                right: 0;
                width: 100%;
                min-width: 183px;
                border-radius: 12px;
                background: #fff;
                border: 1px solid #f3f2f8;
                box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.08);
                overflow: hidden;
                z-index: 1000;

                >div {
                    max-height: 200px;
                    overflow: auto;
                    padding: 8px;

                    &::-webkit-scrollbar {
                        width: 6px;
                    }

                    &::-webkit-scrollbar-track {
                        background: #F1EEF4;
                        border-radius: 4px;
                    }

                    &::-webkit-scrollbar-thumb {
                        background: #BFC2C5;
                        border-radius: 4px;
                    }

                    span {
                        display: block;
                        padding: 9px 16px;
                        font-weight: 400;
                        font-size: 12px;
                        line-height: 133%;
                        color: var(--black);
                        cursor: pointer;
                        border-radius: 8px;
                        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

                        &:hover {
                            background: var(--grey-100);
                            color: var(--black);
                        }

                        &.active {
                            background: var(--grey-100);
                            color: var(--black);
                        }
                    }
                }
            }

            &.focus {
                .select-dropdown {
                    display: block;
                }

                .select-arrow-down {
                    transform: rotate(180deg);
                }
            }

            &.dropdown-up {
                .select-dropdown {
                    top: auto !important;
                    bottom: calc(100% + 4px) !important;
                }
            }

            &.dropdown-down {
                .select-dropdown {
                    top: calc(100% + 4px) !important;
                    bottom: auto !important;
                }
            }
        }
    }

    .order-page-content {
        display: grid;
        grid-template-columns: 1fr 262px;
        gap: 24px;

        @media (max-width: 1300px) {
            grid-template-columns: 1fr;
        }
    }

    .order-page-main {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .order-page-products {
        padding: 16px 12px 16px 16px;
        background: #fcfcfc;
        border: 1px solid #cfcdd0;
        border-radius: 6px;

        @media (max-width: 800px) {
            overflow: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;

            th {
                padding: 6px 19px;
                text-align: left;
                font-size: 14px;
                font-weight: 700;
                line-height: 18px;
                letter-spacing: 0.01em;
                color: #2e2c30;
                height: 52px;
                border: none;

                &:nth-child(1) {
                    padding: 6px 19px;
                }

                button {
                    padding: 8px 22px;
                    height: 32px;
                    background: #4e008e;
                    border-radius: 6px;
                    box-shadow: 0px -3px 0px 0px #00000014 inset;
                    font-size: 12px;
                    font-weight: 400;
                    line-height: 16px;
                    color: #fcfcfc;
                    flex-shrink: 0;
                    white-space: nowrap;
                }
            }

            tr {
                outline: 1px solid #eeecf0;
            }

            thead {
                tr {
                    outline: none;
                }
            }

            td {
                padding: 8px 19px;
                font-size: 14px;
                font-weight: 400;
                line-height: 22px;
                text-align: left;
                color: #605767;
            }

            tbody {
                .right {
                    text-align: right !important;
                }

                tr {
                    &:nth-child(1) {
                        border-radius: 6px 6px 0 0;
                    }

                    &:last-child {
                        border-radius: 0 0 6px 6px;
                    }
                }
            }
        }
    }

    .order-page-product-info {
        display: flex;
        align-items: center;

        img {
            width: 81px;
            height: 105px;
            object-fit: cover;
            margin-right: 19px;
        }
    }

    .order-page-product-actions {
        display: flex;
        align-items: center;
        gap: 8px;

        button {
            padding: 0 !important;
        }
    }

    .order-page-payment {
        padding: 32px 12px 16px;
        background: #fcfcfc;
        border: 1px solid #cfcdd0;
        border-radius: 6px;
    }

    .order-page-payment-title {
        font-weight: 700;
        font-size: 14px;
        line-height: 129%;
        letter-spacing: 0.01em;
        color: var(--black);
        margin-bottom: 16px;
        padding: 0 23px;
    }

    .order-page-payment-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #2c2433;
        border-bottom: 1px solid #eeecf0;

        div {
            padding: 21px 23px;

            &:last-child {
                text-align: right;
            }
        }

        &.total {
            font-size: 16px;
            font-weight: 700;
            line-height: 20px;
            color: #2e2c30;
        }
    }

    .order-page-history {
        padding: 24px 12px 16px 12px;
        background: #fcfcfc;
        border: 1px solid var(--grey-200);
        border-radius: 6px;

        .order-page-history-content {
            display: none;
        }

        &.active {
            .order-page-products {
                display: block;
            }

            .order-page-history-content {
                display: block;
            }

            .order-page-history-header {
                img {
                    transform: rotate(0deg);
                }
            }
        }

        .order-page-history-row {}

        .order-page-history-row-title {
            color: #605767;
            font-size: 12px;
            font-weight: 400;
            line-height: 16px;
            margin-bottom: 16px;
            padding-left: calc(24px + 16px);
        }

        .order-page-history-row-items {
            display: grid;
            grid-template-columns: 1fr;
            grid-auto-rows: max-content;
            gap: 16px;
        }

        .order-page-history-row-item {
            display: grid;
            grid-template-columns: 24px 1fr 54px;
            gap: 16px;
            font-size: 14px;
            font-weight: 400;
            line-height: 22px;
            color: #000000;
        }

        .order-page-products {
            border: none;
            padding: 0;
            display: none;

            th {
                font-size: 14px;
                font-weight: 400;
                line-height: 22px;
                color: #2e2c30;
            }

            td {
                font-size: 14px;
                font-weight: 400;
                line-height: 22px;
                color: #000000;
                padding: 24px 16px;

                b {
                    font-weight: 400;
                }
            }

            tr {
                td {
                    text-align: center;

                    &:first-child {
                        text-align: left;
                    }
                }
            }

            .order-page-product-info {
                img {
                    width: 64px;
                    height: 83px;
                    margin-left: 16px;
                }
            }
        }
    }

    .order-page-history-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: 700;
        font-size: 14px;
        line-height: 129%;
        letter-spacing: 0.01em;
        color: var(--black);
        margin-bottom: 24px;
        padding: 0 16px;

        img {
            transition: all 0.3s;
            transform: rotate(180deg);
        }
    }

    .order-page-history-type {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        font-weight: 400;
        line-height: 16px;
        color: #605767;
        padding: 0 16px;
        margin-bottom: 16px;

        span {
            padding: 2px 8px;
            background: #fbf8fd;
            border: 1px solid #a4a4b0;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 700;
            line-height: 18px;
            letter-spacing: 0.01em;
            color: #3d145e;
        }
    }

    .order-page-history-updated {
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        text-align: right;
        color: var(--black);
        margin-bottom: 16px;
        padding: 0 32px;
    }

    .order-page-history-section {
        border: 1px solid var(--grey-100);
        border-radius: 6px;
        padding: 24px 16px;

        &:last-child {
            margin-bottom: 0;
        }
    }

    .order-page-history-section-title {
        font-weight: 400;
        font-size: 12px;
        line-height: 133%;
        color: var(--grey-400);
        padding-left: 48px;
        margin-bottom: 16px;
    }

    .order-page-history-item {
        display: flex;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 16px;

        &:last-child {
            margin-bottom: 0;
        }

        .history-radio {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
        }

        .history-text {
            flex: 1;
            font-weight: 400;
            font-size: 14px;
            line-height: 157%;
            color: #000;
        }

        .history-time {
            flex-shrink: 0;
            font-weight: 400;
            font-size: 14px;
            line-height: 157%;
            color: #000;
            text-align: right;
        }
    }

    .order-page-sidebar {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .order-page-sidebar-block {
        padding: 16px 12px;
        background: #fcfcfc;
        border: 1px solid #cfcdd0;
        border-radius: 6px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .order-page-sidebar-card {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #605767;

        a {
            color: #4e008e;
        }

        span {
            color: #2e2c30;
            margin-right: 16px;
        }

        .order-page-sidebar-card-type {
            padding: 2px 8px;
            background: #fbf8fd;
            border: 1px solid #cfcdd0;
            font-size: 14px;
            font-weight: 700;
            line-height: 18px;
            letter-spacing: 0.01em;
            color: #3d145e;
        }
    }

    .order-page-sidebar-card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 8px;
        font-size: 14px;
        font-weight: 700;
        line-height: 18px;
        letter-spacing: 0.01em;
        color: #2e2c30;
    }

    .order-page-sidebar-card-content {
        display: flex;
        flex-direction: column;
        gap: 4px;

        div {
            span:first-child {
                font-weight: 600;
                color: var(--black);
            }
        }
    }
}

.chart-tooltip {
    background: #fcfcfc;
    border: 1px solid #cfcdd0;
    border-radius: 8px;
    padding: 12px 16px;
}

.chart-tooltip-date {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #4e008e;
}

.chart-tooltip-footer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chart-tooltip-value {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #2e2c30;
}

.chart-tooltip-count {
    padding: 4px 12px;
    border-radius: 16px;
    background: #f0fdf4;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #67783d;
}

.overview-page-top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 10px;

    .overview-page-title {
        margin-bottom: 0;
    }

    .overview-page-top-header-info-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .overview-page-top-header-info-wrapper-search {
        gap: 40px;
    }

    .overview-page-top-header-actions {
        display: flex;
        align-items: center;
        gap: 16px;

        .delete {
            padding: 10px 18px;
            border-radius: 12px;
            background: #c33e36;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            text-align: center;
            color: #fcfcfc;
        }

        @media screen and (max-width: 834px) {
            align-self: flex-end;
        }
    }

    .overview-page-top-header-actions-call {
        padding: 13px 24px;
        display: flex;
        align-items: center;
        gap: 8px;
        height: 42px;
        background: #4e008e;
        border-radius: 12px;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        text-align: center;
        color: #fcfcfc;

        img {
            height: 16px;
            width: 16px;
        }
    }

    .overview-page-top-header-actions-setup {
        padding: 10px 16px;
        display: flex;
        align-items: center;
        gap: 8px;
        border-radius: 12px;
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        background: var(--primary);
        color: var(--white);

        img {
            width: 16px;
            height: 16px;
        }
    }
}

.more {
    border-radius: 100%;
}

.small-calendar {
    width: 32px;
    height: 32px;
    padding: 0 !important;
    border-radius: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fcfcfc;
    background: #fcfcfc;
    box-shadow: 0px -3px 0px 0px #00000014 inset;
    flex-shrink: 0;

    img {
        height: 16px;
    }
}

.marketing-page {

    .overview-page-top-header-info-wrapper {
        gap: 40px;

        @media screen and (max-width: 834px) {

            width: 100%;

            .page-header-search {
                width: 100%;

                input {
                    width: 100%;
                }
            }
        }
    }

    .overview-page-top-header {
        margin-bottom: 56px;

        @media screen and (max-width: 834px) {
            flex-direction: column;
            width: 100%;
            align-items: flex-start;
        }
    }

    .overview-page-top-header {

        @media screen and (max-width: 834px) {
            gap: 16px;
        }
    }

    .overview-page-top-header-actions {
        @media screen and (max-width: 834px) {
            width: 100%;
            justify-content: flex-end;
        }
    }

    .marketing-delete-selected-btn {
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        text-align: center;
        color: #373239;
        border: 1px solid #c33e36;
        border-radius: 12px;
        padding: 10px 18px;
        display: none;
        justify-content: center;
        align-items: center;
        background: #fff2f2;
        cursor: pointer;
        transition: all 0.3s;

        &:hover {
            background: #fef2f2;
            color: #dc2626;
            border-color: #dc2626;
        }

        &.show {
            display: flex;
        }
    }

    .stores-page-table {

        th:nth-child(2),
        td:nth-child(2) {
            width: 80px;
            max-width: 80px;
            min-width: 80px;
        }

        th:nth-child(3),
        td:nth-child(3) {
            width: 300px;
            max-width: 300px;
            min-width: 300px;

            @media (max-width: 768px) {
                width: 200px;
                max-width: 200px;
                min-width: 200px;
            }
        }

        th:nth-child(4),
        td:nth-child(4) {
            width: 100px;
            max-width: 100px;
            min-width: 100px;

            @media (max-width: 768px) {
                width: 80px;
                max-width: 80px;
                min-width: 80px;
            }
        }

    }

    .marketing-page-link-card {
        background: #eeecf0;
        border: 1px solid #cfcdd0;
        border-radius: 24px;
        margin-bottom: 56px;
        padding: 24px 40px;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #2e2c30;
        max-width: 582px;
        width: 100%;

        @media (max-width: 800px) {
            padding: 20px;
        }
    }

    .marketing-page-link-card-title {
        font-size: 16px;
        font-weight: 700;
        line-height: 20px;
        color: #2e2c30;
        margin-bottom: 24px;
    }

    .marketing-page-link-card-link {
        margin: 8px 0 24px;
        padding: 12px 16px;
        background: #fcfcfc;
        border: 1px solid #4e008e;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;

        img {
            cursor: pointer;
        }
    }

    .marketing-page-link-card-footer {
        display: flex;
        align-items: center;
        gap: 24px;
        margin-top: 24px;
    }

    .marketing-page-cards {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 32px;

        @media (max-width: 1200px) {
            grid-template-columns: repeat(4, 1fr);
        }

        @media (max-width: 1000px) {
            grid-template-columns: repeat(2, 1fr);
        }

        @media (max-width: 800px) {
            grid-template-columns: 1fr;
        }
    }

    .marketing-page-cards-card {
        padding: 8px;
        border-radius: 6px;
        border: 1px solid transparent;

        &:hover {
            border: 1px solid #4e008e;
            box-shadow: 0px 4px 40px 0px #00000012;

            .marketing-page-cards-card-banner-info {
                opacity: 1;
                visibility: visible;
            }
        }

        .marketing-page-cards-card-title {
            font-size: 14px;
            font-weight: 400;
            line-height: 22px;
            color: #2e2c30;
            margin-bottom: 8px;
        }

        .marketing-page-cards-card-banner {
            position: relative;

            img {
                height: 208px;
                object-fit: cover;
                width: 100%;
            }
        }

        .marketing-page-cards-card-banner-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            position: absolute;
            background: #515151e8;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;

            img {
                width: 24px;
                height: 24px;
            }
        }
    }

    .marketing-page-content {
        display: grid;
        grid-template-columns: 1fr 448px;
        gap: 32px;

        @media (max-width: 1300px) {
            grid-template-columns: 1fr;
        }

        #table {
            min-width: 0;
            overflow-x: auto;
        }
    }

    .marketing-table-photo {
        height: 32px;
        width: 32px;
        object-fit: cover;
        border-radius: 200px;
    }

    .marketing-table-actions {
        display: flex;
        align-items: center;
        gap: 8px;

        button {
            border-radius: 1000px;
            padding: 8px;
            width: 32px;
            height: 32px;
            border: 1px solid #cacaca;
            box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.08);
            background: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;

            img {
                width: 16px;
                height: 16px;
            }

            &:hover {
                transform: translateY(-1px);
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 -3px 0 0 rgba(0, 0, 0, 0.08);
            }

            &:active {
                transform: translateY(0);
            }
        }

        .marketing-edit {
            &:hover {
                border-color: #4E008E;
            }
        }

        .marketing-share {
            &:hover {
                border-color: #4E008E;
            }
        }

        .marketing-delete {
            &:hover {
                border-color: #dc3545;
            }
        }
    }

    .overview-page-top-header-actions-call {
        background: #f1eef4;
        border: 1px solid #4e008e;
        padding: 10px 24px;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        text-align: center;
        color: #1e1920;
    }

    .overview-page-top-header-actions-setup {
        padding: 10px 16px;
        display: flex;
        align-items: center;
        gap: 8px;
        border-radius: 12px;
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        background: var(--primary);
        color: var(--white);

        img {
            width: 16px;
            height: 16px;
        }
    }

    .pagination {
        margin-bottom: 16px;
    }
}

.overlay {
    background: #a4a4b04a;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 10000;

    &.active {
        opacity: 1;
        visibility: visible;
    }

    .modal {
        background: #f1eef4;
        border: 1px solid #cacaca;
        position: relative;
        padding: 2px;
        border-radius: 24px;

        &.light {
            background: #ffffff;
        }

        .modal-title {
            font-weight: 600;
            font-size: 18px;
            line-height: 24px;
            letter-spacing: 0%;
            color: #1e1920;
            margin-bottom: 24px;
        }

        .modal-content {
            max-width: 1200px;
            overflow: auto;
            width: 90svw;
            padding: 32px;
            max-height: 95vh;

            input,
            .select {
                background: #fcfcfc;
            }
        }

        .modal-footer {
            display: flex;
            align-items: center;
            justify-content: end;
            margin-top: 24px;
            gap: 8px;
        }

        .modal-submit-btn {
            padding: 10px 16px;
            border-radius: 12px;
            background: #4e008e;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            margin-top: 10px;
            text-align: center;
            color: #fcfcfc;

            &.cancel {
                background: #f1eef4;
                border: 1px solid #4e008e;
                color: #373239;
            }

            &.delete {
                background: #c33e36;
            }
        }
    }

    .modal-close {
        position: absolute;
        top: 32px;
        right: 25px;
    }
}

.delete-confirmation-modal {
    .modal {
        .modal-content {
            max-width: 456px;
            width: 90vw;
        }

        .modal-title {
            font-weight: 600;
            font-size: 24px;
            line-height: 32px;
            color: #2e2c30;
            margin-bottom: 16px;
        }
    }

    .delete-modal-body {
        p {
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            color: #64626c;
            margin: 0 0 12px 0;

            strong {
                color: #2e2c30;
                font-weight: 600;
            }

            &.delete-warning {
                font-size: 13px;
                color: #9b9aa5;
                margin-bottom: 24px;
            }
        }
    }

    .delete-modal-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        margin-top: 24px;

        button {
            padding: 10px 18px;
            border-radius: 12px;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
        }

        .modal-cancel-btn {
            background: transparent;
            border: 1px solid #cacaca;
            color: #2e2c30;

            &:hover {
                border-color: #9b9aa5;
            }
        }

        .modal-delete-btn {
            background: var(--error);
            border: 1px solid var(--error);
            color: #ffffff;

            &:hover {
                background: #d32f2f;
                border-color: #d32f2f;
            }
        }
    }
}

.sidebar-burger {
    display: none;
    height: 40px;
    width: 40px;
    position: relative;
    z-index: 101;
    background: transparent;
    border: none;
    cursor: pointer;
}

@media (max-width: 750px) {
    .main-wrapper {
        grid-template-columns: 1fr;

        .main-wrapper-content {
            padding: 10px;
        }
    }

    .sidebar {
        background: #4e008e;
        position: relative;
        z-index: 100;

        .sidebar-content {
            visibility: hidden;
            opacity: 0;
            position: fixed;
            left: 0;
            right: 0;
            height: calc(100svh - 130px);
            overflow: auto;
            padding-bottom: 80px;
            z-index: 99;
        }

        &.open {
            .sidebar-content {
                opacity: 1;
                visibility: visible;
            }
        }

        .sidebar-burger {
            display: block;
            position: relative;
            z-index: 101;
        }
    }

    .overview-page-top-header {
        flex-direction: column;
        gap: 10px;
        align-items: start;
    }

    .overview-page-top-header-info-wrapper {
        width: 100%;
        justify-content: space-between;
    }

    .overview-page {
        .overview-page-create-block {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 10px;
            padding: 10px;

            button,
            .overview-page-create-block-icon {
                margin: 0;
            }
        }

        .overview-page-header {
            flex-direction: column;
            gap: 10px;
        }

        .overview-page-cards,
        .overview-page-charts {
            grid-template-columns: 1fr;
        }
    }

    .stores-page {
        .stores-page-list {
            grid-template-columns: 1fr;
        }
    }

    .order-page {
        .orders-page-table-filters {
            margin: 24px -10px 0;
        }
    }

    .reports-page {
        .reports-page-header {
            flex-direction: row;
        }
    }

    .catalog-page {
        .catalog-page-content {
            grid-template-columns: 1fr;
        }
    }
}

.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4e008e;
    min-height: 100svh;

    .login-modal {
        padding: 50px 40px 40px;
        border-radius: 0.286rem;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 95svw;
        max-width: 400px;
    }

    .login-modal-title {
        font-size: 18px;
        font-weight: 400;
        line-height: 1.2;
        margin: 8px 0 1px;
    }

    .login-input-wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;

        label {
            font-weight: 500;
            font-size: 0.8rem;
            color: #a3afb7;
        }

        input {
            width: 100%;
            display: block;
            width: 100%;
            padding: 0.429rem 1.072rem;
            font-size: 1rem;
            height: 36px;
            line-height: 1.57142857;
            color: #757575;
            background-color: #fff;
            background-image: none;
            background-clip: padding-box;
            border-bottom: 1px solid #e0e0e0;
            border-radius: 0.215rem;
            transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
        }
    }

    button {
        background: #4e008e;
        box-shadow: none;
        padding: 0.715rem 1.286rem;
        font-size: 1.286rem;
        line-height: 1.3333333333;
        border-radius: 0.286rem;
        margin-top: 40px;
        width: 100%;
        color: #fff;
        font-weight: 300;
    }
}

.account-page {
    .account-page-content {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .account-page-content-forms {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;

        @media (max-width: 1200px) {
            grid-template-columns: 1fr;
        }
    }
}

.form-block {
    background: #f1eef4;
    border: 1px solid #cacaca;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 12px;

    .form-block-fields-list {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .form-block-title {
        font-weight: 700;
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0%;
        color: #1e1920;
    }

    .inputs-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;

        &.label {
            grid-template-columns: 1fr max-content;
            align-items: end;
        }
    }

    .inputs-group-three {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 16px;

        @media (max-width: 1000px) {
            grid-template-columns: 1fr;
        }
    }

    .form-block-toggles {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .form-block-footer {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    button {
        display: block;
        padding: 10px 24px;
        border-radius: 12px;
        background: #1e1920;
        width: max-content;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        text-align: center;
        color: #fcfcfc;

        &.light {
            background: #fcfcfc;
            color: #1e1920;
            border: 1px solid #9b9aa5;
        }
    }
}

.toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #1e1920;
    position: relative;
    width: max-content;
    cursor: pointer;

    input {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        opacity: 0 !important;
        cursor: pointer;
        margin: 0 !important;
    }

    .toggle-wrapper-block {
        display: flex;
        align-items: center;
        width: 44px;
        height: 24px;
        border-radius: 24px;
        padding: 2px;
        background: #cacaca;
        cursor: pointer;
        transition: all 0.3s;

        div {
            width: 20px;
            height: 20px;
            border-radius: 100%;
            background: #fff;
            transition: all 0.3s;
        }
    }

    &.active {
        .toggle-wrapper-block {
            background: #4e008e;
            justify-content: end;

            div {
                box-shadow: 0px 1px 2px -1px #121a2b0f;
                box-shadow: 0px 1px 2px 0px #121a2b1a;
                background: #fcfcfc;
            }
        }
    }
}

.edit-order-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;

    @media screen and (max-width: 834px) {
        grid-template-columns: 1fr;
    }

    input {
        border: 1px solid #cfcdd0;
        padding: 0px 12px;
        border-radius: 12px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        cursor: pointer;
        height: 37px;
    }
}

.edit-order-save {
    padding: 8px 22px;
    height: 40px;
    background: #4e008e;
    border-radius: 6px;
    box-shadow: 0px -3px 0px 0px #00000014 inset;
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
    color: #fcfcfc;
    flex-shrink: 0;
    white-space: nowrap;
    margin: 20px auto 0;
    display: block;
}

.edit-order-modal .modal-content {
    max-width: 700px !important;
}

.form-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;

    .form-tag {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        border-radius: 12px;
        background: #fcfcfc;
        width: max-content;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        text-align: center;
        color: #1e1920;
        position: relative;
        cursor: pointer;
        border: 1px solid #9b9aa5;

        input {
            opacity: 0;
            height: 0;
            width: 0;
            position: absolute;
            top: 0;
            right: 0;
        }

        &.active {
            background: #1e1920;
            color: #fcfcfc;
        }
    }
}

.add-file {
    display: block;
    padding: 10px 24px;
    border-radius: 12px;
    background: #1e1920;
    width: max-content;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: center;
    color: #fcfcfc;
    position: relative;
    cursor: pointer;
    height: max-content;

    input {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 0;
        cursor: pointer;
    }

    &.red {
        background: #f44336;
    }
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;

    .input-wrapper-label {
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        color: #1e1920;
        padding-left: 4px;

        .required {
            color: #c33e36;
        }
    }

    .input-wrapper-info {
        display: flex;
        align-items: center;
        gap: 4px;
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0%;
        color: #3a3a3c;
    }

    input,
    textarea,
    select {
        background: #fcfcfc;
        border: 1px solid #9b9aa5;
        height: 42px;
        padding: 10px 16px;
        border-radius: 16px;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        color: #1e1920;

        &::placeholder {
            color: #9b9aa5;
        }
    }

    select {
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml;utf8,<svg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'> <path fill-rule='evenodd' clip-rule='evenodd' d='M2.00011 0.9375L7.00011 5.9375L12.0001 0.9375L13.0608 1.99816L7.53044 7.52849C7.23755 7.82138 6.76268 7.82138 6.46978 7.52849L0.939453 1.99816L2.00011 0.9375Z' fill='#4E008E'/></svg>");
        background-repeat: no-repeat;
        background-position-x: 99%;
        background-position-y: 50%;
    }

    textarea {
        height: 100px;
        resize: none;
        font-family: "Poppins", sans-serif !important;
    }

    .input-wrapper-checkboxes {
        display: flex;
        align-items: center;
        gap: 10px;

        .input-wrapper-checkbox {
            display: flex;
            align-content: center;
            gap: 10px;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            color: #1e1920;

            input {
                height: 20px;
                width: 20px;
                margin: 0;
                -webkit-appearance: radio;
                -moz-appearance: radio;
                appearance: auto;
                accent-color: #4e008e;
            }
        }
    }

    .input-wrapper-inputs-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;

        .input-wrapper-inputs-list-item {
            display: flex;
            flex-direction: column;
            gap: 5px;
            width: 60px;
        }
    }
}

.edit-product-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;

    .counter {
        display: flex;
        align-items: center;
        gap: 10px;

        button {
            width: 40px;
            display: block;
            padding: 10px;
            border-radius: 12px;
            background: #1e1920;
            font-weight: 400;
            font-size: 17px;
            line-height: 22px;
            letter-spacing: 0%;
            text-align: center;
            color: #fcfcfc;
        }

        input {
            width: 100px;
        }
    }

    .delete-btn,
    .round-action-btn {
        height: 35px;
        width: 35px;
        cursor: pointer;
    }
}

.round-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background: #fcfcfc;
    border: 1px solid #cacaca;
    box-shadow: 0px -3px 0px 0px #00000014 inset;
    padding: 8px;

    img {
        height: 100%;
    }
}

.edit-variants-modal {
    .modal-content {
        max-width: 1300px !important;
        padding: 30px !important;
    }
}

.actions-table-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.variants-page-table {
    input {
        width: 50px;
        padding: 5px;
        height: 30px;
        border-radius: 5px;
    }
}

.table-wrapper {
    width: 100%;
    overflow: auto;
}

.table-image {
    width: 50px;
    height: 50px;
    position: relative;
    background: #1e192024;
    border-radius: 2px;
    cursor: pointer;

    input {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 0;
        cursor: pointer;
    }

    div {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: all 0.3s;

        img {
            width: 20px;
            height: 20px;
        }
    }

    &:hover {
        div {
            opacity: 1;
        }
    }
}

*::-webkit-scrollbar {
    height: 8px;
    width: 7px;
}

*::-webkit-scrollbar-track {
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

*::-webkit-scrollbar-thumb {
    border-radius: 12px;
    background: #1e192024;
}

.btn {
    padding: 10px 18px;
    background: #4e008e;
    border: 1px solid #9569ba;
    border-radius: 6px;
    box-shadow: 0px -3px 0px 0px #00000014 inset;
    color: #fcfcfc;
    flex-shrink: 0;
    white-space: nowrap;
    margin: 20px auto 0;
    display: block;
    font-size: 14px;
    line-height: 157%;
    width: max-content;

    &.red {
        background: #f44336;
    }

    &.outline {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #f1eef4;
        border: 1px solid #4e008e;
        color: #373239;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        text-align: center;
        box-shadow: none;
    }
}

.dark-btn {
    padding: 10px 24px;
    border-radius: 12px;
    background: #1e1920;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: center;
    color: #fcfcfc;
}

.light-btn {
    padding: 10px 24px;
    border-radius: 12px;
    background: #f1eef4;
    border: 1px solid #cacaca;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: center;
    color: #1e1920;
    width: max-content;

    &.red {
        color: #c33e36;
        border: 1px solid #c33e36;
    }
}

.payout-page {
    .payout-page-statuses {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }

    .payout-page-actions {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 8px;

        button {
            padding: 8px 16px;
            box-shadow: 0px -3px 0px 0px #00000014 inset;
            border: 1px solid #cfcdd0;
            height: 32px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 400;
            line-height: 16px;
            color: #2e2c30;
            cursor: pointer;
            gap: 8px;
            background: #fff;
            cursor: pointer;

            &.select {
                padding: 8px;
                cursor: pointer;
            }
        }
    }

    .payout-page-table-filters {
        padding: 19px 32px;
        margin: 0 -32px 0;
        background: #eeecf0;
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;

        .filter-header-periods {
            padding: 2px;
            background: #fbf8fd;
            border-radius: 8px;
        }

        @media screen and (max-width: 834px) {
            padding: 20px 32px;
        }
    }

    .payout-page-table-filters-selects {
        display: flex;
        align-items: end;
        gap: 8px;
        flex-wrap: wrap;

        .page-header-search {
            border: 1px solid #cfcdd0;
        }

        @media screen and (max-width: 834px) {
            flex-direction: column;
            align-items: flex-start;
            width: 100%;
            gap: 16px;

            .page-header-search {
                width: 100%;

                input {
                    width: 100%;
                }
            }
        }
    }

    .payout-page-table-filters-select {
        width: 183px;

        .select {
            height: 48px;
            border-radius: 12px;
            padding: 14px 16px;

            select {
                width: 100% !important;
            }
        }

        @media screen and (max-width: 834px) {
            width: 100%;

            .select {
                max-width: 100%;
            }
        }
    }

    .payout-page-table-filters-select-label {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #2e2c30;
        margin-bottom: 8px;
    }

    .address-row {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .actions {
        display: flex;
        align-items: center;
        gap: 10px;

        button {
            margin: 0 !important;
        }
    }

    .check-input {
        input {
            width: 150px;
            height: 32px;
        }
    }
}

.alert {
    background: #f1eef4;
    border: 1px solid #cacaca;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #1e1920;
    position: relative;

    &.success {
        background: #eef4f0;
        border: 1px solid #30982b;
        color: #30982b;
    }

    &.error {
        background: #f4eeee;
        border: 1px solid #982b2b;
        color: #982b2b;
    }

    button {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-45%);
        margin: 0;
        padding: 0;
    }
}

.faq-page {
    .faq-page-list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;

        .faq-page-list-card {
            font-weight: 700;
            font-size: 16px;
            line-height: 20px;
            letter-spacing: 0%;
            text-align: center;
            color: #1e1920;
        }

        .faq-page-list-card-video {
            width: 100%;
            height: 206px;
            background: #1e1920;
            margin-bottom: 16px;
        }

        @media (max-width: 1200px) {
            grid-template-columns: repeat(3, 1fr);
        }

        @media (max-width: 1000px) {
            grid-template-columns: repeat(2, 1fr);
        }
    }
}

.table-actions {
    display: flex;
    align-items: center;
    gap: 8px;

    button {
        padding: 0;
    }
}

.fundraising-page {
    .overview-page-cards {
        grid-template-columns: 1fr 1fr 1fr;
        margin-bottom: 10px;
        padding-bottom: 24px;
        border-bottom: 1px solid #cacaca;
    }

    .overview-page-card-count {
        padding: 4px 12px !important;
        background: #f0fdf4 !important;
        border-radius: 16px !important;
        font-weight: 400 !important;
        font-size: 14px !important;
        line-height: 22px !important;
        letter-spacing: 0% !important;
        color: #67783d !important;

        &.yellow {
            background: #f4fdd4 !important;
        }
    }

    .payments-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 5px 16px;
        background: #fcfcfc;
        border-radius: 6px;
        border: 1px solid #9b9aa5;
        box-shadow: 0px 2px 4px 0px #1a2b440f;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        text-align: center;
        color: #1e1920;

        img {
            height: 16px;
            width: 16px;
        }
    }
}

.payment-history-modal {
    .modal-content {
        max-width: 750px !important;
    }

    .payment-history-table-wrapper {
        max-height: 400px;
        overflow-y: auto;
        margin: 20px 0;
    }

    .modal-title {
        border-bottom: 1px solid #e8e8e8;
        font-weight: 600;
        font-size: 18px;
        line-height: 133%;
        color: var(--black);
        padding-bottom: 24px;
    }

    .payment-history-table {
        width: 100%;
        border-collapse: collapse;

        thead {
            position: sticky;
            top: 0;
            z-index: 1;

            th {
                padding: 12px 16px;
                text-align: center;
                font-weight: 400;
                font-size: 14px;
                line-height: 157%;
                color: var(--grey-400);
                border-bottom: 1px solid #e8e8e8;
            }
        }

        tbody {
            td {
                padding: 16px;
                font-weight: 400;
                font-size: 14px;
                line-height: 157%;
                text-align: center;
                color: var(--black);
                border-bottom: 1px solid #e8e8e8;
            }

            tr:last-child td {
                border-bottom: none;
            }
        }
    }

    .loading-spinner {
        color: #605767;
        font-size: 14px;
    }
}

.design-page {
    .design-page-logos {
        margin-top: 40px;
    }

    .design-page-logos-list {
        display: flex;
        align-items: center;
        gap: 32px;
        flex-wrap: wrap;

        .design-page-logos-list-card {
            border: 1px solid #cacaca;
            border-radius: 6px;
            width: 106px;
            height: 88px;
            position: relative;

            button {
                position: absolute;
                top: -4px;
                right: -4px;
                padding: 0;
                margin: 0;
                background: #fff;
                border-radius: 100%;
                height: 14px;
                display: none;
            }

            &.selected {
                border: 1.5px solid #4e008e;

                &::before {
                    content: "";
                    display: block;
                    position: absolute;
                    top: 0;
                    right: 0;
                    bottom: 0;
                    left: 0;
                    background: #7b747480;
                    border-radius: 6px;
                }

                button {
                    display: flex;
                }
            }
        }

        .design-page-logos-list-upload {
            width: 106px;
            height: 88px;
            border-radius: 10px;
            background: #fcfcfc;
            border: 1px dashed #605767;
            padding: 6px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            font-weight: 400;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: 0%;
            text-align: center;
            color: #605767;
            gap: 4px;
            position: relative;
            cursor: pointer;

            span {
                color: #4e008e;
            }

            input {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                opacity: 0;
                cursor: pointer;
            }
        }
    }

    .design-page-block {
        background: #f1eef4;
        border: 1px solid #cacaca;
        padding: 24px;
        border-radius: 12px;

        .design-page-block-title {
            font-weight: 600;
            font-size: 18px;
            line-height: 24px;
            letter-spacing: 0%;
            color: #1e1920;
            margin-bottom: 24px;
        }
    }

    .design-page-content {
        display: grid;
        grid-template-columns: 1fr 302px;
        gap: 40px;
        margin-top: 32px;

        @media (max-width: 1300px) {
            grid-template-columns: 1fr;
        }
    }

    .design-page-coloring-desc {
        text-align: center;
        margin-bottom: 24px;

        p,
        li {
            font-family: Poppins;
            font-weight: 400;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: 0%;
            text-align: center;
            color: #1e1920;
        }

        ul {
            width: max-content;
            margin: 0 auto;
        }
    }

    .design-page-coloring-content {
        display: grid;
        grid-template-columns: max-content 390px;
        justify-content: space-between;

        @media (max-width: 700px) {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }

    .design-page-coloring-colors {
        display: flex;
        flex-direction: column;
        gap: 16px;

        .design-page-block-title {
            margin-bottom: 0;
        }

        .design-page-coloring-colors-item {
            display: flex;
            align-items: center;
            gap: 16px;

            .checkbox-input {
                margin: 0;
            }

            .design-page-coloring-colors-item-color {
                display: flex;
                align-items: center;
                gap: 4px;

                div {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 24px;
                    height: 24px;
                    border-radius: 100%;
                    background: #fcfcfc;
                    border: 1px solid #cacaca;

                    span {
                        height: 18px;
                        width: 18px;
                        border-radius: 100%;
                        border: 1px solid #cacaca;
                    }
                }
            }
        }
    }

    .design-page-coloring-preview {
        display: flex;
        flex-direction: column;
        gap: 16px;

        .design-page-block-title {
            margin-bottom: 0;
        }

        .design-page-coloring-preview-block {
            padding: 20px;
            width: 100%;
            border: 3.68px solid #cacaca;
            height: 311px;
            border-radius: 22px;
            background-size: calc(100% - 109px) !important;
        }
    }

    .design-page-coloring-footer {
        margin-top: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .design-page-group-desc {
        margin-bottom: 24px;
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0%;
        color: #1e1920;
    }

    .design-page-group-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 24px;

        .design-page-group-list-item {
            display: flex;
            align-items: center;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            color: #605767;
        }
    }
}

.marketing-create-page {
    padding: 56px 28px 32px 32px;

    .marketing-create-page-header {
        display: flex;
        align-items: start;
        justify-content: space-between;
        margin-bottom: 39px;
    }

    .marketing-create-page-header-title {
        display: flex;
        align-items: center;
        gap: 24px;
        font-weight: 700;
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 0%;
        color: #1e1920;
        margin-bottom: 8px;
    }

    .marketing-create-page-header-desc {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        color: #605767;
        padding-left: 45px;
    }

    .marketing-create-page-header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .marketing-create-content {
        display: grid;
        grid-template-columns: 1fr 343px;
        gap: 39px;

        @media (max-width: 1200px) {
            grid-template-columns: 1fr 223px;
        }

        @media (max-width: 1000px) {
            grid-template-columns: 1fr;
        }
    }

    .marketing-create-photo {
        border: 1px solid #9b9aa5;
        display: flex;
        justify-content: center;

        img {
            height: 100%;
        }
    }

    .marketing-create-form {
        display: flex;
        flex-direction: column;
        gap: 16px;

        select {
            background: none;
        }
    }
}

.top-filters-actions {
    display: flex;
    align-items: end;
    gap: 8px;
    flex-wrap: wrap;

    @media screen and (max-width: 834px) {
        width: 100%;
    }
}

.top-filters-periods {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 15px;
    flex-wrap: wrap;
}

.top-filters-periods-input {
    width: 132px;
    padding: 11px 16px;
    border-radius: 12px;
    background: #fcfcfc;
    border: 1px solid #9b9aa5;
    display: flex;
    align-items: center;
    gap: 8px;

    input {
        width: 100%;
    }

    input[type="date"]::-webkit-calendar-picker-indicator {
        color: rgba(0, 0, 0, 0);
        opacity: 1;
        display: block;
        background: url(../img/CalendarDots.svg) no-repeat;
        width: 20px;
        height: 20px;
        border-width: thin;
    }

    &.disabled {
        background: #f1eef4;
        cursor: not-allowed;
    }
}

.top-filters-btn {
    padding: 10px 24px;
    border-radius: 12px;
    background: #1e1920;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: center;
    color: #fcfcfc;

    &.purple {
        background: #4e008e;
    }

    &.delete {
        background: #c33e36;
    }
}

.store-form-colors {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-form-color-card {
    background: #fcfcfc;
    border: 1px solid #9b9aa5;
    padding: 10px 16px;
    border-radius: 16px;

    &.active {
        .store-form-color-card-list {
            display: grid;
        }
    }
}

.store-form-color-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.store-form-color-card-toggle-btn {
    width: 30px !important;
    height: 30px !important;
    padding: 0 !important;
    border-radius: 10px !important;
    font-weight: 500 !important;
    font-size: 26px !important;
}

.store-form-color-card-color {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 20px;

    input[type="checkbox"] {
        -webkit-appearance: none;
        appearance: none;

        box-sizing: border-box;
        margin: 0;
        padding: 0;

        width: 16.5px;
        height: 16.5px;
        border: 1.5px solid #9B9AA5;
        border-radius: 2px;
        background: #FCFCFC;

        position: relative;
        cursor: pointer;
    }

    input[type="checkbox"]:checked::before,
    input[type="checkbox"]:checked::after {
        content: "";
        position: absolute;
        background: #6A0DAD;
        border-radius: 1px;
    }

    input[type="checkbox"]:checked::before {
        width: 2px;
        height: 8px;
        left: 3px;
        top: 5px;
        transform: rotate(-45deg);
    }

    input[type="checkbox"]:checked::after {
        width: 2px;
        height: 16px;
        left: 10.5px;
        top: -1.5px;
        transform: rotate(45deg);
    }

    div {
        width: 18px;
        height: 18px;
        border-radius: 100%;
    }
}

.store-form-color-card-list {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    padding-left: 63px;
    margin-top: 10px;
}

.store-form {
    select {
        width: 100%;
    }
}

.settings-page {
    .settings-page-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;

        @media (max-width: 1200px) {
            grid-template-columns: repeat(3, 1fr);
        }

        @media (max-width: 1000px) {
            grid-template-columns: repeat(2, 1fr);
        }

        @media (max-width: 500px) {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    .settings-page-card {
        background: #f1eef4;
        border: 1px solid #cacaca;
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        border-radius: 12px;
        font-size: 15px;
        text-align: center;
        font-weight: 500;
        height: 150px;
        color: #000;
        justify-content: center;
        align-items: center;

        i {
            font-size: 30px;
            width: 30px;
            color: #4e008e;
        }
    }
}

.ink-color-page {
    .table-color-preview {
        height: 58px;
        width: 58px;
        border: 1px solid #efefef;
        border-radius: 5px;
    }

    .ink-color-page-table-filters {
        padding: 19px 32px;
        margin: 24px -32px 0;
        background: #eeecf0;
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;

        .filter-header-periods {
            padding: 2px;
            background: #fbf8fd;
            border-radius: 8px;
        }

        @media (max-width: 800px) {
            margin: 24px -10px 0;
            padding: 20px;
        }
    }

    .ink-color-page-table-filters-selects {
        display: flex;
        align-items: end;
        gap: 8px;
        flex-wrap: wrap;

        .page-header-search {
            border: 1px solid #cfcdd0;
        }
    }

    .ink-color-page-table-filters-select {
        width: 90px;

        .select {
            height: 48px;
            border-radius: 16px;
            padding: 14px 16px;

            select {
                width: 100% !important;
            }
        }
    }

    .ink-color-page-table-filters-select-label {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #2e2c30;
        margin-bottom: 8px;
    }
}

.settings-page {
    display: grid;
    grid-template-columns: 224px minmax(0, 1fr);

    @media (max-width: 1200px) {
        grid-template-columns: 200px minmax(0, 1fr);
    }

    @media (max-width: 834px) {
        grid-template-columns: 1fr;
    }

    .settings-page-links {
        background: #f1eef4;
        padding: 52px 0 32px 32px;
    }

    .settings-page-links-title {
        font-weight: 700;
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 0%;
        vertical-align: middle;
        color: #47424a;
        margin-bottom: 24px;
    }

    .settings-page-links-link {
        display: block;
        margin-bottom: 4px;
        padding: 12px 24px;
        border-radius: 22px 0 0 22px;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        color: #373239;
        transition: all 0.3s;

        &.active,
        &:hover {
            background: #cacaca;
        }
    }

    .settings-page-wrappper {
        padding: 56px 0;
        overflow-x: auto;
        overflow-y: visible;
        min-width: 0;
        max-width: 100%;
    }

    .settings-page-tabs {
        width: 100%;
        display: flex;
        align-items: center;
        padding-left: 36px;
        border-bottom: 1px solid #cacaca;
        height: max-content;
        gap: 4px;

        @media screen and (max-width: 834px) {
            flex-wrap: nowrap;
            width: 100%;
            min-width: 100%;
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;

            a {
                flex-shrink: 0;
                white-space: nowrap;
                min-width: fit-content;
            }
        }

        a {
            padding: 10px 24px;
            border-radius: 22px 22px 0 0;
            border: 1px solid #cacaca;
            border-bottom: none;
            background: #fcfcfc;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            color: #605767;
            cursor: pointer;

            &.active {
                background: #3d145e;
                border: 1px solid #9b9aa5;
                border-bottom: none;
                box-shadow: 0px 0px 5px 2px #914cb845;
                font-weight: 700;
                letter-spacing: 1%;
                color: #fff;
            }
        }
    }

    .settings-page-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 24px 32px;
        flex-wrap: wrap;
        gap: 10px;

        @media screen and (max-width: 480px) {
            padding: 24px 10px;

            .page-header-search {
                width: 100%;

                input {
                    width: 100%;
                }
            }
        }

        .btn {
            margin: 0;
            padding: 10px 18px;
            border-radius: 12px;
            cursor: pointer;
        }

        .settings-page-header-actions {
            display: flex;
            align-items: center;
            gap: 8px;

            button {
                padding: 10px 18px;
                background: #f1eef4;
                border: 1px solid #4e008e;
                border-radius: 12px;
                font-weight: 400;
                font-size: 14px;
                line-height: 22px;
                letter-spacing: 0%;
                text-align: center;
                color: #373239;
                height: 42px;

                &.delete {
                    background: #fff2f2;
                    border: 1px solid #c33e36;
                }
            }
        }
    }

    .page-header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: 16px;
    }

    .table-color {
        width: 24px;
        height: 24px;
        border-radius: 4px;
        background: grey;
    }

    .settings-page-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 32px;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;

        .pagination {
            margin: 0;
        }
    }

    .setting-page-per-view {
        display: flex;
        align-items: center;
        gap: 8px;

        span {
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            color: #373239;
        }

        .select {
            width: 78px;
            padding: 10px 16px;
        }
    }

    .table-product-image {
        width: 48px;
        height: 48px;
        object-fit: cover;
    }
}

.color-input {
    height: 44px !important;
    width: 44px !important;
    border-radius: 4px !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
}

.input-file {
    position: relative;
    cursor: pointer;
    padding: 10px 16px;
    background: #fcfcfc;
    border: 1px solid #9b9aa5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #373239;
    width: 100%;

    button {
        padding: 2px 16px;
        background: #4e008e;
        box-shadow: 0px -3px 0px 0px #00000014 inset;
        border-radius: 6px;
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0%;
        text-align: center;
        color: #fff;
    }

    input {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 0;
        cursor: pointer;
    }
}

.files-list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;

    div {
        height: 72px;
        width: 72px;
        border-radius: 12px;
        background: #fff;
        overflow: hidden;
    }

    img {
        height: 72px;
        width: 72px;
        border-radius: 12px;
        background: #fff;
    }
}

.general-settings-video {
    .general-settings-video-wrapper {
        padding: 24px 32px 54px;
    }

    .general-settings-video-welcome {
        padding: 24px;
        background: #f1eef4;
        border: 1px solid #cacaca;
        border-radius: 6px;
        margin-bottom: 24px;
    }

    .general-settings-video-welcome-title {
        font-weight: 600;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0%;
        margin-bottom: 24px;
    }

    .general-settings-video-welcome-footer {
        display: flex;
        align-items: start;
        gap: 48px;
        flex-wrap: wrap;
    }

    .general-settings-video-welcome-label {
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        margin-bottom: 8px;
    }

    .general-settings-video-welcome-link-wrapper {
        display: flex;
        align-items: center;
        gap: 16px;

        button {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 13px 18px;
            border: 1px solid #4e008e;
            border-radius: 12px;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            color: #373239;
            height: 42px;
        }
    }

    .general-settings-video-welcome-link {
        padding: 10px 24px 10px 16px;
        background: #f1eef4;
        border: 1px solid #9b9aa5;
        border-radius: 12px;

        a {
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            text-decoration: underline;
            color: #373239;
            display: block;
            max-width: 304px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
    }

    .general-settings-video-faq {
        padding: 24px;
        background: #f1eef4;
        border: 1px solid #cacaca;
        border-radius: 6px;
    }

    .general-settings-video-faq-header {
        display: flex;
        align-items: start;
        justify-content: space-between;
        margin-bottom: 24px;

        button {
            padding: 10px 18px;
            background: #4e008e;
            border-radius: 12px;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            text-align: center;
            color: #fcfcfc;
        }
    }

    .general-settings-video-faq-title {
        font-weight: 600;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0%;
    }

    .general-settings-video-faq-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .general-settings-video-faq-list-item {
        display: grid;
        grid-template-columns: 1fr max-content max-content;
        gap: 16px;
        align-items: end;

        @media (max-width: 1400px) {
            grid-template-columns: 1fr;
        }
    }

    .general-settings-video-faq-list-item-field {}

    .general-settings-video-faq-list-item-field-label {
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        color: #373239;
        margin-bottom: 8px;
    }

    .general-settings-video-faq-list-item-field-value {
        padding: 10px 24px;
        border: 1px solid #9b9aa5;
        border-radius: 12px;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        color: #373239;

        a {
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            text-decoration: underline;
            color: #373239;
            display: block;
            max-width: 304px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
    }

    .general-settings-video-faq-list-item-actions {
        display: flex;
        align-items: center;
        gap: 8px;

        button {
            padding: 10px 18px;
            border: 1px solid #4e008e;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: Poppins;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            text-align: center;
            color: #373239;

            &.delete {
                background: #fff2f2;
                border: 1px solid #c33e36;
            }
        }
    }

    .general-settings-lang-field {
        .general-settings-lang-field-label {
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            color: #000;
            margin-bottom: 8px;
        }

        textarea {
            background: #fcfcfc;
            width: 100%;
            height: 92px;
            border-radius: 8px;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            padding: 24px 16px;
            color: #2c2433;

            &::placeholder {
                color: #9b9aa5;
            }

            &:focus {
                border: 1px solid #4e008e;
            }
        }
    }

    .general-settings-submit-main-btn {
        display: block;
        padding: 10px 18px;
        border-radius: 12px;
        background: #4e008e;
        margin: 24px auto;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        text-align: right;
        color: #fcfcfc;
    }

    .table-textarea {
        background: #fcfcfc;
        width: 100%;
        height: 54px;
        border-radius: 8px;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        padding: 16px;
        color: #2c2433;
        border: 1px solid #cacaca;
        resize: vertical;

        &::placeholder {
            color: #9b9aa5;
        }

        &:focus {
            border: 1px solid #4e008e;
        }
    }
}

.settings-general-approval-textarea {
    resize: vertical !important;
    padding: 24px 16px !important;
    height: 164px !important;
}

.general-settings-content-wrapper {
    padding: 24px 32px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #373239;
    position: relative;

    .general-settings-card {
        background: #f1eef4;
        border: 1px solid #cacaca;
        padding: 24px;
        border-radius: 12px;
        margin-bottom: 24px;

        .general-settings-card-title {
            font-weight: 700;
            font-size: 16px;
            line-height: 20px;
            letter-spacing: 0%;
            color: #373239;
            margin-bottom: 16px;
        }
    }

    input {
        background: #fcfcff;
        border-radius: 12px;
        border: 1px solid #cacaca;
        padding: 10px 16px;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        color: #373239;
        width: 100%;

        &::placeholder {
            color: #9b9aa5;
        }

        &:focus {
            border: 1px solid #4e008e;
        }
    }

    textarea {
        background: #fcfcfc;
        border: 1px solid #cacaca;
        border-radius: 8px;
        padding: 16px;
        font-family: Poppins;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        color: #373239;
        margin-top: 8px;
        resize: vertical;
        height: 160px;
        width: 100%;

        &::placeholder {
            color: #9b9aa5;
        }

        &:focus {
            border: 1px solid #4e008e;
        }
    }

    .general-settings-fulfillment-prices {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 16px;
        align-items: end;

        input {
            margin-top: 8px;
        }

        @media (max-width: 1350px) {
            grid-template-columns: 1fr;
        }
    }

    .general-settings-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-bottom: 24px;

        .general-settings-card {
            margin-bottom: 0;
        }

        @media (max-width: 1350px) {
            grid-template-columns: 1fr;
        }
    }

    .general-settings-card-fields {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;

        input {
            margin-top: 8px;
        }
    }

    .general-settings-card-field-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .general-settings-card-field-toggle-toggle {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .general-settings-card-fields-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        align-items: end;

        @media (max-width: 1200px) {
            grid-template-columns: 1fr;
        }
    }

    .general-settings-card-fulfillment-desc {
        display: grid;
        grid-template-columns: 1fr;
        gap: 17px;
        margin-bottom: 24px;
    }

    .general-settings-card-textarea-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-bottom: 8px;

        @media (max-width: 1350px) {
            grid-template-columns: 1fr;
        }
    }

    .general-settings-card-textarea-small {
        height: 124px;
    }

    .general-settings-card-footer-tools {
        display: flex;
        align-items: center;
        gap: 24px;
        margin-bottom: 24px;
        flex-wrap: wrap;
    }

    .general-settings-card-footer-tools-color {
        display: flex;
        flex-direction: column;
        align-items: center;

        input {
            margin-top: 12px;
            width: 24px;
            height: 24px;
            border-radius: 100%;
            padding: 0;
            border: none;
            padding: 3px;
            border: 1px solid #cacaca;
        }

        input[type="color"]::-webkit-color-swatch {
            border: none;
            border-radius: 4px;
            padding: 0;
        }

        input[type="color"]::-webkit-color-swatch-wrapper {
            border: none;
            border-radius: 4px;
            padding: 0;
        }
    }

    .select {
        background: #fcfcfc;
        padding: 10px 16px;

        select {
            color: #605767;
        }
    }

    .general-settings-card-footer-checkbox {
        display: flex;
        align-items: center;
        gap: 4px;
        color: #47424a;

        .checkbox-input active {
            margin: 0;
        }
    }

    .general-settings-footer-save {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px;
        background: #faf2e5;
        border: 1.5px solid #fbb041;
        box-shadow: 0px 16px 20px 0px #2f425326;
        border-radius: 6px;
        position: sticky;
        bottom: 10px;
    }

    .general-settings-footer-save-warning {
        display: flex;
        align-items: center;
        gap: 14px;
        font-weight: 400;
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0%;
        color: #373239;
    }

    .general-settings-footer-save-actions {
        display: flex;
        align-items: center;
        gap: 12px;

        .btn {
            margin: 0;
            border-radius: 12px;
            padding: 10px 16px;
            height: 42px;
        }
    }
}

.settings-logos-page {
    padding: 56px 32px;

    .settings-logos-page-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .settings-logos-page-list-item {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .settings-logos-page-list-item-drag {
        cursor: grab;
    }

    .settings-logos-page-list-item-value {
        padding: 10px 16px;
        background: #fcfcff;
        border-radius: 12px;
        border: 1px solid #cacaca;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        color: #373239;
        width: 100%;
    }

    .settings-logos-page-list-item-delete {
        padding: 13px 18px;
        width: 52px;
        height: 42px;
        background: #fff2f2;
        border-radius: 12px;
        border: 1px solid #c33e36;
    }
}

.settings-card {
    padding: 24px;
    background: #f1eef4;
    border: 1px solid #cacaca;
    border-radius: 12px;

    .settings-card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;

        button {
            padding: 10px 16px;
            border-radius: 12px;
            background: #4e008e;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            text-align: center;
            color: #fcfcfc;
        }
    }

    .settings-card-header-title {
        font-weight: 700;
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0%;
        color: #373239;
    }
}

.breadcrubs {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #373239;
    margin-bottom: 24px;

    a {
        color: #605767;

        @media screen and (max-width: 440px) {
            min-width: 50px;
            text-wrap: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex-wrap: nowrap;
            white-space: nowrap;
        }
    }

    .breadcrubs-link-second {
        @media screen and (max-width: 440px) {
            min-width: 30px;
            text-wrap: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex-wrap: nowrap;
            white-space: nowrap;
        }
    }

    .breadcrubs-link {
        padding-right: 5px;
    }

    span {
        padding-left: 5px;

        @media screen and (max-width: 440px) {
            min-width: 100px;
            text-wrap: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex-wrap: nowrap;
            white-space: nowrap;
        }
    }
}

.settings-vendor-wrappper {
    padding: 56px 32px;

    .settings-vendor-wrappper-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;

        .page-header-search {
            width: 240px;
        }
    }

    .settings-vendor-wrappper-header-back {
        display: flex;
        align-items: center;
        gap: 24px;
        font-weight: 600;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0%;
        color: #373239;
    }

    .settings-logos-page {
        padding: 0 !important;
    }

    .settings-vendor-wrappper-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;

        @media (max-width: 1300px) {
            grid-template-columns: 1fr 300px;
        }

        @media (max-width: 1250px) {
            grid-template-columns: 1fr;
        }
    }

    .settings-vendor-wrappper-info {
        padding: 16px 12px;
        background: #fcfcfc;
        border: 1px solid #cacaca;
        border-radius: 6px;

        h3 {
            font-weight: 700;
            font-size: 16px;
            line-height: 20px;
            letter-spacing: 0%;
            color: #373239;
            margin-bottom: 4px;
        }

        div {
            font-size: 14px;
            line-height: 18px;
            letter-spacing: 1%;
            color: #373239;
            margin-top: 4px;
        }
    }
}

.success-message {
    position: fixed;
    z-index: 1000;
    top: 40px;
    right: 24px;
    padding: 12px 26px 12px 12px;
    background: #f4fdd4;
    border: 1px solid #aed44c;
    box-shadow: 0px 16px 20px 0px #2f425326;
    border-radius: 6px;
    display: flex;
    align-items: start;
    gap: 8px;
    max-width: 360px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #373239;

    button {
        position: absolute;
        top: 12px;
        right: 12px;
    }
}

.settings-sanmar-wrapper {
    .settings-sanmar-wrapper-order-form {
        padding: 24px 32px;

        .settings-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;

            @media (max-width: 1200px) {
                grid-template-columns: 1fr;
            }

            .label {
                font-weight: 400;
                font-size: 14px;
                line-height: 22px;
                letter-spacing: 0%;
                color: #000000;
                margin-bottom: 8px;
            }

            input,
            textarea {
                padding: 10px 16px;
                border: 1px solid #cacaca;
                background: #fcfcfc;
                font-weight: 400;
                font-size: 14px;
                line-height: 22px;
                letter-spacing: 0%;
                color: #373239;
                border-radius: 12px;
                width: 100%;

                &:focus {
                    border: 1px solid #4e008e;
                    box-shadow: 0px 0px 0px 3px #3639aa1a;
                }
            }

            textarea {
                height: 120px;
                resize: vertical;
            }

            .settings-sanmar-wrapper-order-form-large-textarea {
                grid-column: 1/3;

                @media (max-width: 1200px) {
                    grid-column: 1/2;
                }

                textarea {
                    height: 76px;
                }
            }
        }
    }
}

.sku-modal {
    .modal-content {
        max-width: 540px !important;
    }

    .alternate-sku-title {
        margin-top: 40px;
    }

    .alternate-sku-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .alternate-sku-list-item {
        display: flex;
        align-items: center;
        gap: 8px;

        input {
            padding: 10px 16px;
            width: 100%;
            border-radius: 12px;
            background: #f1eef4;
            border: 1px solid #9b9aa5;
        }

        button {
            display: flex;
            align-items: center;
            height: 42px;
            padding: 13px 18px;
            background: #f1eef4;
            border: 1px solid #4e008e;
            border-radius: 12px;

            &.delete {
                background: #fff2f2;
                border: 1px solid #c33e36;
            }
        }
    }
}

.table-status-bag {
    padding: 0.5px 8px;
    font-weight: 500;
    font-size: 12px;
    line-height: 155%;
    letter-spacing: 0%;
    text-align: center;
    color: #9b9aa5;
    background: #f1eef4;
    border: 1px solid #9b9aa5;
    border-radius: 16px;
    width: max-content;

    &.approved {
        background: #f4fdd4;
        border: 1px solid #aed44c;
        color: #aed44c;
    }
}

.settings-requests-flash-store-wrapper {
    padding: 0 32px;

    @media screen and (max-width: 440px) {
        padding: 0 16px;
    }

    .breadcrubs {
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        vertical-align: middle;
        text-decoration-style: solid;
        text-decoration-offset: 0%;
        text-decoration-thickness: 0%;
        color: #000;
        display: flex;
        align-items: center;
        gap: 2px;
        margin-bottom: 24px;

        span {
            text-decoration: underline;
        }

        a {
            color: #000;
            text-decoration: none;
        }
    }

    .settings-requests-flash-store-wrapper-content {
        padding: 24px;
        background: #f1eef4;
        border: 1px solid #cacaca;
        border-radius: 6px;
        height: 826px;
        display: flex;
        flex-direction: column;
    }

    .settings-requests-flash-store-wrapper-content-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
        flex-shrink: 0;

        button {
            padding: 10px 16px;
            background: #4e008e;
            border-radius: 12px;
            border: 1px solid #cacaca;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            text-align: center;
            color: #fcfcfc;
        }
    }

    .settings-requests-flash-store-wrapper-content-header-title {
        display: flex;
        align-items: center;
        gap: 24px;
        font-weight: 600;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0%;
        color: #373239;
        text-decoration: none;
        cursor: pointer;
        transition: opacity 0.2s ease;

        &:hover {
            opacity: 0.8;
        }
    }

    .settings-requests-flash-store-wrapper-content-list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        align-content: start;
        padding-right: 5px;

        /* Custom scrollbar */
        &::-webkit-scrollbar {
            width: 8px;
        }

        &::-webkit-scrollbar-track {
            background: #e0dae5;
            border-radius: 4px;
        }

        &::-webkit-scrollbar-thumb {
            background: #9b9aa5;
            border-radius: 4px;

            &:hover {
                background: #7a7985;
            }
        }

        @media screen and (max-width: 1300px) {
            grid-template-columns: repeat(3, 1fr);
        }

        @media screen and (max-width: 1100px) {
            grid-template-columns: repeat(2, 1fr);
        }

        @media screen and (max-width: 800px) {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    .settings-requests-flash-store-wrapper-content-list-card {
        padding: 8px;
        background: #fcfcfc;
        border-radius: 6px;
        border: 1px solid transparent;
        transition: border-color 0.2s ease;

        &.selected {
            border: 1px solid var(--primary);
        }
    }

    .settings-requests-flash-store-wrapper-content-list-card-header {
        display: grid;
        grid-template-columns: 18px 1fr;
        gap: 12px;
        margin-bottom: 4px;
        font-weight: 700;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0%;
        color: #373239;
    }

    .settings-requests-flash-store-wrapper-content-list-card-photo {
        height: 208px;
        object-fit: cover;
        margin: 0 auto 8px;
        display: block;
    }

    .settings-requests-flash-store-wrapper-content-list-card-info-text-row {
        display: flex;
        margin-bottom: 8px;
        align-items: center;
        gap: 8px;

        &.align-start {
            align-items: start;
        }

        div {
            font-weight: 400;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: 0%;
            vertical-align: middle;
            color: #605767;
            width: max-content;
            white-space: nowrap;
        }

        span {
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            vertical-align: middle;
            color: #373239;
        }
    }

    .settings-requests-flash-store-wrapper-content-list-card-info-text-tag {
        padding: 2px 8px;
        background: #fbf8fd;
        border: 1px solid #cacaca;
        font-weight: 700;
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 1%;
        color: #3d145e;
        width: max-content;
    }

    .settings-requests-flash-store-wrapper-content-list-card-info-text-tags {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100% !important;
    }

    .settings-requests-flash-store-wrapper-content-list-card-info-update {
        border-radius: 6px;
        padding: 8px 16px;
        box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.08);
        background: var(--primary);
        font-weight: 400;
        font-size: 12px;
        line-height: 133%;
        text-align: center;
        color: var(--white);
    }

    .settings-requests-flash-store-wrapper-content-list-card-info-select {
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0%;
        color: #605767;
        display: flex;
        flex-direction: column;
        gap: 8px;

        select {
            width: 100%;
        }

        .unapproved-product-select {
            width: 100%;
            height: 42px;
            border: 1px solid #9b9aa5;
            border-radius: 12px;
            padding: 10px 16px;
            background: #fcfcfc;
            font-weight: 400;
            font-size: 14px;
            line-height: 157%;
            color: #605767;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;

            &:hover {
                border-color: var(--primary);
            }

            &.focus {
                border-color: var(--primary);

                .select-arrow-down {
                    transform: rotate(-90deg);
                }
            }

            .select-value {
                flex: 1;
                text-align: left;
            }

            .select-arrow-down {
                width: 16px;
                height: 16px;
                transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                flex-shrink: 0;
                transform: rotate(90deg);
            }

            .select-dropdown {
                position: absolute;
                top: calc(100% + 4px);
                left: 0;
                right: 0;
                background: #fcfcfc;
                border-radius: 12px;
                display: none;
                z-index: 100;
                max-height: 200px;
                overflow-y: auto;
                box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.08);

                div {
                    display: flex;
                    flex-direction: column;
                    gap: 4px;
                }

                span {
                    padding: 8px 12px;
                    border-radius: 8px;
                    cursor: pointer;
                    transition: background 0.2s ease;
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 157%;
                    color: #605767;

                    &:hover {
                        background: #f1eef4;
                    }

                    &.active {
                        background: #f1eef4;
                    }
                }

                &.dropdown-up {
                    top: auto;
                    bottom: calc(100% + 4px);
                }
            }

            &.focus .select-dropdown {
                display: block;
            }
        }
    }
}

.update-tags-modal {
    .modal-content {
        max-width: 544px !important;
    }

    .update-tags-modal-tags {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        margin: 24px 0;

        .tag-item {
            padding: 10px 16px;
            background: #fcfcfc;
            border: 1px solid #cacaca;
            border-radius: 12px;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            color: #373239;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            user-select: none;

            &:hover {
                background: #f1eef4;
                border-color: #9569ba;
            }

            &.active {
                background: var(--violet-100);
                border: 1px solid var(--violet-200);
            }
        }
    }
}

.settings-profit-wrapper {
    .settings-card {
        margin: 24px 32px;
    }

    .settings-card-header {
        button {
            padding: 10px 18px !important;
            background: #f1eef4;
            border: 1px solid #4e008e;
            height: 36px;
        }
    }

    .settings-profit-wrapper-list {
        display: grid;
        grid-template-columns: 1fr max-content 1fr max-content;
        gap: 8px 40px;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        color: #373239;

        @media (max-width: 1200px) {
            gap: 8px;
        }

        input {
            padding: 10px 16px;
            background: #fcfcfc;
            border-radius: 12px;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            color: #373239;
            border: 1px solid #cacaca;
            width: 100%;
        }

        input {
            margin-bottom: 16px;
        }
    }

    .settings-profit-wrapper-list-toggle {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 16px;
    }

    .settings-profit-wrapper-list-delete-btn {
        padding: 13px 18px;
        background: #fff2f2;
        border: 1px solid #c33e36;
        border-radius: 12px;
        height: 42px;
    }
}

.table-product-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.add-product-page {
    padding: 32px;

    @media screen and (max-width: 1210px) {
        .load-more-btn {
            margin-left: 0;
        }
    }

    @media screen and (max-width: 834px) {
        padding: 32px 16px;

        .add-product-page-header,
        .add-product-page-header-content,
        .page-header-search {
            width: 100%
        }

        .preloader-wrapper {
            margin-top: 24px;
        }

        .load-more-btn {
            margin-left: unset;
            margin: 24px auto;
        }
    }

    .add-product-page-top {
        padding: 0 0 24px;
    }

    .breadcrubs {
        margin-bottom: 32px;
    }

    .add-product-page-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }

    .add-product-page-header-title {
        display: flex;
        align-items: center;
        gap: 16px;
        font-weight: 700;
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 0%;
        vertical-align: middle;
        color: #373239;
    }

    .orders-page-table-filters {
        @media screen and (max-width: 1210px) {
            margin: 0 -32px;
            padding: 20px 16px;
        }

        @media screen and (max-width: 834px) {
            .orders-page-table-filters-select .select {
                max-width: 100%;
            }

            margin: 0 -16px;
        }
    }

    .orders-page-table-filters-selects {
        width: 100%;
        gap: 22px;
        flex-wrap: wrap;
    }

    .orders-page-table-filters-select {
        width: 100%;
        max-width: 343px;

        flex-shrink: 0;

        .select {
            max-width: 343px;
            width: 100%;
            flex-shrink: 0;
        }

        @media screen and (max-width: 834px) {
            max-width: 100%;
            width: 100%;
        }
    }

    .add-product-page-header-add {
        padding: 10px 16px;
        border-radius: 12px;
        background: #4e008e;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        text-align: center;
        color: #fcfcfc;
    }

    .add-product-page-header-content {
        display: flex;
        align-items: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .add-product-page-list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px 32px;
        margin-top: 24px;
        position: relative;
        flex: 1;
        min-width: 0;

        @media screen and (max-width: 1210px) {
            grid-template-columns: repeat(3, 1fr);
        }

        @media screen and (max-width: 1000px) {
            grid-template-columns: repeat(2, 1fr);
        }

        @media screen and (max-width: 834px) {
            margin-top: 0;
        }

        @media screen and (max-width: 768px) {
            grid-template-columns: repeat(1, 1fr);
        }

        @media screen and (min-width: 2000px) {
            grid-template-columns: repeat(6, 1fr);
        }
    }

    .add-product-page-header-title-link {
        width: 24px;
        height: 24px;
    }

    .add-product-page-card {
        background: #fcfcfc;
        border: 1px solid #cacaca;
        border-radius: 12px;
        padding: 8px 8px 16px;
        position: relative;
        cursor: pointer;
        transition: all 0.3s ease;

        &:hover:not(.disabled) {
            border-color: var(--primary);
        }

        &.selected {
            border: 1px solid var(--primary);
            box-shadow: -1px 0 7px 3px rgba(114, 79, 114, 0.17);
        }

        &.disabled {
            opacity: 0.5;
            cursor: not-allowed;

            &::before {
                content: "";
                display: block;
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: transparent;
                z-index: 2;
                cursor: not-allowed;
            }
        }
    }

    .add-product-page-card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 6px;
    }

    .add-product-page-card-header-tag {
        padding: 2px 8px;
        background: #fbb041;
        border: 1px solid #cacaca;
        border-radius: 20px;
        font-family: Poppins;
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0%;
        color: #373239;
    }

    .add-product-page-card-img {
        height: 220px;
        max-width: 256px;
        object-fit: contain;
        border-radius: 200px;
        width: 100%;
        margin: 0 auto 16px;
        display: block;
    }

    .add-product-page-card-title {
        font-family: Poppins;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        vertical-align: middle;
        color: #373239;
        margin-bottom: 8px;
        text-align: center;
    }

    .add-product-page-card-price {
        font-family: Poppins;
        font-weight: 700;
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 1%;
        text-align: center;
        color: #373239;
    }

    .add-product-page-content-wrapper {
        display: flex;
        gap: 20px;
        align-items: flex-start;

        @media screen and (max-width: 834px) {
            flex-direction: column-reverse;
        }
    }

    .add-product-page-sidebar {
        opacity: 0;
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;

        &:not(:empty) {
            opacity: 1;
            pointer-events: auto;
        }

        @media screen and (max-width: 1210px) {
            position: fixed;
            bottom: 24px;
            right: 32px;
            z-index: 100;
            width: 35%;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
        }

        @media screen and (max-width: 834px) {
            position: unset;
            width: 100%;
            z-index: unset;
        }
    }

    .add-product-page-sidebar:empty {
        display: none;
    }

    .add-product-page-switcher {
        border-radius: 12px;
        padding: 10px 16px;
        background: var(--primary);
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        text-align: center;
        color: var(--white);
    }

    .orders-page-table-filters-selects {
        align-items: flex-end;
    }

    .add-product-page-selected-top {
        padding: 16px;
        border-radius: 12px;
        margin-top: 24px;
        background: #4e008e;
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 200px;
        min-width: 200px;

        @media screen and (max-width: 1210px) {
            flex-direction: column;
            width: 100%;
            min-width: 100%;
            margin-top: 0;
            border-radius: 12px;
            padding: 12px 16px;
            gap: 12px;
        }
    }

    .add-product-page-selected-top-add {
        padding: 10px 18px;
        border-radius: 12px;
        background: #fbb041;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        text-align: center;
        color: #373239;
        width: 100%;

        @media screen and (max-width: 1210px) {
            width: 120px;
            min-width: 120px;
            white-space: nowrap;
            padding: 8px 16px;
            font-size: 13px;
            line-height: 20px;
            align-self: center;
        }
    }

    .add-product-page-selected-top-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        max-height: calc(100vh - 200px);
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 4px;

        @media screen and (max-width: 1210px) {
            flex-direction: row;
            max-height: none;
            overflow-y: hidden;
            overflow-x: auto;
            padding-right: 0;
            padding-bottom: 4px;
            flex: 1;
            gap: 12px;
        }
    }

    .add-product-page-selected-top-list::-webkit-scrollbar {
        width: 6px;

        @media (max-width: 1210px) {
            width: auto;
            height: 6px;
        }
    }

    .add-product-page-selected-top-list::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }

    .add-product-page-selected-top-list::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }

    .add-product-page-selected-top-list::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }

    .add-product-page-selected-top-list-card {
        position: relative;
        width: 116px;
        height: 116px;
        border: 1px solid #cacaca;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;

        @media (max-width: 1210px) {
            flex-shrink: 0;
            width: 100px;
            height: 80px;
        }

        img {
            height: 100%;
        }

        button {
            width: 20px;
            height: 20px;
            position: absolute;
            top: 5px;
            right: 5px;
            padding: 0;
            display: flex;
            justify-content: center;
        }
    }
}

.load-more-btn {
    display: block;
    padding: 10px 18px;
    border-radius: 12px;
    background: #4e008e;
    margin: 24px auto;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: right;
    color: #fcfcfc;
    width: max-content;
}

.preloader-wrapper {
    position: relative;
}

.preloader {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 150px;
}

.lds-ring,
.lds-ring div {
    box-sizing: border-box;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid currentColor;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: currentColor transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.table-actions {
    display: flex;
    align-items: center;
    gap: 8px;

    .edit-btn {
        padding: 5px 16px;
        border-radius: 6px;
        background: #fcfcfc;
        border: 1px solid #9b9aa5;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 400;
        font-size: 14px;
        letter-spacing: 0%;
        text-align: center;
        color: #373239;
    }

    .delete-btn {
        padding: 5px 16px;
        border-radius: 6px;
        border: 1px solid #c33e36;
        box-shadow: 0px 2px 4px 0px #1a2b440f;
        background: #fff2f2;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 400;
        font-size: 14px;
        letter-spacing: 0%;
        text-align: center;
        color: #373239;
    }
}

.table-more-btn {
    height: 32px;
    position: relative;

    .table-more-btn-dropdown {
        position: absolute;
        top: 100%;
        right: 0;
        background: #f1eef4;
        box-shadow: 0px 16px 24px 0px #0000002e;
        border-radius: 6px;
        padding: 4px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;

        div {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #fcfcfc;
            padding: 8px 12px;
            border: 1px solid #9b9aa5;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            color: #373239;
            border-radius: 6px;
        }
    }

    &:focus {
        .table-more-btn-dropdown {
            opacity: 1;
            visibility: visible;
        }
    }
}

.products-manage-page {
    .orders-page-table-filters {
        gap: 24px;
    }

    .orders-page-table-filters-selects {
        .select {
            height: auto;
            padding: 10px 16px;
            border-radius: 12px;
            border: 1px solid var(--grey-300);
            background: var(--grey-100);
            font-size: 14px;
            font-weight: 400;
            line-height: 157%;
            color: var(--grey-400);
        }
    }

    .top-filters-actions {
        margin-left: auto;
    }

    .table-group-custom-select {
        width: 148px;
        height: 42px !important;
        border-radius: 12px;
        padding: 10px 16px;
        border: 1px solid var(--grey-300);
        position: relative;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

        .select-value {
            font-weight: 400;
            font-size: 14px;
            line-height: 157%;
            color: var(--grey-400);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex: 1;
            text-align: left;
        }

        .select-arrow-down {
            width: 16px;
            height: 16px;
            transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
        }

        &:hover {
            border-color: var(--primary);
        }

        &:focus,
        &.focus {
            border-color: var(--primary);
            outline: none;

            .select-dropdown {
                display: block;
            }

            .select-arrow-down {
                transform: rotate(180deg);
            }
        }

        .select-dropdown {
            display: none;
            position: absolute;
            top: calc(100% + 4px);
            left: 0;
            width: 100%;
            min-width: 148px;
            border-radius: 12px;
            background: #fff;
            border: 1px solid #f3f2f8;
            box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.08);
            overflow: hidden;
            z-index: 1000;

            &.dropdown-up {
                top: auto;
                bottom: calc(100% + 4px);
            }

            &.dropdown-left {
                left: auto;
                right: 0;
            }

            >div {
                max-height: 200px;
                overflow: auto;
                padding: 8px;

                &::-webkit-scrollbar {
                    width: 6px;
                }

                &::-webkit-scrollbar-track {
                    background: #F1EEF4;
                    border-radius: 4px;
                }

                &::-webkit-scrollbar-thumb {
                    background: #BFC2C5;
                    border-radius: 4px;
                }

                span {
                    display: block;
                    padding: 9px 16px;
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 157%;
                    color: var(--black);
                    cursor: pointer;
                    border-radius: 8px;
                    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

                    &:hover {
                        background: var(--grey-100);
                        color: var(--black);
                    }

                    &.active {
                        background: var(--grey-100);
                        color: var(--black);
                    }
                }
            }
        }
    }

    .table-check-wrapper {
        display: flex;
        white-space: nowrap;

        &:nth-child(1) {
            margin-bottom: 6px;
        }
    }

    .text-overflow {
        white-space: nowrap;
        max-width: 140px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .orders-page-table-wrapper,
    .edit-product-modal-table-wrapper {
        overflow: auto;
        margin-bottom: 20px;
        min-height: 50vh;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;

        &::-webkit-scrollbar {
            height: 8px;
        }

        &::-webkit-scrollbar-track {
            background: #F1EEF4;
            border-radius: 4px;
        }

        &::-webkit-scrollbar-thumb {
            background: #BFC2C5;
            border-radius: 4px;
        }

        &::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }
    }

    th {
        white-space: nowrap;
    }

    .edit-product-modal {
        width: 100%;

        .modal {
            background: #fbf8fd;
        }

        .modal-content {
            max-width: 1700px !important;
        }

        .table-product-image {
            height: 48px;
            width: 48px;
        }

        .orders-page-table {
            input {
                padding: 10px 16px;
                border: 1px solid #4e008e;
                border-radius: 12px;
                font-weight: 400;
                font-size: 14px;
                line-height: 22px;
                letter-spacing: 0%;
                color: #373239;
                width: 94px;
                height: 42px;
                text-align: center;

                &.longer {
                    width: 118px;
                }
            }
        }
    }

    .edit-product-modal-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }

    .edit-product-modal-top-card {
        padding: 24px;
        background: #f1eef4;
        border: 1px solid #cacaca;
        border-radius: 12px;
        background: #f1eef4;

        &.expended {
            grid-column: 1/3;
        }

        .select {
            max-width: 319px;
            background: #f1eef4 !important;
        }

        .edit-product-modal-top-card-label {
            display: block;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            color: #2e2c30;
            margin-bottom: 8px;

            span {
                color: #c33e36;
            }
        }

        input {
            background: #fcfcff;
            border-radius: 12px;
            border: 1px solid #cacaca;
            padding: 10px 16px;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            color: #373239;
            width: 100%;

            &::placeholder {
                color: #9b9aa5;
            }

            &:focus {
                border: 1px solid #4e008e;
            }
        }

        textarea {
            background: #fcfcfc;
            border: 1px solid #cacaca;
            border-radius: 12px;
            padding: 16px;
            font-family: Poppins;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            color: #373239;
            margin-top: 8px;
            resize: vertical;
            height: 160px;
            width: 100%;

            &::placeholder {
                color: #9b9aa5;
            }

            &:focus {
                border: 1px solid #4e008e;
            }
        }

        .edit-product-modal-top-card-field-title {
            margin-bottom: 24px;
        }
    }

    .edit-product-modal-top-card-tags {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;

        div {
            padding: 10px 16px;
            background: #fcfcfc;
            border: 1px solid #cacaca;
            border-radius: 12px;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            color: #373239;
            transition: all 0.3s;
            cursor: pointer;

            &:hover,
            &.active {
                border: 1px solid var(--violet-200);
                background: var(--violet-100);
            }
        }
    }

    .edit-product-modal-top-card-set-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        text-align: center;
        text-decoration: underline;
        color: #4e008e;
        margin: 16px 0;

        div {
            display: flex;
            align-items: center;
            gap: 8px;
        }
    }

    .edit-product-modal-top-card-toggles {
        margin-top: 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .edit-product-modal-tabs-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        margin-bottom: 24px;
    }

    .edit-product-modal-tabs {
        border-bottom: 1px solid #4e008e;
        display: flex;
        align-items: center;
        gap: 4px;
        flex: 1;

        div {
            padding: 10px 24px;
            border-radius: 22px 22px 0px 0px;
            background: #fcfcfc;
            border: 1px solid #cacaca;
            border-bottom: none;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            color: #605767;
            height: 42px;
            cursor: pointer;

            &.active {
                background: #3d145e;
                border: 1px solid #9b9aa5;
                box-shadow: 0px 0px 5px 2px #914cb845;
                font-weight: 700;
                font-size: 14px;
                line-height: 18px;
                letter-spacing: 1%;
                color: #fcfcfc;
                border-bottom: none;
            }
        }
    }

    .edit-product-modal-tab-view-price-updates {
        border-radius: 12px;
        padding: 10px 16px;
        background: var(--primary);
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        text-align: center;
        color: var(--white);
    }

    .edit-product-modal-tab-title {
        font-weight: 700;
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0%;
        color: #373239;
    }

    .edit-product-modal-tab {
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        color: #000000;
        display: none;

        &.active {
            display: block;
        }
    }

    .edit-product-modal-tab-price-radios {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin: 16px 0 24px;

        div {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 14px;
            font-weight: 400;
            line-height: 157%;
            color: var(--black);

            input[type="radio"] {
                width: 20px;
                height: 20px;
                appearance: none;
                border: 2px solid var(--grey-300);
                border-radius: 50%;
                background: var(--white);
                cursor: pointer;
                position: relative;
                transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

                &:checked {
                    &::before {
                        content: '';
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%);
                        width: 10px;
                        height: 10px;
                        border-radius: 50%;
                        background: var(--primary);
                    }
                }

                &:hover {
                    border-color: var(--primary);
                }
            }

            input {
                width: 20px;
                height: 20px;
                margin: 0;
            }
        }
    }

    .edit-product-modal-tab-inputs-card-wrapper {
        padding: 10px 0 0px;
        margin-bottom: 24px;

        &.grey {
            background: #f1eef4;
        }
    }

    .edit-product-modal-tab-inputs-card-header {
        display: flex;
        align-items: center;
        gap: 8.5px;
        margin-bottom: 28px;
        padding: 0 6px;

        .checkbox-input {
            flex-shrink: 0;
        }

        .edit-product-modal-tab-title {
            flex: 1;
        }
    }

    .edit-product-modal-tab-inputs-save-btn {
        display: flex;
        margin-bottom: 20px;
        justify-content: flex-end;
    }

    .edit-product-modal-tab-inputs-card-list {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        gap: 8px;

        input {
            text-align: center;
            background: #fcfcff;
            border-radius: 12px;
            border: 1px solid #cacaca;
            padding: 10px 16px;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            color: #373239;
            width: 100%;
            height: 42px;
            margin-top: 8px;
            border: 1px solid #4e008e;
            box-shadow: 0px 0px 0px 3px #3639aa1a;

            &::placeholder {
                color: #9b9aa5;
            }
        }
    }

    .edit-product-modal-variants {
        display: flex;
        align-items: center;
        gap: 72px;
        margin-bottom: 24px;
    }

    .edit-product-modal-variants-delete,
    .edit-product-modal-variants-revert {
        display: flex;
        flex-direction: column;
        gap: 16px;

        div {
            display: flex;
            align-items: center;
            gap: 8px;
        }
    }

    .edit-product-modal-variants-delete-title {
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        color: var(--black);
    }

    .edit-product-modal-variants-delete-btn {
        border: 1px solid var(--grey-200);
        border-radius: 12px;
        padding: 10px 16px;
        background: var(--white);
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        color: var(--black);
        display: flex;
        align-items: center;
        justify-content: center;

        &.active {
            border: 1px solid var(--grey-200);
            background: var(--grey-100);
            color: var(--grey-300);
        }
    }

    .edit-product-modal-variants-revert-btn {
        border: 1px solid var(--grey-200);
        border-radius: 12px;
        padding: 10px 16px;
        background: var(--white);
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        color: var(--black);
        display: flex;
        align-items: center;
        justify-content: center;

        &.active {
            border: 1px solid var(--grey-200);
            background: var(--grey-100);
            color: var(--grey-300);
        }

    }

    .edit-product-modal-variants-change {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .edit-product-modal-variants-change-title {
        font-weight: 700;
        font-size: 16px;
        line-height: 125%;
        color: var(--black);
        margin: 0;
    }

    .edit-product-modal-variants-change-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
    }

    .edit-product-modal-variants-change-btn {
        border: 1px solid var(--grey-200);
        border-radius: 12px;
        padding: 10px 16px;
        background: var(--white);
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        color: var(--black);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;

        &:hover {
            background: var(--grey-50);
        }

        &.active {
            border: 1px solid var(--grey-200);
            background: var(--grey-100);
            color: var(--grey-300);
        }
    }

    .edit-product-table-input {
        border: 1px solid var(--primary);
        border-radius: 12px;
        padding: 10px 16px;
        height: 42px;
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        color: var(--black);
        width: 100%;
        max-width: 120px;
        transition: all 0.2s ease;

        &:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(78, 0, 142, 0.1);
        }

        &.longer {
            max-width: 150px;
        }
    }

    .edit-product-modal-table-wrapper {
        .master-products-page-table {

            th:first-child,
            td:first-child {
                padding: 0 0 0 32px;

                .checkbox-input {
                    margin: 0;
                }
            }
        }

        .master-products-page-table-th {
            div {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;

                img {
                    flex-shrink: 0;
                }

                span {
                    text-align: center;
                }
            }

            .edit-product-modal-header-bg {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 8px;
            }
        }
    }

    .edit-product-modal-tab-actions-wrapper {
        display: flex;
        align-items: center;
        gap: 72px;
        margin-bottom: 36px;
    }

    .edit-product-modal-tab-actions {
        margin-top: 16px;
        display: flex;
        align-items: center;
        gap: 8px;

        button {
            padding: 10px 16px;
            background: #fcfcfc;
            border: 1px solid #cacaca;
            border-radius: 12px;

            &:disabled {
                background: #f1eef4;
                cursor: not-allowed;
            }
        }
    }

    .edit-product-modal-tab-sunmar {
        th:nth-child(1) {
            padding: 12px;
        }

        th {
            padding: 12px 0;

            div:not(.checkbox-input) {
                padding: 12px;
            }

            .edit-product-modal-header-bg {
                background: #f4fdd4;
                padding: 11px 0;
                height: 60px;
            }
        }
    }

    .edit-product-modal-tab-customatcat {
        th:nth-child(1) {
            padding: 12px;
        }

        th {
            padding: 12px 0;

            div:not(.checkbox-input) {
                padding: 12px;
            }

            .edit-product-modal-header-bg {
                background: #fff2f2;
                padding: 11px 0;
                height: 60px;
            }
        }
    }

    .edit-product-modal-tab-price-bulk {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }
}

.counter-wrapper {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 2px;
    background: #e8ddf1;
    border-radius: 16px;
    width: max-content;

    button {
        padding: 0;
        margin: 0;
        height: 24px;
    }

    input {
        width: 33px;
        background: transparent !important;
        text-align: center !important;
        padding: 0 !important;
    }

    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    input[type="number"] {
        -moz-appearance: textfield;
        /* Firefox */
    }
}

.edit-product-modal-top-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.edit-product-modal-top-connect-btn {
    padding: 10px 16px;
    border-radius: 12px;
    background: #4e008e;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: #fcfcfc;
}


.product-search-modal {
    z-index: 1000;

    input {
        background: #f1eef4 !important;
    }

    .orders-page-table-wrapper {
        min-height: max-content;
        margin-bottom: 0;
    }

    .product-search-modal-table {
        margin-top: 24px;

        .table-product-image {
            width: 48px;
            height: 48px;
        }

        th:nth-child(1) {
            padding: 12px;
        }

        th {
            padding: 12px 0;

            div:not(.checkbox-input) {
                padding: 12px;
            }

            .edit-product-modal-header-bg {
                background: #f4fdd4;
                padding: 11px 0;
                height: 38px;
            }
        }
    }
}

.stores-page {
    .top-filters-label {
        font-size: 14px;
    }

    .top-filters-periods-input {
        padding: 13px 10px 13px 16px !important;
        height: 42px;

        input[type="date"]::-webkit-calendar-picker-indicator {
            background: url(../img/calendar-grey.svg) no-repeat;
        }

        input {
            color: #605767 !important;
        }

        input::placeholder {
            color: #605767 !important;
        }
    }

    .orders-page-table {
        width: max-content;
    }

    .orders-page-table-wrapper {
        overflow: auto;
        min-height: 60vh;
    }

    .store-page-row-customer {
        text-decoration: underline;
        cursor: pointer;
    }

    .store-page-row-note {
        display: -webkit-box;
        max-width: 120px;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .store-page-table-status {
        padding: 2px 8px;
        background: #c33e36;
        border-radius: 24px;
        height: 26px;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        text-align: center;
        color: #fcfcfc;
        width: max-content;
    }

    .store-page-actions {
        display: flex;
        align-items: center;
        gap: 8px;

        button {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #fcfcfc;
            border: 1px solid #9b9aa5;
            box-shadow: 0px 2px 4px 0px #1a2b440f;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            text-align: center;
            color: #373239;
            padding: 7px 16px;
            border-radius: 6px;
            height: 30px;

            &.more {
                justify-content: center;
                width: 32px;
                height: 32px;
                border-radius: 100%;
                border: 1px solid #cacaca;
                box-shadow: 0px -3px 0px 0px #00000014 inset;
                position: relative;

                .dropdown {
                    position: absolute;
                    right: 0;
                    top: calc(100% + 4px);
                    background: #f1eef4;
                    box-shadow: 0px 16px 24px 0px #0000002e;
                    border-radius: 6px;
                    padding: 4px;
                    display: flex;
                    flex-direction: column;
                    gap: 4px;
                    width: 132px;
                    display: none;

                    div {
                        background: #fcfcfc;
                        border: 1px solid #9b9aa5;
                        box-shadow: 0px 2px 4px 0px #1a2b440f;
                        padding: 8px 12px;
                        display: flex;
                        align-items: center;
                        font-weight: 400;
                        font-size: 14px;
                        line-height: 22px;
                        letter-spacing: 0%;
                        color: #373239;
                        height: 32px;
                        border-radius: 6px;
                        gap: 8px;

                        img {
                            width: 16px;
                            height: 16px;
                        }

                        &.delete {
                            background: #fff2f2;
                            border: 1px solid #c33e36;
                        }
                    }
                }

                &:focus {
                    background: #f1eef4;

                    .dropdown {
                        display: flex;
                    }
                }
            }
        }
    }

    .settings-page-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;

        .pagination {
            margin: 0;
        }
    }

    .setting-page-per-view {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .stores-customer-modal {
        .modal-content {
            max-width: 544px !important;
        }
    }

    .stores-customer-modal-fields {
        display: flex;
        flex-direction: column;
        gap: 8px;

        .field {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;

            .field-label {
                font-weight: 400;
                font-size: 14px;
                line-height: 22px;
                letter-spacing: 0%;
                color: #373239;
            }

            input {
                padding: 10px 16px;
                border: 1px solid #4e008e;
                font-weight: 400;
                font-size: 14px;
                line-height: 22px;
                letter-spacing: 0%;
                color: #373239;
                background: none !important;
                border-radius: 12px;
                height: 42px;
                width: 301px;
            }
        }
    }

    .modal-title {
        display: flex;
        align-items: center;
        gap: 8px;

        img {
            width: 24px;
            height: 24px;
        }
    }
}

.filter-header-statuses {
    padding-bottom: 0;
}

.filter-header-status {
    border-top: 1px solid #9b9aa5;
    cursor: pointer;

    &.active {
        background: #3d145e;
        box-shadow: 0px 0px 5px 2px #914cb845;
        font-weight: 700;
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 1%;
        color: #fcfcfc;
    }

    span {
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0%;
        color: #373239;
        border: 1px solid #9b9aa5;
    }
}

.custom-dropzone {
    border: 1px dashed #605767 !important;
    border-radius: 12px !important;
    background: #FCFCFC !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: border-color 0.3s ease !important;
}

.custom-dropzone:hover {
    border-color: #4e008e !important;
    background: #f5f0ff !important;
}

.custom-dropzone.dz-drag-hover {
    border-color: #4e008e !important;
    background: #f5f0ff !important;
}

.custom-dropzone-message {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    pointer-events: none !important;
}

.dropzone-icon {
    width: 24px !important;
    height: 24px !important;
    margin-bottom: 12px !important;
}

.dropzone-text {
    font-size: 14px !important;
    color: #605767 !important;
    line-height: 22px !important;
}

.dropzone-choose {
    color: #4E008E !important;
    font-weight: 700 !important;
}

/* Hide default dropzone styling */
.custom-dropzone .dz-default {
    display: none;
}

/* Hide preview elements */
.custom-dropzone .dz-preview {
    display: none;
}

/* Keep custom message visible during upload */
.custom-dropzone.dz-started .custom-dropzone-message {
    display: flex;
}

.stores-edit-page {
    padding: 32px;

    .stores-edit-page-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 32px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .stores-edit-page-header-title {
        font-weight: 700;
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 0%;
        vertical-align: middle;
        color: #373239;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 24px;

        img {
            cursor: pointer;
        }
    }

    .stores-edit-page-header-date {
        font-family: Poppins;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        vertical-align: middle;
        color: #605767;
        padding-left: 48px;
    }

    .stores-edit-page-header-btns {
        display: flex;
        align-items: center;
        gap: 8px;

        .lock-btn {
            margin-right: 24px;
        }

        button {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 10px 18px;
            height: 42px;
            background: #373239;
            border: 1px solid #9569ba;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            color: #fcfcfc;
            border-radius: 12px;
            width: max-content;

            &.light {
                padding: 9px 18px;
                background: #f1eef4;
                border: 1px solid #cacaca;
                color: #373239;
            }

            &.green {
                padding: 9px 18px;
                background: #f4fdd4;
                border: 1px solid #aed44c;
            }

            &.red {
                padding: 9px 18px;
                background: #fff2f2;
                border: 1px solid #c33e36;
            }

            &.dark-red {
                padding: 9px 18px;
                background: #c33e36;
                border: none;
                color: #fcfcfc;
            }

            &.purple {
                padding: 10px 16px;
                background: #4e008e;
                border: 1px solid #cacaca;
            }
        }
    }

    .stores-edit-content {
        overflow: auto;
    }

    .selected-products-counter {
        font-size: 16px;
        color: #47424A;
        font-weight: 400;
    }

    .stores-edit-basic-content {
        .stores-edit-basic-content-details {
            padding: 24px;
            background: #f1eef4;
            margin-bottom: 16px;
            border-radius: 6px;
        }

        .stores-edit-basic-content-details-title {
            font-weight: 600;
            font-size: 16px;
            line-height: 20px;
            letter-spacing: 0%;
            color: #373239;
            margin-bottom: 24px;
        }

        .stores-edit-basic-content-details-input-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }

        .stores-edit-basic-content-details-field {
            width: 100%;

            input,
            textarea {
                padding: 10px 16px;
                background: #fcfcfc;
                border: 1px solid #cacaca;
                border-radius: 12px;
                width: 100%;
            }

            textarea {
                height: 164px;
                resize: none;
            }

            input[type="date"]::-webkit-calendar-picker-indicator {
                background: url(../img/calendar-grey.svg) no-repeat;
            }
        }

        .stores-edit-basic-content-details-fields-label {
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            color: #373239;
            margin-bottom: 8px;
        }

        .stores-edit-basic-content-details-dates {
            margin-top: 24px;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 10px;
        }

        .stores-edit-basic-content-details-table {
            border: 1px solid #cacaca;
            background: #f1eef4;
            border-radius: 6px;
            overflow: hidden;
            margin-bottom: 16px;

            table {
                margin-bottom: 0;

                th,
                td {
                    background: #f1eef4 !important;
                }

                th {
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 22px;
                    letter-spacing: 0%;
                }
            }
        }

        .stores-edit-basic-content-details-table-customer {
            font-weight: 700;
            font-size: 14px;
            line-height: 18px;
            letter-spacing: 1%;
            text-decoration: underline;
            color: #4e008e;
        }

        .stores-edit-basic-content-details-table-tag {
            padding: 2px 8px;
            background: #c33e36;
            border-radius: 24px;
            height: 26px;
            display: flex;
            align-items: center;
            width: max-content;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            text-align: center;
            color: #fcfcfc;
        }

        .stores-edit-basic-content-fullfillment {
            padding: 16px 12px;
            background: #f1eef4;
            border: 1px solid #cacaca;
            border-radius: 6px;
            margin-bottom: 16px;
        }

        .stores-edit-basic-content-fullfillment-title {
            font-weight: 700;
            font-size: 14px;
            line-height: 18px;
            letter-spacing: 1%;
            color: #373239;
            margin-bottom: 12px;
        }

        .stores-edit-basic-content-fullfillment-check {
            display: flex;
            align-items: center;
            gap: 4px;
            font-weight: 400;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: 0%;
            color: #373239;

            .toggle-wrapper {
                display: flex;
                align-items: center;
                justify-content: center;
                background: #fcfcfc;
                border: 1.5px solid #9b9aa5;
                width: 20px;
                height: 20px;
                border-radius: 100%;
                flex-shrink: 0;

                .toggle-wrapper-block {
                    display: none;
                }

                &.active {
                    .toggle-wrapper-block {
                        display: block;
                        width: 15px;
                        height: 15px;
                    }
                }
            }
        }

        .stores-edit-basic-content-notes-input {}

        .stores-edit-basic-content-notes-input-title {
            font-family: Poppins;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            color: #373239;
            margin-bottom: 8px;
        }

        .stores-edit-basic-content-notes-input-textarea {
            background: #fcfcfc;
            border: 1px solid #cacaca;
            border-radius: 12px;
            display: flex;
            align-items: start;
            gap: 12px;
            padding: 16px;
            margin-bottom: 8px;

            textarea {
                width: 100%;
                resize: none;
                height: 32px;
            }
        }

        .stores-edit-basic-content-notes-avatar {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 100%;
            background: #4e008e;
            font-weight: 400;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: 0%;
            text-align: center;
            vertical-align: middle;
            color: #fcfcfc;
            flex-shrink: 0;
        }

        .stores-edit-basic-content-notes-input-post {
            display: block;
            padding: 8px 16px;
            background: #4e008e;
            border: 1px solid #cacaca;
            box-shadow: 0px -3px 0px 0px #00000014 inset;
            border-radius: 6px;
            margin-left: auto;
            font-weight: 400;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: 0%;
            text-align: center;
            color: #fcfcfc;
        }

        .stores-edit-basic-content-notes-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 6px;
        }

        .stores-edit-basic-content-notes-card {
            padding: 16px;
            background: #fcfcfc;
            border: 1px solid #cacaca;
            border-radius: 16px;
        }

        .stores-edit-basic-content-notes-card-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 6px;
        }

        .stores-edit-basic-content-notes-card-name {
            font-weight: 700;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: 0%;
            text-align: center;
            vertical-align: middle;
            color: #373239;
            margin-right: 8px;
        }

        .stores-edit-basic-content-notes-card-date {
            font-weight: 400;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: 0%;
            text-align: center;
            vertical-align: middle;
            color: #605767;
        }

        .stores-edit-basic-content-notes-card-text {
            font-weight: 400;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: 0%;
            vertical-align: middle;
            color: #000000;
        }
    }

    .stores-edit-profit-content {
        max-width: 640px;
        padding: 0 30px;
        border: 1px solid #cacaca;
        border-radius: 6px;

        table {
            margin-bottom: 0;

            tr:last-child {
                td {
                    border-bottom: none !important;
                }
            }
        }
    }

    .stores-edit-payment-content {
        padding: 16px 12px;
        background: #f1eef4;
        border: 1px solid #cacaca;
        border-radius: 6px;
        margin-top: 24px;
    }

    .stores-edit-payment-content-title {
        font-weight: 700;
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 1%;
        color: #373239;
    }

    .stores-edit-payment-content-option {
        display: flex;
        align-items: center;
        gap: 4px;
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0%;
        color: #373239;
        margin-top: 8px;

        .toggle-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fcfcfc;
            border: 1.5px solid #9b9aa5;
            width: 20px;
            height: 20px;
            border-radius: 100%;
            flex-shrink: 0;

            .toggle-wrapper-block {
                display: none;
            }

            &.active {
                .toggle-wrapper-block {
                    display: block;
                    width: 15px;
                    height: 15px;
                }
            }
        }
    }

    .stores-edit-logos-content {
        padding: 24px;
        background: #fcfcfc;
        border-radius: 6px;
        border: 1px solid #cacaca;

        .stores-edit-logos-content-title {
            font-family: Poppins;
            font-weight: 600;
            font-size: 16px;
            line-height: 20px;
            letter-spacing: 0%;
            color: #1e1920;
            margin-bottom: 24px;
        }

        .stores-edit-logos-content-list-upload-card {
            border: 1px dashed #605767;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 16px;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            text-align: center;
            color: #605767;
            border-radius: 12px;

            b {
                display: block;
                color: #4e008e;
            }
        }

        .stores-edit-logos-content-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            grid-auto-rows: 158px;

            @media (max-width: 1300px) {
                grid-template-columns: repeat(3, 1fr);
            }

            @media (max-width: 1000px) {
                grid-template-columns: repeat(2, 1fr);
            }

            @media (max-width: 800px) {
                grid-template-columns: repeat(1, 1fr);
            }
        }

        .stores-edit-logos-content-list-card {
            border: 1px dashed #605767;
            border-radius: 12px;
            display: flex;
            align-items: end;
            justify-content: center;
            padding: 16px;
            position: relative;

            button {
                padding: 8px 16px;
                background: #fcfcfc;
                border: 1px solid #cacaca;
                box-shadow: 0px -3px 0px 0px #00000014 inset;
                font-weight: 400;
                font-size: 12px;
                line-height: 16px;
                letter-spacing: 0%;
                text-align: center;
                color: #373239;
                border-radius: 6px;
            }

            img {
                position: absolute;
                top: -12px;
                right: -8px;
                cursor: pointer;
            }

            .logo-actions-panel {
                position: absolute;
                bottom: 8px;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                gap: 4px;
                background: rgba(255, 255, 255, 0.95);
                padding: 6px;
                border-radius: 8px;
                backdrop-filter: blur(4px);
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
                opacity: 1;
            }

            .logo-action-btn {
                padding: 6px;
                background: #fff;
                border: 1px solid #e0e0e0;
                border-radius: 4px;
                cursor: pointer;
                transition: all 0.2s ease;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 28px;
                height: 28px;

                &:hover {
                    background: #f5f5f5;
                    border-color: #ccc;
                    transform: translateY(-1px);
                }

                img {
                    width: 14px;
                    height: 14px;
                    position: static;
                    top: auto;
                    right: auto;
                }

                &.deleteStoreLogo:hover {
                    background: #fee;
                    border-color: #fbb;
                }
            }
        }
    }

    .stores-edit-delivery-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-top: 16px;

        @media (max-width: 1100px) {
            grid-template-columns: 1fr;
        }

        .stores-edit-delivery-form {
            padding: 24px;
            background: #f1eef4;
            border: 1px solid #cacaca;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .stores-edit-delivery-form-title {
            font-family: Poppins;
            font-weight: 700;
            font-size: 16px;
            line-height: 20px;
            letter-spacing: 0%;
            color: #373239;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .stores-edit-delivery-form-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;

            &.three {
                grid-template-columns: 1fr 1fr 1fr;

                @media (max-width: 800px) {
                    grid-template-columns: 1fr;
                }
            }
        }

        .stores-edit-delivery-form-field {
            .stores-edit-delivery-form-field-label {
                font-weight: 400;
                font-size: 14px;
                line-height: 22px;
                letter-spacing: 0%;
                color: #373239;
                margin-bottom: 8px;
            }

            input,
            .select {
                padding: 10px 16px;
                background: #fcfcfc;
                border: 1px solid #cacaca;
                border-radius: 12px;
                width: 100%;
                height: 42px;
            }
        }

        .stores-edit-delivery-form-footer {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 8px;

            button {
                padding: 10px 18px;
                height: 42px;
                border-radius: 12px;
                background: #373239;
                border: 1px solid #9569ba;
                font-weight: 400;
                font-size: 14px;
                line-height: 22px;
                letter-spacing: 0%;
                text-align: center;
                color: #fcfcfc;

                &.delete {
                    background: #fff2f2;
                    border: 1px solid #c33e36;
                    color: #373239;
                }

                &.outline {
                    background: #f1eef4;
                    border: 1px solid #cacaca;
                    color: #373239;
                }
            }
        }
    }

    .stores-edit-store-content {
        .stores-edit-store-content-settings {
            background: #fcfcfc;
            border: 1px solid #cacaca;
            border-radius: 6px;
            padding: 24px;
        }

        .stores-edit-store-content-settings-selects {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .stores-edit-store-content-settings-select {
            .stores-edit-store-content-settings-select-label {
                font-weight: 400;
                font-size: 14px;
                line-height: 22px;
                letter-spacing: 0%;
                color: #373239;
                margin-bottom: 8px;
            }
        }

        .stores-edit-store-content-settings-toggles {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .stores-edit-store-content-settings-toggle-wrapper {
            width: 205px;
        }

        .stores-edit-store-content-settings-toggle-title {
            font-family: Poppins;
            font-weight: 700;
            font-size: 14px;
            line-height: 18px;
            letter-spacing: 1%;
            color: #373239;
            margin-bottom: 20px;
        }

        .stores-edit-store-content-settings-toggle--toggle {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .stores-edit-store-content-settings {
            display: grid;
            grid-template-columns: 524px 1fr;
            gap: 65px;

            @media (max-width: 1400px) {
                grid-template-columns: 1fr 1fr;
            }

            @media (max-width: 1200px) {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        .stores-edit-store-content-fundraising {
            padding: 24px;
            background: #fcfcfc;
            border: 1px solid #cacaca;
            border-radius: 6px;
            margin-top: 32px;

            input {
                height: 42px;
                padding: 10px 16px;
                background: #fcfcfc;
                border: 1px solid #cacaca;
                border-radius: 12px;
                font-weight: 400;
                font-size: 14px;
                line-height: 22px;
                letter-spacing: 0%;
                color: #373239;
                width: 100%;
                max-width: 471px;
            }
        }

        .stores-edit-store-content-fundraising-title {
            font-weight: 700;
            font-size: 14px;
            line-height: 18px;
            letter-spacing: 1%;
            color: #373239;
            margin-bottom: 20px;
        }

        .stores-edit-store-content-fundraising-descr {
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            color: #373239;
            margin: 24px 0 8px;
        }

        .stores-edit-store-content-fundraising-info {
            font-weight: 400;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: 0%;
            color: #605767;
            margin-top: 8px;
        }
    }

    .stores-edit-products-add-content {
        width: calc(100% + 64px);
        margin-left: -32px;

        @media (max-width: 1100px) {
            width: calc(100% + 20px);
            margin-left: -10px;
            padding: 10px;
        }

        .stores-edit-products-add-content-top {
            background: #f1eef4;
            padding: 32px 0 0 56px;

            .filter-header-statuses {
                background: none;
            }
        }

        .stores-edit-products-add-content-title {
            margin-bottom: 32px;
            font-family: Dense;
            display: flex;
            align-items: center;
            gap: 15px;
            font-family: Dense;
            font-weight: 400;
            font-size: 48px;
            line-height: 54px;
            letter-spacing: 4%;
            text-transform: uppercase;
            color: #373239;
        }

        .stores-edit-products-add-content-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 56px;
            flex-wrap: wrap;
        }

        .stores-edit-products-add-content-header-filter {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

        .stores-edit-products-add-content-header-sort {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0%;
            color: #605767;
            white-space: nowrap;

            .select {
                border: none;
                width: 173px;
            }
        }

        .stores-edit-products-add-content-header-selected {
            font-weight: 400;
            font-size: 16px;
            line-height: 20px;
            letter-spacing: 0%;
            text-align: center;
            color: #47424a;
        }

        .stores-edit-products-add-content-header-actions {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;

            button {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                border-radius: 12px;
                padding: 10px 18px;
                background: #f1eef4;
                border: 1px solid #4e008e;
                font-weight: 400;
                font-size: 14px;
                line-height: 22px;
                letter-spacing: 0%;
                text-align: center;
                color: #373239;

                &.red {
                    background: #fff2f2;
                    border: 1px solid #c33e36;
                }

                &.primary {
                    background: #4e008e;
                    border: none;
                    color: #fcfcfc;

                    img {
                        width: 16px;
                        height: 16px;
                    }
                }
            }
        }

        .catalog-page {
            padding-right: 56px;
            max-width: 2000px;

            .catalog-page-content {
                @media (max-width: 1100px) {
                    grid-template-columns: 1fr;
                }
            }

            .catalog-page-sidebar {
                border-radius: 0;
                border: none;
            }

            .catalog-page-sidebar-card-header-title {
                text-transform: uppercase;
            }

            .catalog-page-products-card-header {
                button {
                    display: none;
                }
            }

            .pagination {
                margin-top: 24px;
            }
        }

        .stores-edit-products-add-template-sidebar {
            padding: 36px 16px;
            gap: 28px;
        }

        .stores-edit-products-add-template-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
            max-width: 1100px;
        }

        .stores-edit-products-add-template-list-group {}

        .stores-edit-products-add-template-list-group-title {
            font-weight: 700;
            font-size: 24px;
            line-height: 32px;
            letter-spacing: 0%;
            color: #373239;
            margin-bottom: 16px;
        }

        .stores-edit-products-add-template-list-group-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 252px;
            gap: 8px;

            @media (max-width: 1200px) {
                grid-template-columns: repeat(2, 1fr);
            }

            @media (max-width: 800px) {
                grid-template-columns: repeat(1, 1fr);
            }
        }

        .stores-edit-products-add-template-list-card {
            padding: 8px;
            width: 100%;
            height: 100%;
            background-size: 170% !important;
            background-position-y: -10px !important;
        }
    }
}

@font-face {
    font-family: "Dense";
    src: url(../fonts/Dense-Regular.otf);
}

.products-manage-page {
    padding: 23px 12px;
}

.orders-page .place-orders-page-table-th,
.orders-page .discount-code-page-table-th {
    padding: 23px 12px;
}

.master-products-page-top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;

    @media screen and (max-width: 834px) {
        flex-direction: column;
        gap: 16px;
    }
}

.master-products-page-top-header-info-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;

    @media screen and (max-width: 834px) {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;

        .page-header-search {
            width: 100%;
        }
    }
}

.master-products-page-top-header-actions {
    background: #4E008E;
    border: 1px solid #9569BA;
    padding: 10px 18px;
    border-radius: 12px;

    @media screen and (max-width: 834px) {
        align-self: flex-end;
    }
}

.master-products-page-top-header-actions-call {
    color: #FCFCFC;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

/* Master Products Table Styles */
.master-products-page-table-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 16px;
    -webkit-overflow-scrolling: touch;
}

.master-products-page-table-tr {
    height: 64px !important;
}

.master-products-delete-all-product {
    background: #C33E36;
    border: 1px solid #9569BA;
}

.master-products-page-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.master-products-page-table-wrapper::-webkit-scrollbar-track {
    background: #F1EEF4;
    border-radius: 4px;
}

.master-products-page-table-wrapper::-webkit-scrollbar-thumb {
    background: #BFC2C5;
    border-radius: 4px;
}

.master-products-page-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.master-products-page-table {
    width: 100%;
    background: #fcfcfc;
    border-collapse: collapse;
    overflow: auto;

    /* input {
        height: 16px;
        width: 16px;
    } */

    th {
        text-align: left;
        padding: 0;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #605767;
        padding: 8px 12px;
        border-bottom: 1px solid #cfcdd0;
        background: #fcfcfc;
        white-space: nowrap;

        div {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }

        &:first-child {
            padding: 0 0 0 32px;
        }
    }

    tr {
        cursor: pointer;
        height: 54px;

        &:hover {
            td {
                background: #eeecf0;
            }
        }

        td {
            font-size: 13px;
            font-weight: 400;
            line-height: 22px;
            color: #2e2c30;
            padding: 8px 12px;
            border-bottom: 1px solid #cfcdd0;
            white-space: nowrap;

            .btn,
            a,
            button {
                white-space: nowrap;
            }

            &:first-child {
                padding: 0 0 0 32px;
            }
        }
    }

    .table-header-sortable {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        justify-content: space-between;

        span {
            white-space: nowrap;
        }

        img {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            opacity: 0.6;
            transition: opacity 0.2s;
        }

        &:hover img {
            opacity: 1;
        }
    }

    .product-title-cell {
        width: 172px;
        min-width: 172px;
        max-width: 172px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.master-products-table-actions {
    display: flex;
    align-items: center;
    gap: 8px;

    .edit-btn,
    .delete-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        border: 1px solid #a4a4b0;
        background: #ffffff;
        box-shadow: 0px 2px 4px 0px #1a2b440f;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        text-align: center;
        color: #2e2c30;
        height: 32px;
        cursor: pointer;
        text-decoration: none;

        img {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        &:hover {
            background: #f8f8f9;
        }
    }

    .delete-btn {
        border-color: #dc2626;
        color: #dc2626;

        &:hover {
            background: #fef2f2;
        }
    }
}

.master-products-actions-dropdown {
    position: relative;
    display: inline-block;

    .master-products-more-btn {
        padding: 8px;
        width: 32px;
        height: 32px;
        border: 1px solid #a4a4b0;
        background: #ffffff;
        box-shadow: 0px 2px 4px 0px #1a2b440f;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;

        &:hover {
            background: #f0f0f0;
        }

        &.active {
            background: #CACACA !important;
        }

        .dots-icon {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 2px;

            span {
                width: 3px;
                height: 3px;
                background-color: #09090B;
                border-radius: 50%;
                display: block;
            }
        }
    }

    .master-products-dropdown-menu {
        position: fixed;
        background: #F1EEF4;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
        z-index: 99999;
        min-width: 150px;
        display: none;
        padding: 4px;

        &.active {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .master-products-dropdown-item {
            display: flex;
            align-items: center;
            gap: 8px;
            width: 100%;
            padding: 8px 12px;
            border: 1px solid #9B9AA5;
            background: #FCFCFC;
            font-size: 14px;
            font-weight: 400;
            line-height: 22px;
            color: #373239;
            cursor: pointer;
            height: auto;
            border-radius: 6px;
            text-decoration: none;

            img {
                width: 16px;
                height: 16px;
                flex-shrink: 0;
            }

            &:hover {
                background: #fef2f2;
            }

            &.master-products-delete-btn:hover {
                background: #fef2f2;
                color: #dc2626;
            }
        }

        .master-products-dropdown-form {
            margin: 0;
            padding: 0;

            .master-products-dropdown-item {
                width: 100%;
            }
        }
    }
}

.master-products-page-table-th {
    padding: 8px 16px;
}

.table-product-image {
    width: 48px;
    height: 48px;
    object-fit: cover;
}

/* Master Products Custom Selects */
.master-products-page-table-filters-selects {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;

    @media screen and (max-width: 834px) {
        flex-direction: column;
        width: 100%;
    }
}

.master-products-page-table-filters-select {
    width: 183px;

    @media screen and (max-width: 834px) {
        width: 100%;
    }

    .master-products-page-table-filters-select-label {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #2e2c30;
        margin-bottom: 8px;
    }
}

button.master-products-custom-select.select {
    width: 183px;
    height: 42px !important;
    border-radius: 12px;
    padding: 10px 16px;
    border: 1px solid var(--grey-300);
    background: var(--grey-100);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
    line-height: 157%;
    color: var(--grey-400);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    @media screen and (max-width: 834px) {
        width: 100%;
    }

    .select-value {
        flex: 1;
        text-align: left;
    }

    .select-arrow-down {
        width: 16px;
        height: 16px;
        transition: transform 0.2s;
        transform: rotate(90deg);
    }

    &:hover {
        border-color: var(--primary);
    }

    &:focus,
    &.focus {
        border-color: var(--primary);
        outline: none;

        .select-dropdown {
            display: block;
        }

        .select-arrow-down {
            transform: rotate(270deg);
        }
    }

    .select-dropdown {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        width: 100%;
        min-width: 183px;
        border-radius: 12px;
        background: #fff;
        border: 1px solid #f3f2f8;
        box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.08);
        overflow: hidden;
        display: none;
        z-index: 1000;

        &.dropdown-up {
            top: auto;
            bottom: calc(100% + 4px);
        }

        &.dropdown-left {
            left: auto;
            right: 0;
        }

        div {
            max-height: 200px;
            overflow: auto;
            padding: 8px;

            &::-webkit-scrollbar {
                width: 6px;
            }

            &::-webkit-scrollbar-track {
                background: #F1EEF4;
                border-radius: 4px;
            }

            &::-webkit-scrollbar-thumb {
                background: #BFC2C5;
                border-radius: 4px;
            }

            span {
                display: block;
                padding: 9px 16px;
                font-size: 14px;
                font-weight: 400;
                line-height: 157%;
                color: var(--black);
                cursor: pointer;
                border-radius: 8px;
                transition: all 0.2s;

                &:hover {
                    background: var(--grey-100);
                    color: var(--black);
                }

                &.active {
                    background: var(--grey-100);
                    color: var(--black);
                }
            }
        }
    }
}

/* Master Products Status Styles */
.master-products-status {
    height: 26px;
    padding: 2px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    color: #373239;
    border-radius: 24px;
    width: max-content;

    &.master-products-status-active {
        background: #AED44C;
        color: #373239;
    }

    &.master-products-status-inactive {
        background: #E8DDF1;
        color: #373239;
    }

    &.master-products-status-draft {
        background: #fff2da;
        border: 1px solid #fbb041;
        color: #373239;
    }

    &.master-products-status-pending {
        background: #fff2f2;
        border: 1px solid #c33e36;
        color: #373239;
    }

    &.master-products-status-approved {
        background: #f4fdd4;
        border: 1px solid #aed44c;
        color: #373239;
    }

    &.master-products-status-rejected {
        background: #C33E36;
        color: #fcfcfc;
    }
}

/* Master Products Table Adaptive Styles */

@media screen and (max-width: 834px) {
    .orders-page-table-filters {
        padding: 20px 10px;
    }

    .master-products-page-table-wrapper {
        margin: 0 -10px 16px;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .master-products-page-table {
        min-width: 1000px;
        width: max-content;
    }
}

@media screen and (max-width: 480px) {
    .master-products-page-table-wrapper {
        width: calc(100svw - 0px);
    }
}

/* Place Orders Table Styles */

.place-orders-page-table-filters {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    background: #F1EEF4;
    margin: 0 -32px 32px;
    padding: 16px 32px;
    flex-wrap: wrap;
    gap: 10px;

    @media screen and (max-width: 834px) {
        justify-content: flex-end;
    }
}

.place-orders-page-inner-wrapper {
    margin-bottom: 32px;
}

.place-orders-page-inner-wrapper-title {
    margin: 0;
}

.place-orders-top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 10px;
}


.store-orders-table {
    width: 100%;
    min-width: 1000px;
    background: #fcfcfc;
    border-collapse: collapse;
    overflow: auto;

    th {
        text-align: left;
        padding: 0;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #605767;
        padding: 8px 12px;
        border-bottom: 1px solid #cfcdd0;
        background: #fcfcfc;
        white-space: nowrap;

        div {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }

        &:first-child {
            padding: 0 0 0 32px;
        }
    }

    th:nth-child(2),
    td:nth-child(2) {
        width: 200px;
        min-width: 200px;
        max-width: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    th:nth-child(3),
    td:nth-child(3) {
        width: 148px;
        min-width: 148px;
        max-width: 148px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    th:nth-child(4),
    td:nth-child(4) {
        width: 148px;
        min-width: 148px;
        max-width: 148px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    th:nth-child(5),
    td:nth-child(5) {
        width: 148px;
        min-width: 148px;
        max-width: 148px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    tr {
        cursor: pointer;
        height: 54px;

        &:hover {
            td {
                background: #eeecf0;
            }
        }

        td {
            font-size: 13px;
            font-weight: 400;
            line-height: 22px;
            color: #2e2c30;
            padding: 8px 12px;
            border-bottom: 1px solid #cfcdd0;
            white-space: nowrap;

            .btn,
            a,
            button {
                white-space: nowrap;
            }

            &:first-child {
                padding: 0 0 0 32px;
            }
        }
    }
}

.place-orders-store-breadcrubs {
    margin-bottom: 32px;

    .breadcrubs-link {
        padding-right: 5px;
    }

    .breadcrubs-link-second {
        padding-left: 5px;
    }
}

.place-orders-store-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 32px 0 16px 0;
    flex-wrap: wrap;
    gap: 16px;

    @media screen and (max-width: 440px) {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 16px;
    }
}

.place-orders-store-header-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #2e2c30;

    @media screen and (max-width: 440px) {
        flex-direction: column;
        align-items: flex-start;
    }
}

.place-orders-store-header-title a {
    display: flex;
    align-items: center;
}

.place-orders-store-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;

    @media screen and (max-width: 440px) {
        flex-direction: column;
        width: 100%;
    }
}

.place-orders-store-header-add-btn {
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    padding: 10px 16px;
    background: var(--primary);

    @media screen and (max-width: 440px) {
        width: 100%;
    }
}

.place-orders-store-header-mark-btn {
    border-radius: 12px;
    padding: 10px 18px;
    background: var(--grey-200);
    border: 1px solid transparent;
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;

    @media screen and (max-width: 440px) {
        width: 100%;
    }
}

.place-orders-store-header-mark-btn.active {
    border: 1px solid var(--violet-200);
    background: var(--error);
    pointer-events: auto;
    cursor: pointer;
}

.place-orders-store-header-mark-btn.active:hover {
    border: 1px solid var(--violet-200);
    background: var(--error);
}

.order-details-table~* .place-orders-store-header-mark-btn,
body:has(.order-details-table) .place-orders-store-header-mark-btn {
    display: none;
}

body:has(.order-details-table) .place-orders-store-header-mark-btn.active {
    display: flex;
}

.place-orders-store-subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: var(--black);
}

.vendor-order-status {
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    text-align: center;
    color: var(--black);
    border-radius: 24px;
    padding: 2px 8px;
    background: var(--grey-200);
    display: inline-block;
    white-space: nowrap;
}

/* Manual ordered status */
.vendor-order-status-manual-ordered {
    background: var(--violet-100);
}

/* Need to order manually status */
.vendor-order-status-need-manual {
    color: var(--white);
    border: 1px solid var(--system-red);
    background: var(--error);
}

/* Sent to vendor status */
.vendor-order-status-sent {
    color: var(--black);
    border: 1px solid var(--green);
    background: var(--green);
}

/* Order Details Page Styles */
.place-orders-order-subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: var(--black);
    margin: 24px 0 16px 0;
}

.place-orders-order-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.place-orders-order-update-btn {
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    padding: 10px 16px;
    background: var(--primary);
    cursor: pointer;

    @media screen and (max-width: 440px) {
        width: 100%;
    }
}

.place-orders-order-check-btn {
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: var(--dark-primary);
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    padding: 10px 18px;
    background: var(--yellow);
    cursor: pointer;

    @media screen and (max-width: 440px) {
        width: 100%;
    }
}

.place-orders-order-place-btn {
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: var(--dark-green);
    border: 1px solid var(--dark-green);
    border-radius: 12px;
    padding: 9px 18px;
    background: var(--light-green);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    @media screen and (max-width: 440px) {
        width: 100%;
    }
}

.place-orders-order-place-btn:hover {
    opacity: 0.9;
}

.order-detail-input {
    border: 1px solid var(--grey-400);
    border-radius: 12px;
    padding: 10px 16px;
    height: 42px;
    background: var(--white);
    font-size: 14px;
    font-weight: 400;
    line-height: 157%;
    color: var(--black);
    width: 100%;
    min-width: 150px;
}

.order-detail-input:focus {
    outline: none;
    border-color: var(--primary);
}

button.order-detail-select.select {
    width: 100%;
    min-width: 150px;
    height: 42px;
    border-radius: 12px;
    padding: 10px 16px;
    border: 1px solid var(--grey-300);
    background: var(--white);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
    line-height: 157%;
    color: var(--grey-400);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;

    .select-value {
        flex: 1;
        text-align: left;
    }

    .select-arrow-down {
        width: 16px;
        height: 16px;
        transition: transform 0.2s;
        transform: rotate(90deg);
    }

    &:hover {
        border-color: var(--primary);
    }

    &:focus,
    &.focus {
        border-color: var(--primary);
        outline: none;
        z-index: 100;

        .select-dropdown {
            display: block;
        }

        .select-arrow-down {
            transform: rotate(270deg);
        }
    }

    .select-dropdown {
        position: fixed;
        min-width: 150px;
        border-radius: 12px;
        background: #fff;
        border: 1px solid #f3f2f8;
        box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.08);
        overflow: hidden;
        display: none;
        z-index: 9999;
        max-width: 400px;

        div {
            max-height: 200px;
            overflow: auto;
            padding: 8px;

            &::-webkit-scrollbar {
                width: 6px;
            }

            &::-webkit-scrollbar-track {
                background: #F1EEF4;
                border-radius: 4px;
            }

            &::-webkit-scrollbar-thumb {
                background: #BFC2C5;
                border-radius: 4px;
            }

            span {
                display: block;
                padding: 9px 16px;
                font-size: 14px;
                font-weight: 400;
                line-height: 157%;
                color: var(--black);
                cursor: pointer;
                border-radius: 8px;
                transition: all 0.2s;

                &:hover {
                    background: var(--grey-100);
                    color: var(--black);
                }

                &.active {
                    background: var(--grey-100);
                    color: var(--black);
                }
            }
        }
    }
}

.order-item-product-name {
    font-weight: 400;
    font-size: 13px;
    line-height: 157%;
    color: var(--black);
}

.toggle-wrapper-order {
    display: inline-flex;
    align-items: center;
    position: relative;
    width: 44px;
    height: 24px;
    cursor: pointer;

    input[type="checkbox"] {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .toggle-wrapper-block {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #9b9aa5;
        border-radius: 24px;
        transition: 0.3s;
    }

    .toggle-wrapper-block::before {
        content: "";
        position: absolute;
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        border-radius: 50%;
        transition: 0.3s;
    }

    &.active .toggle-wrapper-block {
        background-color: var(--primary);
    }

    &.active .toggle-wrapper-block::before {
        transform: translateX(20px);
    }
}

.order-details-table {
    .order-detail-td {
        vertical-align: middle;
        position: relative;
        padding: 39px 12px;
    }
}

.place-orders-page-table-filters-select {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.place-orders-page-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 32px;
    -webkit-overflow-scrolling: touch;
}

.place-orders-page-table-tr {
    height: 64px !important;
}

.place-orders-page-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.place-orders-page-table-wrapper::-webkit-scrollbar-track {
    background: #F1EEF4;
    border-radius: 4px;
}

.place-orders-page-table-wrapper::-webkit-scrollbar-thumb {
    background: #BFC2C5;
    border-radius: 4px;
}

.place-orders-page-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.place-orders-page-table {
    width: 100%;
    min-width: 1000px;
    background: #fcfcfc;
    border-collapse: collapse;
    overflow: auto;

    input {
        height: 16px;
        width: 16px;
    }

    th {
        text-align: left;
        padding: 0;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #605767;
        padding: 8px 12px;
        border-bottom: 1px solid #cfcdd0;
        background: #fcfcfc;
        white-space: nowrap;

        div {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }

        &:first-child {
            padding: 0 0 0 32px;
        }
    }

    th:nth-child(2),
    td:nth-child(2) {
        width: 200px;
        min-width: 200px;
        max-width: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    th:nth-child(3),
    td:nth-child(3) {
        width: 148px;
        min-width: 148px;
        max-width: 148px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    th:nth-child(4),
    td:nth-child(4) {
        width: 148px;
        min-width: 148px;
        max-width: 148px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    th:nth-child(5),
    td:nth-child(5) {
        width: 148px;
        min-width: 148px;
        max-width: 148px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    tr {
        cursor: pointer;
        height: 54px;

        &:hover {
            td {
                background: #eeecf0;
            }
        }

        td {
            font-size: 13px;
            font-weight: 400;
            line-height: 22px;
            color: #2e2c30;
            padding: 8px 12px;
            border-bottom: 1px solid #cfcdd0;
            white-space: nowrap;

            .btn,
            a,
            button {
                white-space: nowrap;
            }

            &:first-child {
                padding: 0 0 0 32px;
            }
        }
    }
}

.place-orders-page-table-th {
    padding: 8px 16px;
}

/* Place Orders & Ink Colors & Templates Pagination Styles */

.ink-colors-pagination-wrapper,
.templates-pagination-wrapper {
    margin: 0 16px;

    @media (max-width: 834px) {
        margin: 0 10px;
    }
}

/* Ink Colors & Templates Pagination Select Styles */
.ink-colors-pagination-select,
.templates-pagination-select {
    &.focus {
        border-color: #4e008e;

        .select-dropdown {
            display: block;
        }
    }

    .select-dropdown {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        right: 0;
        background: #ffffff;
        border: 1px solid #cacaca;
        border-radius: 8px;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        display: none;
        z-index: 1000;

        &.dropdown-up {
            top: auto;
            bottom: calc(100% + 4px);
        }

        &.dropdown-left {
            left: auto;
            right: 0;
        }

        div {
            max-height: 200px;
            overflow: auto;
            padding: 0;

            span {
                display: block;
                padding: 10px 16px;
                font-size: 14px;
                font-weight: 400;
                line-height: 22px;
                color: #605767;
                cursor: pointer;
                border-bottom: 1px solid #f0f0f0;

                &:hover,
                &.active {
                    background: #f8f6fa;
                    color: #4e008e;
                }

                &:last-child {
                    border-bottom: none;
                }
            }
        }
    }
}

/* Template Recipient Badges */
.template-recipient-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    text-align: center;
    white-space: nowrap;
}

.template-recipient-badge.super-admin-badge {
    background: var(--light-green, #f4fdd4);
    color: var(--dark-green, #67783d);
}

.template-recipient-badge.customers-badge {
    background: var(--light-yellow, #faf2e5);
    color: var(--yellow, #fbb041);
}

.template-recipient-badge.admin-badge {
    background: var(--violet-100, #e8ddf1);
    color: var(--primary, #4e008e);
}

.template-recipient-badge.default-badge {
    background: var(--grey-100, #f1eef4);
    color: var(--grey-400, #605767);
}

.place-orders-pagination-wrapper,
.ink-colors-pagination-wrapper,
.templates-pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;

    &:has(.place-orders-pagination-view:only-child) {
        justify-content: flex-end;
    }

    @media screen and (max-width: 1200px) {
        justify-content: center;
    }
}

.place-orders-pagination-wrapper .pagination,
.ink-colors-pagination-wrapper .pagination,
.templates-pagination-wrapper .pagination {
    margin: unset;
}

.place-orders-pagination-view {
    display: flex;
    align-items: center;
    align-self: flex-end;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #373239;
    width: 110px;

    &:only-child {
        margin-left: auto;
    }

    span {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .select {
        flex: 1;
        height: 42px;
        padding: 8px 12px;
        border: 1px solid #cfcdd0;
        border-radius: 8px;
        background: #ffffff;
        position: relative;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #605767;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

        .select-value {
            flex: 1;
            text-align: left;
        }

        .select-arrow-down {
            width: 16px;
            height: 16px;
            transition: transform 0.2s;
            transform: rotate(90deg);
            flex-shrink: 0;
        }

        &:hover {
            border-color: #4E008E;
        }

        &:focus,
        &.focus {
            border-color: #4E008E;
            outline: none;

            .select-dropdown {
                display: block;
            }

            .select-arrow-down {
                transform: rotate(270deg);
            }
        }

        .select-dropdown {
            position: absolute;
            top: calc(100% + 4px);
            left: 0;
            width: 100%;
            border-radius: 12px;
            background: #FFFFFF;
            border: 1px solid #E1E1E6;
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            display: none;
            z-index: 1000;

            &.dropdown-up {
                top: auto;
                bottom: calc(100% + 4px);
            }

            &.dropdown-left {
                left: auto;
                right: 0;
            }

            div {
                max-height: 200px;
                overflow: auto;
                padding: 0;

                span {
                    display: block;
                    padding: 10px 16px;
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 22px;
                    color: #2E2C30;
                    cursor: pointer;
                    border-radius: unset;
                    transition: all 0.2s;

                    &:hover {
                        background: #4E008E;
                        color: #FFFFFF;
                    }

                    &.active {
                        background: #4E008E;
                        color: #FFFFFF;
                    }
                }
            }
        }
    }
}

/* Place Orders Top Actions */
.place-orders-top-filters-actions {
    display: flex;
    align-items: center;
    gap: 12px;

    .deleteAllStores {
        position: relative;
        transition: all 0.3s ease;

        &.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }
    }

    @media screen and (max-width: 834px) {
        justify-content: flex-end;
    }
}

/* Place Orders Checkbox States */
.place-orders-page-table {
    .checkbox-input {
        &.indeterminate {
            border: 1.5px solid #9b9aa5;

            &::before {
                content: "";
                display: block;
                width: 8px;
                height: 2px;
                background-color: #4E008E;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                border-radius: 1px;
            }
        }
    }
}

.place-orders-table-actions {
    display: flex;
    align-items: center;
    gap: 8px;

    .edit-btn,
    .delete-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        border: 1px solid #a4a4b0;
        background: #ffffff;
        box-shadow: 0px 2px 4px 0px #1a2b440f;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        text-align: center;
        color: #2e2c30;
        height: 32px;
        cursor: pointer;
        text-decoration: none;

        img {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        &:hover {
            background: #f8f8f9;
        }
    }

    .delete-btn {
        border: 1px solid var(--grey-300);
        box-shadow: 0 2px 4px 0 rgba(26, 43, 68, 0.06);
        background: var(--white);
        color: var(--black);
    }
}

/* Place Orders Table Adaptive Styles */

@media screen and (max-width: 834px) {
    .place-orders-page-table-wrapper {
        margin: 0 -10px 16px;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .place-orders-page-table {
        min-width: 900px;
        width: max-content;
    }
}

@media screen and (max-width: 480px) {
    .place-orders-page-table-wrapper {
        width: calc(100svw - 0px);
    }

    .place-orders-page-table {
        min-width: 500px;

        th:nth-child(1),
        td:nth-child(1) {
            width: 50px;
            min-width: 50px;
            max-width: 50px;
        }

        th:nth-child(2),
        td:nth-child(2) {
            width: 120px;
            min-width: 120px;
            max-width: 120px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        th:nth-child(3),
        td:nth-child(3) {
            width: 60px;
            min-width: 60px;
            max-width: 60px;
        }

        th:nth-child(4),
        td:nth-child(4) {
            width: 60px;
            min-width: 60px;
            max-width: 60px;
        }

        th:nth-child(5),
        td:nth-child(5) {
            width: 100px;
            min-width: 100px;
            max-width: 100px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        th:nth-child(6),
        td:nth-child(6) {
            width: fit-content;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
    }
}

@media screen and (max-width: 430px) {
    .place-orders-page-table {
        min-width: 550px;
    }
}

/* Place Orders Custom Selects */
.place-orders-page-table-filters-selects {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;

    @media screen and (max-width: 834px) {
        flex-direction: column;
        width: 100%;
    }
}

.place-orders-page-table-filters-form {
    @media screen and (max-width: 834px) {
        width: 100%;
    }
}

.place-orders-page-table-filters-select {
    width: 183px;

    @media screen and (max-width: 834px) {
        width: 100%;
    }

    .place-orders-page-table-filters-select-label {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #2e2c30;
        margin-bottom: 8px;
    }
}

button.place-orders-custom-select.select {
    width: 183px;
    height: 42px !important;
    border-radius: 12px;
    padding: 10px 16px;
    border: 1px solid var(--grey-300);
    background: var(--grey-100);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
    line-height: 157%;
    color: var(--grey-400);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    @media screen and (max-width: 834px) {
        width: 100%;
    }

    .select-value {
        flex: 1;
        text-align: left;
    }

    .select-arrow-down {
        width: 16px;
        height: 16px;
        transition: transform 0.2s;
        transform: rotate(90deg);
    }

    &:hover {
        border-color: var(--primary);
    }

    &:focus,
    &.focus {
        border-color: var(--primary);
        outline: none;

        .select-dropdown {
            display: block;
        }

        .select-arrow-down {
            transform: rotate(270deg);
        }
    }

    .select-dropdown {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        width: 100%;
        min-width: 183px;
        border-radius: 12px;
        background: #fff;
        border: 1px solid #f3f2f8;
        box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.08);
        overflow: hidden;
        display: none;
        z-index: 1000;

        &.dropdown-up {
            top: auto;
            bottom: calc(100% + 4px);
        }

        &.dropdown-left {
            left: auto;
            right: 0;
        }

        div {
            max-height: 200px;
            overflow: auto;
            padding: 8px;

            &::-webkit-scrollbar {
                width: 6px;
            }

            &::-webkit-scrollbar-track {
                background: #F1EEF4;
                border-radius: 4px;
            }

            &::-webkit-scrollbar-thumb {
                background: #BFC2C5;
                border-radius: 4px;
            }

            span {
                display: block;
                padding: 9px 16px;
                font-size: 14px;
                font-weight: 400;
                line-height: 157%;
                color: var(--black);
                cursor: pointer;
                border-radius: 8px;
                transition: all 0.2s;

                &:hover {
                    background: var(--grey-100);
                    color: var(--black);
                }

                &.active {
                    background: var(--grey-100);
                    color: var(--black);
                }
            }
        }
    }
}

/* Discount Code Page Styles */

.discount-code-top-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 10px;
}

.discount-code-top-header-info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.discount-code-top-header-actions-call {
    border: 1px solid var(--violet-200);
    border-radius: 12px;
    padding: 10px 18px;
    background: var(--primary);
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: var(--white);
}

.discount-code-pagination {
    padding-top: 16px;
}

.discount-code-table .orders-page-table {
    td {
        &:last-child {
            padding: 8px 12px;
        }
    }
}

.delete-discount-btn {
    border: 1px solid #c33e36;
    border-radius: 6px;
    padding: 5px 16px !important;
    box-shadow: 0 2px 4px 0 rgba(26, 43, 68, 0.06);
    background: #fcfcfc;
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: #373239;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

@media screen and (max-width: 834px) {
    .discount-code-top-header-info-wrapper {
        width: 100%;

        .page-header-search {
            width: 100%;
        }
    }

    .discount-code-top-header {
        justify-content: flex-end;
    }
}

/* Payouts Due Page Table Styles */

.payout-page {
    overflow-x: hidden;
}

.payouts-due-table-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 16px;
    -webkit-overflow-scrolling: touch;
}

.payouts-due-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.payouts-due-table-wrapper::-webkit-scrollbar-track {
    background: #F1EEF4;
    border-radius: 4px;
}

.payouts-due-table-wrapper::-webkit-scrollbar-thumb {
    background: #BFC2C5;
    border-radius: 4px;
}

.payouts-due-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.payouts-due-table {
    width: 100%;
    background: #fcfcfc;
    border-collapse: collapse;
    overflow: auto;
    min-width: 900px;

    input {
        height: 16px;
        width: 16px;
    }

    th {
        text-align: left;
        padding: 12px 16px;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #605767;
        border-bottom: 1px solid #cfcdd0;
        background: #fcfcfc;
        white-space: nowrap;
        position: sticky;
        top: 0;
        z-index: 10;
        height: 84px;

        div {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            cursor: pointer;

            &.sortable:hover {
                color: #4E008E;
            }
        }

        &:first-child {
            padding: 12px 0 12px 32px;
        }

        &:nth-child(2) {
            padding: 12px 16px 12px 0;
        }

        &:nth-child(7),
        &:nth-child(8) {
            width: 130px;
            min-width: 130px;
            max-width: 130px;
        }

        img {
            width: 16px;
            height: 16px;
            opacity: 0.6;
        }
    }

    tr {
        cursor: pointer;

        &:hover {
            td {
                background: #eeecf0;
            }
        }

        td {
            font-size: 13px;
            font-weight: 400;
            line-height: 22px;
            color: #2e2c30;
            padding: 12px 16px;
            border-bottom: 1px solid #cfcdd0;
            white-space: nowrap;
            vertical-align: top;

            &:first-child {
                padding: 12px 16px 12px 32px;
            }

            &:nth-child(2) {
                padding: 12px 16px 12px 0;
            }
        }
    }
}

.payouts-due-notes-cell {
    max-width: 200px;

    .notes-text {
        font-size: 13px;
        font-weight: 400;
        line-height: 22px;
        color: #2e2c30;
        margin: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

.payouts-payment-type {
    display: flex;
    align-items: center;
    gap: 16px;

    img {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
}

.payouts-due-amount-header {
    white-space: normal !important;
    text-align: left;
    line-height: 1.3;
}

.payouts-overpaid-positive {
    color: #22C55E;
    font-weight: 500;
}

.payouts-due-add-notes-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid #9569BA;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: #4E008E;
    cursor: pointer;
    transition: all 0.2s ease;
    width: max-content;

    img {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }

    &:hover {
        background: #f8f4fc;
        border-color: #4E008E;
    }
}

.payouts-due-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payouts-due-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #4E008E;
    border: 1px solid #9569BA;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    color: #FCFCFC;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;

    &:hover {
        background: #3d0070;
        border-color: #7c4ba3;
        color: #FCFCFC;
    }
}


/* Mobile responsiveness for payouts due table */
@media screen and (max-width: 1200px) {
    .payouts-due-table {
        min-width: 1000px;
    }
}

@media screen and (max-width: 834px) {
    .payouts-due-table {
        min-width: 1000px;
    }

    .payouts-due-table th {
        height: 54px;
    }

    .payouts-due-notes-cell {
        max-width: 150px;
    }
}

@media screen and (max-width: 480px) {
    .payouts-due-table {
        min-width: 900px;
    }

    .payouts-due-notes-cell {
        max-width: 120px;

        .notes-text {
            font-size: 12px;
        }
    }

    .payouts-due-add-notes-btn {
        font-size: 11px;
        padding: 4px 8px;
    }
}

/* Payout Page Table Filters Styles */

.payout-page-table-filters-selects {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;

    @media screen and (max-width: 834px) {
        flex-direction: column;
        width: 100%;
    }
}

.payout-page-table-filters-select {
    width: 183px;

    @media screen and (max-width: 834px) {
        width: 100%;
    }

    .select {
        height: auto;
        border-radius: 12px;
        padding: 10px 16px;
        border: 1px solid var(--grey-300);
        background: var(--grey-100);
        font-size: 14px;
        font-weight: 400;
        line-height: 157%;
        color: var(--grey-400);

        select {
            width: 100% !important;
        }
    }
}

.payout-page-table-filters-select-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #2e2c30;
    margin-bottom: 8px;
}

button.payout-custom-select.select {
    width: 183px;
    height: 42px !important;
    border-radius: 12px;
    padding: 10px 16px;
    border: 1px solid var(--grey-300);
    background: var(--grey-100);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
    line-height: 157%;
    color: var(--grey-400);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    @media screen and (max-width: 834px) {
        width: 100%;
    }

    .select-value {
        flex: 1;
        text-align: left;
    }

    .select-arrow-down {
        width: 16px;
        height: 16px;
        transition: transform 0.2s;
        transform: rotate(90deg);
    }

    &:hover {
        border-color: var(--primary);
    }

    &:focus,
    &.focus {
        border-color: var(--primary);
        outline: none;

        .select-dropdown {
            display: block;
        }

        .select-arrow-down {
            transform: rotate(270deg);
        }
    }

    .select-dropdown {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        width: 100%;
        min-width: 183px;
        border-radius: 12px;
        background: #fff;
        border: 1px solid #f3f2f8;
        box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.08);
        overflow: hidden;
        display: none;
        z-index: 1000;

        &.dropdown-up {
            top: auto;
            bottom: calc(100% + 4px);
        }

        &.dropdown-left {
            left: auto;
            right: 0;
        }

        div {
            max-height: 200px;
            overflow: auto;
            padding: 8px;

            &::-webkit-scrollbar {
                width: 6px;
            }

            &::-webkit-scrollbar-track {
                background: #F1EEF4;
                border-radius: 4px;
            }

            &::-webkit-scrollbar-thumb {
                background: #BFC2C5;
                border-radius: 4px;
            }

            span {
                display: block;
                padding: 9px 16px;
                font-size: 14px;
                font-weight: 400;
                line-height: 157%;
                color: var(--black);
                cursor: pointer;
                border-radius: 8px;
                transition: all 0.2s;

                &:hover {
                    background: var(--grey-100);
                    color: var(--black);
                }

                &.active {
                    background: var(--grey-100);
                    color: var(--black);
                }
            }
        }
    }
}

@media screen and (max-width: 834px) {
    .payout-page-table-filters-selects {
        width: 100%;
        gap: 22px;
        flex-wrap: wrap;
    }

    .payout-page-table-filters-select {
        width: 100%;
        max-width: 343px;
        flex-shrink: 0;

        .select {
            max-width: 343px;
            width: 100%;
            flex-shrink: 0;
        }

        @media (max-width: 834px) {
            max-width: 100%;
            width: 100%;
        }
    }
}

@media screen and (max-width: 480px) {
    .payout-page-table-filters-selects {
        .select {
            height: auto;
            padding: 10px 16px;
            border-radius: 12px;
            border: 1px solid var(--grey-300);
            background: var(--grey-100);
            font-size: 14px;
            font-weight: 400;
            line-height: 157%;
            color: var(--grey-400);
        }
    }
}

/* Payout Export Button */
.payout-export-btn {
    background: #373239;
    color: #FCFCFC;
    border: none;
    border-radius: 12px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: grid;
    place-items: center;
    white-space: nowrap;

    &:hover {
        background: #2a252b;
    }

    &:active {
        background: #1f1c20;
    }

    @media screen and (max-width: 834px) {
        align-self: flex-end;
    }
}

/* Settings Page Table Styles */

.settings-page-table-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 16px;
    -webkit-overflow-scrolling: touch;

    @media screen and (max-width: 834px) {
        margin: 0 -10px 16px;
    }
}

.settings-page-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.settings-page-table-wrapper::-webkit-scrollbar-track {
    background: #F1EEF4;
    border-radius: 4px;
}

.settings-page-table-wrapper::-webkit-scrollbar-thumb {
    background: #BFC2C5;
    border-radius: 4px;
}

.settings-page-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.settings-page-table {
    width: 100%;
    background: #fcfcfc;
    border-collapse: collapse;
    overflow: auto;
    min-width: 1200px;

    input {
        height: 16px;
        width: 16px;
    }

    th {
        text-align: left;
        padding: 12px 16px;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #605767;
        border-bottom: 1px solid #cfcdd0;
        background: #fcfcfc;
        white-space: nowrap;
        position: sticky;
        top: 0;
        height: 62px;

        div {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            cursor: pointer;

            &.sortable:hover {
                color: #4E008E;
            }
        }

        &:first-child {
            padding: 12px 0 12px 32px;
        }

        img {
            width: 16px;
            height: 16px;
            opacity: 0.6;
        }
    }

    tr {
        cursor: pointer;

        &:hover {
            td {
                background: #eeecf0;
            }
        }

        td {
            font-size: 13px;
            font-weight: 400;
            line-height: 22px;
            color: #2e2c30;
            padding: 12px 16px;
            border-bottom: 1px solid #cfcdd0;
            white-space: nowrap;

            &:first-child {
                padding: 12px 16px 12px 32px;
            }
        }
    }
}

.request-description-cell {
    white-space: normal !important;
    word-wrap: break-word;
    word-break: break-word;
    max-width: 300px;
    min-width: 200px;
    line-height: 1.4;
}

.settings-page-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.settings-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #a4a4b0;
    background: #ffffff;
    box-shadow: 0px 2px 4px 0px #1a2b440f;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    color: #2e2c30;
    height: 32px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;

    img {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    &:hover {
        background: #f8f8f9;
        transform: translateY(-1px);
        box-shadow: 0px 4px 8px 0px #1a2b441a;
    }

    &.delete-btn {
        color: #c33e36;
        border-color: #c33e36;

        &:hover {
            background: #fef2f2;
            color: #dc2626;
            border-color: #dc2626;
        }
    }
}

/* Mobile responsiveness for settings table */
@media screen and (max-width: 1200px) {
    .settings-page-table {
        min-width: 1300px;
    }

    .product-template-table {
        min-width: 800px;
    }

    .vendors-table {
        min-width: 800px;
    }
}

@media screen and (max-width: 834px) {
    .settings-page-table th {
        height: 54px;
    }
}

@media screen and (max-width: 480px) {
    .settings-page-table {
        min-width: 900px;
    }

    .product-template-table {
        min-width: 700px;
    }

    .vendors-table {
        min-width: 700px;
    }

    .settings-action-btn {
        font-size: 12px;
        padding: 6px 12px;
        height: 28px;

        img {
            width: 14px;
            height: 14px;
        }
    }
}

/* Delete Confirmation Modal Styles */
.delete-confirmation-modal {
    .modal {
        background: #ffffff !important;
        max-width: 544px;
        width: 100%;

        @media screen and (max-width: 480px) {
            width: 90%;
        }
    }

    .modal-content {
        max-width: none !important;
        width: auto !important;
        padding: 32px !important;
        max-height: none !important;
    }

    .modal-title {
        font-size: 18px;
        font-weight: 700;
        line-height: 22px;
        color: #2e2c30;
        margin-bottom: 16px;
        text-align: left;
    }

    .delete-modal-body {
        margin-bottom: 32px;

        p {
            font-size: 14px;
            font-weight: 400;
            line-height: 22px;
            color: #373239;
            margin-bottom: 8px;

            strong {
                font-weight: 600;
                color: #2e2c30;
            }
        }

        .delete-warning {
            color: #373239;
            margin-top: 24px;
            margin-bottom: 0;
        }
    }

    .delete-modal-actions {
        display: flex;
        justify-content: flex-end;
        gap: 12px;

        @media screen and (max-width: 480px) {
            flex-direction: column;
            gap: 8px;
        }
    }

    .modal-cancel-btn {
        padding: 10px 18px;
        background: #ffffff;
        border: 1px solid #4e008e;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #373239;
        cursor: pointer;
        transition: all 0.2s ease;

        &:hover {
            background: #f8f8f9;
            border-color: #9b9aa5;
        }
    }

    .modal-delete-btn {
        padding: 10px 18px;
        background: #c33e36;
        border: 1px solid #c33e36;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #ffffff;
        cursor: pointer;
        transition: all 0.2s ease;

        &:hover {
            background: #dc2626;
            border-color: #dc2626;
        }

        &:active {
            background: #b91c1c;
            border-color: #b91c1c;
        }
    }
}

/* Color Table Specific Styles */
.table-color {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    flex-shrink: 0;
}

.table-color-preview {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Color Modal Specific Styles */
.edit-order-modal .modal-footer {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.edit-order-modal .modal-cancel-btn {
    padding: 10px 18px;
    background: transparent;
    border: 1px solid #a4a4b0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #373239;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

    &:hover {
        background: #c33e36;
        color: #ffffff;
    }
}

.edit-order-modal .modal-submit-btn {
    padding: 10px 18px;
    background: #4e008e;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #ffffff;
    cursor: pointer;
    margin: 0 !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

    &:hover {
        background: #3d006b;
        border-color: #3d006b;
    }
}

/* Request Table Specific Styles */

.request-table {

    th:nth-child(2),
    td:nth-child(2) {
        padding: 12px 16px 12px 0;
    }

    /* Status Badge Styles */
    .table-status-bag {
        padding: 2px 8px;
        font-weight: 500;
        font-size: 12px;
        line-height: 155%;
        text-align: center;
        border-radius: 16px;
        width: max-content;
        border: 1px solid;

        /* Approved Status - Green theme */
        &.APPROVED {
            background: var(--light-green, #f4fdd4);
            border-color: var(--green, #aed44c);
            color: var(--dark-green, #67783d);
        }

        /* Expired & Rejected Status - Grey theme */
        &.EXPIRED,
        &.REJECTED {
            background: var(--grey-100, #f1eef4);
            border-color: var(--grey-300, #9b9aa5);
            color: var(--grey-400, #605767);
        }
    }
}

.request-page,
.settings-page {

    .page-header-actions {
        margin-left: 0;
    }

    .action-btn {
        border: 1px solid;
        border-radius: 12px;
        padding: 10px 18px;
        font-size: 14px;
        font-weight: 400;
        line-height: 157%;
        text-align: center;
        cursor: pointer;
        background: transparent;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }


    .select-all-btn {
        background: #f1eef4;
        border-color: #4e008e;
        color: #373239;

        &:hover {
            background: #f8f8f9;
            border-color: #9b9aa5;
        }
    }

    .cancel-btn {
        background: #f1eef4;
        border-color: #4e008e;
        color: #373239;

        &:hover {
            background: #f8f8f9;
            border-color: #9b9aa5;
        }
    }

    .delete-request-btn {
        border-color: #c33e36;
        background: #fff2f2;
        color: #373239;

        &:hover {
            background: #fef2f2;
            color: #dc2626;
            border-color: #dc2626;
        }
    }
}

/* Request Pagination Styles */
.request-pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 8px 16px 0 16px;
    gap: 16px;

    @media screen and (max-width: 768px) {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .pagination {
        margin: 0;
    }
}

.request-pagination-select {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #fcfcfc;
    border: 1px solid #cacaca;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;

    &:hover {
        border-color: #4e008e;
    }

    &.focus {
        border-color: #4e008e;

        .select-dropdown {
            display: block;
        }
    }

    .select-value {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #373239;
    }

    .select-arrow-down {
        width: 16px;
        height: 16px;
        transform: rotate(90deg);
        transition: transform 0.2s ease;
    }

    &.focus .select-arrow-down {
        transform: rotate(-90deg);
    }

    .select-dropdown {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        right: 0;
        background: #ffffff;
        border: 1px solid #cacaca;
        border-radius: 8px;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        display: none;
        z-index: 1000;

        &.dropdown-up {
            top: auto;
            bottom: calc(100% + 4px);
        }

        &.dropdown-left {
            left: auto;
            right: 0;
        }

        div {
            max-height: 200px;
            overflow: auto;
            padding: 0;

            span {
                display: block;
                padding: 10px 16px;
                font-size: 14px;
                font-weight: 400;
                line-height: 22px;
                color: #605767;
                cursor: pointer;
                border-bottom: 1px solid #f0f0f0;
                transition: all 0.2s ease;

                &:hover,
                &.active {
                    background: #f8f6fa;
                    color: #4e008e;
                }

                &:last-child {
                    border-bottom: none;
                }
            }
        }
    }
}

.setting-product-template-header {
    padding: 19px 32px;
    background: #eeecf0;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;

    .setting-product-template-filters {
        display: flex;
        gap: 8px;
        align-items: flex-start;

        @media screen and (max-width: 834px) {
            width: 100%;
        }
    }

    @media screen and (max-width: 834px) {
        flex-direction: column;

        .settings-page-header-form {
            width: 100%;
        }

        .page-header-search {
            width: 100%;

            input {
                width: 100%;
            }
        }
    }

    @media screen and (max-width: 480px) {
        padding: 24px 10px;
    }

    .stores-page-table-filters-label {
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        color: #1e1920;
        margin-bottom: 8px;
    }

    .stores-page-table-filters-select-wide {
        width: 180px;

        .select {
            height: auto;
            border-radius: 12px;
            padding: 10px 16px;
            border: 1px solid var(--grey-300);
            background: var(--grey-100);
            position: relative;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 14px;
            font-weight: 400;
            line-height: 157%;
            color: var(--grey-400);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

            .select-value {
                flex: 1;
                text-align: left;
            }

            .select-arrow-down {
                width: 16px;
                height: 16px;
                transition: transform 0.2s;
                transform: rotate(90deg);
            }

            &:hover {
                border-color: var(--primary);
            }

            &:focus,
            &.focus {
                border-color: var(--primary);
                outline: none;

                .select-dropdown {
                    display: block;
                }

                .select-arrow-down {
                    transform: rotate(270deg);
                }
            }

            .select-dropdown {
                position: absolute;
                top: calc(100% + 4px);
                left: 0;
                width: 100%;
                min-width: 150px;
                border-radius: 12px;
                background: #fff;
                border: 1px solid #f3f2f8;
                box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.08);
                overflow: hidden;
                display: none;
                z-index: 1000;

                div {
                    max-height: 200px;
                    overflow: auto;
                    padding: 8px;

                    &::-webkit-scrollbar {
                        width: 6px;
                    }

                    &::-webkit-scrollbar-track {
                        background: #F1EEF4;
                        border-radius: 4px;
                    }

                    &::-webkit-scrollbar-thumb {
                        background: #BFC2C5;
                        border-radius: 4px;
                    }

                    span {
                        display: block;
                        padding: 9px 16px;
                        font-size: 14px;
                        font-weight: 400;
                        line-height: 157%;
                        color: var(--black);
                        cursor: pointer;
                        border-radius: 8px;
                        transition: all 0.2s;

                        &:hover {
                            background: var(--grey-100);
                            color: var(--black);
                        }

                        &.active {
                            background: var(--grey-100);
                            color: var(--black);
                        }
                    }
                }
            }
        }

        @media screen and (max-width: 834px) {
            width: 100%;
        }
    }
}

.setting-product-template-buttons {
    .btn {
        margin: 0;
    }
}

.setting-product-template-page {

    .settings-page-table-wrapper .settings-page-table td,
    .settings-page-table-wrapper .settings-page-table th {
        padding: 8px 12px;
    }

    .settings-page-table-wrapper .settings-page-table td:first-child,
    .settings-page-table-wrapper .settings-page-table th:first-child {
        padding: 8px 0 8px 32px;
        width: 40px;
    }

    .settings-page-table-wrapper .checkbox-input {
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .settings-page-table tbody tr {
        height: auto;
    }

    .setting-product-template-buttons {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .delete-request-btn {
        display: none;
    }

    .delete-request-btn.show {
        display: inline-flex;
    }
}

.setting-product-categories-page {

    .settings-page-table-wrapper .settings-page-table td,
    .settings-page-table-wrapper .settings-page-table th {
        padding: 8px 12px;
    }

    .settings-page-table-wrapper .settings-page-table td:first-child,
    .settings-page-table-wrapper .settings-page-table th:first-child {
        padding: 8px 8px;
        width: 40px;

        @media screen and (max-width: 834px) {
            padding: 8px 8px 8px 16px;
        }
    }

    .settings-page-table-wrapper .settings-page-table td:nth-child(2),
    .settings-page-table-wrapper .settings-page-table th:nth-child(2) {
        padding: 8px 8px;
        width: 40px;
    }

    .settings-page-table-wrapper .checkbox-input {
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .settings-page-table-wrapper .handle {
        cursor: move;
        display: block;
    }

    .settings-page-table tbody tr {
        height: auto;
    }

    @media screen and (max-width: 834px) {

        .settings-page-header {
            justify-content: flex-end;
        }

        .settings-page-header-form {
            width: 100%;

            input {
                width: 100%;
            }
        }
    }
}

.product-template-pagination-wrapper,
.product-categories-pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 8px 16px 0 16px;
    gap: 16px;

    @media screen and (max-width: 768px) {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .pagination {
        margin: 0;
    }
}

.product-template-pagination-view,
.product-categories-pagination-view {
    display: flex;
    align-items: center;
    align-self: flex-end;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #373239;
    width: 110px;

    &:only-child {
        margin-left: auto;
    }

    span {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .select {
        flex: 1;
    }
}

.product-template-pagination-select,
.product-categories-pagination-select {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #fcfcfc;
    border: 1px solid #cacaca;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;

    &:hover {
        border-color: #4e008e;
    }

    &.focus {
        border-color: #4e008e;

        .select-dropdown {
            display: block;
        }
    }

    .select-value {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #373239;
    }

    .select-arrow-down {
        width: 16px;
        height: 16px;
        transform: rotate(90deg);
        transition: transform 0.2s ease;
    }

    &.focus .select-arrow-down {
        transform: rotate(-90deg);
    }

    .select-dropdown {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        right: 0;
        background: #ffffff;
        border: 1px solid #cacaca;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        display: none;
        z-index: 1000;

        &.dropdown-up {
            top: auto;
            bottom: calc(100% + 4px);
        }

        &.dropdown-left {
            left: auto;
            right: 0;
        }

        div {
            max-height: 200px;
            overflow: auto;
            padding: 0;

            span {
                display: block;
                padding: 10px 16px;
                font-size: 14px;
                font-weight: 400;
                line-height: 22px;
                color: #605767;
                cursor: pointer;
                border-radius: unset;
                border-bottom: 1px solid #f0f0f0;
                transition: all 0.2s ease;

                &:hover,
                &.active {
                    background: #4e008e;
                    color: #ffffff;
                }

                &:last-child {
                    border-bottom: none;
                }
            }
        }
    }
}

.vendors-table {
    table-layout: fixed;
    width: 100%;
}

.vendors-pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 8px 16px 0 16px;
    gap: 16px;

    @media screen and (max-width: 768px) {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .pagination {
        margin: 0;
    }
}

.vendors-pagination-view {
    display: flex;
    align-items: center;
    align-self: flex-end;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #373239;
    width: 110px;

    &:only-child {
        margin-left: auto;
    }

    span {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .select {
        flex: 1;
    }
}

.vendors-pagination-select {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #fcfcfc;
    border: 1px solid #cacaca;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;

    &:hover {
        border-color: #4e008e;
    }

    &.focus {
        border-color: #4e008e;

        .select-dropdown {
            display: block;
        }
    }

    .select-value {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #373239;
    }

    .select-arrow-down {
        width: 16px;
        height: 16px;
        transform: rotate(90deg);
        transition: transform 0.2s ease;
    }

    &.focus .select-arrow-down {
        transform: rotate(-90deg);
    }

    .select-dropdown {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        right: 0;
        background: #ffffff;
        border: 1px solid #cacaca;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        display: none;
        z-index: 1000;

        &.dropdown-up {
            top: auto;
            bottom: calc(100% + 4px);
        }

        &.dropdown-left {
            left: auto;
            right: 0;
        }

        div {
            max-height: 200px;
            overflow: auto;
            padding: 0;

            span {
                display: block;
                padding: 10px 16px;
                font-size: 14px;
                font-weight: 400;
                line-height: 22px;
                color: #605767;
                cursor: pointer;
                border-radius: unset;
                border-bottom: 1px solid #f0f0f0;
                transition: all 0.2s ease;

                &:hover,
                &.active {
                    background: #4e008e;
                    color: #ffffff;
                }

                &:last-child {
                    border-bottom: none;
                }
            }
        }
    }
}


.tags-table {
    table-layout: fixed;
    width: 100%;
}

.tags-pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 8px 16px 0 16px;
    gap: 16px;

    @media screen and (max-width: 768px) {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .pagination {
        margin: 0;
    }
}

.tags-pagination-view {
    display: flex;
    align-items: center;
    align-self: flex-end;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #373239;
    width: 110px;

    &:only-child {
        margin-left: auto;
    }

    span {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .select {
        flex: 1;
    }
}

.tags-pagination-select {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #fcfcfc;
    border: 1px solid #cacaca;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;

    &:hover {
        border-color: #4e008e;
    }

    &.focus {
        border-color: #4e008e;

        .select-dropdown {
            display: block;
        }
    }

    .select-value {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #373239;
    }

    .select-arrow-down {
        width: 16px;
        height: 16px;
        transform: rotate(90deg);
        transition: transform 0.2s ease;
    }

    &.focus .select-arrow-down {
        transform: rotate(-90deg);
    }

    .select-dropdown {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        right: 0;
        background: #ffffff;
        border: 1px solid #cacaca;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        display: none;
        z-index: 1000;

        &.dropdown-up {
            top: auto;
            bottom: calc(100% + 4px);
        }

        &.dropdown-left {
            left: auto;
            right: 0;
        }

        div {
            max-height: 200px;
            overflow: auto;
            padding: 0;

            span {
                display: block;
                padding: 10px 16px;
                font-size: 14px;
                font-weight: 400;
                line-height: 22px;
                color: #605767;
                cursor: pointer;
                border-radius: unset;
                border-bottom: 1px solid #f0f0f0;
                transition: all 0.2s ease;

                &:hover,
                &.active {
                    background: #4e008e;
                    color: #ffffff;
                }

                &:last-child {
                    border-bottom: none;
                }
            }
        }
    }
}

.product-group-table {
    table-layout: fixed;
    width: 100%;
}

.store-reports-page {
    padding: 56px 32px;

    .store-reports-page-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;

        @media screen and (max-width: 834px) {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
    }

    .store-reports-page-title {
        font-size: 24px;
        font-weight: 700;
        line-height: 32px;
        text-align: left;
        color: #2e2c30;
        margin: 0;
    }

    .store-reports-book-call-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        background: #4E008E;
        border: none;
        border-radius: 16px;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #FCFCFC;
        cursor: pointer;
        transition: all 0.3s;

        img {
            width: 16px;
            height: 16px;
        }
    }

    .store-reports-page-top-filters {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F1EEF4;
        margin: 0 -32px 0;
        padding: 16px 32px;
        flex-wrap: wrap;
        gap: 10px;

        @media screen and (max-width: 834px) {
            flex-direction: column;
        }

        @media screen and (max-width: 440px) {
            margin: 0 -10px 0;
            padding: 16px 10px;
            gap: 16px;
        }
    }

    .store-reports-page-top-filters-label {
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        color: #1e1920;
        margin-bottom: 8px;
    }

    .store-reports-page-top-filters-selects-group {
        display: flex;
        gap: 8px;
        align-items: flex-start;
        flex-wrap: wrap;

        @media screen and (max-width: 834px) {
            width: 100%;
        }

        @media screen and (max-width: 500px) {
            flex-direction: column;
            gap: 16px;
        }
    }

    .store-reports-page-top-filters-select {
        min-width: 183px;
        width: max-content;

        .select {
            height: auto;
            border-radius: 12px;
            padding: 10px 16px;
            border: 1px solid var(--grey-300);
            background: var(--grey-100);
            position: relative;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            font-size: 14px;
            font-weight: 400;
            line-height: 157%;
            color: var(--grey-400);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

            .select-value {
                flex: 1;
                text-align: left;
                white-space: nowrap;
            }

            .select-arrow-down {
                width: 16px;
                height: 16px;
                transition: transform 0.2s;
                transform: rotate(90deg);
            }

            &:hover {
                border-color: var(--primary);
            }

            &:focus,
            &.focus {
                border-color: var(--primary);
                outline: none;

                .select-dropdown {
                    display: block;
                }

                .select-arrow-down {
                    transform: rotate(270deg);
                }
            }

            .select-dropdown {
                position: absolute;
                top: calc(100% + 4px);
                left: 0;
                width: 100%;
                min-width: 183px;
                border-radius: 12px;
                background: #fff;
                border: 1px solid #f3f2f8;
                box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.08);
                overflow: hidden;
                display: none;
                z-index: 1000;

                div {
                    max-height: 200px;
                    overflow: auto;
                    padding: 8px;

                    &::-webkit-scrollbar {
                        width: 6px;
                    }

                    &::-webkit-scrollbar-track {
                        background: #F1EEF4;
                        border-radius: 4px;
                    }

                    &::-webkit-scrollbar-thumb {
                        background: #BFC2C5;
                        border-radius: 4px;
                    }

                    span {
                        display: block;
                        padding: 9px 16px;
                        font-size: 14px;
                        font-weight: 400;
                        line-height: 157%;
                        color: var(--black);
                        cursor: pointer;
                        border-radius: 8px;
                        transition: all 0.2s;

                        &:hover {
                            background: var(--grey-100);
                            color: var(--black);
                        }

                        &.active {
                            background: var(--grey-100);
                            color: var(--black);
                        }
                    }
                }
            }

            &.dropdown-up .select-dropdown {
                top: auto;
                bottom: calc(100% + 4px);
            }

            &.dropdown-down .select-dropdown {
                top: calc(100% + 4px);
                bottom: auto;
            }
        }

        @media screen and (max-width: 834px) {
            width: 100% !important;
            max-width: 100%;
        }
    }

    .store-reports-top-filters-actions {
        display: flex;
        align-items: end;
        gap: 45px;
        flex-wrap: wrap;

        @media screen and (max-width: 834px) {
            width: 100%;
            gap: 16px;
        }
    }

    .store-reports-page-table-filters-dates {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;

        @media screen and (max-width: 834px) {
            width: 100%;
            gap: 16px;
        }
    }


    .store-reports-page-table-filters-dates-item {
        display: flex;
        flex-direction: column;
        gap: 8px;

        @media screen and (max-width: 440px) {
            width: 100%;
        }
    }

    .store-reports-page-table-filters-label {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #2e2c30;
    }

    .store-reports-page-filters-dates-input {
        padding: 13px 10px 13px 16px !important;
        border: 1px solid #9b9aa5;
        border-radius: 12px;
        height: 42px;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        width: 132px;
        position: relative;

        @media screen and (max-width: 834px) {
            width: 100%;
        }

        input[type="date"] {
            width: 80px;
            font-size: 12px;
            font-weight: 400;
            line-height: 16px;
            color: #605767;
            background: transparent;
            border: none;
            outline: none;
            cursor: pointer;
            position: relative;
            z-index: 1;

            &::-webkit-datetime-edit-fields-wrapper {
                color: #605767;
            }

            &::-webkit-datetime-edit-text {
                color: #605767;
                padding: 0;
            }

            &::-webkit-datetime-edit-month-field,
            &::-webkit-datetime-edit-day-field,
            &::-webkit-datetime-edit-year-field {
                color: #605767;
            }

            &::-webkit-calendar-picker-indicator {
                position: absolute;
                left: -16px;
                top: -13px;
                width: 132px;
                height: 42px;
                opacity: 0;
                cursor: pointer;
                z-index: 2;
            }

            @media screen and (max-width: 834px) {
                width: 100%;
            }
        }

        img {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            pointer-events: none;
        }

        &:hover {
            border-color: #4E008E;
        }

        @media screen and (max-width: 834px) {
            width: 100%;
            min-width: unset;
        }
    }

    .store-reports-page-filters-dates-input-end {
        background: #FCFCFC;
    }

    .store-reports-page-filters-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;

        @media screen and (max-width: 834px) {
            width: 100%;
            justify-content: flex-end;
        }
    }

    .store-reports-page-btn-action {
        border-radius: 12px;
        padding: 10px 18px;
        font-size: 14px;
        font-weight: 400;
        line-height: 157%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #373239;
        color: #fcfcfc;
        border: 1px solid #9569ba;
    }

    .store-reports-page-btn-delete {
        height: 42px;
        border: 1px solid var(--error);
        border-radius: 12px;
        padding: 10px 18px;
        background: var(--light-red);
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        text-align: center;
        color: var(--black);
        cursor: pointer;
        transition: all 0.2s;
        display: none;

        &:hover {
            background: #ffe5e5;
            border-color: #d32f2f;
        }
    }

    .store-reports-page-content {
        margin-top: 32px;
    }

    .store-reports-page-products-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px 32px;

        @media screen and (max-width: 1210px) {
            gap: 24px;
        }

        @media screen and (max-width: 834px) {
            grid-template-columns: 1fr;
            gap: 16px;
        }
    }

    .store-reports-product-card {
        background: #FFFFFF;
        border: 1px solid #cacaca;
        border-radius: 12px;
        padding: 16px;
        position: relative;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

        @media (hover: hover) {
            &:hover {
                box-shadow: 0 0 5px 2px rgba(145, 76, 184, 0.27);
            }
        }
    }

    .store-reports-product-badge {
        position: absolute;
        top: 16px;
        left: 16px;
        background: #fbb041;
        color: #373239;
        font-weight: 400;
        font-size: 12px;
        line-height: 133%;
        border-radius: 20px;
        padding: 2px 8px;
        border: 1px solid #cacaca;
        ;
        z-index: 1;
    }

    .store-reports-product-image {
        width: 100%;
        height: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        overflow: hidden;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    .store-reports-product-title {
        font-weight: 700;
        font-size: 14px;
        line-height: 129%;
        letter-spacing: 0.01em;
        color: #373239;
        margin: 0 0 16px 0;
    }

    .store-reports-product-sizes {
        display: flex;
        align-items: center;
        gap: 13px;
        margin-bottom: 8px;
        flex-wrap: wrap;

        &:last-child {
            margin-bottom: 0;
        }
    }

    .store-reports-size-item {
        font-weight: 400;
        font-size: 12px;
        line-height: 133%;
        color: #373239;

        strong {
            font-weight: 700;
        }
    }

    .store-reports-page-footer {
        margin-top: 24px;
    }

    .store-reports-pagination-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;

        @media screen and (max-width: 440px) {
            flex-direction: column;
            justify-content: center;
        }
    }

    .pagination-view {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .store-reports-pagination-select {
        width: 78px;
        height: auto;
        border-radius: 12px;
        padding: 10px 16px;
        border: 1px solid var(--grey-300);
        background: var(--grey-100);
        position: relative;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 14px;
        font-weight: 400;
        line-height: 157%;
        color: var(--grey-400);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

        .select-value {
            flex: 1;
            text-align: left;
        }

        .select-arrow-down {
            width: 16px;
            height: 16px;
            transition: transform 0.2s;
            transform: rotate(90deg);
        }

        &:hover {
            border-color: var(--primary);
        }

        &:focus,
        &.focus {
            border-color: var(--primary);
            outline: none;

            .select-dropdown {
                display: block;
            }

            .select-arrow-down {
                transform: rotate(270deg);
            }
        }

        .select-dropdown {
            position: absolute;
            top: calc(100% + 4px);
            left: 0;
            width: 100%;
            min-width: 78px;
            border-radius: 12px;
            background: #fff;
            border: 1px solid #f3f2f8;
            box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.08);
            overflow: hidden;
            display: none;
            z-index: 1000;

            div {
                max-height: 200px;
                overflow: auto;
                padding: 8px;

                &::-webkit-scrollbar {
                    width: 6px;
                }

                &::-webkit-scrollbar-track {
                    background: #F1EEF4;
                    border-radius: 4px;
                }

                &::-webkit-scrollbar-thumb {
                    background: #BFC2C5;
                    border-radius: 4px;
                }

                span {
                    display: block;
                    padding: 9px 16px;
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 157%;
                    color: var(--black);
                    cursor: pointer;
                    border-radius: 8px;
                    transition: all 0.2s;

                    &:hover {
                        background: var(--grey-100);
                        color: var(--black);
                    }

                    &.active {
                        background: var(--grey-100);
                        color: var(--black);
                    }
                }
            }
        }

        &.dropdown-up .select-dropdown {
            top: auto;
            bottom: calc(100% + 4px);
        }

        &.dropdown-down .select-dropdown {
            top: calc(100% + 4px);
            bottom: auto;
        }
    }

    @media screen and (max-width: 440px) {

        .store-reports-page-table-filters-dates {
            width: 100%;
            justify-content: flex-start;
            align-items: flex-start;
            flex-direction: column;

            .stores-page-table-filters-dates-item {
                width: 100%;
            }

            .stores-page-filters-dates-input {
                width: 100%;
                justify-content: space-between;

                input[type="date"] {
                    width: 100%;
                }
            }

            .calendar-icon {
                width: 24px;
                height: 24px;
            }

            .stores-page-filters-dates-input-end {
                width: 100%;
                justify-content: space-between;

                input[type="date"] {
                    width: 100%;
                }
            }
        }

    }
}

/* Fundraising Page Styles */
.fundraising-page {
    padding: 56px 0;

    @media screen and (max-width: 834px) {

        .overview-page-top-header-actions {
            width: 100%;
            justify-content: flex-end;
        }
    }

    .fundraising-page-head {
        padding: 0 32px;

        @media screen and (max-width: 834px) {
            padding: 0 16px;

            .store-reports-page-header {
                justify-content: flex-end;
                gap: 16px;
            }
        }
    }

    .store-reports-page-header {
        margin-bottom: 0;
    }

    .overview-page-top-header-info-wrapper {
        gap: 40px;

        .page-header-search {
            input {
                width: 100%;
            }
        }

        @media screen and (max-width: 834px) {
            width: 100%;

            .page-header-search {
                width: 100%;

                input {
                    width: 100%;
                }
            }
        }
    }

    .fundraising-stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
        margin: 32px 0 24px 0;
    }

    .fundraising-stat-card {
        border: 1px solid #cacaca;
        border-radius: 16px;
        padding: 16px 24px;
        background: #f1eef4;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .fundraising-stat-card-info {
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }

    .fundraising-stat-content {
        flex: 1;
    }

    .fundraising-stat-label {
        font-weight: 400;
        font-size: 16px;
        line-height: 125%;
        margin-bottom: 8px;
        color: #373239;
    }

    .fundraising-stat-value {
        font-weight: 500;
        font-size: 36px;
        line-height: 111%;
        color: #373239;
        margin-bottom: 8px;
    }

    .fundraising-stat-sublabel {
        font-weight: 400;
        font-size: 12px;
        line-height: 133%;
        color: #605767;
    }

    .fundraising-stat-card-orders {
        border-radius: 16px;
        padding: 4px 12px;
        background: #f0fdf4;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .fundraising-stat-orders-count {
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        color: #67783d;
        margin: 0;
    }

    .fundraising-page-content {
        background: #ffffff;
        border: 1px solid #e1e1e6;
        border-radius: 16px;
        padding: 24px;
        margin-top: 24px;
    }

    .fundraising-table-header {
        margin-bottom: 24px;

        h2 {
            font-size: 20px;
            font-weight: 700;
            color: #2e2c30;
        }
    }

    .fundraising-page-table-section {
        margin-top: 32px;
        padding: 0 32px;

        @media screen and (max-width: 834px) {
            padding: 0 16px;
        }
    }

    .fundraising-page-footer {
        margin-top: 24px;
    }

    .fundraising-page-table {
        tbody {
            tr {
                td {
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 157%;
                    color: #373239;

                    &:first-child {
                        text-align: left;
                    }
                }
            }
        }

        @media screen and (max-width: 440px) {

            th,
            td {
                width: fit-content;
                max-width: 100%;
                min-width: 100%;
            }

        }
    }

    .fundraising-payments-btn {
        border: 1px solid #9b9aa5;
        border-radius: 6px;
        padding: 5px 16px 5px 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        color: #373239;
        cursor: pointer;
        transition: all 0.3s;

        &:hover {
            background: #e5dff0;
            border-color: #4E008E;
        }

        svg {
            flex-shrink: 0;
        }
    }
}

/* Place Orders & Fundraising Pagination Select Styles */
button.place-orders-pagination-select.select {
    height: 42px;
    border-radius: 12px;
    padding: 10px 16px;
    border: 1px solid var(--grey-300);
    background: var(--grey-100);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
    line-height: 157%;
    color: var(--grey-400);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    .select-value {
        flex: 1;
        text-align: left;
    }

    .select-arrow-down {
        width: 16px;
        height: 16px;
        transition: transform 0.2s;
        transform: rotate(90deg);
        flex-shrink: 0;
    }

    &:hover {
        border-color: var(--primary);
    }

    &:focus,
    &.focus {
        border-color: var(--primary);
        outline: none;

        .select-dropdown {
            display: block;
        }

        .select-arrow-down {
            transform: rotate(270deg);
        }
    }

    .select-dropdown {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        width: 100%;
        min-width: 78px;
        border-radius: 12px;
        background: #fff;
        border: 1px solid #f3f2f8;
        box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.08);
        overflow: hidden;
        display: none;
        z-index: 1000;

        div {
            max-height: 200px;
            overflow: auto;
            padding: 8px;

            &::-webkit-scrollbar {
                width: 6px;
            }

            &::-webkit-scrollbar-track {
                background: #F1EEF4;
                border-radius: 4px;
            }

            &::-webkit-scrollbar-thumb {
                background: #BFC2C5;
                border-radius: 4px;
            }

            span {
                display: block;
                padding: 9px 16px;
                font-size: 14px;
                font-weight: 400;
                line-height: 157%;
                color: var(--black);
                cursor: pointer;
                border-radius: 8px;
                transition: all 0.2s;

                &:hover {
                    background: var(--grey-100);
                    color: var(--black);
                }

                &.active {
                    background: var(--grey-100);
                    color: var(--black);
                }
            }
        }
    }

    .select-dropdown.dropdown-up {
        top: auto;
        bottom: calc(100% + 4px);
        left: -7px;
    }

    &.dropdown-up .select-dropdown {
        top: auto;
        bottom: calc(100% + 4px);
        left: -7px;
    }

    &.dropdown-down .select-dropdown {
        top: calc(100% + 4px);
        bottom: auto;
    }

    &.dropdown-left .select-dropdown {
        left: auto;
        right: 0;
    }

    &.dropdown-right .select-dropdown {
        left: 0;
        right: auto;
    }
}

/* Managers Page Styles */
.managers-page {

    padding: 56px 0;

    .settings-page-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 32px;
        padding: 0 32px;

        @media screen and (max-width: 834px) {
            padding: 0 16px;
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
    }

    .settings-page-title {
        margin: 0;
    }

    .add-manager-btn {
        margin: 0;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        border-radius: 12px;

        @media screen and (max-width: 834px) {
            align-self: flex-end;
        }
    }

    .settings-page-title {
        font-size: 24px;
        font-weight: 700;
        line-height: 32px;
        text-align: left;
        color: #373239;
        margin: 0;
    }
}

/* Designs Page Styles */

.designs-page {

    .designs-page-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 32px;
        padding: 0 32px;

        @media screen and (max-width: 834px) {
            padding: 0 16px;
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;

            .designs-page-actions {
                align-self: flex-end;
            }
        }
    }

    .designs-page-title {
        margin: 0;
    }

    .designs-page-actions-call {
        margin: 0;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        border-radius: 12px;
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        color: #fff;
        background: #4e008e;

        @media screen and (max-width: 834px) {
            align-self: flex-end;
        }
    }

    .designs-page-title {
        font-size: 24px;
        font-weight: 700;
        line-height: 32px;
        text-align: left;
        color: #373239;
        margin: 0;
    }

    .designs-page-wrapper {
        padding: 0 32px;

        @media screen and (max-width: 834px) {
            padding: 0 16px;
        }
    }

    .designs-page-current-designs {
        padding: 24px;
        border: 1px solid var(--grey-200);
        border-radius: 12px;
        background: var(--grey-100);

        .designs-page-current-designs-title {
            font-weight: 600;
            font-size: 18px;
            line-height: 133%;
            color: #373239;
            margin: 0 0 24px;
        }

        .designs-page-current-designs-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            grid-auto-rows: 158px;

            @media (max-width: 1300px) {
                grid-template-columns: repeat(3, 1fr);
            }

            @media (max-width: 1000px) {
                grid-template-columns: repeat(2, 1fr);
            }

            @media (max-width: 800px) {
                grid-template-columns: repeat(1, 1fr);
            }
        }

        .designs-page-current-designs-card {
            border: 1px dashed #605767;
            border-radius: 12px;
            display: flex;
            align-items: end;
            justify-content: center;
            padding: 16px;
            position: relative;

            .design-actions-panel {
                position: absolute;
                bottom: 8px;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                gap: 4px;
                background: rgba(255, 255, 255, 0.95);
                padding: 6px;
                border-radius: 8px;
                backdrop-filter: blur(4px);
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
                opacity: 1;
            }

            .design-action-btn {
                padding: 6px;
                background: #fff;
                border: 1px solid #e0e0e0;
                border-radius: 4px;
                cursor: pointer;
                transition: all 0.2s ease;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 28px;
                height: 28px;

                &:hover {
                    background: #f5f5f5;
                    border-color: #ccc;
                    transform: translateY(-1px);
                }

                img {
                    width: 14px;
                    height: 14px;
                }

                &.delete-design:hover {
                    background: #fee;
                    border-color: #fbb;
                }
            }
        }
    }

    .designs-page-create-request {
        margin-top: 32px;
        padding: 24px;
        background: var(--white);
        border: 1px solid var(--grey-200);
        background: var(--grey-100);
        border-radius: 12px;

        .designs-page-create-request-title {
            font-weight: 600;
            font-size: 18px;
            line-height: 133%;
            color: var(--black);
            margin: 0 0 8px;
        }

        .designs-page-create-request-subtitle {
            font-weight: 400;
            font-size: 16px;
            line-height: 125%;
            color: var(--ligher-black);
            margin: 0 0 16px;
        }

        .designs-page-create-request-description {
            font-weight: 400;
            font-size: 14px;
            line-height: 157%;
            color: var(--grey-400);
            margin: 0 0 32px;
        }

        .designs-page-create-request-header {
            max-width: 800px;
            width: 100%;
            margin-bottom: 44px;
        }

        .design-request-section {
            margin-bottom: 32px;

            .design-request-section-title {
                font-weight: 700;
                font-size: 16px;
                line-height: 125%;
                color: var(--black);
                margin: 0 0 20px;
            }
        }

        .design-request-section-colors {
            .design-request-section-title {
                font-weight: 700;
                font-size: 16px;
                line-height: 125%;
                color: var(--black);
                margin: 0 0 24px;
            }
        }

        .design-request-section-form-container {
            max-width: 630px;
            width: 100%;

            .design-request-section-title {
                font-weight: 700;
                font-size: 16px;
                line-height: 125%;
                color: var(--black);
                margin: 0 0 16px;
            }
        }

        .design-styles-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 8px;
            grid-auto-rows: max-content;

            @media (max-width: 1300px) {
                grid-template-columns: repeat(3, 1fr);
            }

            @media (max-width: 1000px) {
                grid-template-columns: repeat(2, 1fr);
            }

            @media (max-width: 600px) {
                grid-template-columns: repeat(1, 1fr);
            }

            .design-style-card {
                position: relative;
                border: 1px solid var(--primary);
                border-radius: 6px;
                padding: 8px;
                background: var(--white);
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                cursor: pointer;

                input[type="radio"] {
                    position: absolute;
                    opacity: 0;
                    pointer-events: none;

                    &:checked~.design-style-card-header .checkbox-input {
                        border: 1.5px solid #9b9aa5;

                        &::before {
                            content: "";
                            display: block;
                            width: 16px;
                            height: 11px;
                            position: absolute;
                            left: 0;
                            background: url(../img/checkbox.svg) center/contain no-repeat;
                            bottom: 2px;
                        }
                    }

                    &:checked~.design-style-card-header .checkbox-input input[type="checkbox"] {
                        opacity: 1;
                    }
                }

                &:hover {
                    box-shadow: -1px 0 7px 3px rgba(114, 79, 114, 0.17);
                }

                .design-style-card-header {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    font-weight: 700;
                    font-size: 12px;
                    line-height: 133%;
                    text-align: center;
                    color: var(--black);
                    margin-bottom: 4px;

                    .checkbox-input {
                        margin: 0;
                    }

                    span {
                        flex: 1;
                        text-align: left;

                        @media screen and (max-width: 834px) {
                            margin-left: 100px;
                        }
                    }
                }

                .design-style-card-photo {
                    width: 100%;
                    height: 208px;
                    object-fit: contain;
                }
            }
        }

        .design-request-two-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;

            @media (max-width: 968px) {
                grid-template-columns: 1fr;
            }
        }

        .design-colors-list {
            display: flex;
            flex-direction: column;
            gap: 12px;

            .design-color-item {
                display: flex;
                align-items: center;
                gap: 12px;
                cursor: pointer;

                .checkbox-input {
                    margin: 0;
                }

                .design-color-indicator {
                    width: 20px;
                    height: 20px;
                    border-radius: 50%;
                    border: 1px solid var(--grey-200);
                    flex-shrink: 0;
                    position: relative;
                    z-index: 2;

                    &::before {
                        content: "";
                        display: block;
                        width: 24px;
                        height: 24px;
                        position: absolute;
                        border-radius: 50%;
                        border: 1px solid var(--grey-200);
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%);
                        z-index: 1;
                    }
                }

                span {
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 157%;
                    color: var(--black);
                }
            }
        }

        .design-request-field {
            margin-bottom: 16px;

            label {
                display: flex;
                align-items: flex-end;
                font-weight: 400;
                font-size: 14px;
                line-height: 157%;
                color: var(--black);
            }

            textarea {
                width: 100%;
                border: 1px solid var(--grey-200);
                border-radius: 12px;
                background: var(--white);
                padding: 16px;
                font-family: inherit;
                font-weight: 400;
                font-size: 14px;
                line-height: 157%;
                color: var(--black);
                resize: vertical;
                transition: all 0.3s;

                &:focus {
                    outline: none;
                    border-color: var(--primary);
                }

                &::placeholder {
                    color: var(--grey-300);
                }
            }
        }

        .design-dropzone {
            border: 2px dashed #605767;
            border-radius: 12px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: var(--white);

            &:hover,
            &.drag-over {
                border-color: var(--primary);
                background: var(--violet-100);
            }

            .design-dropzone-icon {
                width: 48px;
                height: 48px;
            }

            .design-dropzone-text {
                font-weight: 400;
                font-size: 14px;
                line-height: 157%;
                text-align: center;
                color: var(--grey-400);

                .design-dropzone-choose {
                    color: var(--primary);
                    font-weight: 600;
                    cursor: pointer;
                    transition: all 0.3s;

                    &:hover {
                        text-decoration: underline;
                    }
                }
            }
        }

        .uploaded-files-preview {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;

            .uploaded-file-item {
                position: relative;
                width: 100px;
                height: 100px;
                border: 1px solid var(--grey-200);
                border-radius: 8px;
                overflow: hidden;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

                .remove-file-btn {
                    position: absolute;
                    top: 4px;
                    right: 4px;
                    width: 24px;
                    height: 24px;
                    background: rgba(255, 255, 255, 0.9);
                    border: none;
                    border-radius: 50%;
                    font-size: 18px;
                    line-height: 1;
                    color: var(--error);
                    cursor: pointer;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: all 0.3s;

                    &:hover {
                        background: var(--error);
                        color: white;
                    }
                }

                .file-name {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    padding: 4px;
                    background: rgba(0, 0, 0, 0.7);
                    color: white;
                    font-size: 10px;
                    text-align: center;
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }
            }
        }

        .design-upload-hint {
            font-weight: 400;
            font-size: 14px;
            line-height: 157%;
            color: var(--black);
            margin: 4px 0 0;
        }

        .design-terms-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            cursor: pointer;

            .checkbox-input {
                margin: 0;
                margin-top: 2px;
                flex-shrink: 0;
            }

            span {
                font-weight: 400;
                font-size: 12px;
                line-height: 133%;
                color: #5a5b5d;

                a {
                    color: #004147;

                    &:hover {
                        text-decoration: none;
                    }
                }
            }
        }

        .design-request-submit-btn {
            border-radius: 12px;
            padding: 10px 16px;
            background: var(--primary);
            font-weight: 400;
            font-size: 14px;
            line-height: 157%;
            text-align: center;
            color: var(--white);
            cursor: pointer;
            margin-top: 32px;
        }
    }
}

.store-dashboard-book-call-btn {
    border: 1px solid var(--primary);
    background: var(--grey-100);
    border-radius: 12px;
    padding: 10px 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: var(--black);
}

/* Store Dashboard Date Filters Styles */
.store-dashboard-page-table-filters-dates {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;

    @media screen and (max-width: 834px) {
        width: 100%;
        gap: 16px;
    }

    @media screen and (max-width: 440px) {
        flex-direction: column;
    }
}

.store-dashboard-page-table-filters-dates-item {
    display: flex;
    flex-direction: column;
    gap: 8px;

    @media screen and (max-width: 440px) {
        width: 100%;
    }
}

.store-dashboard-page-table-filters-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #2e2c30;
}

.store-dashboard-page-filters-dates-input {
    padding: 13px 10px 13px 16px !important;
    border: 1px solid #9b9aa5;
    border-radius: 12px;
    height: 42px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    width: 165px;

    @media screen and (max-width: 834px) {
        width: 100%;
    }

    input[type="date"] {
        width: 105px;
        font-size: 12px;
        font-weight: 400;
        line-height: 16px;
        color: #605767;
        background: transparent;
        border: none;
        outline: none;
        cursor: pointer;

        &::-webkit-calendar-picker-indicator {
            display: none;
        }

        &::placeholder {
            color: #605767;
        }

        @media screen and (max-width: 834px) {
            width: 100%;
        }
    }

    img {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    &:hover {
        border-color: #4E008E;
    }

    @media screen and (max-width: 834px) {
        width: 100%;
        min-width: unset;
    }
}

.store-dashboard-page-filters-dates-input-end {
    background: #FCFCFC;
}

/* Analytics Page Styles */
.analytics-page {
    padding: 56px 32px;

    .analytics-page-header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: 24px;
    }

    .analytics-page-title {
        font-size: 24px;
        font-weight: 700;
        line-height: 32px;
        text-align: left;
        color: #2e2c30;
        margin: 0;
    }

    .analytics-page-top-filters {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F1EEF4;
        margin: 0 -32px 0;
        padding: 16px 32px;
        flex-wrap: wrap;
        gap: 10px;

        @media screen and (max-width: 834px) {
            flex-direction: column;
        }

        @media screen and (max-width: 440px) {
            margin: 0 -10px 0;
            padding: 16px 10px;
        }
    }

    .analytics-page-top-filters-label {
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        color: #1e1920;
        margin-bottom: 8px;
    }

    .analytics-page-top-filters-selects-group {
        display: flex;
        gap: 8px;
        align-items: flex-start;
        flex-wrap: wrap;

        @media screen and (max-width: 834px) {
            width: 100%;
        }

        @media screen and (max-width: 500px) {
            flex-direction: column;
            gap: 16px;
        }
    }

    .analytics-page-top-filters-select {
        width: 183px;

        .select {
            height: auto;
            border-radius: 12px;
            padding: 10px 16px;
            border: 1px solid var(--grey-300);
            background: var(--grey-100);
            position: relative;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 14px;
            font-weight: 400;
            line-height: 157%;
            color: var(--grey-400);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

            .select-value {
                flex: 1;
                text-align: left;
            }

            .select-arrow-down {
                width: 16px;
                height: 16px;
                transition: transform 0.2s;
                transform: rotate(90deg);
            }

            &:hover {
                border-color: var(--primary);
            }

            &:focus,
            &.focus {
                border-color: var(--primary);
                outline: none;

                .select-dropdown {
                    display: block;
                }

                .select-arrow-down {
                    transform: rotate(270deg);
                }
            }

            .select-dropdown {
                position: absolute;
                top: calc(100% + 4px);
                left: 0;
                width: 100%;
                min-width: 183px;
                border-radius: 12px;
                background: #fff;
                border: 1px solid #f3f2f8;
                box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.08);
                overflow: hidden;
                display: none;
                z-index: 1000;

                div {
                    max-height: 200px;
                    overflow: auto;
                    padding: 8px;

                    &::-webkit-scrollbar {
                        width: 6px;
                    }

                    &::-webkit-scrollbar-track {
                        background: #F1EEF4;
                        border-radius: 4px;
                    }

                    &::-webkit-scrollbar-thumb {
                        background: #BFC2C5;
                        border-radius: 4px;
                    }

                    span {
                        display: block;
                        padding: 9px 16px;
                        font-size: 14px;
                        font-weight: 400;
                        line-height: 157%;
                        color: var(--black);
                        cursor: pointer;
                        border-radius: 8px;
                        transition: all 0.2s;

                        &:hover {
                            background: var(--grey-100);
                            color: var(--black);
                        }

                        &.active {
                            background: var(--grey-100);
                            color: var(--black);
                        }
                    }
                }
            }
        }

        @media screen and (max-width: 834px) {
            width: 100% !important;
            max-width: 100%;
        }
    }

    .analytics-page-content {
        margin-top: 24px;
    }

    .analytics-page-table-filters-dates {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;

        @media screen and (max-width: 834px) {
            width: 100%;
            gap: 16px;
        }

        @media screen and (max-width: 440px) {
            justify-content: space-between;
        }
    }

    .analytics-page-table-filters-dates-item {
        display: flex;
        flex-direction: column;
        gap: 8px;

        @media screen and (max-width: 360px) {
            width: 100%;
        }
    }

    .analytics-page-table-filters-label {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #2e2c30;
    }

    .analytics-page-filters-dates-input {
        padding: 13px 10px 13px 16px !important;
        border: 1px solid #9b9aa5;
        border-radius: 16px;
        height: 42px;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        width: 183px;
        position: relative;

        input[type="date"] {
            width: 140px;
            font-size: 12px;
            font-weight: 400;
            line-height: 16px;
            color: #605767;
            background: transparent;
            border: none;
            outline: none;
            cursor: pointer;
            position: relative;
            z-index: 1;

            &::-webkit-datetime-edit-fields-wrapper {
                color: #605767;
            }

            &::-webkit-datetime-edit-text {
                color: #605767;
                padding: 0;
            }

            &::-webkit-datetime-edit-month-field,
            &::-webkit-datetime-edit-day-field,
            &::-webkit-datetime-edit-year-field {
                color: #605767;
            }

            &::-webkit-calendar-picker-indicator {
                position: absolute;
                left: -16px;
                top: -13px;
                width: 183px;
                height: 42px;
                opacity: 0;
                cursor: pointer;
                z-index: 2;
            }

            @media screen and (max-width: 360px) {
                width: 100%;
            }
        }

        img {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            pointer-events: none;
        }

        &:hover {
            border-color: #4E008E;
        }

        @media screen and (max-width: 834px) {
            width: 100%;
            min-width: unset;
        }
    }

    .analytics-page-filters-dates-input-end {
        background: #FCFCFC;
    }

    @media (max-width: 1100px) {
        padding: 56px 10px;
    }

    .analytics-info-items-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 16px;

        @media (max-width: 1100px) {
            grid-template-columns: 1fr 1fr;
        }

        @media (max-width: 768px) {
            grid-template-columns: 1fr;
        }
    }

    .analytics-info-item {
        border: 1px solid var(--grey-200);
        border-radius: 16px;
        padding: 16px 24px;
        background: var(--grey-100);

        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .analytics-info-item-head {
        display: flex;
        align-items: center;
        gap: 8px;

        svg {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }
    }

    .analytics-info-item-title {
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        color: var(--black);
        margin: 0;
    }

    .analytics-info-item-footer {
        display: flex;
        flex-direction: column;
        gap: 8px;

        .analytics-info-item-footer-value {
            font-weight: 500;
            font-size: 36px;
            line-height: 111%;
            color: var(--black);
            margin: 0;
        }

        .analytics-info-item-footer-subvalue {
            font-weight: 400;
            font-size: 12px;
            line-height: 133%;
            color: var(--grey-400);
            margin: 0;
        }
    }

    .analytics-tables-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 24px 16px;
        margin-top: 24px;

        .analytics-table-card:nth-child(1) {
            grid-column: 1 / 3;
        }

        .analytics-table-card:nth-child(2) {
            grid-column: 3 / 5;
        }

        .analytics-table-card:nth-child(3) {
            grid-column: 5 / 7;
        }

        .analytics-table-card:nth-child(4) {
            grid-column: 1 / 4;
        }

        .analytics-table-card:nth-child(5) {
            grid-column: 4 / 7;
        }

        .analytics-table-card:nth-child(6) {
            grid-column: 1 / -1;
        }

        @media (max-width: 1210px) {
            grid-template-columns: 1fr;
            gap: 24px;

            .analytics-table-card:nth-child(1),
            .analytics-table-card:nth-child(2),
            .analytics-table-card:nth-child(3),
            .analytics-table-card:nth-child(4),
            .analytics-table-card:nth-child(5),
            .analytics-table-card:nth-child(6) {
                grid-column: auto;
            }
        }

        @media (max-width: 834px) {
            gap: 16px;
        }
    }

    .analytics-table-card {
        border: 1px solid var(--grey-200);
        border-radius: 12px;
        padding: 24px;
        background: var(--grey-100);
        display: flex;
        flex-direction: column;
        min-width: 0;
        overflow: hidden;

        @media (max-width: 834px) {
            padding: 20px;
        }

        @media (max-width: 500px) {
            padding: 16px;
        }
    }

    .analytics-table-card-header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: 24px;

        @media (max-width: 834px) {
            margin-bottom: 20px;
        }

        @media (max-width: 500px) {
            margin-bottom: 16px;
            flex-wrap: wrap;
            gap: 12px;
        }
    }

    .analytics-table-card-title {
        font-weight: 600;
        font-size: 18px;
        line-height: 133%;
        color: var(--black);
        margin: 0;

        @media (max-width: 834px) {
            font-size: 16px;
        }

        @media (max-width: 500px) {
            font-size: 15px;
        }
    }

    .analytics-export-btn {
        border: 1px solid var(--violet-200);
        border-radius: 12px;
        padding: 10px 18px;
        background: var(--black);
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        color: var(--white);
        cursor: pointer;
        transition: all 0.3s;
        white-space: nowrap;

        &:hover {
            background: var(--primary);
            border-color: var(--primary);
        }

        @media (max-width: 834px) {
            padding: 9px 16px;
            font-size: 13px;
        }

        @media (max-width: 500px) {
            padding: 8px 14px;
            font-size: 12px;
        }
    }

    .analytics-table-wrapper {
        overflow-x: auto;
        overflow-y: auto;
        max-height: 400px;
        width: 100%;
        min-width: 0;
        -webkit-overflow-scrolling: touch;
        border: 1px solid var(--grey-200);
        border-radius: 8px;

        &::-webkit-scrollbar {
            height: 6px;
            width: 6px;
        }

        &::-webkit-scrollbar-track {
            background: #F1EEF4;
            border-radius: 4px;
        }

        &::-webkit-scrollbar-thumb {
            background: #BFC2C5;
            border-radius: 4px;
        }

        &::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }

        @media (max-width: 834px) {
            max-height: 350px;
        }

        @media (max-width: 500px) {
            border-radius: 6px;
            max-height: 300px;
        }
    }

    .analytics-table {
        width: 100%;
        background: var(--white);
        border-collapse: collapse;
        min-width: 650px;

        thead {
            position: sticky;
            top: 0;
            background: var(--white);
            z-index: 10;
        }

        th {
            text-align: left;
            padding: 12px 16px;
            font-size: 14px;
            font-weight: 400;
            line-height: 22px;
            color: #605767;
            border-bottom: 1px solid #CFCDD0;
            background: var(--white);
            white-space: nowrap;

            &:first-child {
                padding-left: 24px;
            }

            &:last-child {
                padding-right: 24px;
            }

            @media (max-width: 834px) {
                padding: 10px 14px;
                font-size: 13px;

                &:first-child {
                    padding-left: 20px;
                }

                &:last-child {
                    padding-right: 20px;
                }
            }

            @media (max-width: 500px) {
                padding: 10px 12px;
                font-size: 12px;

                &:first-child {
                    padding-left: 16px;
                }

                &:last-child {
                    padding-right: 16px;
                }
            }
        }

        tbody {
            tr {
                transition: background-color 0.2s;

                &:hover {
                    background: #F1EEF4;
                }

                &:last-child td {
                    border-bottom: none;
                }
            }

            td {
                font-size: 13px;
                font-weight: 400;
                line-height: 22px;
                color: #2E2C30;
                padding: 12px 16px;
                border-bottom: 1px solid #EEECF0;
                white-space: nowrap;

                &:first-child {
                    padding-left: 24px;
                }

                &:last-child {
                    padding-right: 24px;
                }

                @media (max-width: 834px) {
                    padding: 10px 14px;
                    font-size: 12px;

                    &:first-child {
                        padding-left: 20px;
                    }

                    &:last-child {
                        padding-right: 20px;
                    }
                }

                @media (max-width: 500px) {
                    padding: 8px 12px;
                    font-size: 11px;

                    &:first-child {
                        padding-left: 16px;
                    }

                    &:last-child {
                        padding-right: 16px;
                    }
                }
            }
        }
    }
}

/* Export Modal Styles */
.export-modal {
    .modal-content {
        width: 500px;
        max-width: 90vw;
    }

    .export-select {
        width: 100%;
        height: auto;
        border-radius: 12px;
        padding: 10px 16px;
        border: 1px solid #e5e5e7;
        background: #fcfcfc;
        position: relative;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 14px;
        font-weight: 400;
        line-height: 157%;
        color: #67666e;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        margin-bottom: 0;

        &.focus {
            margin-bottom: 180px;
        }

        .select-value {
            flex: 1;
            text-align: left;
        }

        .select-arrow-down {
            width: 16px;
            height: 16px;
            transition: transform 0.2s;
            transform: rotate(90deg);
        }

        &:hover {
            border-color: #4e008e;
        }

        &:focus,
        &.focus {
            border-color: #4e008e;
            outline: none;

            .select-dropdown {
                display: block;
            }

            .select-arrow-down {
                transform: rotate(270deg);
            }
        }

        .select-dropdown {
            position: absolute;
            top: calc(100% + 4px);
            left: 0;
            width: 100%;
            border-radius: 12px;
            background: #fff;
            border: 1px solid #f3f2f8;
            box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.08);
            overflow: hidden;
            display: none;
            z-index: 1000;

            div {
                max-height: 200px;
                overflow: auto;
                padding: 8px;

                &::-webkit-scrollbar {
                    width: 6px;
                }

                &::-webkit-scrollbar-track {
                    background: #F1EEF4;
                    border-radius: 4px;
                }

                &::-webkit-scrollbar-thumb {
                    background: #BFC2C5;
                    border-radius: 4px;
                }

                span {
                    display: flex;
                    align-items: center;
                    gap: 24px;
                    padding: 9px 16px;
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 157%;
                    color: #1e1920;
                    cursor: pointer;
                    border-radius: 8px;
                    text-align: left;
                    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

                    &:hover {
                        background: #f1eef4;
                        color: #1e1920;
                    }

                    &.active {
                        &::before {
                            content: '';
                            width: 24px;
                            height: 24px;
                            flex-shrink: 0;
                            background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_7165_33965)'%3E%3Cpath d='M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21Z' fill='%234E008E' stroke='%234E008E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3Cpath d='M8.25 12.75L10.5 15L15.75 9.75' stroke='%23FCFCFC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_7165_33965'%3E%3Crect width='24' height='24' fill='white' /%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
                            background-size: contain;
                            background-repeat: no-repeat;
                            background-position: center;
                        }
                    }
                }
            }
        }

        &.dropdown-up {
            .select-dropdown {
                top: auto;
                bottom: calc(100% + 4px);
            }
        }
    }
}

/* Discount Code Create Page Styles */
.discount-code-create-page {
    .breadcrubs {
        margin-bottom: 24px;
    }
}

.discount-code-create-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.discount-code-create-header-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 12px;

    a {
        display: flex;
        align-items: center;
    }
}

.discount-code-create-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;

    @media screen and (max-width: 440px) {
        width: 100%;
        justify-content: flex-end;
    }
}

.discount-code-btn-back {
    border: 1px solid #4e008e;
    border-radius: 12px;
    padding: 10px 18px;
    background: #f1eef4;
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: #373239;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
}

.discount-code-btn-submit {
    border-radius: 12px;
    padding: 10px 18px;
    border: 1px solid var(--primary);
    background: var(--primary);
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    &:hover {
        background: var(--dark-primary);
    }
}

.discount-code-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.discount-code-form-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.discount-code-form-block {
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    padding: 24px;
    background: var(--grey-100);

    display: flex;
    flex-direction: column;
    gap: 24px;
}

.discount-code-form-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.discount-code-form-label {
    font-weight: 700;
    font-size: 16px;
    line-height: 125%;
    color: var(--black);
}

.discount-code-input {
    width: 100%;
    border: 1px solid var(--grey-300);
    border-radius: 12px;
    padding: 10px 16px;
    background: var(--grey-100);
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: var(--grey-400);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    &:focus {
        outline: none;
        border-color: var(--primary);
        background: var(--white);
    }

    &::placeholder {
        color: var(--grey-400);
    }
}

.discount-code-select {
    border: 1px solid var(--grey-300);
    border-radius: 12px;
    padding: 12px 16px;
    background: var(--grey-100);
    font-size: 14px;
    font-weight: 400;
    line-height: 157%;
    color: var(--black);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    &:focus {
        outline: none;
        border-color: var(--primary);
    }
}

.discount-code-radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.discount-code-custom-radio {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;

    input[type="radio"] {
        display: none;
    }

    .radio-icon {
        width: 24px;
        height: 24px;
        position: relative;
        flex-shrink: 0;

        svg {
            position: absolute;
            top: 0;
            left: 0;
            transition: opacity 0.2s;

            &.checked {
                opacity: 0;
            }
        }
    }

    input[type="radio"]:checked+.radio-icon {
        svg:not(.checked) {
            opacity: 0;
        }

        svg.checked {
            opacity: 1;
        }
    }

    .radio-text {
        font-size: 14px;
        font-weight: 400;
        line-height: 157%;
        color: var(--black);
    }
}

.discount-code-series-radio {
    padding-top: 8px;
}

.discount-code-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-top: 8px;

    span {
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        color: var(--ligher-black);
    }
}

.discount-code-checkbox-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: -5px;
}

.apply-once-per-order-checkbox {
    align-items: flex-start;
}

.discount-code-input-wrapper {
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
    display: none !important;

    &.show {
        display: flex !important;
        max-height: 300px;
        opacity: 1;
        margin-top: 8px;
    }
}

.discount-code-hint {
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 4px;

    img {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
}

.discount-code-hint-secondary {
    color: var(--grey-400);
    margin-top: 0 !important;
}

.discount-code-store-type-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    &.show {
        opacity: 1;
        max-height: 300px;
    }
}

.discount-value-type-select {
    width: 100% !important;
}

.discount-code-store-type-select {
    width: 100%;
}

.discount-code-value-row {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 16px;
    margin-top: 8px;

    @media screen and (max-width: 1210px) {
        grid-template-columns: 1fr;
    }
}

.discount-code-custom-select {
    width: 240px;
    height: 42px;
    border-radius: 12px;
    padding: 10px 16px;
    border: 1px solid var(--grey-300);
    background: var(--grey-100);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
    line-height: 157%;
    color: var(--grey-400);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    @media screen and (max-width: 1210px) {
        width: 100%;
    }

    .select-value {
        flex: 1;
        text-align: left;
        color: var(--black);
    }

    .select-arrow-down {
        width: 20px;
        height: 20px;
        transform: rotate(90deg);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        flex-shrink: 0;
    }

    .select-dropdown {
        position: fixed;
        border-radius: 12px;
        background: #fff;
        border: 1px solid #f3f2f8;
        box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.08);
        overflow: hidden;
        display: none;
        z-index: 9999;

        div {
            display: flex;
            flex-direction: column;

            span {
                padding: 12px 16px;
                cursor: pointer;
                transition: background 0.2s;
                font-size: 14px;
                font-weight: 400;
                line-height: 157%;
                color: var(--black);

                &:hover {
                    background: var(--grey-100);
                }

                &.active {
                    background: var(--grey-100);
                }
            }
        }
    }

    &:hover {
        border-color: var(--primary);
    }

    &:focus,
    &.focus {
        border-color: var(--primary);
        outline: none;

        .select-dropdown {
            display: block;
        }

        .select-arrow-down {
            transform: rotate(270deg);
        }
    }
}

.discount-code-date-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.discount-code-date-field {
    display: flex;
    flex-direction: column;
    gap: 8px;

    label {
        font-size: 14px;
        font-weight: 400;
        line-height: 157%;
        color: var(--black);
    }

    input[type="date"] {
        cursor: pointer;

        &::-webkit-calendar-picker-indicator {
            cursor: pointer;
        }
    }
}

.discount-code-file-upload {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--grey-300);
    border-radius: 12px;
    padding: 5px 16px;
    background: var(--grey-100);
}

.discount-code-file-input {
    display: none;
}

.discount-code-file-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    padding: 8px 16px;
    box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.08);
    background: var(--primary);
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    white-space: nowrap;

    svg {
        flex-shrink: 0;
    }

    &:hover {
        background: var(--dark-primary);
        transform: translateY(-1px);
        box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    &:active {
        transform: translateY(0);
        box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.08);
    }
}

.discount-code-file-name {
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: var(--grey-400);
    flex: 1;
}

.discount-code-form-block .toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;

    span {
        font-size: 14px;
        font-weight: 400;
        line-height: 157%;
        color: var(--grey-400);
        transition: color 0.3s;
    }

    &.active {
        span:first-child {
            color: var(--grey-400);
        }

        span:last-child {
            color: var(--black);
            font-weight: 500;
        }
    }

    &:not(.active) {
        span:first-child {
            color: var(--black);
            font-weight: 500;
        }

        span:last-child {
            color: var(--grey-400);
        }
    }
}

@media screen and (max-width: 1024px) {
    .discount-code-form-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media screen and (max-width: 768px) {
    .discount-code-create-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .discount-code-date-row {
        grid-template-columns: 1fr;
    }
}

/* View Codes Modal */
.view-codes-list-wrapper {
    margin-top: 24px;
}

.view-code-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.view-code-input {
    flex: 1;
    background: var(--grey-100);
    border: 1px solid var(--primary);
    height: 42px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 157%;
    color: var(--black);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    &.editing {
        background: var(--white);
    }
}

.view-code-edit-btn {
    width: 60px;
    height: 42px;
    min-width: 60px;
    border: 1px solid var(--primary);
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    &:hover {
        background: var(--violet-100);
    }

    &:active {
        transform: scale(0.95);
    }
}

.view-code-delete-btn {
    width: 60px;
    height: 42px;
    min-width: 60px;
    border: 1px solid var(--system-red);
    background: #fff2f2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    &:hover {
        background: #ffe5e5;
    }

    &:active {
        transform: scale(0.95);
    }
}

/* Code History Modal */
.code-history-modal-content {
    max-width: 800px;
    width: 100%;
    padding: 32px;
}

.code-history-wrapper {
    margin-top: 24px;
}

.code-history-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 8px;

    div {
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        color: #373239;
    }
}

.code-history-item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 8px;
}

.code-history-input {
    background: var(--grey-100);
    border: 1px solid var(--grey-300);
    height: 42px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 157%;
    color: var(--black);
}

/* Edit Discount Modal */
.edit-discount-wrapper {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.edit-discount-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.edit-discount-label {
    font-weight: 600;
    font-size: 14px;
    line-height: 157%;
    color: var(--black);
}

.edit-discount-input {
    background: var(--grey-100);
    border: 1px solid var(--grey-300);
    height: 42px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 157%;
    color: var(--black);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    &:focus {
        border-color: var(--primary);
        outline: none;
    }
}

.edit-discount-date-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Edit Design Modal Styles */
.edit-design-modal-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}

.edit-design-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.edit-design-label {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: var(--grey-500);

    .required-star {
        color: var(--error);
    }
}

.edit-design-input {
    width: 100%;
    height: 42px;
    border: 1px solid #9b9aa5;
    border-radius: 12px;
    padding: 10px 16px;
    background: #fcfcfc;
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: #605767;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    &:focus {
        border-color: var(--primary);
        outline: none;
    }

    &::placeholder {
        color: var(--grey-400);
    }
}

.edit-design-file-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;

    input[type="text"] {
        width: 100%;
        padding-right: 120px;
        cursor: pointer;
    }
}

.edit-design-upload-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.08);
    background: #cacaca;
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    color: #605767;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    pointer-events: none;

    &:hover {
        background: var(--grey-300);
    }
}

.edit-design-preview {
    position: relative;
    width: 120px;
    height: 120px;
    margin-top: 12px;

    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 12px;
        padding: 8px;
        background: var(--white);
    }
}

.edit-design-remove-img {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    padding: 0;
    background: var(--white);
    border: 1.5px solid var(--grey-200);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    &:hover {
        background: var(--error);
        border-color: var(--error);

        svg path {
            stroke: var(--white);
        }
    }

    svg {
        width: 12px;
        height: 12px;
    }
}

/* Design Requests Page - Tab Contents */
.design-requests-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 48px;

    .settings-page-tabs {
        margin-bottom: 0;
    }

    .design-templates-btn {
        white-space: nowrap;
        margin-right: 32px !important;

        @media screen and (max-width: 834px) {
            margin-right: 16px !important;
            align-self: flex-end;
        }
    }

    .ink-colours-btn {
        white-space: nowrap;
        margin-right: 32px !important;

        @media screen and (max-width: 834px) {
            margin-right: 16px !important;
            align-self: flex-end;
        }
    }

    .btn {
        margin: 0;
    }

    @media screen and (max-width: 834px) {
        flex-direction: column;
        height: auto;
        gap: 16px;
        margin-bottom: 16px;
    }
}

.design-tab-content {
    margin-top: 0;
}

.design-empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    padding: 40px;

    p {
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
        color: var(--grey-400);
        text-align: center;
    }
}

/* Ink Colors Table Styles */
.ink-colors-table {
    table-layout: fixed;
    width: 100%;

    @media screen and (max-width: 440px) {
        width: fit-content;
        table-layout: auto;
    }
}

.ink-colors-table thead th:nth-child(2) {
    width: 50px;
    min-width: 50px;
    max-width: 50px;

    @media screen and (max-width: 440px) {
        width: fit-content;
        max-width: 100%;
        min-width: 100%;
    }
}

.ink-colors-table thead th:nth-child(3) {
    width: 200px;
    min-width: 200px;

    @media screen and (max-width: 440px) {
        width: fit-content;
        max-width: 100%;
        min-width: 100%;
    }
}

.ink-colors-table thead th:nth-child(4) {
    width: 120px;
    min-width: 120px;
    max-width: 120px;

    @media screen and (max-width: 440px) {
        width: fit-content;
        max-width: 100%;
        min-width: 100%;
    }
}

.ink-colors-table thead th:nth-child(5) {
    width: 180px;
    min-width: 180px;
    max-width: 180px;

    @media screen and (max-width: 440px) {
        width: fit-content;
        max-width: 100%;
        min-width: 100%;
    }
}

/* Admin Design Request Styles */
.admin-design-request-wrapper {
    margin-top: 0;
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    padding: 24px;
    background: var(--grey-100);
}

.create-request-tab {
    padding: 24px 32px;

    @media screen and (max-width: 834px) {
        padding: 24px 16px;
    }
}

.admin-design-request-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 133%;
    color: var(--black);
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: space-between;
}

.admin-design-request-subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    color: var(--ligher-black);
    margin: 0 0 16px;
}

.admin-design-request-description {
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: var(--grey-400);
    margin: 0 0 32px;
}

.admin-design-request-header {
    width: 100%;
    margin-bottom: 44px;
}

.admin-design-request-section {
    margin-bottom: 32px;
}

.admin-design-request-section-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 125%;
    color: var(--black);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    justify-content: space-between;
}

.admin-design-request-section-colors-title {
    justify-content: flex-start;
}

.admin-design-request-section-colors .admin-design-request-section-title {
    margin: 0 0 24px;
}

.admin-design-request-form-container {
    max-width: 630px;
    width: 100%;
}

.admin-design-request-form-container .admin-design-request-section-title {
    margin: 0 0 16px;
}

.admin-design-styles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    grid-auto-rows: max-content;
}

@media (max-width: 1300px) {
    .admin-design-styles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1000px) {
    .admin-design-styles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .admin-design-styles-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.admin-design-style-card {
    position: relative;
    border: 1px solid var(--grey-200);
    border-radius: 6px;
    padding: 8px;
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.admin-design-style-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.admin-design-style-card:has(input[type="radio"]:checked) {
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.25);
    border: 0.69px solid var(--primary);
}

.admin-design-style-card:hover {
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.15);
}

.admin-design-style-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    line-height: 133%;
    text-align: center;
    color: var(--black);
    margin-bottom: 8px;
}

.admin-design-style-card-header span {
    text-align: center;
}

.admin-design-style-card-photo {
    width: 100%;
    height: 208px;
    object-fit: contain;
}

.admin-design-request-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

@media (max-width: 968px) {
    .admin-design-request-two-columns {
        grid-template-columns: 1fr;
    }
}

.admin-design-colors-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-design-color-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.admin-design-color-item .checkbox-input {
    margin: 0;
}

.admin-design-color-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--grey-200);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.admin-design-color-indicator::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--grey-200);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.admin-design-color-item span {
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: var(--black);
}

.admin-design-request-field {
    margin-bottom: 16px;
}

.admin-design-request-field label {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: var(--black);
    margin-bottom: 8px;
}

.admin-design-request-field textarea {
    width: 100%;
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    background: var(--white);
    padding: 16px;
    font-family: inherit;
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: var(--black);
    resize: vertical;
    transition: all 0.3s;
}

.admin-design-request-field textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.admin-design-request-field textarea::placeholder {
    color: var(--grey-300);
}

.admin-design-dropzone {
    border: 2px dashed #605767;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    margin-top: 8px;
}

.admin-design-dropzone:hover,
.admin-design-dropzone.drag-over {
    border-color: var(--primary);
    background: var(--violet-100);
}

.admin-design-dropzone-icon {
    width: 48px;
    height: 48px;
}

.admin-design-dropzone-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    text-align: center;
    color: var(--grey-400);
}

.admin-design-dropzone-choose {
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.admin-design-dropzone-choose:hover {
    text-decoration: underline;
}

.admin-uploaded-files-preview {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.admin-uploaded-files-preview .uploaded-file-item {
    position: relative;
    width: 100px;
    height: 100px;
    border: 1px solid var(--grey-200);
    border-radius: 8px;
    overflow: hidden;
}

.admin-uploaded-files-preview .uploaded-file-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-uploaded-files-preview .remove-file-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    color: var(--error);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.admin-uploaded-files-preview .remove-file-btn:hover {
    background: var(--error);
    color: white;
}

.admin-design-upload-hint {
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: var(--grey-400);
    margin: 8px 0 0;
}

.admin-design-terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.admin-design-terms-checkbox .checkbox-input {
    margin: 0;
    margin-top: 2px;
}

.admin-design-terms-checkbox span {
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: var(--black);
    margin-bottom: -3px;
}

.admin-design-terms-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.admin-design-terms-checkbox a:hover {
    text-decoration: none;
}

/* Marketing Edit Buttons for Design Request */
.admin-design-request-title .marketing-edit,
.admin-design-request-section-title .marketing-edit {
    border-radius: 1000px;
    padding: 8px;
    width: 32px;
    height: 32px;
    border: 1px solid #cacaca;
    box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.08);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.admin-design-request-title .marketing-edit img,
.admin-design-request-section-title .marketing-edit img {
    width: 16px;
    height: 16px;
}

.admin-design-request-title .marketing-edit:hover,
.admin-design-request-section-title .marketing-edit:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 -3px 0 0 rgba(0, 0, 0, 0.08);
    border-color: #4E008E;
}

.admin-design-request-title .marketing-edit:active,
.admin-design-request-section-title .marketing-edit:active {
    transform: translateY(0);
}

/* Edit Text Modal Styles */
.edit-text-modal-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.edit-text-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.edit-text-label {
    font-weight: 600;
    font-size: 14px;
    line-height: 157%;
    color: var(--black);
}

.edit-text-input {
    width: 100%;
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    background: var(--grey-100);
    padding: 12px 16px;
    font-family: inherit;
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: var(--grey-400);
    transition: all 0.3s;
}

.edit-text-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.edit-text-textarea {
    width: 100%;
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    background: var(--white);
    padding: 16px;
    font-family: inherit;
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: var(--black);
    resize: vertical;
    min-height: 150px;
    transition: all 0.3s;
}

.edit-text-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.edit-text-textarea::placeholder {
    color: var(--grey-300);
}

/* Date Range Modal */
.date-range-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;

    &.active {
        opacity: 1;
        visibility: visible;
    }

    .modal {
        max-width: fit-content;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
        background: #FCFCFC;
        border-radius: 16px;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
        position: relative;
    }

    .date-range-modal-content {
        padding: 5px 5px 10px 5px;
        max-width: 800px;
        overflow: auto;
        width: 90svw;
    }

    .date-range-modal-body {
        display: flex;
        gap: 20px;

        @media screen and (max-width: 768px) {
            flex-direction: column;
        }
    }

    .date-range-sidebar {
        display: flex;
        flex-direction: column;
        gap: 4px;
        min-width: 130px;
        flex-shrink: 0;

        @media screen and (max-width: 768px) {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
            width: 100%;
        }

        .date-range-quick-filter {
            padding: 10px 18px;
            background: #FCFCFC;
            border: 1px solid #E5E5E5;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 400;
            line-height: 18px;
            color: #373239;
            text-align: left;
            cursor: pointer;
            transition: all 0.2s;

            &:hover {
                background: #EEECF0;
                border-color: #4E008E;
            }

            &.active {
                background: #4E008E;
                color: #FCFCFC;
                border-color: #4E008E;
            }

            @media screen and (max-width: 768px) {
                flex: 1;
                min-width: 100px;
                text-align: center;
            }
        }
    }

    .date-range-calendar-wrapper {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 16px;
        min-width: 0;
    }

    .date-range-calendars {
        display: flex;
        gap: 20px;
        margin-top: 10px;

        @media screen and (max-width: 768px) {
            flex-direction: column;
            gap: 16px;
            margin-top: 0;
        }
    }

    .date-range-calendar {
        flex: 1;
        min-width: 0;

        .calendar-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
            padding: 0 4px;

            .calendar-month-year {
                font-size: 14px;
                font-weight: 600;
                color: #2E2C30;
            }

            .calendar-nav-btn {
                width: 24px;
                height: 24px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: transparent;
                border: none;
                cursor: pointer;
                padding: 0;
                border-radius: 4px;
                transition: background 0.2s;

                &:hover {
                    background: #EEECF0;
                }

                img {
                    width: 14px;
                    height: 14px;
                }
            }
        }

        .calendar-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 2px;
            margin-bottom: 4px;

            span {
                text-align: center;
                font-size: 10px;
                font-weight: 600;
                color: #605767;
                padding: 4px 2px;
            }
        }

        .calendar-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 2px;

            .calendar-day {
                width: 100%;
                height: 42px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 12px;
                font-weight: 400;
                color: var(--black);
                border-radius: 12px;
                cursor: pointer;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                position: relative;

                &:hover:not(.disabled):not(.other-month) {
                    background: var(--grey-100);
                    color: var(--black);
                }

                &.other-month {
                    color: #CFCDD0;
                    cursor: default;
                }

                &.disabled {
                    color: #CFCDD0;
                    cursor: not-allowed;
                }

                &.today {
                    border: 2px solid #4E008E;
                }

                &.selected {
                    background: #4E008E;
                    color: #FCFCFC;

                    &:hover {
                        background: #3D006F;
                    }
                }

                &.in-range {
                    background: var(--grey-100);
                    color: var(--black);

                    &:hover {
                        background: #E8DDF1;
                    }
                }

                &.range-start,
                &.range-end {
                    background: #4E008E;
                    color: #FCFCFC;
                }

                &.range-start {
                    border-radius: 6px 0 0 6px;
                }

                &.range-end {
                    border-radius: 0 6px 6px 0;
                }

                &.range-start.range-end {
                    border-radius: 6px;
                }
            }
        }
    }

    .date-range-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        padding-top: 16px;
        border-top: 1px solid #EEECF0;
        margin-top: 4px;

        .modal-cancel-btn {
            padding: 10px 20px;
            background: #FCFCFC;
            border: 1px solid #CFCDD0;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 400;
            color: #2E2C30;
            cursor: pointer;
            transition: all 0.2s;

            &:hover {
                background: #EEECF0;
            }
        }

        .modal-select-btn {
            padding: 10px 20px;
            background: #4E008E;
            border: 1px solid #4E008E;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 400;
            color: #FCFCFC;
            cursor: pointer;
            transition: all 0.2s;

            &:hover {
                background: #3D006F;
            }
        }
    }
}

/* Overlay base styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;

    &.active {
        opacity: 1;
        visibility: visible;
    }
}

@media screen and (max-width: 900px) {
    .date-range-modal {
        .date-range-calendars {
            gap: 16px;
        }

        .date-range-calendar {
            .calendar-days {
                .calendar-day {
                    height: 30px;
                    font-size: 11px;
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .date-range-modal {
        .date-range-modal-content {
            padding: 10px;
        }

        .modal {
            overflow-x: hidden;
        }

        .date-range-modal-body {
            gap: 16px;
        }

        .date-range-calendar {
            .calendar-days {
                .calendar-day {
                    height: 36px;
                    font-size: 13px;
                }
            }
        }
    }
}

.customer-admin-stores-page {
    scrollbar-width: none;
    -ms-overflow-style: none;

    &::-webkit-scrollbar {
        display: none;
    }

    .stores-page-filter-header {
        margin-top: 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }

    .filter-header-statuses-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 24px;
        flex-wrap: wrap;
        width: 100%;

        @media screen and (max-width: 834px) {
            margin-bottom: 24px;
        }
    }

    .stores-page-table-wrapper {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        margin-bottom: 16px;
        -webkit-overflow-scrolling: touch;

        &::-webkit-scrollbar {
            height: 8px;
        }

        &::-webkit-scrollbar-track {
            background: #F1EEF4;
            border-radius: 4px;
        }

        &::-webkit-scrollbar-thumb {
            background: #BFC2C5;
            border-radius: 4px;
        }

        &::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }
    }

    .stores-page-table {
        width: 100%;
        background: #fcfcfc;
        border-collapse: collapse;
        overflow: auto;

        input {
            height: 16px;
            width: 16px;
        }

        th {
            text-align: left;
            padding: 0;
            font-size: 14px;
            font-weight: 400;
            line-height: 22px;
            color: #605767;
            border-bottom: 1px solid #cfcdd0;
            background: #fcfcfc;
            white-space: nowrap;

            div {
                display: flex;
                align-items: center;
                gap: 8px;
            }

            &:first-child {
                padding: 0 0 0 32px;
            }
        }

        tr {
            cursor: pointer;

            &:hover {
                td {
                    background: #eeecf0;
                }
            }

            td {
                font-size: 13px;
                font-weight: 400;
                line-height: 22px;
                color: #2e2c30;
                padding: 8px 16px;
                border-bottom: 1px solid #cfcdd0;
                white-space: nowrap;

                .btn,
                a,
                button {
                    white-space: nowrap;
                }

                &:first-child {
                    padding: 0 0 0 32px;
                }
            }
        }

        .table-header-sortable {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            padding: 8px 16px;
            justify-content: space-between;

            span {
                white-space: nowrap;
            }

            img {
                width: 16px;
                height: 16px;
                flex-shrink: 0;
                opacity: 0.6;
                transition: opacity 0.2s;
            }

            &:hover img {
                opacity: 1;
            }
        }

        th:nth-child(2),
        td:nth-child(2) {
            width: 90px;
            min-width: 90px;
            max-width: 90px;
            text-align: center;
        }

        th:first-child {
            padding: 0 0 0 32px;
        }

        th:last-child>div:not(.table-header-sortable) {
            padding: 8px 16px;
        }
    }

    .stores-page-table-actions {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;

        .stores-action-icon-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px;
            width: 32px;
            height: 32px;
            border: 1px solid var(--grey-200);
            background: var(--white);
            box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0);
            border-radius: 1000px;
            cursor: pointer;
            transition: all 0.2s ease;
            flex-shrink: 0;

            svg {
                width: 16px;
                height: 16px;
                flex-shrink: 0;
            }

            &:hover {
                background: #f8f8f9;
                border: 1px solid #4E008E;
            }
        }

        .stores-action-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border: 1px solid #a4a4b0;
            background: #ffffff;
            box-shadow: 0px 2px 4px 0px #1a2b440f;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 400;
            line-height: 22px;
            text-align: center;
            color: #2e2c30;
            height: 32px;
            cursor: pointer;

            img {
                width: 16px;
                height: 16px;
                flex-shrink: 0;
            }

            &:hover {
                background: #f8f8f9;
            }
        }

        .stores-action-dropdown {
            position: relative;
            display: inline-block;

            .stores-dropdown-trigger {
                padding: 8px;
                width: 32px;
                height: 32px;
                border-radius: 50%;
                justify-content: center;
                min-width: auto;

                &:hover {
                    background: #f0f0f0;
                }

                &.active {
                    background: #CACACA !important;
                }

                .dots-icon {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    justify-content: center;
                    gap: 2px;

                    span {
                        width: 3px;
                        height: 3px;
                        background-color: #09090B;
                        border-radius: 50%;
                        display: block;
                    }
                }
            }

            .stores-dropdown-menu {
                position: fixed;
                background: #F1EEF4;
                border: 1px solid #e0e0e0;
                border-radius: 8px;
                box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
                z-index: 99999;
                min-width: 150px;
                display: none;
                padding: 4px;

                &.show {
                    display: flex;
                    flex-direction: column;
                    gap: 2px;
                }

                button {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    width: 100%;
                    padding: 8px 12px;
                    border: 1px solid #9B9AA5;
                    background: #FCFCFC;
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 22px;
                    color: #373239;
                    cursor: pointer;
                    height: auto;
                    border-radius: 12px;
                    box-shadow: none;

                    img {
                        width: 16px;
                        height: 16px;
                        flex-shrink: 0;
                    }

                    &:hover {
                        background: #EEECF0;
                    }

                    &.delete-action {
                        color: #c33e36;

                        &:hover {
                            background: #fef2f2;
                        }
                    }
                }
            }
        }
    }

    .stores-page-table-filters {
        padding: 24px 0;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;

        @media screen and (max-width: 800px) {
            padding: 0 0 24px 0;
        }
    }

    .stores-page-table-filters-left {
        @media screen and (max-width: 1210px) {
            width: 100%;
        }
    }

    .stores-table-view-toggle {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .toggle-checkbox {
        display: none;
    }

    .toggle-label {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        user-select: none;
    }

    .toggle-switch {
        position: relative;
        width: 42px;
        height: 24px;
        background: #E0E0E0;
        border-radius: 12px;
        transition: background-color 0.3s ease;

        &::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
    }

    .toggle-checkbox:checked+.toggle-label .toggle-switch {
        background: #4E008E;

        &::before {
            transform: translateX(18px);
        }
    }

    .toggle-text {
        font-weight: 400;
        font-size: 12px;
        line-height: 133%;
        color: var(--black);
    }

    .stores-page-table-filters-dates {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;

        @media screen and (max-width: 1210px) {
            width: 100%;
            justify-content: flex-end;
        }

        @media screen and (max-width: 440px) {
            width: 100%;
            justify-content: flex-start;
            align-items: flex-start;
            flex-direction: column;

            .stores-page-table-filters-dates-item {
                width: 100%;
            }

            .stores-page-filters-dates-input {
                width: 100%;
                justify-content: space-between;

                input[type="date"] {
                    width: 100%;
                }

                img {
                    width: 24px;
                    height: 24px;
                }
            }

            .stores-page-filters-dates-input-end {
                width: 100%;
                justify-content: space-between;

                input[type="date"] {
                    width: 100%;
                }

                img {
                    width: 24px;
                    height: 24px;
                }
            }
        }
    }

    .stores-page-table-filters-dates-item {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .stores-page-table-filters-label {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #2e2c30;
    }

    .stores-page-filters-dates-input {
        padding: 13px 10px 13px 16px;
        border: 1px solid #9b9aa5;
        border-radius: 16px;
        height: 42px;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        width: 183px;
        position: relative;
        transition: border-color 0.2s ease;

        input[type="date"] {
            width: 140px;
            font-size: 12px;
            font-weight: 400;
            line-height: 16px;
            color: #605767;
            background: transparent;
            border: none;
            outline: none;
            cursor: pointer;
            position: relative;
            z-index: 1;

            &::-webkit-datetime-edit-fields-wrapper {
                color: #605767;
            }

            &::-webkit-datetime-edit-text {
                color: #605767;
                padding: 0;
            }

            &::-webkit-datetime-edit-month-field,
            &::-webkit-datetime-edit-day-field,
            &::-webkit-datetime-edit-year-field {
                color: #605767;
            }

            &::-webkit-calendar-picker-indicator {
                display: none;
            }
        }

        img {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            pointer-events: none;
            position: relative;
            z-index: 0;
        }

        &:hover {
            border-color: #4E008E;
        }

        &:active {
            border-color: #4E008E;
        }
    }

    .stores-page-filters-dates-input-end {
        background: #FCFCFC;
    }

    .stores-page-table-status {
        display: inline-block;
        font-weight: 400;
        font-size: 12px;
        line-height: 133%;
        border-radius: 16px;
        padding: 4px 8px;
        white-space: nowrap;

        &.closed {
            color: var(--black);
            background: var(--grey-200);
        }

        &.open {
            color: var(--black);
            background: var(--green);
            box-shadow: -1px 0 7px 3px rgba(114, 79, 114, 0.17);
        }

        &.pending {
            color: var(--black);
            background: var(--yellow);
        }

        &.rejected {
            color: var(--white);
            background: var(--error);
        }
    }

    .pagination-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;

        &:has(.pagination-view:only-child) {
            justify-content: flex-end;
        }

        @media screen and (max-width: 1200px) {
            justify-content: center;
        }

        .pagination {
            margin: unset;
        }
    }

    .pagination-view {
        display: flex;
        align-items: center;
        align-self: flex-end;
        gap: 8px;
        font-size: 14px;
        font-weight: 400;
        color: #373239;

        &:only-child {
            margin-left: auto;
        }

        .select {
            width: 319px;
            height: 42px;
            padding: 8px 12px;
            border: 1px solid #cfcdd0;
            border-radius: 8px;
            background: #ffffff;

            select {
                font-size: 14px;
                color: #605767;
                width: 100%;
            }
        }
    }

    .pagination-select {
        width: 78px;
        height: auto;
        border-radius: 12px;
        padding: 10px 16px;
        border: 1px solid var(--grey-300);
        background: var(--grey-100);
        position: relative;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 14px;
        font-weight: 400;
        line-height: 157%;
        color: var(--grey-400);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

        .select-value {
            flex: 1;
            text-align: left;
        }

        .select-arrow-down {
            width: 16px;
            height: 16px;
            transition: transform 0.2s;
            transform: rotate(90deg);
        }

        &:hover {
            border-color: var(--primary);
        }

        &:focus,
        &.focus {
            border-color: var(--primary);
            outline: none;

            .select-dropdown {
                display: block;
            }

            .select-arrow-down {
                transform: rotate(270deg);
            }
        }

        .select-dropdown {
            position: absolute;
            top: calc(100% + 4px);
            left: 0;
            width: 100%;
            min-width: 78px;
            border-radius: 12px;
            background: #fff;
            border: 1px solid #f3f2f8;
            box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.08);
            overflow: hidden;
            display: none;
            z-index: 1000;

            div {
                max-height: 200px;
                overflow: auto;
                padding: 8px;

                &::-webkit-scrollbar {
                    width: 6px;
                }

                &::-webkit-scrollbar-track {
                    background: #F1EEF4;
                    border-radius: 4px;
                }

                &::-webkit-scrollbar-thumb {
                    background: #BFC2C5;
                    border-radius: 4px;
                }

                span {
                    display: block;
                    padding: 9px 16px;
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 157%;
                    color: var(--black);
                    cursor: pointer;
                    border-radius: 8px;
                    transition: all 0.2s;

                    &:hover,
                    &.active {
                        background: var(--grey-100);
                        color: var(--black);
                    }
                }
            }
        }
    }

    .stores-page-cards-wrapper {
        width: 100%;
        margin-bottom: 16px;
    }

    .stores-page-cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0;

        @media screen and (max-width: 834px) {
            grid-template-columns: 1fr;
        }
    }

    .stores-page-card {
        border: 1px solid var(--grey-200);
        border-radius: 12px;
        padding: 16px 24px;
        display: flex;
        flex-direction: column;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

        &:hover {
            box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.18);
            border: 1px solid var(--primary);
        }
    }

    .stores-page-card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 8px;
    }

    .stores-page-card-head {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .stores-page-card-status {
        display: inline-block;
        font-weight: 400;
        font-size: 12px;
        line-height: 133%;
        border-radius: 16px;
        padding: 4px 8px;
        white-space: nowrap;

        &.closed {
            color: var(--black);
            background: var(--grey-200);
        }

        &.open {
            color: var(--black);
            background: var(--green);
        }

        &.pending {
            color: var(--black);
            background: var(--yellow);
        }

        &.rejected {
            color: var(--white);
            background: var(--error);
        }
    }

    .stores-page-card-bookmark {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
        width: 32px;
        height: 32px;
        border: 1px solid var(--grey-200);
        background: var(--white);
        box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0);
        border-radius: 1000px;
        cursor: pointer;
        transition: all 0.2s ease;
        flex-shrink: 0;

        svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        &:hover {
            background: #f8f8f9;
            border: 1px solid #4E008E;
        }
    }

    .stores-page-card-logo {
        width: 64px;
        height: 64px;
        flex-shrink: 0;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    .stores-page-card-title {
        font-weight: 700;
        font-size: 24px;
        line-height: 133%;
        color: var(--black);
        text-align: left;
    }

    .stores-page-card-info {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 16px;
    }

    .stores-page-card-info-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        color: var(--grey-400);

        svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }
    }

    .stores-page-card-info-row {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 400;
        font-size: 14px;
        line-height: 157%;
        color: var(--grey-400);
    }

    .stores-page-card-info-label {
        font-weight: 400;
        color: var(--grey-400);
    }

    .stores-page-card-info-value {
        font-weight: 400;
        color: var(--grey-400);
    }

    .stores-page-card-type {
        border: 1px solid var(--grey-200);
        padding: 2px 8px;
        font-weight: 700;
        font-size: 14px;
        line-height: 129%;
        letter-spacing: 0.01em;
        color: var(--dark-primary);

        &.on-demand {
            background: var(--violet-100);
        }

        &.flash-sale {
            background: var(--background);
        }
    }

    .stores-page-card-updated {
        font-weight: 600;
        font-size: 12px;
        line-height: 150%;
        color: var(--grey-400);
    }

    .stores-page-card-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        margin-top: auto;
    }

    .stores-page-card-btn {
        font-weight: 400;
        font-size: 12px;
        line-height: 133%;
        text-align: center;
        color: var(--black);
        cursor: pointer;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

        &.stores-page-card-btn-secondary {
            border: 1px solid var(--grey-200);
            border-radius: 6px;
            padding: 8px 16px;
            box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.08);
            background: var(--white);

            &:hover {
                border: 1px solid var(--primary);
            }
        }
    }

    .stores-page-cards-empty {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 60px 20px;
        text-align: center;
        width: 100%;
    }

    @media screen and (max-width: 834px) {

        .overview-page-top-header-info-wrapper-search {
            flex-direction: column;
            width: 100%;
            align-items: flex-start;
        }

        .stores-page-search {
            width: 100%;
        }

        .overview-page-top-header-actions {
            width: 100%;
            justify-content: flex-end;
        }
    }
}

.customer-admin-orders-page {
    padding: 56px 0;

    .overview-page-top-header {
        padding: 0 32px;

        @media screen and (max-width: 834px) {
            padding: 0 18px;
        }

        @media screen and (max-width: 480px) {
            padding: 0;
        }
    }


    .overview-page-top-header-info-wrapper {
        gap: 40px;
        flex-direction: row;
        align-items: center !important;
    }

    .store-reports-page-top-filters {
        padding: 16px 32px;
        margin: 0 0 24px 0;

        @media screen and (max-width: 834px) {
            padding: 16px 18px;
        }

        @media screen and (max-width: 480px) {
            padding: 16px 10px;
            margin: 0 -10px;
        }
    }

    .orders-page-table {
        & td {
            &:last-child {
                padding: 8px 16px;
            }
        }
    }

    .admin-orders-page-statuses-tabs {
        border-radius: 20px 20px 0 0;
        padding: 6px 4px 0px;
        background: #f3f2f8;
        display: flex;
        gap: 8px;
        width: fit-content;
        margin: 0 32px;

        @media screen and (max-width: 834px) {
            margin: 0 18px;
        }

        @media screen and (max-width: 480px) {
            margin: 0;
        }
    }

    .orders-page-table-tr {
        border-top: 1px solid #cfcdd0;
    }

    .store-reports-page-btn-action {
        height: 42px;
    }

    @media screen and (max-width: 834px) {

        .overview-page-top-header-actions {
            justify-content: flex-end;
            width: 100%;
        }
    }
}


.customer-admin-orders-page-view {

    .order-page-header {
        justify-content: space-between;
    }

    .order-page-sidebar-card-orders-count {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #4e008e;
        text-decoration: underline;
        cursor: pointer;
    }

    .customer-admin-orders-page-view-btn-actions {
        display: flex;
        align-items: center;
        gap: 8px;

        .customer-admin-orders-page-view-btn-action {
            border: 1px solid var(--grey-200);
            border-radius: 12px;
            padding: 10px 18px;
            background: var(--black);
            font-weight: 400;
            font-size: 14px;
            line-height: 157%;
            text-align: center;
            color: var(--white);
        }
    }
}
