/* index.css */
@import "root.css";
/* --- BEGIN featured section --- */
.productInterest {
    position: relative;
}

.productInterest .swiper-slide {
    height: auto;
    display: flex;
}

.interest-next, .interest-prev {
    color: var(--primary-maroon);
    top: auto;
    bottom: 0;
}

.interest-next::after, .interest-prev::after {
    font-size: 16px;
    font-weight: bold;
}

.interest-prev,
.interest-next {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    border: solid 1px #e0dede;
}

.interest-prev:hover,
.interest-next:hover {
    background-color: var(--primary-maroon);
    color: var(--text-white);
}

.interest-prev {
    left: 40%;
}

.interest-next {
    right: 40%;
}


@media (max-width: 600px) {
    .productInterest {
        padding-bottom: 60px;
    }

    .interest-prev {
        left: 35%;
    }

    .interest-next {
        right: 35%;
    }
}

.interest-products {
    background-color: var(--primary-bg);
    padding: 40px 0;
    overflow: hidden;
}

.interest-products .section-title {
    font-family: var(--font-btn);
    color: #3E0A10;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.interest-products .line {
    width: 248px;
    height: 0px;

    border: 1px solid #77131F;
    transform: rotate(180deg);

}

.interest-products .product-item {
    background: #FFFFFF;
    /*border: 3px solid #0D0203;*/
    border: 2px solid var(--primary-maroon);
    box-shadow: 0px 4px 8px -2px rgba(10, 13, 18, 0.1), 0px 2px 4px -2px rgba(10, 13, 18, 0.06);
    border-radius: 16px;
    padding: 0px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.interest-products .product-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 44px;
    background-image: url('/plugins/VGS_Ecommerce/asset/image/interest/background.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    transition: opacity 0.6s ease-in-out;
    z-index: -2;
}

.interest-products .product-image-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin-bottom: 20px;*/
    z-index: 2;
}

