/* Slide Center Container */
.font-bold{
    font-weight: bold;
}
.f-14{
    font-size: 14px;
}
.index {
    position: relative;
}

    .index .slide-center {
        margin: 20px 0px;
    }

.slider-container {
    width: 1200px;
    height: 480px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    background-color: #fee1d1;
    border-radius: 10px;
}

.index .slider-container .mySlides {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

    .index .slider-container .mySlides:first-child {
        display: block;
    }

.index .slider-container .controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

    /* Navigation Buttons */
    .index .slider-container .controls .nav-button {
        color: #fb6a18;
        background-color: transparent;
        border: none;
        border-radius: 50%;
        padding: 10px;
        cursor: pointer;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
    }


    /* Pagination Dots */
    .index .slider-container .controls .pagination {
        display: flex;
        gap: 8px;
    }

        .index .slider-container .controls .pagination .dot {
            height: 10px;
            width: 10px;
            background-color: #ccc;
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

            .index .slider-container .controls .pagination .dot.active {
                background-color: #fb6a18;
            }

/* Inner Wrapper */
.index .outer-wrapper {
    width: 1440px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.index .inner-wrapper {
    width: 1200px;
    padding: 16px 0px;
}

    /* Feature Section */
    .index .inner-wrapper .feature-section {
        width: 1200px;
        gap: 16px;
        display: grid;
        justify-content: center;
        margin: auto;
        align-items: center;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

.index .feature-section .feature-item {
    display: flex;
    padding: 4px 0px;
    gap: 8px;
}

.index .feature-item .icon-circle {
    width: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    border-radius: 100px;
    background-color: #FFF8F3;
}

.index .feature-content {
    height: 48px;
    gap: 4px;
}

.index .feature-item .icon-circle i {
    font-size: 22px;
    color: #FB6A18;
}

.index .feature-content h3 {
    font-size: 16px;
    font-weight: bold;
    color: black;
    line-height: 24px;
    height: 24px;
    font-weight: 600px;
}

.index .feature-content p {
    font-size: 14px;
    color: #7A7493;
    line-height: 20px;
}

.index .list-product {
    width: 1440px;
    margin: auto;
}

    .index .list-product .product-section {
        width: 1200px;
        margin: auto;
        display: flex;
        flex-direction: column;
        padding-bottom: 24px;
    }

.index .product-section h1 {
    height: 56px;
    color: #FB6A18;
    font-size: 24px;
    line-height: 32px;
    padding: 12px 0px;
    font-weight: 600;
}

.index .product-section .product-item {
    width: 1200px;
    gap: 16px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.index .product-item .product {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: 1px solid #F6F6F8;
    padding: 16px 8px;
    gap: 16px;
}

    .index .product-item .product img {
        width: 120px;
        height: auto;
        object-fit: contain;
    }

    .index .product-item .product p {
        font-size: 16px;
        color: black;
        font-weight: 600;
        line-height: 24px;
    }

.index .sale-product {
    background-color: #FFF8F3;
}

.index .flash-sale-wrapper {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
}

.index .flash-sale-container {
    width: 1200px;
    gap: 16px;
    padding: 24px 0px;
    margin: auto;
}

/* Header */
.index .flash-sale-header {
    display: flex;
    align-items: center;
    height: 40px;
    gap: 12px;
    margin-bottom: 10px;
}

.index .flash-sale-title {
    display: flex;
    gap: 8px;
    width: 1100px;
    align-items: center;
    height: 32px;
    gap: 24px;
}

.index .flash-sale-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

    .index .flash-sale-icon h2 {
        font-size: 24px;
        color: #ff6600;
        line-height: 32px;
        margin: auto;
        text-align: center;
    }

.index .flash-sale-title span {
    font-size: 16px;
    color: black;
    line-height: 24px;
}

.index .flash-sale-title .timer {
    font-weight: bold;
    color: #ff6600;
    font-size: 16px;
    line-height: 24px;
}

/* Flash Sale Banner */
.index .flash-sale-banner {
    width: 288px;
    background: linear-gradient(135deg, #FFAF83, #FB6A18);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 16px;
    padding: 16px;
}

    .index .flash-sale-banner img {
        width: 256px;
        height: auto;
    }

    .index .flash-sale-banner a {
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        color: white;
        cursor: pointer;
    }

/* Content Section */
.index .flash-sale-content {
    width: 1200px;
    display: flex;
    gap: 16px;
}

.index .flash-sale-nav {
    display: flex;
    gap: 16px;
    align-items: center;
}

    .index .flash-sale-nav .btn-left,
    .index .flash-sale-nav .btn-right {
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #2F2B431A;
        border-radius: 12px;
        background-color: #FFFFFF;
        cursor: pointer;
    }

        .index .flash-sale-nav .btn-left i,
        .index .flash-sale-nav .btn-right i {
            color: #FB6A18;
        }

.index .flash-sale-content .sale-list-product {
    display: flex;
    overflow: hidden;
    gap: 16px;
    width: 960px;
}

.index .product-cards {
    width: 288px;
    flex-shrink: 0;
}

/* Flash-Category-Product */
.index .flash-category-wrapper {
    width: 1440px;
    margin: auto;
}

.index .flash-sale-content .category-list-product {
    display: flex;
    overflow: hidden;
    gap: 16px;
    width: 896px;
}

.index .flash-sale-content .category2-list-product {
    display: flex;
    overflow: hidden;
    gap: 16px;
    width: 896px;
}

.index .flash-category-product {
    width: 288px;
    background: #FFF8F3;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 16px;
    padding: 10px;
}


    .index .flash-category-product .category-title {
        width: 256px;
        gap: 8px;
    }

        .index .flash-category-product .category-title img {
            width: 256px;
            gap: 8px;
            object-fit: contain;
        }

    .index .flash-category-product h2 {
        font-size: 24px;
        font-weight: 700;
        line-height: 32px;
        color: #FB6A18;
    }

    .index .flash-category-product p {
        font-size: 14px;
        font-weight: 500;
        line-height: 24px;
        color: #000000;
    }

.index .category-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

    .index .category-footer .flash-sale-link {
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        color: #FB6A18;
        cursor: pointer;
    }

/* Slide Bottom */

.index .slide-bottom .slider-container {
    width: 1200px;
    height: 312px;
    overflow: hidden;
    background-color: #FEE1D1;
    position: relative;
    border-radius: 10px;
    margin: auto;
}

/* List Product User */
.index .flash-user-wrapper {
    width: 1440px;
    margin: auto;
    padding: 10px 0px;
}

.index .flash-user-container {
    width: 1200px;
    gap: 16px;
    margin: auto;
    padding: 8px;
    background-color: #F6F6F8;
    border-radius: 24px;
}

.index .flash-user-product {
    width: 291px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 16px;
    padding: 16px;
}

.index .user-cards {
    flex-shrink: 0;
    width: 279px;
}

.index .flash-user-content {
    width: 1175px;
    display: flex;
    gap: 12px;
}

    .index .flash-user-content .user-list-product {
        display: flex;
        overflow: hidden;
        gap: 14px;
        width: 865px;
    }

.index .flash-category-product .user-title {
    width: 256px;
    gap: 8px;
}

.index .user-title h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    height: 64px;
    color: #FB6A18;
}

.index .user-title span {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #000000;
}

.index .user-title p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #7A7493;
}

/* Customer Feedback */
.index .customer-feedback-wrapper {
    width: 1440px;
    margin: auto;
    padding: 24px 0px;
    margin-bottom: 20px;
}

.index .customer-feedback-content {
    width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.index .customer-feedback-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1200px;
    gap: 12px;
}

    .index .customer-feedback-header span {
        text-align: center;
        font-size: 24px;
        font-weight: 600;
        line-height: 32px;
        color: #000000;
    }

    .index .customer-feedback-header a {
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        color: #FB6A18;
        cursor: pointer;
    }

.index .customer-feedback-cards {
    width: 1200px;
    display: grid;
    grid-template-columns: 389px 389px 390px;
    gap: 16px;
}

    .index .customer-feedback-cards .customer-feedback-card {
        border: 1px solid #ddd;
        border-radius: 24px;
    }

        .index .customer-feedback-cards .customer-feedback-card .customer-feedback-top {
            padding: 16px;
        }

        .index .customer-feedback-cards .customer-feedback-card .quote {
            color: #FB6A18;
            font-size: 25px;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .index .customer-feedback-cards .customer-feedback-card .title {
            color: #000000;
            font-size: 18px;
        }

        .index .customer-feedback-cards .customer-feedback-card .start-raiting {
            margin: 5px 0px 10px 0px;
        }

            .index .customer-feedback-cards .customer-feedback-card .start-raiting .orange {
                color: #FFBB40;
            }

            .index .customer-feedback-cards .customer-feedback-card .start-raiting .number {
                font-size: 12px;
                font-weight: 400;
            }

        .index .customer-feedback-cards .customer-feedback-card .comment {
            font-size: 16px;
            height: 100px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            color: #7A7493;
        }

.index .customer-feedback-footer {
    padding: 10px;
    gap: 12px;
    display: flex;
    align-items: center;
    background-color: #F6F6F8;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
}

    .index .customer-feedback-footer img {
        width: 60px;
        height: 60px;
        border-radius: 60%;
    }

.index .customer-feedback-info {
    height: 49px;
    gap: 2px;
    display: flex;
    flex-direction: column;
}

    .index .customer-feedback-info .name {
        font-size: 18px;
        font-weight: 600;
        line-height: 24px;
        color: #000000;
    }

    .index .customer-feedback-info span {
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
        color: #000000;
    }

/* Customer Logo */
.index .customer-logo {
    width: 1200px;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 20px;
}

.index .customer-logo-content .customer-logo-header {
    width: 1200px;
    text-align: center;
}

.index .customer-logo-content .title {
    font-size: 24px;
    font-weight: 600;
}

.index .customer-logo-content .customer-logo-cards {
    display: grid;
    grid-template-columns: 163px 163px 163px 163px 163px 163px;
    justify-content: space-between;
    padding: 6px;
}

    .index .customer-logo-content .customer-logo-cards img {
        width: 163px;
        height: 73px;
    }

/* Notify  */
.index .notify-wrapper {
    margin: auto;
    margin-bottom: 10px;
}
    .index .notify-wrapper .notify-title, .notify-card .notify-title {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.4em;
        height: calc(1.4em * 2);
        text-decoration: none;
    }

    .index .notify-wrapper .notify-note, .notify-card .notify-note {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .index .notify-wrapper .notify-header {
        width: 1200px;
        display: flex;
        gap: 16px;
        margin-bottom: 10px;
        color: #FB6A18;
        justify-content: space-between;
        align-items: center;
    }

        .index .notify-wrapper .notify-header span {
            font-size: 24px;
            font-weight: 600;
        }

        .index .notify-wrapper .notify-header a {
            color: #FB6A18;
            font-size: 16px;
            font-weight: 500;
        }

    .index .notify-wrapper .notify-cards {
        width: 1200px;
        display: grid;
        grid-template-columns: 390px 390px 390px;
        gap: 15px;
        /* background-color: red; */
    }

        .index .notify-wrapper .notify-cards .notify-card {
            border: 1px solid #EDEDF1;
            border-radius: 12px;
        }

            .index .notify-wrapper .notify-cards .notify-card img, .news-items .notify-card img {
                width: 390px;
                border-top-left-radius: 12px;
                border-top-right-radius: 12px;
            }

            .index .notify-wrapper .notify-cards .notify-card .notify-title, .news-items .notify-card .notify-title {
                font-size: 18px;
                font-weight: 600;
                color: #FB6A18;
            }

            .index .notify-wrapper .notify-cards .notify-card .notify-note, .news-items .notify-card .notify-note {
                font-size: 14px;
                font-weight: 400;
            }

            .index .notify-wrapper .notify-cards .notify-card .notify-content, .news-items .notify-card .notify-content {
                display: flex;
                flex-direction: column;
                padding: 8px;
            }

            /* button */
            .index .notify-wrapper .notify-cards .notify-card .btn-notify, .news-items .notify-card .btn-notify {
                background-color: #ff6600;
                color: #ffffff;
                border-radius: 10px;
                font-size: 16px;
                padding: 10px 20px;
                border: none;
                width: 126px;
                cursor: pointer;
                margin: 0px 0px 8px 8px
            }

                .index .notify-wrapper .notify-cards .notify-card .btn-notify:hover {
                    color: #ffffff;
                    background-color: #e65c00;
                }

/* Contact */
.index .contact-wrapper {
    width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 420px auto;
    margin-bottom: 30px;
    margin-top: 50px;
    gap: 24px;
}

    .index .contact-wrapper .contact-left .contact-info {
        margin: 20px 0px;
        gap: 6px;
    }

    .index .contact-wrapper .contact-left .contact-title {
        font-size: 30px;
        font-weight: 600;
        color: #FB6A18;
        margin-bottom: 5px;
    }

    .index .contact-wrapper .contact-left .contact-note {
        font-size: 18px;
        font-weight: 400;
    }

    .index .contact-wrapper .contact-left .btn-contact {
        background-color: #ff6600;
        color: #ffffff;
        border-radius: 10px;
        font-size: 16px;
        padding: 10px 20px;
        margin-right: 8px;
        border: none;
        width: 128px;
        cursor: pointer;
    }

        .index .contact-wrapper .contact-left .btn-contact:hover {
            color: #ffffff;
            background-color: #e65c00;
        }

    .index .contact-wrapper .contact-left .btn-chat {
        background-color: #FFFFFF;
        border-radius: 10px;
        font-size: 16px;
        padding: 10px 20px;
        border: 1px solid #2F2B431A;
        width: 138px;
        cursor: pointer;
    }

        .index .contact-wrapper .contact-left .btn-chat:hover {
            background-color: #ececec;
        }

.contact-right-content {
    margin-bottom: 8px;
    border: none;
    border-radius: 8px;
}

    .contact-right-content.active {
        border: 1px solid #EDEDF1;
    }

.index .contact-right .accordion-button {
    background-color: #F6F6F8;
    cursor: pointer;
    font-size: 18px;
    margin-bottom: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    justify-content: space-between;
}

    .index .contact-right .accordion-button.active {
        background-color: transparent;
    }

    .index .contact-right .accordion-button span {
        width: 692px;
    }

    .index .contact-right .accordion-button .accordion-icon {
        font-size: 16px;
        display: inline-block;
    }

.index .contact-right-content .accordion-content {
    font-size: 16px;
    padding: 0px 16px 8px 16px;
    margin-top: -16px;
    font-weight: 400;
    color: #3F395A;
    display: none;
}

    .index .contact-right-content .accordion-content.show {
        display: block;
    }

/* end page index */



/* page ket qua tim kiem */

.ketqua-timkiem, .chi-tiet-san-pham {
    width: 1200px;
    margin: auto;
}

    .ketqua-timkiem .grid-container {
        display: grid;
        grid-template-columns: 302px 874px;
        grid-gap: 24px;
        margin: 10px 0px;
    }

        .ketqua-timkiem .grid-container .content-filter .top .title {
            display: flex;
            align-items: center;
            font-size: 18px;
            font-weight: bold;
        }

        .ketqua-timkiem .grid-container .content-filter .top .grid-container {
            display: grid;
            grid-template-columns: auto auto;
            grid-gap: 0px;
            margin: 0px;
        }

    .ketqua-timkiem .content-filter .top .sort {
        display: flex;
        justify-content: right;
    }

        .ketqua-timkiem .content-filter .top .sort .custom-select {
            width: 170px;
        }

        .ketqua-timkiem .content-filter .top .sort .list-style-container {
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: 12px;
            height: 48px;
            padding: 0px 20px;
            background-color: #fff;
        }

            .ketqua-timkiem .content-filter .top .sort .list-style-container .gray {
                color: rgb(187, 186, 186);
            }

            .ketqua-timkiem .content-filter .top .sort .list-style-container .orange {
                color: #fb6a18
            }

    .ketqua-timkiem .content-filter .content .grid-container {
        display: grid;
        grid-template-columns: 280px 280px 280px;
        grid-gap: 17px;
    }

    .ketqua-timkiem .content-filter .paging {
        display: flex;
        justify-content: right;
    }

    /* chi tiet san pham  */

    .chi-tiet-san-pham .grid-container {
        display: grid;
        grid-template-columns: 640px 528px;
        grid-gap: 32px;
        margin: 10px 0px;
    }

        .chi-tiet-san-pham .grid-container .thumbnail-row {
            display: flex;
            justify-content: flex-start;
            margin-top: 10px;
            gap: 10px;
            padding: 1rem;
        }

            .chi-tiet-san-pham .grid-container .thumbnail-row img {
                width: auto;
                height: 60px;
                aspect-ratio: 16 / 9;
                object-fit: cover;
                cursor: pointer;
                transition: border 0.3s ease, transform 0.2s;
                border-radius: 10px;
            }

                .chi-tiet-san-pham .grid-container .thumbnail-row img.active-thumbnail {
                    border: 2px solid #fb6a18;
                    transform: scale(1.05);
                }

                .chi-tiet-san-pham .grid-container .thumbnail-row img:hover {
                    transform: scale(1.1);
                }

        .chi-tiet-san-pham .grid-container .carousel-control-prev {
            width: 50px;
            height: 50px;
            background-color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 10px;
            z-index: 1;
            transition: all 0.3s ease;
        }

            .chi-tiet-san-pham .grid-container .carousel-control-prev:hover {
                background-color: #ffffff;
                transform: translateY(-50%) scale(1.1);
            }

        .chi-tiet-san-pham .grid-container .carousel-control-prev-icon {
            filter: invert(1);
            width: 20px;
            height: 20px;
        }

        .chi-tiet-san-pham .grid-container .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 10px;
            z-index: 1;
            transition: all 0.3s ease;
        }

            .chi-tiet-san-pham .grid-container .carousel-control-next:hover {
                background-color: #ffffff;
                transform: translateY(-50%) scale(1.1);
            }

        .chi-tiet-san-pham .grid-container .carousel-control-next-icon {
            filter: invert(1);
            width: 20px;
            height: 20px;
        }

        .chi-tiet-san-pham .grid-container h4 {
            font-size: 16px;
            line-height: 20px;
            font-weight: bold;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
        }

        .chi-tiet-san-pham .grid-container .gray {
            color: #7a7493;
        }

        .chi-tiet-san-pham .grid-container .orange {
            color: #fb6a18;
        }

        .chi-tiet-san-pham .grid-container .font-small {
            font-size: 12px;
        }

        .chi-tiet-san-pham .grid-container .font-medium {
            font-size: 13px;
        }

        .chi-tiet-san-pham .grid-container .font-bold {
            font-weight: 600;
        }

        .chi-tiet-san-pham .grid-container .description {
            margin: 20px 0px;
        }

        .chi-tiet-san-pham .grid-container .product-detail-info span {
            margin-right: 5px;
        }

        .chi-tiet-san-pham .grid-container .product-detail-info .price {
            font-size: 22px;
            font-weight: 700;
            color: #fb6a18;
        }

        .chi-tiet-san-pham .grid-container .product-detail-info .old {
            font-size: 18px;
            font-weight: 500;
            color: #7a7493;
            text-decoration-line: line-through;
        }

        .chi-tiet-san-pham .grid-container .product-detail-info .sale-off {
            background-color: #fee1d1;
            color: #fb6a18;
            padding: 5px 10px;
            font-weight: 600;
        }

        .chi-tiet-san-pham .grid-container .product-detail-info .but-cart {
            display: grid;
            grid-template-columns: 172px 344px;
            grid-gap: 12px;
            margin: 15px 0px;
        }

            .chi-tiet-san-pham .grid-container .product-detail-info .but-cart .quantity {
                height: 48px;
            }

        .chi-tiet-san-pham .grid-container .product-detail-info .but-heart {
            display: grid;
            grid-template-columns: 258px 258px;
            grid-gap: 12px;
            margin: 15px 0px;
        }

        .chi-tiet-san-pham .grid-container .product-detail-info .icon {
            margin: 0px 10px;
        }

        .chi-tiet-san-pham .grid-container .product-detail-info i {
            margin: 0px 10px;
        }

        .chi-tiet-san-pham .grid-container .product-detail-info .shop-card {
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 15px;
            background-color: #f6f6f8;
        }

            .chi-tiet-san-pham
            .grid-container
            .product-detail-info
            .shop-card
            .shop-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-bottom: 15px;
            }

        .chi-tiet-san-pham .grid-container .product-detail-info .shop-header img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .chi-tiet-san-pham
        .grid-container
        .product-detail-info
        .shop-header
        .shop-info {
            flex-grow: 1;
            margin-left: 10px;
        }

            .chi-tiet-san-pham
            .grid-container
            .product-detail-info
            .shop-header
            .shop-info
            h5 {
                margin: 0;
                font-size: 16px;
                font-weight: bold;
            }

            .chi-tiet-san-pham
            .grid-container
            .product-detail-info
            .shop-header
            .shop-info
            small {
                color: #666;
            }

        .chi-tiet-san-pham
        .grid-container
        .product-detail-info
        .shop-header
        .btn-view-shop {
            background-color: #ff6600;
            color: #fff;
            border: none;
            padding: 6px 15px;
            border-radius: 5px;
            font-size: 14px;
        }

            .chi-tiet-san-pham
            .grid-container
            .product-detail-info
            .shop-header
            .btn-view-shop:hover {
                color: #ffffff;
                background-color: #e65c00;
            }

        .chi-tiet-san-pham .grid-container .product-detail-info .product-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px;
            border-radius: 5px;
            background-color: #ffffff;
            text-decoration: none;
        }

            .chi-tiet-san-pham .grid-container .product-detail-info .product-item img {
                width: 80px;
                height: 60px;
                object-fit: cover;
                border-radius: 5px;
                margin-right: 15px;
            }

            .chi-tiet-san-pham .grid-container .product-detail-info .product-item h6 {
                margin: 0;
                font-size: 14px;
            }

            .chi-tiet-san-pham .grid-container .product-detail-info .product-item .price {
                color: #fb6a18;
                font-size: 14px;
                margin-top: 5px;
            }

        .chi-tiet-san-pham .grid-container .product-detail-info .view-more {
            text-align: left;
            margin-top: 10px;
        }

            .chi-tiet-san-pham .grid-container .product-detail-info .view-more a {
                color: #ff6600;
                font-size: 16px;
                text-decoration: underline;
            }

        .chi-tiet-san-pham .grid-container .left-col .title {
            font-weight: bold;
            margin: 25px 0px 10px 0px;
        }

        .chi-tiet-san-pham .grid-container .left-col .info-table {
            border: 1px solid #ddd;
            border-radius: 10px;
        }

        .chi-tiet-san-pham .grid-container .left-col .info-table {
            border: 1px solid #ddd;
            border-radius: 10px;
        }

            .chi-tiet-san-pham .grid-container .left-col .info-table .even {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 14px;
                border-bottom: 1px solid #ddd;
            }

            .chi-tiet-san-pham .grid-container .left-col .info-table .odd {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 14px;
                border-bottom: 1px solid #ddd;
                background-color: #f6f6f8;
            }

            .chi-tiet-san-pham .grid-container .left-col .info-table .last {
                border-bottom: 0px;
            }

        .chi-tiet-san-pham .grid-container .product-description {
            background-color: #fff;
            font-size: 14px;
            line-height: 1.6;
            color: #333;
        }

            .chi-tiet-san-pham .grid-container .product-description h5 {
                font-weight: bold;
                margin-bottom: 20px;
            }

            .chi-tiet-san-pham .grid-container .product-description ul {
                list-style-type: disc;
                padding-left: 20px;
            }

                .chi-tiet-san-pham .grid-container .product-description ul ul {
                    list-style-type: circle;
                    padding-left: 20px;
                }

            .chi-tiet-san-pham .grid-container .product-description li {
                margin-bottom: 10px;
            }

    .chi-tiet-san-pham .related-products {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

        .chi-tiet-san-pham .related-products h5 {
            margin: 0;
            font-size: 18px;
            font-weight: bold;
            color: #000;
        }

        .chi-tiet-san-pham .related-products a {
            font-size: 14px;
            font-weight: bold;
            color: #ff6600;
            text-decoration: none;
            position: relative;
        }

            .chi-tiet-san-pham .related-products a::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -2px;
                width: 100%;
                height: 1px;
                background-color: #ff6600;
                transition: all 0.3s ease;
            }

            .chi-tiet-san-pham .related-products a:hover::after {
                height: 2px;
            }

    .chi-tiet-san-pham .product-other {
        display: grid;
        grid-template-columns: 288px 288px 288px 288px;
        grid-gap: 16px;
        margin: 20px 0px;
    }

.social-share {
    display: flex;
    align-items: center;
    gap: 0px;
    font-size: 16px;
}

    .social-share a {
        text-decoration: none;
        color: #000; /* Màu đen cho icon */
        font-size: 20px; /* Kích thước icon */
        transition: color 0.3s ease;
    }

        .social-share a:hover {
            color: #007bff; /* Màu xanh khi hover */
        }

    .social-share span {
        font-weight: bold;
    }

.quantity-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 100%;
    height: auto;
    padding: 0 10px;
}

    .quantity-input button {
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        color: #333;
    }

        .quantity-input button:disabled {
            color: #ccc;
            cursor: not-allowed;
        }

    .quantity-input input {
        width: 60%;
        text-align: center;
        border: none;
        font-size: 16px;
        background: none;
        outline: none;
    }

.btn-add-to-cart,
.btn-cancel {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 0px;
    font-size: 16px;
    color: #000;
    background-color: #fff;
    width: 100%;
}

    .btn-add-to-cart:hover {
        background-color: #fff7f2;
        border: 1px solid #ddd;
    }

    .btn-cancel:hover {
        background-color: #fff7f2;
        border: 1px solid #ddd;
    }

    .btn-add-to-cart i {
        font-size: 18px;
        margin-right: 8px;
    }
/* end chi tiet san pham  */


/* page cua hang */
.shop-card-cua-hang {
    border: 1px solid #FFF8F3;
    border-radius: 10px;
    padding: 15px;
    background-color: #FFF8F3
}

    .shop-card-cua-hang .shop-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .shop-card-cua-hang .shop-header img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
        }

        .shop-card-cua-hang .shop-header .shop-info {
            flex-grow: 1;
            margin-left: 10px;
            max-width: 90%;
        }

            .shop-card-cua-hang .shop-header .shop-info h5 {
                margin: 0;
                font-size: 16px;
                font-weight: bold;
                color: #FB6A18;
                margin-bottom: 10px;
            }

            .shop-card-cua-hang .shop-header .shop-info span {
                font-size: 14px;
            }

        .shop-card-cua-hang .shop-header .btn-view-shop {
            background-color: #ff6600;
            color: #fff;
            border: none;
            padding: 13px 15px;
            border-radius: 10px;
            font-size: 14px;
        }

            .shop-card-cua-hang .shop-header .btn-view-shop:hover {
                color: #ffffff;
                background-color: #e65c00;
            }

            .shop-card-cua-hang .shop-header .btn-view-shop i {
                margin-right: 10px;
            }


.menu-item {
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

    .menu-item:hover {
        background-color: #EDEDF1;
    }

.submenu {
    padding-left: 0px;
    margin-top: 5px;
    display: none;
}

.submenu-item {
    list-style: disc;
    font-size: 14px;
    margin-top: 10px;
    color: #495057;
}
/* end page cua hang */

/* page tai khoan thong tin */

.my-account-left {
    border: 1px solid #EDEDF1;
    border-radius: 12px;
    padding: 0px 10px;
}

    .my-account-left .custom-button-active {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        color: #000;
        font-weight: bold;
        font-size: 16px;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        text-decoration: none;
        margin: 10px 0px;
        background-color: #fff7f2;
        color: #ff6600;
    }

    .my-account-left .custom-button {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        color: #000;
        font-weight: bold;
        font-size: 16px;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        text-decoration: none;
        margin: 10px 0px;
    }

        .my-account-left .custom-button:hover {
            background-color: #fff7f2;
            color: #ff6600;
        }

        .my-account-left .custom-button .text-left, .my-account-left .custom-button-active .text-left {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .my-account-left .custom-button .icon-left, .my-account-left .custom-button-active .icon-left {
            font-size: 20px;
        }

        .my-account-left .custom-button .icon-right, .my-account-left .custom-button-active .icon-right {
            font-size: 16px;
        }

.my-account-info {
    border: 1px solid #EDEDF1;
    border-radius: 12px;
    padding: 15px;
    background-color: #F6F6F8;
}

.profile-card, .address-card {
    background-color: #ffffff;
    border: 1px solid #EDEDF1;
    border-radius: 12px;
    padding: 19px;
}

    .profile-card .profile-content {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-top: 15px;
    }

    .profile-card .profile-image {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
    }

    .profile-card .profile-buttons .btn-upload {
        background-color: #ff6600;
        color: #fff;
        border: none;
        border-radius: 12px;
        padding: 8px 20px;
    }

        .profile-card .profile-buttons .btn-upload:hover {
            background-color: #e65c00;
        }

    .profile-card .profile-buttons .btn-remove {
        background-color: #ffffff;
        color: #000;
        border: 1px solid #ddd;
        border-radius: 12px;
        padding: 8px 20px;
    }

        .profile-card .profile-buttons .btn-remove:hover {
            background-color: #ffffff;
            color: #000;
            border: 1px solid #ddd;
            border-radius: 12px;
            padding: 8px 20px;
        }

        .profile-card .profile-buttons .btn-remove:hover {
            background-color: #fff7f2;
            border: 1px solid #ddd;
        }

.my-account .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    padding: 10px;
    box-shadow: none;
}

    .my-account .form-control:focus {
        border-color: #6c757d;
        box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25);
    }

.my-account label {
    font-size: 14px;
    margin-bottom: 5px;
}

.my-account .but-change-pass {
    width: 172px;
}

.my-account .button-footer {
    display: flex;
    justify-content: right;
    gap: 10px;
}

    .my-account .button-footer .but-cancel {
        width: 150px;
    }

    .my-account .button-footer .but-save {
        width: 150px;
    }
/* end page tai khoan thong tin */

/* page signin */
.signin {
    background-color: #FFFFFF;
    /* height: 100vh;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

    .signin .signin-container {
        display: flex;
        background-color: blue;
        width: 1440px;
        color: white;
        text-align: center;
    }

        .signin .signin-container .signin-left {
            width: 658px;
            display: flex;
            flex-direction: column;
            position: relative;
            height: 700px;
            background-image: url("/image/signin1.png");
            background-color: green;
        }

            .signin .signin-container .signin-left h2 {
                font-size: 36px;
                font-weight: 700;
                margin-top: 100px;
                margin-bottom: -5px;
                color: #FB6A18;
            }

            .signin .signin-container .signin-left p {
                font-size: 20px;
                font-weight: 500;
                margin-top: 20px;
                color: #000000;
            }

            .signin .signin-container .signin-left span {
                font-size: 14px;
                font-weight: 400;
                color: #7A7493;
                position: absolute;
                bottom: 20px;
                width: 100%;
            }

        .signin .signin-container .signin-right {
            width: 782px;
            display: flex;
            justify-items: center;
            align-items: center;
            background-color: #FFF8F3;
        }

            .signin .signin-container .signin-right .signin-right-container {
                width: 480px;
                margin: auto;
                padding: 24px;
                border-radius: 16px;
                box-shadow: 0px 4px 8px 0px rgba(47, 43, 67, 0.1), 0px -1px 0px 0px rgba(47, 43, 67, 0.1);
                border: 1px solid #F6F6F8;
                background-color: #FFFFFF;
                text-align: left;
            }

                .signin .signin-container .signin-right .signin-right-container h2 {
                    font-size: 24px;
                    font-weight: 700;
                    color: #FB6A18;
                }

                .signin .signin-container .signin-right .signin-right-container .form-group .label {
                    font-size: 14px;
                    font-weight: 500;
                    color: #2F2B43;
                    width: 100%;
                    margin-top: 16px;
                    margin-bottom: 8px;
                }

                .signin .signin-container .signin-right .signin-right-container .btn-sign {
                    margin-top: 16px;
                }

    .signin .signin-modal {
        width: 480px;
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: auto;
        padding: 24px;
        align-items: center;
        text-align: center;
        flex-direction: column;
        border-radius: 16px;
        box-shadow: 0px 4px 8px 0px rgba(47, 43, 67, 0.1), 0px -1px 0px 0px rgba(47, 43, 67, 0.1);
        border: 1px solid #F6F6F8;
        background-color: #FFFFFF;
        z-index: 1000;
    }

        .signin .signin-modal img {
            width: 48px;
            object-fit: cover;
            font-weight: 700;
            color: #FB6A18;
            border-radius: 250px;
            padding: 10px;
            background-color: #FFF8F3;
        }

        .signin .signin-modal h2 {
            font-size: 24px;
            font-weight: 700;
            color: #000000;
            margin: 16px 0px;
        }

        .signin .signin-modal .modal-span {
            font-size: 14px;
            font-weight: 500;
            color: #2F2B43;
            width: 80%;
            margin: auto;
        }

        .signin .signin-modal .btn-otp {
            background-color: #FFFFFF;
            margin-top: 20px;
            padding: 12px 16px;
            border-radius: 12px;
            font-weight: 600;
            border: 1px solid #2F2B431A;
            color: #000000;
        }

            .signin .signin-modal .btn-otp:hover {
                color: black;
            }

.signin-modal.show,
.modal-overlay.show {
    display: block;
}

body.modal-open {
    overflow: hidden;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2F2B43CC;
    z-index: 999;
}

.signin .signin-right-container .otp-span {
    font-size: 14px;
    font-weight: 400;
    color: #2F2B43;
    text-align: center;
    margin-top: 12px;
}

    .signin .signin-right-container .otp-span a {
        font-weight: 600;
        text-decoration: none;
        color: #2F2B43;
    }

    .signin .signin-right-container .otp-span .time {
        font-weight: 600;
        text-decoration: none;
        color: #FB6A18;
    }

.signin .otp-input-container {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.signin .otp-input {
    width: 48px;
    height: 48px;
    font-size: 16px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 12px;
}

    .signin .otp-input:focus {
        outline: none;
        border-color: #FB6A18;
    }
/* end page signin */

/* page so dia chi */
.address-card {
    margin-bottom: 15px;
}

    .address-card .but-default {
        color: #FB6A18;
        background-color: #fff7f2;
        font-size: 13px;
        padding: 6px;
        border-radius: 12px;
        font-weight: bold;
        margin-left: 10px;
    }

    .address-card .set-but-default {
        background-color: #ffffff;
        font-size: 13px;
        padding: 3px 6px;
        border-radius: 12px;
        font-weight: bold;
        margin-left: 10px;
    }

    .address-card .gray {
        color: #7A7493;
    }

    .address-card button {
        font-size: 14px;
        border-radius: 12px;
        border: 1px solid #EDEDF1;
        background-color: #ffffff;
        padding: 5px 10px;
    }

        .address-card button:hover {
            background-color: #fff7f2;
            border: 1px solid #EDEDF1;
        }

    .address-card .address-info span {
        line-height: 30px;
    }

    .address-card a {
        text-decoration: underline;
        font-size: 14px;
        margin-left: 10px;
    }

        .address-card a:hover {
            color: #FB6A18;
        }

.my-account-info .address-but-footer {
    width: 162px;
}

.profile-card .add-address {
    padding-bottom: 15px;
    border-bottom: 1px solid #EDEDF1;
}

.footer-add-address {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 16px;
    align-items: center;
    border-top: 1px solid #EDEDF1;
    margin-top: 15px;
}

    .footer-add-address input[type="checkbox"] {
        display: block;
    }
/* end */

/* page don hang */
.order-lists {
    border: 1px solid #EDEDF1;
    border-radius: 12px;
    padding: 15px;
    position: relative;
    background-color: #F6F6F8;
}

    .order-lists .order-status {
        background-color: #EDEDF1;
        border-radius: 50px;
        display: flex;
        padding: 5px;
        justify-content: space-between;
        width: fit-content;
        margin: 20px auto;
        width: 100%;
    }

        .order-lists .order-status button {
            border: none;
            background: transparent;
            flex-grow: 1;
            border-radius: 50px;
            padding: 10px 20px;
            font-size: 16px;
            color: #6c757d;
        }

            .order-lists .order-status button.active {
                background-color: #fff;
                color: #000;
                font-weight: bold;
            }

    .order-lists .order-card {
        background-color: #ffffff;
        border: 1px solid #EDEDF1;
        border-radius: 12px;
        padding: 19px;
        margin-top: 15px;
    }

        .order-lists .order-card .order-card-head {
            border-bottom: 1px solid #EDEDF1;
            padding-bottom: 10px;
        }

            .order-lists .order-card .order-card-head .order-card-head-title {
                display: flex;
                justify-content: space-between;
                align-items: center;
                height: 25px;
            }

                .order-lists .order-card .order-card-head .order-card-head-title .orange {
                    color: #FB6A18;
                    font-weight: bold;
                }

                .order-lists .order-card .order-card-head .order-card-head-title .status-success {
                    color: #2F9461;
                    background-color: #EFFDF6;
                    font-size: 13px;
                    padding: 6px;
                    border-radius: 12px;
                }

                .order-lists .order-card .order-card-head .order-card-head-title .status-processing {
                    color: #C95513;
                    background-color: #FFF8F3;
                    font-size: 13px;
                    padding: 6px;
                    border-radius: 12px;
                }

                .order-lists .order-card .order-card-head .order-card-head-title .status-pending {
                    color: #E0A800;
                    background-color: #FFFBEA;
                    font-size: 13px;
                    padding: 6px;
                    border-radius: 12px;
                }

                .order-lists .order-card .order-card-head .order-card-head-title .status-cancelled {
                    color: #F34141;
                    background-color: #FEF2F2;
                    font-size: 13px;
                    padding: 6px;
                    border-radius: 12px;
                }

                .order-lists .order-card .order-card-head .order-card-head-title .status-refunded {
                    color: #5E5E5E;
                    background-color: #F4F4F4;
                    font-size: 13px;
                    padding: 6px;
                    border-radius: 12px;
                }

                .order-lists .order-card .order-card-head .order-card-head-title .status-unknown {
                    color: #888;
                    background-color: #F9F9F9;
                    font-size: 13px;
                    padding: 6px;
                    border-radius: 12px;
                }

            .order-lists .order-card .order-card-head .date {
                color: #7A7493;
                font-size: 13px;
            }

        .order-lists .order-card .order-card-content .product-item {
            display: flex;
            align-items: center;
            gap: 15px;
            border-radius: 5px;
            background-color: #ffffff;
            margin-bottom: 15px;
        }

            .order-lists .order-card .order-card-content .product-item img {
                width: 72px;
                height: 72px;
                object-fit: cover;
                border-radius: 5px;
            }

            .order-lists .order-card .order-card-content .product-item h6 {
                margin: 0;
                font-size: 14px;
            }

        .order-lists .order-card .price {
            color: #FB6A18;
            font-size: 16px;
            margin-top: 5px;
            font-weight: bold;
        }

        .order-lists .order-card .button-cancel-order {
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 10px 0px;
            font-size: 16px;
            color: #F34141;
            background-color: #fff;
            width: 100%;
        }

            .order-lists .order-card .button-cancel-order:hover {
                background-color: #fff7f2;
                border: 1px solid #ddd;
            }
/* end */

.my-account-not-login {
    margin: 100px auto;
    text-align: center;
}

    .my-account-not-login .title {
        font-weight: bold;
    }

    .my-account-not-login .content {
        font-size: 14px;
        color: #7A7493;
    }

    .my-account-not-login .button-not-login {
        display: flex;
        gap: 15px;
        justify-content: center;
    }

        .my-account-not-login .button-not-login .register {
            width: 142px;
        }

        .my-account-not-login .button-not-login .login {
            width: 162px;
        }

/* page thông báo  */
.thong-bao {
    width: 1200px;
    margin: auto;
    margin-bottom: 16px;
}

    .thong-bao .thong-bao-wrapper .thong-bao-title {
        color: #FB6A18;
        font-weight: 600;
        font-size: 24px;
    }

    .thong-bao .thong-bao-wrapper .thong-bao-content {
        display: grid;
        grid-template-columns: 428px auto;
        gap: 16px;
    }

    .thong-bao .thong-bao-left .thong-bao-item {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        margin: 10px 0;
        padding: 10px 15px;
        background-color: #fff;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

        .thong-bao .thong-bao-left .thong-bao-item:hover {
            background-color: #f4f4f4;
        }

    .thong-bao .thong-bao-left .thong-bao-item-header {
        font-weight: bold;
        position: relative;
        width: 395px;
    }

    .thong-bao .thong-bao-left .thong-bao-item-content {
        color: #3F395A;
        font-size: 16px;
        font-weight: 400;
        display: none;
        margin-top: 5px;
    }

    .thong-bao .thong-bao-left .thong-bao-item .icon-thong-bao {
        color: #000;
        position: absolute;
        top: 3px;
        right: 0;
    }

    .thong-bao .thong-bao-left .thong-bao-item.open .thong-bao-item-content {
        display: block;
    }

    .thong-bao .thong-bao-left .thong-bao-item.open .thong-bao-item-header {
        color: #FB6A18;
    }

    .thong-bao .thong-bao-right {
        padding: 16px;
        border: 1px solid #EDEDF1;
        border-radius: 8px;
    }

        .thong-bao .thong-bao-right h1 {
            font-size: 24px;
            font-weight: 600;
        }

        .thong-bao .thong-bao-right span {
            font-size: 16px;
            color: #3F395A;
            font-weight: 400;
        }

        .thong-bao .thong-bao-right img {
            width: 716px;
            margin: 10px 0px;
        }

/* end page thông báo   */

/* page câu hỏi thường gặp  */
.cau-hoi-thuong-gap {
    width: 756px;
    margin: auto;
    margin-bottom: 16px;
}

    .cau-hoi-thuong-gap .cau-hoi-thuong-gap-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: unset;
        border: unset;
        border-radius: unset;
    }

        .cau-hoi-thuong-gap .cau-hoi-thuong-gap-header h5 {
            font-size: 24px;
            font-weight: 600;
            color: #FB6A18;
            margin-top: 5px;
            width: 386px;
            line-height: 32px;
        }

    .cau-hoi-thuong-gap .order-lists .order-status {
        width: 362px;
    }

        .cau-hoi-thuong-gap .order-lists .order-status button.active {
            background-color: #fff;
            color: #FB6A18;
            font-weight: bold;
        }

    .cau-hoi-thuong-gap .contact-wrapper {
        display: grid;
        display: flex;
        flex-direction: column;
    }

        .cau-hoi-thuong-gap .contact-wrapper .contact-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-top: 12px;
        }

            .cau-hoi-thuong-gap .contact-wrapper .contact-left .contact-info {
                margin: 20px 0px;
                gap: 6px;
            }

            .cau-hoi-thuong-gap .contact-wrapper .contact-left .contact-title {
                font-size: 30px;
                font-weight: 600;
                color: #FB6A18;
                margin-bottom: 5px;
            }

            .cau-hoi-thuong-gap .contact-wrapper .contact-left .contact-note {
                font-size: 18px;
                font-weight: 400;
            }

            .cau-hoi-thuong-gap .contact-wrapper .contact-left .btn-contact {
                background-color: #ff6600;
                color: #ffffff;
                border-radius: 10px;
                font-size: 16px;
                padding: 10px 20px;
                margin-right: 8px;
                border: none;
                width: 128px;
                cursor: pointer;
            }

                .cau-hoi-thuong-gap .contact-wrapper .contact-left .btn-contact:hover {
                    color: #ffffff;
                    background-color: #e65c00;
                }

            .cau-hoi-thuong-gap .contact-wrapper .contact-left .btn-chat {
                background-color: #FFFFFF;
                border-radius: 10px;
                font-size: 16px;
                padding: 10px 20px;
                border: 1px solid #2F2B431A;
                width: 138px;
                cursor: pointer;
            }

                .cau-hoi-thuong-gap .contact-wrapper .contact-left .btn-chat:hover {
                    background-color: #ececec;
                }

.contact-right-content {
    margin-bottom: 8px;
    border: none;
    border-radius: 8px;
}

    .contact-right-content.active {
        border: 1px solid #EDEDF1;
    }

.cau-hoi-thuong-gap .contact-right .accordion-button {
    background-color: #F6F6F8;
    cursor: pointer;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    padding: 16px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    justify-content: space-between;
}

    .cau-hoi-thuong-gap .contact-right .accordion-button.active {
        background-color: transparent;
    }

    .cau-hoi-thuong-gap .contact-right .accordion-button span {
        width: 692px;
    }

    .cau-hoi-thuong-gap .contact-right .accordion-button .accordion-icon {
        font-size: 16px;
        display: inline-block;
    }

.cau-hoi-thuong-gap .contact-right-content .accordion-content {
    font-size: 16px;
    padding: 0px 16px 8px 16px;
    margin-top: -16px;
    font-weight: 400;
    color: #3F395A;
    display: none;
}

    .cau-hoi-thuong-gap .contact-right-content .accordion-content.show {
        display: block;
    }
/* end page câu hỏi thường gặp   */

/* page về chúng tôi  */
.about-us {
    width: 1200px;
    margin: auto;
    margin-bottom: 16px;
}

    .about-us h2 {
        font-size: 30px;
        font-weight: 600;
        color: #FB6A18;
        margin: 8px 0px 16px 0px;
    }

    .about-us .about-us-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

        .about-us .about-us-wrapper .about-us-left span {
            font-size: 14px;
            font-weight: 400;
            color: #7A7493;
        }

        .about-us .about-us-wrapper .about-us-left .title {
            font-size: 24px;
            font-weight: 700;
            margin-top: 12px;
            margin-bottom: 0px;
        }

    .about-us .about-us-content {
        margin-top: 16px;
    }

    .about-us .feature-item {
        display: flex;
        padding: 4px 0px;
        gap: 8px;
        margin-top: 10px;
    }

        .about-us .feature-item .icon-circle {
            width: 56px;
            height: 56px;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0px;
            border-radius: 100px;
            background-color: #FFF8F3;
        }

    .about-us .feature-content {
        gap: 4px;
        width: 524px;
    }

    .about-us .feature-item .icon-circle i {
        font-size: 22px;
        color: #FB6A18;
    }

    .about-us .feature-content h3 {
        font-size: 16px;
        font-weight: bold;
        color: black;
        line-height: 24px;
        margin-bottom: -8px;
        height: 24px;
        font-weight: 600px;
    }

    .about-us .about-us-content .feature-content p {
        font-size: 14px;
        color: #7A7493;
        line-height: 20px;
        margin-top: 10px;
    }

    .about-us .about-us-footer {
        border: 1px solid #DCDAE2;
        border-radius: 16px;
        margin-top: 16px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

        .about-us .about-us-footer .about-us-footer-left {
            padding: 16px;
        }

            .about-us .about-us-footer .about-us-footer-left .title {
                font-size: 24px;
                font-weight: 700;
                margin-bottom: 0px;
            }

        .about-us .about-us-footer .feature-content p {
            font-size: 14px;
            color: #7A7493;
            margin-top: 12px;
            line-height: 20px;
        }

        .about-us .about-us-footer .feature-content {
            gap: 4px;
            width: 488px;
        }

    .about-us .feature-about {
        margin-top: 0px;
    }
/* end page về chúng tôi    */

/* shopping card page */
.shopping-card {
    background-color: #ffffff;
    border: 1px solid #EDEDF1;
    border-radius: 12px;
    padding: 19px;
    margin-top: 15px;
}

    .shopping-card .cart-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #ddd;
        padding-bottom: 10px;
    }

    .shopping-card label {
        display: flex;
        font-weight: bold;
    }

    .shopping-card .cart-header .view-shop {
        color: #FB6A18;
        font-size: 14px;
        text-decoration: none;
    }

    .shopping-card .cart-item {
        display: flex;
        margin-top: 15px;
    }

        .shopping-card .cart-item img {
            width: 100px;
            min-height: 4em;
            height: 4em;
            max-height: 4em;
            border-radius: 8px;
            margin-right: 15px;
            object-fit: cover;
        }

        .shopping-card .cart-item .cart-item-info {
            flex: 1;
        }

            .shopping-card .cart-item .cart-item-info h4 {
                margin: 0;
                font-size: 16px;
                font-weight: normal;
            }

            .shopping-card .cart-item .cart-item-info .price {
                color: #ff6600;
                font-size: 18px;
                margin: 5px 0;
            }

        .shopping-card .cart-item .cart-item-controls .quantity {
            height: 32px;
            width: 130px;
        }

        .shopping-card .cart-item .cart-item-remove {
            margin-left: 15px;
            color: #7A7493;
            cursor: pointer;
            text-decoration: underline;
            font-size: 14px;
        }

.shopping-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .shopping-card-footer .but-thanhtoan {
        width: 200px;
    }

.title-total {
    font-size: 14px;
    font-weight: bold;
}

.total-price {
    font-size: 18px;
    color: #ff6600;
    font-weight: bold;
}


/* end */

.purcharse {
    width: 1200px;
    margin: auto;
}

    .purcharse .return-shop-cart {
        color: #7A7493;
        font-size: 14px;
        text-decoration: none;
    }

        .purcharse .return-shop-cart:hover {
            text-decoration: underline;
        }

    .purcharse .purcharse-grid {
        display: grid;
        grid-template-columns: 776px 400px;
        grid-gap: 24px;
        margin-bottom: 20px;
    }

        .purcharse .purcharse-grid .purcharse-info,
        .purcharse .purcharse-grid .purcharse-orders {
            border: 1px solid #EDEDF1;
            border-radius: 12px;
            padding: 15px;
            background-color: #F6F6F8;
        }

            .purcharse .purcharse-grid .purcharse-info .purcharse-progress {
                display: flex;
                justify-content: center;
                align-items: center;
            }

                .purcharse .purcharse-grid .purcharse-info .purcharse-progress .circle-active {
                    width: 20px;
                    height: 20px;
                    border-radius: 50%;
                    border: 2px solid #ff6600;
                    background-color: #fff6e5;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                    .purcharse .purcharse-grid .purcharse-info .purcharse-progress .circle-active .inner-circle {
                        width: 10px;
                        height: 10px;
                        border-radius: 50%;
                        background-color: #ff6600;
                    }

                .purcharse .purcharse-grid .purcharse-info .purcharse-progress .circle-not-active {
                    width: 20px;
                    height: 20px;
                    border-radius: 50%;
                    border: 2px solid #ddd;
                    background-color: transparent;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                .purcharse .purcharse-grid .purcharse-info .purcharse-progress .line {
                    flex-grow: 1; /* Đường kẻ chiếm toàn bộ không gian còn lại */
                    height: 1px;
                    background-color: #ddd; /* Màu của đường kẻ */
                    margin: auto 5px;
                }

                .purcharse .purcharse-grid .purcharse-info .purcharse-progress .text {
                    padding-left: 5px;
                    font-size: 14px;
                }

        .purcharse .purcharse-grid input[type="checkbox"] {
            display: block;
        }

        .purcharse .purcharse-grid .purcharse-orders .products {
            border-top: 1px solid #EDEDF1;
            border-bottom: 1px solid #EDEDF1;
        }

            .purcharse .purcharse-grid .purcharse-orders .products .product-item {
                display: flex;
                align-items: center;
                gap: 15px;
                border-radius: 5px;
                background-color: #ffffff;
                margin-bottom: 15px;
            }

                .purcharse .purcharse-grid .purcharse-orders .products .product-item img {
                    width: 72px;
                    height: 72px;
                    object-fit: cover;
                    border-radius: 5px;
                }

                .purcharse .purcharse-grid .purcharse-orders .products .product-item h6 {
                    margin: 0;
                    font-size: 14px;
                }

            .purcharse .purcharse-grid .purcharse-orders .products .price {
                color: #FB6A18;
                font-size: 16px;
                margin-top: 5px;
                font-weight: bold;
            }

        .purcharse .purcharse-grid .purcharse-orders .fee {
            display: flex;
            justify-content: space-between;
            margin: 10px 0px;
        }

            .purcharse .purcharse-grid .purcharse-orders .fee .title {
                color: #7A7493;
                font-size: 14px;
            }

            .purcharse .purcharse-grid .purcharse-orders .fee .price {
                color: #000;
                font-weight: bold;
            }

        .purcharse .purcharse-grid .purcharse-orders .total {
            display: flex;
            justify-content: space-between;
            margin: 10px 0px 0px 0px;
            border-top: 1px solid #EDEDF1;
            padding-top: 15px;
        }

            .purcharse .purcharse-grid .purcharse-orders .total .title {
                color: #000;
                font-size: 14px;
            }

            .purcharse .purcharse-grid .purcharse-orders .total .price {
                color: #FB6A18;
                font-weight: bold;
            }


/* page so sánh  */
.sosanh {
    width: 1400px;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

    .sosanh .sosanh-header-wrapper {
        padding-bottom: 20px;
        border-bottom: 1px solid #EDEDF1;
    }

    .sosanh .sosach-header {
        display: grid;
        width: 1200px;
        margin: auto;
        grid-template-columns: 300px auto;
    }

        .sosanh .sosach-header .sosach-header-left h1 {
            font-size: 18px;
            font-weight: 600;
            margin-top: 16px;
        }

        .sosanh .sosach-header .sosach-header-left p {
            color: #7A7493;
            font-weight: 400;
            font-size: 14px;
            display: flex;
            align-items: center;
        }

            .sosanh .sosach-header .sosach-header-left p span {
                margin-left: 8px;
            }

        .sosanh .sosach-header .fa-xmark {
            font-size: 16px;
            cursor: pointer;
            color: #7A7493;
        }

    .sosanh .sosach-header-right {
        display: flex;
        gap: 5px;
        justify-items: center;
        align-items: center;
    }

        .sosanh .sosach-header-right .sosach-header-right-item {
            width: 418px;
            border: 1px solid #DCDAE2;
            justify-content: space-between;
            padding: 8px;
            border-radius: 12px;
            display: flex;
        }

            .sosanh .sosach-header-right .sosach-header-right-item img {
                width: 72px;
                border-radius: 8px;
            }

            .sosanh .sosach-header-right .sosach-header-right-item .sosach-header-right-info {
                width: 286px;
            }

                .sosanh .sosach-header-right .sosach-header-right-item .sosach-header-right-info p {
                    font-size: 14px;
                    margin-bottom: 0px;
                    margin-top: 5px;
                    font-weight: 500;
                    overflow: hidden;
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                    text-overflow: ellipsis;
                }

                .sosanh .sosach-header-right .sosach-header-right-item .sosach-header-right-info span {
                    font-size: 16px;
                    font-weight: 600;
                    color: #FB6A18;
                }

                    .sosanh .sosach-header-right .sosach-header-right-item .sosach-header-right-info span strong {
                        color: black;
                        margin-top: 12px;
                        font-size: 14px;
                        font-weight: 400;
                    }

        .sosanh .sosach-header-right .transfer {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            margin: 0px 6px;
            border: 1px solid #FB6A18;
        }

            .sosanh .sosach-header-right .transfer .orange {
                color: #FB6A18;
            }

    .sosanh .sosanh-content {
        width: 1200px;
        margin: auto;
    }

    .sosanh .sosanh-content-info {
        border-radius: 12px;
    }

    .sosanh .comparison-table {
        margin-top: 20px;
        width: 1200px;
        border-radius: 12px;
        cursor: pointer;
    }

        .sosanh .comparison-table th,
        .sosanh .comparison-table td {
            padding: 15px;
            font-size: 16px;
            font-weight: 500;
            border: 1px solid #EDEDF1;
        }

        .sosanh .comparison-table th {
            font-weight: bold;
            text-align: left;
        }

        .sosanh .comparison-table .row-header {
            font-weight: bold;
            text-align: left;
            color: #7A7493;
            font-weight: 400;
            width: 300px;
        }

        .sosanh .comparison-table .highlight {
            color: #FB6A18;
            font-weight: bold;
        }

    .sosanh .sosanh-content-info .table-img {
        width: 430px;
        border-radius: 8px;
    }

    .sosanh .sosanh-center {
        font-size: 18px;
        font-weight: 600;
    }

    /* so sanh xóa sp */
    .sosanh .sosach-header-right-text {
        width: 418px;
        height: 88px;
        border: 1px solid #DCDAE2;
        background-color: #F6F6F8;
        border-radius: 12px;
        justify-content: center;
        align-items: center;
        display: flex;
    }

        .sosanh .sosach-header-right-text a {
            width: 100%;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
        }

    .sosanh .comparison-table .table-th {
        vertical-align: middle;
        width: 300px;
    }

    .sosanh .comparison-table .table-sosanh-th {
        vertical-align: middle;
        width: 277px;
    }
/* end page so sánh */

.address-card .header-info {
    display: flex;
    align-items: center;
    gap: 4px;
}

.address-card .circle-default {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 7px solid #ff6600;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.address-card .circle-gray {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #7A7493;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-trans-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin: 10px 0px;
}

    .method-trans-item:hover {
        background-color: #FFF0E88F;
    }

.method-trans-item-active {
    background-color: #FFF0E88F;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin: 10px 0px;
}

    .method-trans-item .method-trans-item-left,
    .method-trans-item-active .method-trans-item-left {
        display: flex;
        gap: 10px;
    }

        .method-trans-item .method-trans-item-left .text-bold,
        .method-trans-item-active .method-trans-item-left .text-bold {
            color: #000;
            font-weight: bold;
            font-size: 14px;
        }

        .method-trans-item .method-trans-item-left .text-gray,
        .method-trans-item-active .method-trans-item-left .text-gray {
            color: #7A7493;
            font-size: 14px;
        }

    .method-trans-item .text-orange,
    .method-trans-item-active .text-orange {
        color: #FB6A18;
        font-weight: bold;
        font-size: 14px;
    }

.my-account .button-footer .but-order-status {
    width: 184px;
}

.address-card .order-summary {
    border-top: solid 1px #EDEDF1;
}

.address-card .row-item {
    display: flex;
    justify-content: space-between;
    margin: 15px 0px;
}

.address-card .text-left {
    font-size: 14px;
    color: #000;
}

.address-card .text-right {
    font-size: 14px;
    color: #000;
    font-weight: bold;
}

.address-card .noice {
    text-align: center;
    width: 100%;
}

    .address-card .noice .text-orange {
        color: #FB6A18;
        font-weight: bold;
        font-size: 14px;
    }
/* page đăng ký làm nhà cc  */
.my-account-info-supplier {
    width: 1200px;
}

.profile-card #introduce {
    height: 150px;
}

.form-require {
    color: red;
}

.icon-store {
    margin-right: 5px;
}
/* end page đăng ký làm nhà cc  */

/* page nha cung cap  */
.order-status-header {
    display: grid;
    grid-template-columns: 198px 198px 198px 198px;
    gap: 16px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #ededf1;
    padding: 16px 8px;
}

    .order-status-header .order-status-item {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .order-status-header .order-status-item img {
            width: 48px;
            margin-right: 10px;
        }

        .order-status-header .order-status-item .order-status-title {
            display: flex;
            flex-direction: column;
        }

            .order-status-header .order-status-item .order-status-title .order-title {
                font-size: 14px;
                font-weight: 500;
                color: #7a7493;
            }

            .order-status-header .order-status-item .order-status-title .order-number {
                font-size: 16px;
                font-weight: 700;
                color: #fb6a18;
            }

.order-card .order-card-container .product-item {
    display: flex;
    gap: 10px;
    border-radius: 5px;
    background-color: #ffffff;
    margin-bottom: 15px;
}

    .order-card .order-card-container .product-item h5 {
        color: #fb6a18;
        width: 30px;
        height: 30px;
        font-weight: 600;
        display: flex;
        justify-items: center;
        border-radius: 99%;
        align-items: center;
        border: 2px solid #ffffff;
        background-color: #fff7f2;
        font-size: 14px;
    }

        .order-card .order-card-container .product-item h5 span {
            width: 100%;
            text-align: center;
        }

    .order-card .order-card-container .product-item .product-item-wrapper {
        display: flex;
        border-radius: 5px;
        gap: 10px;
    }

    .order-card .order-card-container .product-item img {
        width: 68px;
        height: 68px;
        object-fit: cover;
        border-radius: 5px;
    }

    .order-card .order-card-container .product-item h6 {
        margin: 0;
        font-size: 12px;
        font-weight: 500;
        color: #7a7493;
        overflow: hidden;
        margin-top: 4px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }

.order-card .order-info-footer {
    margin-top: -6px;
}

.order-card .price {
    color: #fb6a18;
    font-size: 14px;
    margin-top: 10px;
    font-weight: bold;
}

.order-card .order-count {
    color: #b2aebf;
    font-size: 12px;
}

.order-card .order-quantity {
    font-weight: 600;
    font-size: 12px;
    color: #2f2b43;
}

.icon-user-up {
    margin-right: 5px;
}

.order-lists .supplier-header {
    display: grid;
    align-items: center;
    grid-template-columns: 652px auto;
}

.supplier-search {
    position: relative;
}

    .supplier-search .icon-search {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: #888;
        font-size: 16px;
    }

    .supplier-search input {
        padding-left: 40px !important;
    }

.supplier-search-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.supplier-filter {
    margin-top: 8px;
    position: relative;
    text-align: end;
}

    .supplier-filter button {
        border-radius: 8px;
        background-color: #ffffff;
        border: 1px solid #2f2b431a;
        height: 45px;
        width: 45px;
        font-size: 22px;
    }

.order-card .order-card-container .product-item {
    display: flex;
    gap: 10px;
    border-radius: 5px;
    background-color: #ffffff;
    margin-bottom: 15px;
}

.order-card .supplier-card-container .product-item h5 {
    color: #fb6a18;
    width: 30px;
    height: 30px;
    font-weight: 600;
    display: flex;
    justify-items: center;
    border-radius: 99%;
    align-items: center;
    border: 2px solid #ffffff;
    background-color: #fff7f2;
    font-size: 14px;
}

    .order-card .supplier-card-container .product-item h5 span {
        width: 100%;
        text-align: center;
    }

.order-card .supplier-card-container .product-item .product-item-wrapper {
    display: flex;
    border-radius: 5px;
    gap: 10px;
}

.order-card .supplier-card-container .product-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.order-card .supplier-card-container .product-item h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    margin-top: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.order-card .supplier-card-container .product-item .price {
    color: #fb6a18;
    font-size: 16px;
    margin-top: 10px;
    font-weight: bold;
}

.order-card .supplier-card-container .product-item .supplier-count {
    color: #b2aebf;
    font-size: 12px;
    font-weight: 500;
}

.supplier-content {
    width: 531px;
}

.supplier-btn {
    display: flex;
    width: 183px;
    align-items: flex-start;
    gap: 8px;
    height: 32px;
}

.btn-filter {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 6px 4px;
    font-size: 14px;
    color: #000;
    background-color: #fff;
    width: 100%;
}

.btn-delete {
    border-radius: 8px;
    padding: 6px 8px;
    font-size: 14px;
    color: #7a7493;
    text-decoration: underline;
}

.supplier-modal-filter {
    width: 497px;
    background-color: #ffffff;
    border-radius: 16px;
    padding-bottom: 16px;
    position: absolute;
    right: 16px;
    top: 135px;
    box-shadow: 0px 4px 8px #2f2b431a;
    z-index: 1000;
    display: none;
}

.order-modal-filter {
    top: 115px !important;
}

.supplier-modal-filter.active {
    display: block;
}

.supplier-modal-filter .supplier-modal-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

    .supplier-modal-filter .supplier-modal-filter-header .filter {
        font-size: 16px;
        color: #101828;
        font-weight: 600;
    }

    .supplier-modal-filter .supplier-modal-filter-header .reset {
        font-size: 14px;
        color: #fb6a18;
        font-weight: 400;
        border: none;
        background-color: transparent;
    }

.supplier-modal-filter .supplier-modal-filter-content {
    padding: 0px 16px;
}

    .supplier-modal-filter
    .supplier-modal-filter-content
    .supplier-modal-filter-item
    .title-modal {
        font-size: 14px;
        font-weight: 600;
    }

    .supplier-modal-filter
    .supplier-modal-filter-content
    .supplier-modal-filter-item
    .supplier-modal-filter-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

.custom-button-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    color: #000;
    font-weight: 500;
    border: 1px solid #dcdae2;
    font-size: 12px;
    border-radius: 8px;
    background-color: #f6f6f8;
    cursor: pointer;
    text-decoration: none;
}

.custom-button-filter-active {
    padding: 8px 12px;
    color: #fb6a18;
    font-weight: 500;
    border: 1px solid #fb6a18;
    font-size: 12px;
    border-radius: 8px;
    background-color: rgba(251, 106, 24, 0.08);
    cursor: pointer;
    text-decoration: none;
}

.custom-button-filter:hover {
    background-color: rgba(251, 106, 24, 0.08);
    color: #fb6a18;
}

.custom-button-mode {
    padding: 8px 20px;
    color: #7a7493;
    font-weight: 500;
    border: 1px solid #dcdae2;
    font-size: 14px;
    border-radius: 56px;
    background-color: #f6f6f8;
    cursor: pointer;
    text-decoration: none;
}

.custom-button-mode-active {
    padding: 8px 20px;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    border-radius: 56px;
    background-color: #fb6a18;
    cursor: pointer;
    text-decoration: none;
}

.custom-button-mode:hover {
    background-color: #fb6a18;
    color: #ffffff;
}

.supplier-modal-filter-btn {
    display: flex;
    gap: 12px;
    height: 42px;
}

.btn-back-manager {
    cursor: pointer;
}

.input-group-text {
    background-color: transparent;
    position: absolute;
    right: 0;
    border: none;
    top: 4px;
    z-index: 100;
}

.custom-input {
    text-decoration: none;
    padding-right: 60px !important;
    border-radius: 12px !important;
}

.input-group {
    position: relative;
}

.product-image-card {
    display: grid;
    grid-template-columns: 120px 120px 120px 120px 120px 120px;
    gap: 14px;
}

    .product-image-card .btn-upload-product {
        width: 100%;
        border-radius: 8px;
        height: 120px;
        border: 1px dashed #fb6a18;
        background-color: rgba(251, 106, 24, 0.04);
        font-size: 24px;
        color: #fb6a18;
    }

    .product-image-card .product-image-supplier {
        position: relative;
    }

        .product-image-card .product-image-supplier img {
            width: 120px;
            height: 120px;
            border-radius: 8px;
        }

        .product-image-card .product-image-supplier .btn-delete-product {
            position: absolute;
            top: 6px;
            right: 6px;
            background-color: #fff;
            width: 10px;
            height: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

.order-header-wrapper {
    display: grid;
    grid-template-columns: 680px 1fr;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: 1px solid #f6f6f8;
}

    .order-header-wrapper .order-header-content {
        width: 700px;
    }

        .order-header-wrapper .order-header-content h5 {
            margin-bottom: 0px;
        }

.order-content {
    color: #b2aebf;
    font-size: 14px;
    font-weight: 400;
}

.order-header-wrapper .btn-chi-tiet {
    padding: 6px 8px;
    width: 130px;
}

.order-card .order-center-wrapper {
    display: grid;
    grid-template-columns: 403px 403px;
    gap: 12px;
}

.order-center-content {
    display: flex;
    align-items: center;
    justify-items: center;
    gap: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #f6f6f8;
}

.order-center-h5 {
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
}

.order-center-h5-success {
    font-size: 14px;
    font-weight: 500;
    margin-top: 6px;
    color: #2f9461;
    background-color: #d9f9e6;
    border-radius: 20px;
    padding: 6px 8px;
}

.order-center-h5-await {
    font-size: 14px;
    font-weight: 500;
    margin-top: 6px;
    color: #c8811a;
    background-color: #fbf2cb;
    border-radius: 20px;
    padding: 6px 8px;
}

.order-center-h5-price {
    font-size: 18px;
    font-weight: 600;
    color: #fb6a18;
    margin-top: 8px;
}

.order-center-footer {
    display: flex;
    align-items: center;
    justify-items: center;
    gap: 10px;
}

.filter-date {
    display: grid !important;
    grid-template-columns: 229px 229px;
    padding: 0;
}

.order-detail-header {
    padding: 10px 16px !important;
}

    .order-detail-header .order-detail-header-left {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: -15px;
    }

        .order-detail-header .order-detail-header-left h6 {
            font-weight: 400;
        }

        .order-detail-header .order-detail-header-left span {
            color: #fb6a18;
            font-size: 16px;
            font-weight: 600;
        }

.title-order {
    font-size: 18px;
    font-weight: 600;
}

.order-title-detail {
    padding-bottom: 6px;
    border-bottom: 1px solid #f6f6f8;
}

.order-detail-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.title-detail-content {
    font-size: 14px;
    font-weight: 500;
    padding-right: 40px;
    margin-top: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.order-detail-card {
    background-color: #f6f6f8;
    border: 1px solid #ededf1;
    border-radius: 6px;
    padding: 8px;
}

.order-detail-card-content {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #ededf1;
}

    .order-detail-card-content h6 {
        font-size: 14px;
        font-weight: 600;
        margin-top: 8px;
    }

.order-detail-card-content-item {
    display: flex;
    position: relative;
}

    .order-detail-card-content-item img {
        width: 56px;
        margin-right: 8px;
    }

.detail-price {
    font-weight: 600;
    font-size: 16px;
    color: #fb6a18;
}

.btn-detail-delete {
    position: absolute;
    right: 10px;
    font-size: 20px;
    width: 30px;
    height: 30px;
    top: 0;
    padding: 0;
}

.btn-detail-add {
    width: 150px !important;
}

.title-order-detail {
    font-size: 18px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f6f6f8;
}

.btn-detail-update {
    padding: 12px;
    background-color: #fef2f2;
    border: 1px solid #f34141;
    color: #f34141;
    font-size: 14px;
    font-weight: 500;
    border-radius: 12px;
    margin-top: 30px;
}

    .btn-detail-update:hover {
        background-color: #f34141;
        color: #ffffff;
    }

.btn-doimk {
    font-weight: 600;
}









/* Order Status */
.order-status-pending {
    color: orange;
    background-color: #fff3cd; /* Vàng nhạt */
}

.order-status-processing {
    color: blue;
    background-color: #cce5ff; /* Xanh nhạt */
}

.order-status-complete {
    color: green;
    background-color: #d4edda; /* Xanh lá nhạt */
}

.order-status-cancelled {
    color: red;
    background-color: #f8d7da; /* Đỏ nhạt */
}

.order-status-default {
    color: gray;
    background-color: #e2e3e5; /* Xám nhạt */
}

/* Payment Status */
.payment-status-pending {
    color: orange;
    background-color: #fff3cd;
}

.payment-status-authorized {
    color: purple;
    background-color: #e6ccff; /* Tím nhạt */
}

.payment-status-paid {
    color: green;
    background-color: #d4edda;
}

.payment-status-partially-refunded {
    color: yellow;
    background-color: #fff9c4; /* Vàng chanh nhạt */
}

.payment-status-refunded {
    color: red;
    background-color: #f8d7da;
}

.payment-status-voided {
    color: darkred;
    background-color: #f5c6cb; /* Đỏ sẫm nhạt */
}

.payment-status-default {
    color: gray;
    background-color: #e2e3e5;
}

/* Shipping Status */
.shipping-status-not-required {
    color: gray;
    background-color: #e2e3e5;
}

.shipping-status-not-yet-shipped {
    color: orange;
    background-color: #fff3cd;
}

.shipping-status-partially-shipped {
    color: blue;
    background-color: #cce5ff;
}

.shipping-status-shipped {
    color: green;
    background-color: #d4edda;
}

.shipping-status-delivered {
    color: darkgreen;
    background-color: #c8e6c9;
}

.shipping-status-default {
    color: gray;
    background-color: #e2e3e5;
}

.form-check-input:checked {
    background-color: #ff6600;
    border-color: #ff6600;
}

.carousel-item img {
    width: 100%;
    object-fit: cover;
    height: 26em;
    cursor: zoom-in;
}

.thumbnail-container {
    overflow: hidden;
    max-width: 100%;
}

.thumbnail-row {
    display: flex;
    gap: 10px;
    transition: transform 0.3s ease;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s, border-color 0.3s;
}

    .thumbnail:hover {
        transform: scale(1.05);
    }

    .thumbnail.active-thumbnail {
        border-color: #0d6efd;
    }









.ti-khon-chi-tit-n .profile-card {
    width: 100%;
}

button.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
    transition: opacity 0.3s ease;
    background-color: #ccc;
}

.action .transfer.fa-solid.fa-right-left.orange {
    color: #fb6a18;
    border-radius: 12px;
    background: unset;
    border: 2px solid #2F2B431A;
}

#featuredProductsCarousel .carousel-control-next:focus, #featuredProductsCarousel .carousel-control-next:hover, #featuredProductsCarousel .carousel-control-prev:focus, #featuredProductsCarousel .carousel-control-prev:hover {
    color: #000;
}

#featuredProductsCarousel .carousel-control-next, #featuredProductsCarousel .carousel-control-prev {
    color: #000;
}

#featuredProductsCarousel .carousel-control-prev {
    left: -46px;
}

