.breadcrumb {
    height: 384px;
    padding-top: 64px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.breadcrumb::before {
    content: "";
    background-color: rgba(26, 58, 92, 0.75);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.breadcrumb h1 {
    font-size: 48px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 12px;
}

.breadcrumb ul {
    display: block;
    white-space: normal;
    position: relative;
    z-index: 2;
    padding-bottom: 15px;
}

.breadcrumb ul li {
    display: inline;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

.breadcrumb ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb ul li a:hover {
    color: rgb(255, 255, 255);
}

.breadcrumb ul li:not(:last-child) {
    position: relative;
    padding-right: 15px;
}

.breadcrumb ul li:not(:last-child)::before {
    content: "/";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;
    color: rgb(255, 255, 255);
}

.desc-sub-breadcrumn {
    color: var(--color-5);
}

.desc-sub-breadcrumb {
    color: var(--color-5);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.desc-sub-breadcrumb::before {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    background-color: var(--color-5);
}

.noi-dung {
    font-size: 15px;
}

.cs-row img {
    border-radius: 10px;
}

.noi-dung p {
    margin-bottom: 10px;
    text-align: justify;
    line-height: 1.5;

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

.noi-dung h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.noi-dung h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.noi-dung hr {
    margin: 15px 0px;
}

.noi-dung table td img {
    border-radius: 10px;
}

.noi-dung table td {
    width: 50%;
}

.noi-dung blockquote {
    border-left: 5px solid var(--color-primary);
    padding: 8px 15px;
    background: rgb(247, 245, 240);
    border-radius: 10px;
    margin-bottom: 15px;
}

.noi-dung blockquote h3,
.noi-dung blockquote h2,
.noi-dung blockquote p {
    margin-bottom: 0px;
}

.noi-dung ul,
.noi-dung ol {
    margin-left: 30px;
    margin-bottom: 10px;
}

.noi-dung ul li,
.noi-dung ol li {
    margin-bottom: 10px;
}

.noi-dung table tr td {
    padding: 0px 10px;
}

.noi-dung table {
    margin: 0px -10px;
}

.image-caption {
    margin-bottom: 10px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0px;
    margin-top: 50px;
    gap: 10px;
}

.pagination .page-item {
    display: inline-block;
}

.btn-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination .page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--color-primary);
    background: rgb(255, 255, 255);
    color: var(--color-primary);
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s ease-in-out;
}

.pagination .page-link:hover {
    background: var(--color-primary);
    color: rgb(255, 255, 255);
    border-color: var(--color-primary);
}

.pagination .page-item.active .page-link {
    background: var(--color-primary);
    color: rgb(255, 255, 255);
    border-color: var(--color-primary);
    pointer-events: none;
}

.pagination .page-item.disabled .page-link {
    pointer-events: none;
}

.noi-dung ul li {
    list-style: disc;
}

.btn-web {
    min-width: 168px;
    height: 57px;
    color: rgb(255, 255, 255);
    background: rgb(30, 30, 30);
    border: 1px solid rgb(30, 30, 30);
    border-radius: 1px;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 40px;
    transition: 0.4s;
}

.btn-web::before {
    background: rgb(255, 255, 255);
    border-radius: 50%;
    content: "";
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    transition: 0.8s;
    width: 0px;
}

.btn-web:hover::before {
    opacity: 1;
    padding-top: 120%;
    width: 120%;
}

.btn-web:hover {
    color: rgb(0, 0, 0);
}

.btn-web span,
.btn-web svg {
    position: relative;
    z-index: 1;
}

.btn-web.option-2 {
    border: 1px solid rgb(30, 30, 30);
    color: rgb(0, 0, 0);
    background: transparent;
}

.btn-web.option-2::before {
    background: rgb(30, 30, 30);
}

.btn-web.option-2:hover {
    color: rgb(255, 255, 255);
}

.btn-web.option-1 {
    border: 1px solid rgb(245, 245, 245);
    color: rgb(250, 250, 250);
    background: transparent;
}

.btn-web.option-1::before {
    background: rgb(255, 255, 255);
}

.btn-web.option-1:hover {
    color: rgb(0, 0, 0);
}

.service-card .card-img {
    padding-bottom: 100%;
}

.service-card .card-name {
    font-size: 18px;
    margin: 5px 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 47px;
}

.service-card .price-wrap {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 12px;
}

.service-card .price-wrap .price {
    font-size: 16px;
    font-weight: 500;
    color: rgb(255, 0, 0);
}

.service-card .price-wrap .price-old {
    color: rgb(153, 153, 153);
}

.service-card {
    position: relative;
    background: rgb(255, 255, 255);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 3px 12px;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
}

.service-card .bag-sale {
    background: linear-gradient(93.01deg, rgb(255, 35, 16) 15.48%, rgb(211, 17, 0) 92.66%);
    border-radius: 5px;
    padding: 0px 10px;
    color: rgb(255, 255, 255);
    position: absolute;
    right: 5px;
    top: 16px;
    height: 24px;
    line-height: 24px;
    text-align: center;
}

.service-card .button-gr {
    margin-top: 10px;
}

.service-card .button-gr .add-to-cart {
    background-color: rgb(37, 42, 87);
    color: rgb(255, 255, 255);
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-card .button-gr .add-to-cart:hover {
    background-color: rgb(0, 0, 0);
}

.service-card .button-gr .buy-now {
    background-color: transparent;
    color: rgb(37, 42, 87);
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 5px;
    border: 1px solid rgb(37, 42, 87);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.service-card .button-gr .buy-now:hover {
    background-color: rgb(37, 42, 87);
    color: rgb(255, 255, 255);
}

.service-card .compare {
    position: absolute;
    text-decoration: underline;
    top: 15px;
    left: 15px;
    font-size: 16px;
}

.service-card .hethang {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    padding: 12px 40px;
    font-size: 20px;
    font-weight: 600;
    color: rgb(51, 51, 51);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 15px;
    letter-spacing: 0.5px;
    pointer-events: none;
}

.news-card {
    border-radius: 12px;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 2px 9px;
}

.news-img {
    padding-bottom: 64%;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.news-card:hover .news-img img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    padding: 10px 12px;
    border-radius: 8px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    z-index: 2;
    min-width: 60px;
}

.news-date .day {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: rgb(26, 26, 26);
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 13px;
    color: rgb(37, 42, 87);
    text-transform: uppercase;
    margin-top: 4px;
}

.news-content {
    padding: 15px;
}

.news-meta {
    margin-bottom: 12px;
}

.news-cat {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgb(37, 42, 87);
    background: rgb(238, 240, 250);
    padding: 4px 12px;
    border-radius: 4px;
}

.news-name {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 53px;
}

.news-text {
    color: rgb(119, 119, 119);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 51px;
}

.news-readmore {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgb(26, 26, 26);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

.news-readmore svg {
    transition: transform 0.3s;
}

.news-readmore:hover svg {
    transform: translateX(5px);
}

@media (max-width: 1100px) {
    .noi-dung table tr td {
        width: 50%;
    }

    .noi-dung img {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .noi-dung table tr td {
        width: 100% !important;
        display: block;
    }
}

@media (max-width: 768px) {
    .pagination .page-link {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .noi-dung h2 {
        font-size: 18px;
    }

    .noi-dung h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .noi-dung table td img {
        margin-bottom: 10px;
    }

    .breadcrumb {
        height: 280px;
    }

    .breadcrumb h1 {
        font-size: 26px;
    }

    .breadcrumb ul li a {
        font-size: 14px;
    }

    .breadcrumb ul li {
        font-size: 16px;
    }
}

.home-collection-section {
    padding: 60px 0px;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
    position: relative;
}

.home-collection-section::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: rgba(0, 0, 0, 0.4);
}

.home-collection-section .slick-arrow:hover svg path {
    fill: rgb(255, 255, 255);
}

.collection-header {
    text-align: center;
    margin-bottom: 35px;
    color: rgb(255, 255, 255);
}

.collection-title {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 600;
    margin-bottom: 22px;
    display: inline-block;
    position: relative;
    padding-bottom: 24px;
}

.collection-divider {
    display: none;
}

.collection-desc {
    max-width: 650px;
    margin: 0px auto;
    font-size: 16px;
    line-height: 1.6;
}

.collection-inner .slick-slide {
    margin: 0px 7px;
}

.collection-inner .slick-list {
    margin: 0px -7px;
}

.collection-inner:not(.slick-initialized) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.collection-box {
    position: relative;
    overflow: hidden;
    flex: 0 0 25%;
    max-width: 25%;
}

.collection-inner.slick-initialized .collection-box {
    flex: 0 0 auto;
    max-width: none;
}

.collection-img {
    padding-bottom: 142%;
}

.collection-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.collection-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0.4;
    transition: 0.5s;
    z-index: 2;
}

.collection-content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 30px;
    z-index: 3;
    color: rgb(255, 255, 255);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.collection-box:hover .collection-overlay {
    opacity: 0.7;
    background: linear-gradient(rgba(200, 169, 110, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.collection-box:hover .collection-content {
    opacity: 1;
    transform: translateY(0px);
}

.collection-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.collection-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.5;
}

.collection-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .home-collection-section {
        padding: 40px 0px;
    }

    .collection-header {
        margin-bottom: 35px;
    }
}

@media (max-width: 575px) {
    .collection-content {
        padding: 12px;
    }

    .collection-name {
        font-size: 14px;
    }
}

.home-features-section {
    position: relative;
    padding: 50px 0px;
    overflow: visible !important;
}

.home-features-section::before {
    content: "";
    position: absolute;
    inset: 0px;
    background-color: rgba(37, 42, 87, 0.5);
}

.features-header {
    text-align: center;
}

.features-title {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 600;
    color: rgb(255, 255, 255);
    display: inline-block;
    position: relative;
    padding: 0px 0px 24px;
}

.features-divider {
    display: none;
}

.features-grid {
    overflow: visible;
    padding: 20px 25px 0px;
}

.features-grid {
    margin: 0px 44px;
}

.home-features-section .ctnr {
    overflow: visible !important;
}

.features-grid.slick-initialized .slick-slide {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.features-grid .feature-box {
    margin-bottom: 30px;
}

.features-grid.slick-initialized .slick-slide .feature-box {
    margin-bottom: 24px !important;
}

.features-grid.slick-initialized .slick-slide .feature-box:last-child {
    margin-bottom: 0px !important;
}

.features-grid.slick-initialized .feature-box {
    margin: 0px;
    height: auto;
}

.features-grid.slick-initialized .slick-slide {
    padding: 10px 12px;
}

.feature-box {
    background: rgba(0, 0, 0, 0.31);
    padding: 40px 25px;
    text-align: center;
    border-radius: 15px;
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgb(37, 42, 87);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-box::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 0px;
    background: linear-gradient(rgba(200, 169, 110, 0.05) 0%, rgba(200, 169, 110, 0) 100%);
    transition: 0.5s;
    z-index: -1;
}

.feature-box:hover::before {
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: rgba(200, 169, 110, 0.3);
    box-shadow: rgba(200, 169, 110, 0.12) 0px 25px 50px;
}

.feature-img {
    padding: 22px;
    width: 100px;
    height: 100px;
    margin: 0px auto 30px;
    overflow: hidden;
    border-radius: 50%;
    background: rgb(37, 42, 87);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(241, 230, 208);
    transition: 0.5s;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-img:hover img {
    transform: rotate(360deg);
}

.feature-box:hover .feature-img {
    border-color: rgb(255, 255, 255);
    box-shadow: rgba(200, 169, 110, 0.15) 0px 10px 20px;
}

.feature-name {
    font-size: 26px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
    transition: 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 1em;
}

.feature-desc {
    font-size: 18px;
    line-height: 1.7;
    color: rgb(255, 255, 255);
    margin: 0px;
    transition: 0.3s;
}

#featuresSlider .slick-dots {
    margin-top: 12px;
}

@media (max-width: 1200px) {
    .features-grid {
        gap: 20px;
        margin: 0px;
        padding: 20px 0px 0px;
    }
}

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

@media (max-width: 768px) {
    .home-features-section {
        padding: 40px 0px;
    }
}

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

    .feature-box {
        padding: 35px 20px;
    }

    .feature-img {
        width: 90px;
        height: 90px;
        margin-bottom: 25px;
    }

    .features-grid.slick-initialized .slick-slide {
        padding: 10px 0px;
        margin: 0px 6px;
    }

    .features-grid.slick-initialized .slick-list {
        padding: 0px;
        margin: 0px -6px;
    }
}

.sub-title-section {
    color: var(--color-5);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.sub-title-section::before {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    background-color: var(--color-5);
}

.title-section {
    color: var(--color-primary);
    font-size: clamp(23px, 4vw, 30px);
    font-weight: 900;
    line-height: 1.3;
}

.open-contact-modal {
    cursor: pointer;
}