.interest-products .product-image-wrapper img.img-main,
.interest-products .product-image-wrapper img.img-hover {
    max-width: 100%;
    height: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.interest-products .img-hover {
    position: absolute;
    opacity: 0;
    transform: translateY(15px) scale(0.95);
}

.interest-products .product-info {
    position: relative;
    background-color: #fff;
}


.interest-products .decor-cloud {
    position: absolute;
    height: auto;
    width: 72px !important;
    bottom: -60px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 10;
}

@media (max-width: 600px) {
    .interest-products .decor-cloud {
        width: 52px !important;
    }

    .interest-products .product-item {
        border: 2px solid #FFCC00;
        box-shadow: 0px 4px 8px -2px rgba(10, 13, 18, 0.1), 0px 2px 4px -2px rgba(10, 13, 18, 0.06);
        cursor: pointer;
    }

    /* Ảnh nền hiện rõ lên khi hover */
    .interest-products .product-item .product-bg-overlay {
        opacity: 1; /* Hiện rõ ảnh nền background.jpg */
    }

    /* Tráo đổi ảnh sản phẩm */
    .interest-products .product-item .img-main {
        opacity: 0;
    }

    .interest-products .product-item .img-hover {
        opacity: 1;
        transform: scale(1.1);
    }

    .interest-products .product-item .decor-cloud {
        opacity: 1;
        bottom: 0px;
    }

    .interest-products .product-item .btn-product {
        background-image: url('/plugins/VGS_Ecommerce/asset/image/interest/bg-button.jpg');
        background-size: cover;
        background-position: center;
        color: var(--accent-gold);
        border-radius: 0px;
        border-top-color: transparent;
        isolation: isolate;
        z-index: 5;
    }
}

@media (max-width: 1024px) {
    .interest-products .decor-cloud {
        width: 54px !important;
    }

    .interest-products .btn-product {
        font-size: 15px !important;
    }
}

@media (max-width: 375px) {
    .interest-products {
        padding: 20px 0;
    }

    .interest-products .decor-cloud {
        width: 40px !important;
    }

    .interest-products .section-title {
        font-size: 20px;
    }

    .interest-products .btn-product {
        font-size: 14px !important;
    }

    .interest-products .product-bg-overlay {
        bottom: 40px !important;
    }
}


.interest-products .decor-left {
    left: 0;
}

.interest-products .decor-right {
    right: 0;
    transform: rotateY(180deg);
}

.interest-products .btn-product {
    font-family: var(--font-btn);
    background: transparent;
    border: none;
    color: #3E0A10; /* Màu chữ ban đầu */
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    padding: 10px 5px;
    width: 100%;
    position: relative;
    transition: color 0.3s ease, background 0.4s ease-in-out;
}

.interest-products .product-item:hover {
    border: 2px solid #FFCC00;
    box-shadow: 0px 4px 8px -2px rgba(10, 13, 18, 0.1), 0px 2px 4px -2px rgba(10, 13, 18, 0.06);
    cursor: pointer;
}

.interest-products .product-item:hover .product-bg-overlay {
    opacity: 1;
}

.interest-products .product-item:hover .img-main {
    opacity: 0;
}

.interest-products .product-item:hover .img-hover {
    opacity: 1;
    transform: scale(1.1);
}

.interest-products .product-item:hover .decor-cloud {
    opacity: 1;
    bottom: 0px;
}

.interest-products .product-item:hover .btn-product {
    background-image: url('/plugins/VGS_Ecommerce/asset/image/interest/bg-button.jpg');
    background-size: cover;
    background-position: center;
    color: var(--accent-gold);
    border-radius: 0px;
    border-top-color: transparent;
    isolation: isolate;
    z-index: 5;
}

/* --- END featured section --- */

/* --- BEGIN GOLD PRICE TABLE --- */
.gold-price-section {
    padding: 40px 0;
    background-color: #fdfdfd;
}

.gold-price-wrapper {
    max-width: 986px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* --- Header với ảnh nền và trang trí --- */
.gp-header {
    background-color: var(--primary-maroon); /* Màu đỏ đô làm nền */
    background-image: url('/plugins/VGS_Ecommerce/asset/image/banner-table.png'); /* Họa tiết hoa chìm */
    background-size: contain;
    height: 96px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    gap: 10px;
    isolation: isolate;
    position: relative;
    overflow: hidden;
}

/* Hiệu ứng chữ vàng texture */
.gp-title {
    font-family: var(--font-btn);
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    letter-spacing: -0.02em;
    margin: 0;
    position: relative;
    z-index: 5;
    background: url('/plugins/VGS_Ecommerce/asset/image/gold-texture.jpg');
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

@media (max-width: 600px) {
    .gp-title {
        font-size: 25px;
    }
}

@media (max-width: 540px) {
    .gp-title {
        font-size: 20px;
    }

    .gp-header .decor-bird-right {
        width: 52px;
        height: 52px;
        right: 21px;
        top: calc(50% - 62px / 2 - 0px);
    }
}

@media (max-width: 320px) {
    .gp-title {
        font-size: 16px;
    }

    .gp-header .decor-bird-left {
        left: 16px;
        top: calc(50% - 23px / 2 - 2px);
    }

    .gp-header .decor-bird-right {
        right: 8px;
        top: calc(50% - 62px / 2 - 0px);
    }
}

/* Định vị mây và chim */
.header-decor {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

.decor-cloud-left {
    background-image: url('/plugins/VGS_Ecommerce/asset/image/cloud.png');
    width: 55px;
    height: 30px;
    left: 0px;
    bottom: 0px;
    opacity: 1;
}

.decor-cloud-right {
    background-image: url('/plugins/VGS_Ecommerce/asset/image/cloud.png');
    width: 55px;
    height: 30px;
    right: 0px;
    bottom: 0px;
    transform: rotateY(180deg);
    opacity: 1;
}


.decor-bird-left {
    background-image: url('/plugins/VGS_Ecommerce/asset/image/bird.png');
    width: 42px;
    height: 36px;
    left: 32px;
    top: calc(50% - 36px / 2 - 2px);
    transform: matrix(-1, 0, 0, 1, 0, 0);
}


.decor-bird-right {
    background-image: url('/plugins/VGS_Ecommerce/asset/image/bird.png');
    width: 76px;
    height: 65px;
    right: 36px;
    top: calc(50% - 65px / 2 - 0px);
}


/* --- Style Bảng --- */
.gp-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.gp-table thead th {
    font-family: var(--font-btn);
    background-color: var(--primary-bg); /* Màu be nhạt như hình */
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 14px;
    padding: 12px;
    text-align: center;
    border: 1px solid #eee;
}

.gp-table tbody td {
    font-family: var(--font-btn);
    padding: 10px;
    text-align: center;
    border: 1px solid #f5f5f5;
    font-size: 14px;
}

.gp-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.buy-price, .sell-price {
    font-weight: 600;
    color: var(--primary-maroon);
}

/* --- END GOLD PRICE TABLE --- */

/* --- BEGIN featured products slider --- */
.featured-products {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 0px 80px;
    gap: 10px;
    isolation: isolate;
    position: relative;
    background-image: url('/plugins/VGS_Ecommerce/asset/image/interest/background.jpg'), radial-gradient(50% 50% at 50% 50%, #77131F 0%, #580E17 100%);
    background-blend-mode: soft-light, normal;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}


/* Tiêu đề chữ vân vàng */
.featured-products .section-title {
    font-family: var(--font-btn);
    font-size: 32px;
    background: url('/plugins/VGS_Ecommerce/asset/image/gold-texture.jpg');
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

@media (max-width: 768px) {
    .featured-products {
        padding: 20px 0 30px;
    }

    .featured-products .section-title {
        font-size: 20px;
    }

    .featured-products .decor-bird-top-left {
        width: 30px !important;
        height: 60px !important;
    }

    .featured-products .decor-cloud-left, .featured-products .decor-cloud-right {
        height: 60px !important;
    }

    .featured-products .productFeatured.swiper .swiper-pagination {
        bottom: var(--swiper-pagination-bottom, 40px) !important;
    }
}

.featured-products .line {
    width: 248px;
    height: 0px;

    border: 1px solid var(--accent-gold);
}

/* Decor Items */
.featured-products .decor-item {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 2;
}

.featured-products .decor-lantern-left {
    background-image: url('/plugins/VGS_Ecommerce/asset/image/lantern.png');
    width: 88px;
    height: 482px;
    top: 0;
    left: 0;
}

.featured-products .decor-lantern-right {
    background-image: url('/plugins/VGS_Ecommerce/asset/image/lantern.png');
    width: 88px;
    height: 482px;
    top: 0;
    right: 0;
}

@media (max-width: 1440px) {
    .featured-products .decor-lantern-left,
    .featured-products .decor-lantern-right {
        width: 40px;
        height: 200px;
    }

    .featured-products .decor-cloud-left,
    .featured-products .decor-cloud-right {
        height: 80px !important;
    }
}

.featured-products .decor-cloud-left {
    background-image: url('/plugins/VGS_Ecommerce/asset/image/cloud.png');
    width: 250px;
    height: 114px;
    bottom: 0px;
    left: 0px;
}


.featured-products .decor-cloud-right {
    background-image: url('/plugins/VGS_Ecommerce/asset/image/cloud.png');
    width: 250px;
    height: 114px;
    bottom: 0px;
    right: 0px;
    transform: rotateY(180deg);
}

.featured-products .decor-bird-top-left {
    background-image: url('/plugins/VGS_Ecommerce/asset/image/bird.png');
    width: 60px;
    height: 60px;
    top: 10%;
    left: 5%;
    transform: matrix(-1, 0, 0, 1, 0, 0);
}


.featured-products .decor-bird-bottom-right {
    background-image: url('/plugins/VGS_Ecommerce/asset/image/bird.png');
    width: 80px;
    height: 80px;
    bottom: 10%;
    right: 1%;
    z-index: 1;
}


.productFeatured {
    padding: 40px 0px;
}

/* Product Card */
.featured-products .product-card {
    background: #fff;
    border-radius: 15px;
    padding: 0px;
    position: relative;
    height: 100%;
    transition: 0.3s;
    border: 1px solid transparent;
    overflow: hidden;
}

.featured-products .product-card:hover {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* Badge Mới/Hot với Kim cương */
.featured-products .badge-status {
    position: absolute;
    float: right;
    top: 15px;
    right: 10px;
    z-index: 5;
}

.featured-products .badge-status img {
    width: 44px;
    margin-bottom: 2px;
}

.featured-products .product-img {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.featured-products .product-img img {
    max-width: 100%;
    transition: 0.5s;
}

.featured-products .product-card:hover .product-img img {
    transform: scale(1.2);
}

.featured-products .product-detail {
    padding: 10px;
}

.p-name,
.p-price {
    font-family: var(--font-btn);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: -0.02em;
    color: #18181B;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-products .product-card:hover .p-name {
    color: var(--primary-maroon);
}

.featured-products .productFeatured.swiper {
    position: unset;
}


.featured-products .productFeatured.swiper .swiper-pagination {
    bottom: var(--swiper-pagination-bottom, 68px);
}
/* --- END featured products slider --- */

/* --- BEGIN collection-grid-section --- */
.collection-grid-section {
    padding: 16px;
    position: relative;
    overflow: hidden;
}

/* Tiêu đề chính vân vàng */
.collection-grid-section .section-title {
    font-family: var(--font-btn);
    font-size: 32px;
    margin-bottom: 40px;
    background: url('/plugins/VGS_Ecommerce/asset/image/gold-texture.jpg');
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Item bộ sưu tập */
.collection-grid-section .collection-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    aspect-ratio: 1/1;
}

.collection-grid-section .collection-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.collection-grid-section .collection-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}


.collection-item:hover {
    border: 3px solid var(--accent-gold);
}

.collection-item:hover .collection-hover-overlay {
    opacity: 1;
    transform: scale(1);
}

/* Chữ trong item dùng gold-texture */
.collection-grid-section .collection-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0px;
    gap: 10px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    z-index: 5;
    background: linear-gradient(180deg, rgba(27, 26, 26, 0) 0%, #1B1A1A 100%);
}

.collection-grid-section .collection-name {
    font-family: var(--font-btn);
    font-size: 32px;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
    background: url('/plugins/VGS_Ecommerce/asset/image/gold-texture.jpg');
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.7s ease;
}

/* Hover Effect */
.collection-grid-section .collection-item:hover .collection-img img {
    transform: scale(1.1);
}

.collection-grid-section .btn-wrapper-hover {
    display: none;
    transition: transform 0.6s ease;
}

.collection-grid-section .collection-item:hover .btn-wrapper-hover {
    display: block;
}

.collection-grid-section .btn-view-collection {
    position: relative;
    display: inline-block;
    padding: 10px 70px;
    border-radius: 30px;
    border: 1.5px solid var(--accent-gold);
    background-image: url('/plugins/VGS_Ecommerce/asset/image/interest/background.jpg');
    background-size: cover;
    background-position: center;
    color: transparent;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.collection-grid-section .btn-text {
    font-family: var(--font-btn);
    font-size: 14px;
    background: url('/plugins/VGS_Ecommerce/asset/image/gold-texture.jpg');
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.collection-grid-section .btn-view-collection:hover {
    background-image: url('/plugins/VGS_Ecommerce/asset/image/interest/bg-button.jpg');
}

.collection-grid-section .btn-decor {
    position: absolute;
    height: auto;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    z-index: 10;
}

/* Mây ở 2 góc dưới */
.collection-grid-section .btn-cloud-left {
    width: 40px;
    bottom: 0px;
    left: 0px;
}

.collection-grid-section .btn-cloud-right {
    width: 40px;
    bottom: 0px;
    right: 0px;
    transform: rotateY(180deg);
}

/* Chim ở 2 bên */
.collection-grid-section .btn-bird-left {
    width: 16px;
    top: 10px;
    left: 12px;
    transform: rotateY(180deg);
}

.collection-grid-section .btn-bird-right {
    width: 20px;
    top: 10px;
    right: 12px;
}

/* Chỉ hiện mây và chim khi HOVER VÀO NÚT */
.collection-grid-section .btn-view-collection:hover .btn-decor {
    opacity: 1;
}

/* Responsive: Mobile 1 item 1 hàng */
@media (max-width: 767px) {

    .collection-grid-section {
        padding: 0px !important;
    }

    .collection-grid-section .row > * {
        margin-top: 0px !important;
    }

    .collection-grid-section .collection-name {
        font-size: 20px !important;
    }

    .collection-grid-section .btn-view-collection {
        padding: 8px 60px;
    }
}

/* --- END collection-grid-section --- */

.products-cat {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.products-cat .section-title {
    font-family: var(--font-btn);
    font-size: 32px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hoa trang trí góc */
.decor-flower {
    position: absolute;
    width: 250px;
    z-index: 1;
    opacity: 0.1;
    pointer-events: none;
}

.bg-type-interest .decor-flower {
    opacity: 0;
}


.decor-top-left {
    top: 0px;
    left: 0px;
}


.decor-bottom-right {
    bottom: -60px;
    right: 0px;
    width: 600px;
}

/* Banner Section */
.products-cat .cat-banner-wrapper .banner-inner {
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.products-cat .banner-title {
    font-family: var(--font-btn);
    background: url('/plugins/VGS_Ecommerce/asset/image/gold-texture.jpg');
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    line-height: 2;
}

.products-cat .banner-desc {
    font-family: var(--font-btn);
    color: #fff;
    opacity: 0.8;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 20px;
}

.products-cat .banner-main-img {
    max-height: 350px;
    margin: 0 auto;
    transition: transform 0.5s;
}

.products-cat .banner-inner:hover .banner-main-img {
    transform: scale(1.05);
}

/* Grid Sản phẩm */
.products-cat .product-card {
    background: #fff;
    border-radius: 15px;
    padding: 0px;
    position: relative;
    height: 100%;
    transition: 0.3s;
    border: 1px solid transparent;
    overflow: hidden;
}

.products-cat .product-card:hover {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* Badge Mới/Hot với Kim cương */
.products-cat .badge-status {
    position: absolute;
    float: right;
    top: 15px;
    right: 10px;
    z-index: 5;
}

.products-cat .badge-status img {
    width: 44px;
    margin-bottom: 2px;
}

.products-cat .product-img {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.products-cat .product-img img {
    max-width: 100%;
    transition: 0.5s;
}

.products-cat .product-card:hover .product-img img {
    transform: scale(1.2);
}

.products-cat .product-detail {
    padding: 10px;
}

.products-cat .product-card:hover .p-name {
    color: var(--primary-maroon);
}

/* Đường kẻ tiêu đề kiểu mực loang */
.products-cat .line {
    width: 248px;
    height: 0px;

    border: 1px solid var(--primary-maroon);
}

@media (max-width: 768px) {
    .products-cat .section-title {
        font-size: 20px;
    }

    .products-cat .banner-title {
        font-size: 18px;
    }

    .products-cat .banner-main-img {
        display: none;
    }

    .products-cat .products-cat {
        padding: 40px 0;
    }

    .products-cat .decor-flower {
        width: 120px;
    }
}

/* --- end products cat --- */

/* --- Customer Feedback Section --- */
.customer-feedback {
    padding: 80px 0;
    position: relative;
}

.feedback-card {
    border: 4px solid var(--primary-maroon);
    padding: 40px;
    background: #FFFFFF;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
}

.customer-img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.customer-img img {
    width: 100%;
    max-height: 440px;
    /*aspect-ratio: 1 / 1;*/
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--accent-gold);
}

.feedback-content {
    font-family: var(--font-btn);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.feedback-top-wrapper {
    width: 100%;
    flex-grow: 1;
}

.rating-stars {
    color: #FFD700;
    font-size: 20px;
}

.feedback-text {
    font-size: 2.2rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 0;
}

.customer-info-meta {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0px 0px;
    border-top: 1px solid #E4E4E7;
    margin-top: auto;
}

.customer-name {
    font-family: var(--font-btn);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #333;
}

.customer-job {
    font-size: 13px;
    color: #888;
    margin-bottom: 0;
}

.quote-icon {
    font-size: 60px;
    color: #F8D7DA; /* Màu hồng nhạt như hình */
    opacity: 0.5;
    pointer-events: none;
}

.customer-feedback .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 25px);
}
.customer-feedback .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, 25px);
}

/* Responsive */
@media (max-width: 767px) {
    .customer-feedback {
        padding: 30px 0;
    }
    .section-title {
        font-size: 20px;
    }
    .d-flex.flex-column-reverse {
        align-items: center !important;
    }

    .feedback-container {
        padding: 0;
    }

    .feedback-card{
        padding: 10px;
    }

    .feedback-text {
        font-size: 15px;
    }
}

/* --- End Customer Feedback Section --- */