#featuredProductsCarousel .carousel-control-next {
    right: -46px;
}


.news-item-page .page-title {
    color: #e65c00;
}
.news-item-page .news-date {
    font-style: italic;
}
.news-list-page .page-title {
    color: #e65c00;
}

body.no-scroll {
    overflow: hidden;
}

@keyframes slideDownFade {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.popup-animate {
    animation: slideDownFade 0.5s ease-out;
    display: flex;
}

.poup-download.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(3px);
}

.poup-download .popup-container {
    display: flex;
    background: linear-gradient(135deg, #fb6a18 0%, #ff8439 100%);
    color: white;
    border-radius: 16px;
    position: relative;
    width: 80%;
    max-width: 800px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.poup-download .close-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    font-size: 24px;
    color: white;
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
}

.close-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.poup-download .phone-mockup {
    flex: 1;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.poup-download .image-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 100%;
}

    .poup-download .image-column img {
        width: 100%;
        object-fit: contain;
        border-radius: 10px;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .poup-download.image-column img:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

.poup-download .image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

    .poup-download .image-modal img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
    }

    .poup-download .image-modal .close-modal {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 30px;
        color: white;
        cursor: pointer;
    }

.poup-download .content-area {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center-align text */
    text-align: center; /* Center-align text content */
}

.poup-download .app-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px; /* Adjust spacing */
    letter-spacing: -0.5px;
}

