.container {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
}

.banner-wrapper {
    display: flex;
    padding: 40px 40px 0px 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.banner-wrapper .banner {
    display: flex;
    width: 1840px;
    padding: 50px 200px;
    align-items: center;
    gap: 100px;
    border-radius: 15px;
    background: var(--background-bg-primary, #5bee2e);
    position: relative;
}

.banner h2 {
    color: var(--text-heading-inverted, #fff);
    /* H4/Bold */
    font-family: Manrope;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    /* 133.333% */
}

.banner .banner-navigate {
    display: flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: baseline;
    gap: 4px;
    border-radius: 20px 20px 0px 0px;
    background: #f6f9fb;
    position: absolute;
    bottom: 0;
    right: 334.5px;
}

.banner .banner-navigate a {
    color: var(--text-disable, #93969d);
    /* BodySmall/Medium */
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 137.5% */
}

.banner-navigate::after {
    content: "";
    width: 20px;
    height: 40px;
    transform: rotate(0deg);
    border-radius: 0px 0px 20px 0px;
    background: rgba(255, 255, 255, 0);
    box-shadow: 0px 20px 0px 0px #f6f9fb;
    position: absolute;
    bottom: 0;
    left: -20px;
}

.banner-navigate::before {
    content: "";
    width: 20px;
    height: 40px;
    transform: rotate(0deg);
    border-radius: 0px 0px 0px 20px;
    background: rgba(255, 255, 255, 0);
    box-shadow: 0px 20px 0px 0px #f6f9fb;
    position: absolute;
    bottom: 0;
    right: -20px;
}

.banner .banner-navigate a:last-child {
    color: var(--text-heading-secondary, #2b313f);
    /* BodySmall/Medium */
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 137.5% */
}


/* cart */

.cart_wrapper {
    display: flex;
    padding: 40px 0px 0px 0px;
    align-items: flex-start;
    gap: 30px;
    align-self: stretch;
}

.cart_left {
    display: flex;
    width: 950px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.cart_left_title {
    display: flex;
    padding: 16px 24px;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    border-radius: 20px;
    border: 1px solid var(--border-border-primary, #efefef);
    background: var(--background-bg-primary, #fff);
}

.cart_left_title label {
    color: var(--text-heading-secondary, #2b313f);
    /* BodySmall/Semibold */
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    /* 137.5% */
}

.cart_left_title input {
    width: 21.5px;
    height: 21.5px;
    flex-shrink: 0;
}

.cart_left_body {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    border-radius: 20px;
    border: 1px solid var(--border-border-primary, #efefef);
    background: var(--background-bg-primary, #fff);
}

.card {
    display: flex;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    border: none;
}

.card>input {
    width: 21.5px;
    height: 21.5px;
    flex-shrink: 0;
}

.card .card_infor {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
}

.card .card_infor .card_img {
    display: flex;
    width: 100px;
    height: 100px;
    padding: 4px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 10px;
    aspect-ratio: 1/1;
}

.card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.card_infor .card_infor_body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 0 0;
    align-self: stretch;
}

.card_infor .card_infor_body_title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}

.card_infor .card_infor_body_title h2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch;
    overflow: hidden;
    color: var(--text-heading-secondary, #2b313f);
    text-overflow: ellipsis;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 133.333% */
}

.card_infor .card_infor_body_title p {
    color: var(--text-disable, #c3c5c9);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 137.5% */
    align-self: stretch;
}

.card_infor_body .card_infor_body_detail {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.card_infor_body .card_infor_body_detail p {
    color: var(--blue-blue-500, #0a77ff);
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

.card_infor_body .card_infor_body_detail img {
    width: 20px;
    height: 20px;
}

.card .card_price {
    display: flex;
    width: 100px;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}

.card .card_price h3 {
    color: var(--text-placeholder, #93969d);
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

.card .card_price p {
    color: var(--text-heading-secondary, #2b313f);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    /* 137.5% */
}

.card .card_button {
    display: flex;
    align-items: center;
    gap: 11px;
    align-self: stretch;
}

.card .card_button button {
    display: flex;
    padding: 6px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 9999px;
    border: none;
    outline: none;
    background: transparent;
}

.card .card_button button svg {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.card .card_button .card_button_input {
    display: flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    border: 1px solid var(--border-border-primary, #efefef);
}

.card .card_button input {
    width: 26px;
    color: var(--text-heading-secondary, #2b313f);
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    /* 137.5% */
    border: none;
}

.card .card_total_price {
    display: flex;
    width: 100px;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}

.card .card_total_price h3 {
    color: var(--text-placeholder, #93969d);
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

.card .card_total_price p {
    color: var(--text-heading-secondary, #2b313f);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    /* 137.5% */
}

.card .card_search {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 9999px;
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
}

.card .card_search svg {
    width: 22px;
    height: 22px;
}

.card_extend_wrapper {
    /*display: none;*/
    transition: all 0.3s linear infinite;
}

.card_extend_detail {
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}

.card_extend_detail .blank_box {
    display: flex;
    width: 148px;
    height: 106px;
    padding: 4px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 10px;
    align-self: stretch;
    border-radius: 4px;
    background: transparent;
}

.card_extend_detail .list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
    flex: 1 0 0;
    border-radius: 14px;
}

.card_extend_detail .list .item {
    display: flex;
    align-items: center;
    align-self: stretch;
}

.card_extend_detail .list .item p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    flex: 1 0 0;
    overflow: hidden;
    color: var(--text-body, #4f5460);
    text-overflow: ellipsis;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 137.5% */
}

.card_extend_detail .list .item .item_sub1 {
    display: flex;
    width: 196px;
    padding: 0px 24px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.card_extend_detail .list .item .item_sub1 span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    flex: 1 0 0;
    overflow: hidden;
    color: var(--text-disable, #c3c5c9);
    text-overflow: ellipsis;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

.card_extend_detail .list .item .item_sub2 {
    display: flex;
    width: 100px;
    padding: 0px 12px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.card_extend_detail .list .item .item_sub2 span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    flex: 1 0 0;
    overflow: hidden;
    color: var(--text-disable, #c3c5c9);
    text-overflow: ellipsis;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

.cart_left_body .line {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    width: 902px;
    height: 1px;
    background: var(--neutral-neutral-300, #dbdcde);
}

.card_infor .card_infor_body_title .card_infor_body_subtitle {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    align-self: stretch;
    overflow: hidden;
    color: var(--text-disable, #c3c5c9);
    text-overflow: ellipsis;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 137.5% */
}

.cart_left_body .card_extend {
    display: flex;
    padding-left: 40px;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}

.card_extend .card_extend_left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    flex: 1 0 0;
    border-radius: 14px;
}

.card_extend_left .card_extend_title {
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}

.card_extend_left .card_extend_title h2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    color: var(--text-heading-secondary, #2b313f);
    text-overflow: ellipsis;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 140% */
}

.card_extend_left .card_extend_title h2 span {
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    background: linear-gradient( 270deg, var(--red-red-500, #ed1c24) 0.09%, var(--blue-blue-500, #0a77ff) 46.3%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-overflow: ellipsis;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

.card_extend_left .card_extend_title p {
    display: flex;
    padding: 4px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 9999px;
    background: var(--blue-blue-50, #e7f1ff);
    color: var(--blue-blue-500, #0a77ff);
    text-align: center;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

.card_extend_left .card_extend_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.card_extend_left .card_extend_list p {
    color: var(--text-placeholder, #93969d);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 137.5% */
}

.card_extend_left .card_extend_list ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card_extend_left .card_extend_list ul li {
    color: var(--text-body, #4f5460);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 137.5% */
}

.card_extend_left .card_extend_list ul li:first-child {
    color: var(--text-heading-primary, #0e1525);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    /* 137.5% */
}

.card_extend_right {
    display: flex;
    width: 120px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.card_extend_right .card_extend_right_price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.card_extend_right .card_extend_right_price .price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.card_extend_right .card_extend_right_price .price p:first-child {
    color: var(--text-disable, #c3c5c9);
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
    text-decoration-line: line-through;
}

.card_extend_right .card_extend_right_price .price p:last-child {
    color: var(--text-heading-secondary, #2b313f);
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 140% */
    background: transparent;
}

.card_extend_right_price p:last-child {
    display: flex;
    padding: 2px 6px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 9999px;
    background: var(--orange-orange-50, #fceded);
    color: var(--orange-orange-500, #e34d4b);
    text-align: center;
    font-family: Manrope;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 150% */
}

.card_extend_right_button {
    display: flex;
    height: 40px;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 9999px;
    border: 1px solid var(--border-border-dark, #0e1525);
    background: transparent;
    cursor: pointer;
}

.card_extend_right_button p {
    color: var(--text-heading-primary, #0e1525);
    text-align: center;
    font-family: Manrope;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 150% */
    text-transform: uppercase;
}

.card_extend_right_button img {
    width: 18px;
    height: 18px;
    aspect-ratio: 1/1;
}

.cart_wrapper .cart_right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
}

.cart_right .cart_right_pay {
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    border-radius: 20px;
    border: 1px solid var(--border-border-primary, #efefef);
    background: var(--background-bg-primary, #fff);
}

.cart_right .cart_right_pay h2 {
    width: 254px;
    height: 24px;
    color: var(--text-heading-primary, #0e1525);
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 140% */
}

.cart_right_pay .price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.cart_right_pay .price .price-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.cart_right_pay .price .price-head p:first-child {
    color: var(--text-heading-secondary, #2b313f);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 137.5% */
}

.cart_right_pay .price .price-head p:last-child {
    color: var(--text-heading-secondary, #2b313f);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    /* 137.5% */
}

.cart_right_pay .price .price-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.cart_right_pay .price .price-body p:first-child {
    color: var(--text-heading-secondary, #2b313f);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 137.5% */
}

.cart_right_pay .price .price-body p:last-child {
    color: var(--text-heading-secondary, #2b313f);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    /* 137.5% */
}

.cart_right_pay .total_price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    align-self: stretch;
}

.cart_right_pay .total_price .total_price_body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.cart_right_pay .total_price .total_price_body p:first-child {
    color: var(--text-heading-secondary, #2b313f);
    text-align: center;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 133.333% */
}

.cart_right_pay .total_price .total_price_body p:last-child {
    color: var(--blue-blue-500, #0a77ff);
    text-align: center;
    font-family: Manrope;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    /* 133.333% */
}

.cart_right_pay .total_price .total_price_sub {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch;
    overflow: hidden;
    color: var(--text-heading-secondary, #2b313f);
    text-overflow: ellipsis;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

.cart_right_pay .total_price .total_price_sub span {
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--blue-blue-500, #0a77ff);
    text-overflow: ellipsis;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
}

.cart_right_pay button {
    display: flex;
    height: 60px;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    border-radius: 9999px;
    border: none;
    outline: none;
    cursor: pointer;
    background: var( --button, linear-gradient(83deg, #0a77ff 23.35%, #5ca5ff 105.14%));
}

.cart_right_pay button span {
    color: var(--text-heading-inverted, #fff);
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    /* 137.5% */
    text-transform: uppercase;
}

.cart_right .cart_right_tricks {
    display: flex;
    padding: 32px 40px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 20px;
    background: var(--blue-blue-50, #e7f1ff);
}

.cart_right .cart_right_tricks div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.cart_right .cart_right_tricks div span svg {
    width: 32px;
    height: 32px;
    aspect-ratio: 1/1;
}

.cart_right .cart_right_tricks div p {
    color: var(--blue-blue-500, #0a77ff);
    text-align: center;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 140% */
}

.cart_right .cart_right_tricks>p {
    color: var(--text-heading-primary, #0e1525);
    text-align: justify;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}


/* toast */

#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    display: flex;
    width: 520px;
    padding: 24px 32px;
    align-items: flex-start;
    gap: 16px;
    border-radius: 16px;
    box-shadow: 0px 4px 9.7px 0px rgba(0, 0, 0, 0.15);
}

.toast .checked {
    display: flex;
    width: 36px;
    height: 36px;
    padding: 12.6px 10.8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    flex-shrink: 0;
    border-radius: 21.6px;
    background: var(--green-green-500, #16b84d);
}

.toast .checked svg {
    height: 10.586px;
    flex-shrink: 0;
    align-self: stretch;
    aspect-ratio: 14.4/10.59;
}

.toast-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    flex: 1 0 0;
}

.toast-header h2 {
    color: var(--green-green-600, #11943e);
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 133.333% */
}

.toast-header p {
    color: var(--text-placeholder, #93969d) !important;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 137.5% */
}

.toast.success {
    background: var(--green-green-50, #eaf9ee);
}

.toast.error {
    background-color: #f44336;
}

.toast.warning {
    background-color: #ff9800;
}


/* CSS cho Modal */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 32px;
    border-radius: 8px;
    width: 50%;
    overflow: hidden;
}

.modal-content .modal_header {
    display: flex;
    padding-bottom: 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.modal-content .modal_header h2 {
    flex: 1 0 0;
    color: #000;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 140% */
}

.modal-content .modal_header .close-modal {
    display: flex;
    padding: 6px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 9999px;
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
}

.modal-content .modal_header .close-modal svg {
    width: 10.667px;
    height: 10.667px;
    flex-shrink: 0;
}


/* Combo sản phẩm bao gồm */

.list-product-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

.list-product-wrapper .product {
    display: flex;
    width: 1840px;
    flex-direction: column;
    padding: 80px 200px;
    align-items: center;
    justify-content: center;
    gap: 56px;
}

.list-product-wrapper .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}

.list-product-wrapper .title p {
    color: var(--text-heading-secondary, #2b313f);
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 20.8px */
}

.list-product-wrapper .title h1 {
    color: var(--text-heading-primary, #0e1525);
    text-align: center;
    /* H2/Semibold */
    font-family: Manrope;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 57.6px */
}

.list-product-wrapper .list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.list .list-product {
    display: flex;
    height: 500px;
    justify-content: center;
    align-items: center;
    gap: 30px;
    align-self: stretch;
}

.list-product .product-card {
    display: flex;
    width: 336px;
    height: 500px;
    padding-bottom: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 20px;
    border: 1px solid var(--border-border-secondary, #dbdcde);
    background: var(--background-bg-primary, #fff);
}

.product-card .card-header {
    display: flex;
    height: 252px;
    padding: 12px 16px;
    align-items: flex-start;
    justify-content: space-between;
    align-self: stretch;
    border-radius: 20px;
    background: var(--blue-blue-900, #053673);
    background-image: url(../image/card1.png);
    background-color: lightgray;
    background-size: cover;
    background-repeat: no-repeat;
}

.card-header .hot {
    display: flex;
    padding: 0px 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 25px;
    background: #f14f44;
}

.card-header .hot span {
    color: #fff;
    text-align: center;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 200% */
    text-transform: uppercase;
}

.card-header .heart {
    display: flex;
    padding: 13px 14px;
    align-items: center;
    gap: 10px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.08);
}

.product-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    padding: 0px 20px;
    background: #fff;
}

.product-card .card-body .card-body-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.product-card .card-body .card-body-header .card-body-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    align-self: stretch;
}

.product-card .card-body .card-body-header .card-body-title>p {
    height: 48px;
    align-self: stretch;
    overflow: hidden;
    color: var(--text-heading-primary, #0e1525);
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 133.333% */
}

.card-body .card-body-header .card-body-title .card-body-star {
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.card-body .card-body-header .card-body-title .card-body-star div:first-child {
    display: flex;
    align-items: center;
    gap: 2px;
}

.card-body .card-body-header .card-body-title .card-body-star div:first-child p {
    color: var(--text-heading-secondary, #2b313f);
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 142.857% */
}

.card-body .card-body-header .card-body-title .card-body-star .line {
    width: 1px;
    height: 16px;
    background: var(--icon-icons-septenary, #dbdcde);
}

.card-body .card-body-header .card-body-title .card-body-star p:last-child {
    color: var(--text-body, #4f5460);
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

.card-body .card-body-header .card-body-title .card-body-star p:last-child span {
    color: var(--text-body, #4f5460);
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.card-body .card-body-header .card-body-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2px;
    align-self: stretch;
}

.card-body .card-body-header .card-body-price .price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.card-body .card-body-header .card-body-price .price p {
    color: var(--text-heading-primary, #0e1525);
    font-family: Manrope;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    /* 133.333% */
}

.card-body .card-body-header .card-body-price .price span {
    display: flex;
    padding: 2px 6px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 9999px;
    background: var(--orange-orange-50, #fceded);
    color: var(--orange-orange-500, #e34d4b);
    text-align: center;
    font-family: Manrope;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 150% */
}

.card-body .card-body-header .card-body-price p:last-child {
    color: var(--text-disable, #c3c5c9);
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
    text-decoration-line: line-through;
}

.card-body .card-body-button {
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.card-body .card-body-button .btn-icon {
    display: flex;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 9999px;
    border: 1px solid var(--border-border-secondary, #dbdcde);
    background: var(--background-bg-primary, #fff);
}

.card-body .card-body-button .btn-icon svg {
    width: 18px;
    height: 18px;
    aspect-ratio: 1/1;
}

.card-body .card-body-button .btn {
    display: flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex: 1 0 0;
    border: none;
    outline: none;
    border-radius: 9999px;
    background: var( --button, linear-gradient(83deg, #0a77ff 23.35%, #5ca5ff 105.14%));
}

.card-body .card-body-button .btn span {
    color: var(--text-heading-inverted, #fff);
    text-align: center;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 142.857% */
    text-transform: uppercase;
}


/* Gói sản phẩm nổi bật */

.package-product {
    padding: 80px 0;
}

.package-product_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.package-product_header_title {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.package-product_header_title span {
    color: #0e1525;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
}

.package-product_header_title h2 {
    color: #0e1525;
    font-family: Manrope;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 57.6px */
}

.package-product_header_title h2 span {
    color: #ed1c24;
    font-family: Manrope;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.package-product_header_category {
    display: flex;
    padding: 2px;
    align-items: center;
    border: 1px solid #dbdcde;
    border-radius: 100px;
    overflow: hidden;
}

.package-product_header_category button {
    background: transparent !important;
}

.package-product_header_category button.active {
    padding: 16px 20px;
    color: #0a77ff;
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    /* 137.5% */
    background: #fff !important;
    border: none;
    border-radius: 100px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.package-product_header_category button {
    padding: 16px 20px;
    color: #93969d;
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    /* 137.5% */
    background: #fff;
    border: none;
    cursor: pointer;
}

.package-product_content {
    margin-top: 56px;
    display: flex;
    flex-direction: row;
}

.package-product_content_tabs {
    display: flex;
    width: 270px;
    flex-direction: column;
}

.package-product_content_tabs button {
    display: flex;
    align-items: center;
    padding: 24px 40px;
    gap: 8px;
    border-radius: 20px;
    border: none;
    color: #4f5460;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 140% */
    cursor: pointer;
    background: #f6f9fb;
}

.package-product_content_tabs button span {
    color: #ed1c24;
    text-align: center;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    display: flex;
    padding: 4px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #fdeaea;
}

.package-product_content_tabs button.active {
    color: #0a77ff;
    border-radius: 20px 0px 0px 20px;
    background: #fff;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.05);
}

.package-product_content_main {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 24px 32px;
    flex: 1;
}

.package-product_content_main_left {
    display: flex;
    width: 50%;
    flex-direction: column;
    gap: 24px;
    border-right: 1px solid #f5f6f6;
}

.package-product_content_main_left_banner {
    width: 100%;
    height: 257px;
    border-radius: 20px;
}

.package-product_content_main_left_content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.package-product_content_main_left_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.package-product_content_main_left_title h2 {
    color: #0e1525;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    /* 137.5% */
}

.package-product_content_main_left_button {
    display: flex;
    padding: 0 9.6px;
    border-radius: 18px;
    border: 0.4px solid #0e1525;
}

.package-product_content_main_left_button button {
    display: flex;
    width: 17.6px;
    height: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    background: #fff;
    cursor: pointer;
}

.package-product_content_main_left_item {
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 12px;
    border-radius: 12px;
    border: 0.5px solid #dbdcde;
    background: #fff;
    cursor: pointer;
}

.package-product_content_main_left_item img {
    width: 100%;
    height: 110px;
    border-radius: 7px;
}

.package-product_content_main_left_item .title p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: var(--text-heading-primary, #0e1525);
    /* CaptionLarge/Medium */
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
    min-height: 40px;
}

.package-product_content_main_left_item .title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}

.package-product_content_main_left_item .title span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch;
    overflow: hidden;
    color: var(--text-placeholder, #626771);
    text-overflow: ellipsis;
    /* CaptionLarge/Regular */
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

.package-product_content_main_left_item .sub-title {
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    width: 100%;
}

.package-product_content_main_left_item .sub-title p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-placeholder, #626771);
    text-overflow: ellipsis;
    /* CaptionLarge/Medium */
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

.package-product_content_main_left_item .sub-title img {
    width: 13.333px;
    height: 13.333px;
    flex-shrink: 0;
}

.package-product_content_main_left_item .price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

.package-product_content_main_left_item .price p:first-child {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    align-self: stretch;
    overflow: hidden;
    color: var(--text-placeholder, #626771);
    text-overflow: ellipsis;
    /* CaptionLarge/Regular */
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
    text-decoration-line: line-through;
}

.package-product_content_main_left_item .price p:last-child {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    align-self: stretch;
    overflow: hidden;
    color: var(--green-green-600, #11943e);
    text-overflow: ellipsis;
    /* BodySmall/Semibold */
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    /* 137.5% */
}

.package-product_content_main_right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    width: 50%;
}

.package-product_content_main_right_title {
    color: #0e1525;
    font-family: Manrope;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    /* 133.333% */
}

.package-product_content_main_right_description {
    color: #626771;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 137.5% */
    padding: 8px 0;
}

.package-product_content_main_right_review {
    display: flex;
    align-items: center;
}

.package-product_content_main_right_review p {
    color: #4f5460;
    font-family: Manrope;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 150% */
    border-left: 1px solid #d9d9d9;
    padding-left: 8px;
    margin-left: 8px;
}

.package-product_content_main_right_review p span {
    font-weight: 600;
}

.package-product_content_main_right_price {
    font-family: Manrope;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    /* 133.333% */
    background: linear-gradient(92deg, #0a77ff 1.96%, #5ca5ff 99.71%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-top: 20px;
}

.package-product_content_main_right_price2 {
    color: #93969d;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 133.333% */
    text-decoration-line: strikethrough;
    text-decoration: line-through;
}

.package-product_content_main_right_subtext {
    color: #626771;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
    margin-top: 8px;
}

.package-product_content_main_right_subtext span {
    font-weight: 700;
}

.package-product_content_main_right_endow p {
    color: #0e1525;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    /* 137.5% */
}

.package-product_content_main_right_sales {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #d9d9d9;
    padding-top: 8px;
    margin-top: 8px;
}

.package-product_content_main_right_sale {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0e1525;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

.package-product_content_main_right_support {
    margin-top: 16px;
    padding: 12px 16px;
}

.package-product_content_main_right_support div {
    display: flex;
    align-items: center;
}

.package-product_content_main_right_support span {
    margin: 8px;
    width: 4px;
    height: 4px;
    min-width: 4px;
    background: #4f5460;
    border-radius: 50px;
}

.package-product_content_main_right_support p {
    color: #4f5460;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

.package-product_content_main_right_cart {
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-product_content_main_right_cart {
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-product_content_main_right_cart .btn_primary::after,
.package-product_content_main_right_cart .btn_primary {
    border-radius: 60px;
    flex: 1;
    overflow: hidden;
    left: inherit;
    transform: initial;
}

.package-product_content_main_right_addcart {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    background: #f5f6f6;
    border: none;
    cursor: pointer;
}

.package-product_content_main_right_buy {
    display: flex;
    height: 60px;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex: 1 0 0;
    border-radius: 100px;
    background: linear-gradient(88deg, #0a77ff 20.54%, #5ca5ff 123.07%);
    color: #fff;
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    /* 137.5% */
    border: none;
    cursor: pointer;
}

.fly-img {
    position: absolute;
    width: 100px;
    z-index: 9999;
    transition: all 1s ease-in-out;
    pointer-events: none;
}

#cart-icon {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 40px;
}

.product-img {
    width: 100px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.package-product_hot {
    position: absolute;
    top: -25px;
    right: -12.8px;
    background-image: url("../icons/bgHot.svg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 44.8px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-product_hot span {
    color: #fff;
    font-family: Manrope;
    font-size: 12.8px;
    font-style: normal;
    font-weight: 500;
    line-height: 17.6px;
}

.package-product_wrapper {
    position: relative;
}

@media (max-width: 1280px) {
    .package-product_content_tabs button {
        font-size: 14px;
        padding: 14px 30px;
    }
    .package-product_content_main {
        flex-direction: column;
    }
    .package-product_content_main_left {
        width: 100%;
    }
    .package-product_content_main_right {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .package-product_content_tabs {
        width: 180px;
    }
    .package-product_content_tabs button {
        font-size: 14px;
        padding: 14px 16px;
        padding-right: 8px;
    }
    .package-product_content_main {
        padding: 21px;
    }
}