/* Breadcrumb */
.breadcrumb {
    min-height: 300px;
    position: relative;
    /* border-radius: 0px 0px 20px 20px; */
    /* margin-top: -20px; */
    display: flex;
    align-items: end;
    text-align: center;
    overflow: hidden;
}

.breadcrumb::before {
    content: '';
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.breadcrumb h1 {
    font-size: 40px;
    color: #FFF;
    margin-bottom: 8px;
}

.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, .7);
}

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

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

.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: #FFF;
}

/* End breadcrumb  */



/* Content cho editor  */
.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: 0;
    }
}

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

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

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

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

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

.noi-dung blockquote {
    border-left: 5px solid var(--color-3);
    padding: 8px 15px;
    background: #f7f5f0;
    border-radius: 10px;
    margin-bottom: 15px;
}

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

.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: 0 10px;
}

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

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

/* end  */

/* pagination  */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    /* margin-top: 40px; */
}

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

.pagination-wrapper .pagination {
    margin-top: 0;
}

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

.pagination .page-item.disabled {
    background: transparent;
}

.pagination .page-item.disabled .page-link,
.pagination li.disabled span {
    background: lightgray;
}

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

.pagination .page-link,
.pagination li a,
.pagination li span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--amy-border, #e5e5e5);
    background-color: var(--amy-white, #ffffff);
    color: var(--amy-gray-dark, #333333);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.pagination .page-link:hover,
.pagination li a:hover,
.pagination .page-item.active .page-link,
.pagination li.active span {
    background-color: var(--amy-black, #080808);
    border-color: var(--amy-black, #080808);
    color: var(--amy-white, #ffffff);
}

.pagination .page-item.active .page-link,
.pagination li.active span {
    pointer-events: none;
}

.pagination .page-item.disabled .page-link,
.pagination li.disabled span {
    opacity: 0.5;
    pointer-events: none;
}

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

.btn-web {
    min-width: 168px;
    height: 51px;
    color: #fff;
    background: #1e1e1e;
    border: 1px solid #1e1e1e;
    border-radius: 1px;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    transition: all .4s;
}

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

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

.btn-web:hover {
    color: #000;
}

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

.btn-web.option-2 {
    border: 1px solid #333;
    color: #000;
    background: transparent;
}

.btn-web.option-2:before {
    background: #333;
}

.btn-web.option-2:hover {
    color: #FFF;
}

.btn-web.option-1 {
    border: 1px solid #f5f5f5;
    color: #fff;
    background: #1d1d1d;
    text-transform: uppercase;
}

.btn-web.option-1:before {
    background: #ffffff;
}

.btn-web.option-1:hover {
    color: #000;
}

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

.service-card .card-name {
    font-size: 18px;
    margin: 5px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    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: #F00;
}

.service-card .price-wrap .price-old {
    color: #999;
}

.service-card {
    position: relative;
    background: #FFF;
    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, #ff2310 15.48%, #d31100 92.66%);
    border-radius: 5px;
    padding: 0px 10px;
    color: #fff;
    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: #333;
    color: #FFF;
    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: #000;
}

.service-card .button-gr .buy-now {
    background-color: transparent;
    color: #333;
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 5px;
    border: 1px solid #333;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.service-card .button-gr .buy-now:hover {
    background-color: #333;
    color: #FFF;
}

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

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

/* news-card: styles moved to news-list.css (BEM) */

@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 {
        min-height: 220px;
    }

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

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

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


/* ========== Home Collection Section =========== */
.home-collection-section {
    padding: 60px 0;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

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

.home-collection-section .slick-arrow:hover svg path {
    fill: #fff;
}

.collection-header {
    text-align: center;
    margin-bottom: 35px;
    color: #FFF;
}

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


.collection-divider {
    display: none;
}

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

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

.collection-inner .slick-list {
    margin: 0 -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: none;
    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: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0.4;
    transition: all 0.5s ease;
    z-index: 2;
}

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


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

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

.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 #fff;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

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

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

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


/* ========== Home Features Section =========== */
.home-features-section {
    overflow: visible !important;
    position: relative;
    padding: 50px 0 50px;
}

.home-features-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(37 42 87 / 50%);
}

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

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


.features-divider {
    display: none;
}

.features-grid {
    overflow: visible;
    /* Quan trọng: cho phép shadow/transform hiển thị */
    padding: 20px 25px 0px;
    /* Tránh bị cắt khi hover translateY */
}

.features-grid {
    margin: 0 44px;
    /* Tăng từ 22px lên 44px — bằng đúng kích thước nút */
}

/* Wrapper bên ngoài cần overflow visible */
.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: 0 !important;
}

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

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

/* Slick arrows for features grid moved to global */

.feature-box {
    background: #0000004f;
    padding: 40px 25px;
    text-align: center;
    border-radius: 15px;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03); */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(200, 169, 110, 0.05) 0%, rgba(200, 169, 110, 0) 100%);
    transition: all 0.5s ease;
    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: 0 25px 50px rgba(200, 169, 110, 0.12);
}

.feature-img {
    padding: 22px;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f1e6d0;
    transition: all 0.5s ease;
}

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

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

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

.feature-name {
    font-size: 26px;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    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: #FFF;
    margin: 0;
    transition: all 0.3s ease;
}


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

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

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

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

@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 0;
        margin: 0 6px;
    }

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

/* ==========================================
   SHARED PREMIUM BANNER COMPONENT STYLES
   ========================================== */
.premium-banner {
    min-height: 280px;
    background-color: #F8F9FA;
    overflow: hidden;
    padding: 80px 0;
    display: flex;
    align-items: center;
    position: relative;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.premium-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.45);
    z-index: 1;
}