.poup-download .app-subtitle {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 40px; /* Adjust spacing */
    line-height: 1.6; /* Improve readability */
}

.poup-download .download-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px; /* Adjust spacing between buttons */
    margin-bottom: 30px;
    justify-content: center; /* Center-align buttons */
    align-items: center; /* Align logos and text consistently */
}

.poup-download .store-button {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align logos to the start of the button */
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 180px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

    .poup-download .store-button:hover {
        transform: translateY(-3px);
        background: #000;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .poup-download .store-button:active {
        transform: translateY(0);
    }

    .poup-download .store-button img,
    .poup-download .google-play-logo,
    .poup-download .apple-logo,
    .poup-download .zalo-logo {
        width: 32px;
        height: 32px; /* Uniform size for all logos */
        margin-right: 20px; /* Ensure consistent spacing between logo and text */
        object-fit: contain;
    }

.poup-download .google-play-logo {
    margin-right: 20px; /* Adjusted to match spacing with other buttons */
}

.poup-download .store-button-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center; /* Align text vertically with the logo */
}

.poup-download .zalo-header-logo {
    display: none;
}

.poup-download .store-text-small {
    font-size: 12px; /* Match size with other buttons */
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.poup-download .store-text-large {
    font-size: 16px; /* Ensure consistency across buttons */
    font-weight: bold;
    letter-spacing: 0.3px;
}

.poup-download .zalo-text {
    font-size: 18px;
    font-weight: bold;
}

.poup-download .terms {
    font-size: 13px;
    opacity: 0.75;
    margin-bottom: 25px;
    line-height: 1.5;
}

.poup-download .dismiss-button {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

    .poup-download .dismiss-button:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.6);
        transform: translateY(-2px);
    }

    .poup-download .dismiss-button:active {
        transform: translateY(0);
    }

@media (max-width: 900px) {
    .poup-download .popup-container {
        flex-direction: column;
        width: 90%;
        max-width: 480px;
    }

    .poup-download .phone-mockup {
        padding: 30px 30px 10px 30px;
    }

        .poup-download .phone-mockup img {
            max-height: 300px;
            transform: none;
        }

            .poup-download .phone-mockup img:hover {
                transform: none;
            }

    .poup-download .content-area {
        padding: 30px;
    }

    .poup-download .app-title {
        font-size: 28px;
    }

    .poup-download .app-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .poup-download .download-buttons {
        flex-direction: column;
        width: 100%;
    }

    .poup-download .store-button {
        width: 100%;
        max-width: 100%;
    }

    .poup-download .image-row {
        flex-wrap: wrap;
    }

        .poup-download .image-row img {
            width: 45%;
            margin-bottom: 10px;
        }
}

@media (max-width: 500px) {
    .poup-download .popup-container {
        width: 95%;
    }

    .poup-download .phone-mockup {
        padding: 20px 20px 5px 20px;
    }

        .poup-download .phone-mockup img {
            max-height: 220px;
        }

    .poup-download .content-area {
        padding: 20px;
    }

    .poup-download .app-title {
        font-size: 24px;
    }

    .poup-download .download-buttons {
        gap: 12px;
        margin-bottom: 20px;
    }
}