.premium-banner .ctnr {
    position: relative;
    z-index: 2;
}

.premium-banner-left {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.premium-banner-left h1 {
    font-size: 42px;
    font-weight: 800;
    color: #111111;
    margin: 0 0 16px 0 !important;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.2;
}

.premium-banner-left .desc {
    font-size: 15px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .premium-banner {
        min-height: 280px;
        padding: 60px 0;
        background-attachment: scroll !important;
    }

    .premium-banner-left {
        max-width: 100%;
        padding: 0 20px;
        text-align: center;
        align-items: center;
        margin: 0 auto;
    }

    .premium-banner-left h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .premium-banner {
        min-height: 220px;
        padding: 40px 0;
    }

    .premium-banner-left h1 {
        font-size: 26px;
    }
}

/* ==========================================
   SHARED PREMIUM TRUST BAR COMPONENT STYLES
   ========================================== */
.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 15px 10px;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: transform 0.3s ease;
    width: 100%;
    padding: 10px 25px;
}

.trust-bar-item:hover {
    transform: translateY(-3px);
}

@media (min-width: 992px) {
    .trust-bar-item:not(:last-child) {
        border-right: 1px solid #eaeaea;
    }
}

.trust-bar-icon {
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.trust-bar-item:hover .trust-bar-icon {
    color: var(--color-3, #9a6d28);
    /* Warm premium gold accent on hover */
    transform: scale(1.08);
}

.trust-bar-icon svg,
.trust-bar-icon img {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    fill: none;
    transition: all 0.3s ease;
}

.trust-bar-content {
    display: flex;
    flex-direction: column;
}

.trust-bar-title {
    font-size: 13px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 6px 0 !important;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.trust-bar-desc {
    font-size: 13px;
    line-height: 1.4;
    color: #6b7280;
    margin: 0 !important;
}

/* Responsive styles */
@media (max-width: 991px) {
    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
        padding: 30px 20px;
    }

    .trust-bar-item {
        justify-content: center;
        padding: 10px 15px;
    }

    .trust-bar-item:nth-child(odd) {
        border-right: 1px solid #eaeaea;
    }
}

@media (max-width: 576px) {
    .trust-bar-grid {
        grid-template-columns: 1fr;
        gap: 25px 0;
        padding: 25px 20px;
    }

    .trust-bar-item {
        justify-content: flex-start;
        padding: 5px 10px;
    }

    .trust-bar-item:nth-child(odd) {
        border-right: none;
    }
}

/* ==========================================
   SHARED BREADCRUMBS LIST COMPONENT STYLES
   ========================================== */
.breadcrumbs-list {
    /* align-items: center; */
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: #888888;
}

.breadcrumbs-list li {
    display: inline;
}

.breadcrumbs-list li a {
    color: #555555;
    /* display: flex; */
    align-items: center;
    transition: color 0.3s ease;
}

.breadcrumbs-list li a:hover {
    color: #080808;
}

.breadcrumbs-list .home-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    transform: translateY(2px);
}

.breadcrumbs-list .separator {
    color: #cccccc;
    user-select: none;
}

.breadcrumbs-list .active {
    color: #999999;
}