.success-container {
    max-width: 800px;
    margin: 50px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    padding: 0;
    overflow: hidden;
}

.success-header {
    background: linear-gradient(135deg, #FB6A18 0%, #FF8439 100%);
    padding: 30px;
    text-align: center;
    color: white;
}

    .success-header i {
        font-size: 60px;
        margin-bottom: 20px;
    }

    .success-header h1 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 10px;
    }

.success-body {
    padding: 40px;
    text-align: center;
}

    .success-body p {
        font-size: 18px;
        color: #7A7492;
        margin-bottom: 30px;
        line-height: 1.5;
    }

.success-info {
    background-color: #F6F6F8;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

    .success-info .info-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        font-size: 16px;
    }

        .success-info .info-item:last-child {
            margin-bottom: 0;
        }

    .success-info .label {
        color: #7A7492;
        font-weight: 400;
    }

    .success-info .value {
        color: #000;
        font-weight: 600;
    }

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-back {
    padding: 12px 24px;
    border-radius: 8px;
    background: #fff;
    color: #000;
    font-weight: 600;
    border: 1px solid #EDEDF1;
    transition: all 0.3s ease;
}

    .btn-back:hover {
        background: #F6F6F8;
    }

.btn-action {
    padding: 12px 24px;
    border-radius: 8px;
    background: #FB6A18;
    color: white;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

    .btn-action:hover {
        background: #e65c00;
    }

@media (max-width: 768px) {
    .success-container {
        margin: 20px;
    }

    .success-actions {
        flex-direction: column;
    }
}
.product-card a{
    text-decoration: none;
    color: #000;
}