@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:not(i) {
    font-family: "Quicksand", sans-serif !important;
}

body {
    min-height: 100vh;
    font-size: 16px;
    background-color: #f7fcfc !important;
    font-weight: 500;
}

/* --------------------------------- HEADER --------------------------------- */
/* Navbar Styles */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 1.8rem;
    font-weight: 500;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    color: #333;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #dcdcdc 0%, #f1f1f1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

/* Main Menu */
.menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.menu-item {
    position: relative;
}

.menu-item>a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s ease;
    position: relative;
}

.menu-item>a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}


.menu-item>a:hover::after {
    width: 100%;
}

/* Submenu */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    min-width: 220px;
    padding: 1rem 0;
    list-style: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.menu-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    padding: 0;
}

.submenu li a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.submenu li a:hover {
    background: #f5f7ff;
}

/* CTA Button */
.cta-btn {
    padding: 0.75rem 1.8rem;
    background: linear-gradient(135deg, #333 0%, #333 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
}

.cta-btn:active {
    transform: translateY(0);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    font-size: 23px;
    gap: 5px;
}


.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .navbar-container {
        padding: 1rem 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 55px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: white;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .menu.active {
        max-height: 500px;
    }

    .menu-item {
        width: 100%;
        padding: 0;
    }

    .menu-item>a {
        padding: 1rem 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f0f0f0;
    }

    .menu-item>a::after {
        display: none;
    }

    .submenu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        background: #f9f9f9;
        margin-top: 0;
        border-radius: 0;
        transition: all 0.3s ease;
    }

    .menu-item.active .submenu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
    }

    .submenu li a {
        padding: 0.8rem 2.5rem;
    }

    .submenu li a:hover {
        padding-left: 3rem;
    }

    .cta-btn {
        margin: 1rem 1.5rem;
        display: block;
        text-align: center;
    }

    .logo {
        font-size: 1.5rem;
    }

    .cta-btn {
        display: none;
    }

    .submenu {
        padding: 0;
    }
}

/* --------------------------------- HEADER --------------------------------- */
/* --------------------------------- FOOTER --------------------------------- */
.footer-minhtam {
    background: #26242a;
    color: white;
    font-family: "Segoe UI", Arial, sans-serif;
    border-top: 1px solid #f0ece7;
}
.footer-minhtam *{
    color: white !important;
}
.footer-minhtam-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 72px 70px 88px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.15fr;
    gap: 56px;
}

.footer-minhtam-title {
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #1f1b18;
}

.footer-minhtam-brand p {
    margin: 0;
    max-width: 360px;
    font-size: 16px;
    line-height: 1.55;
    color: #7f7a74;
    letter-spacing: 0.01em;
}

.footer-minhtam-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-minhtam-links li+li {
    margin-top: 15px;
}

.footer-minhtam-links a {
    text-decoration: none;
    font-size: 16px;
    color: #7f7a74;
    transition: color 0.2s ease;
}

.footer-minhtam-links a:hover {
    color: #2f2b28;
}

.footer-socials {
    display: flex;
    gap: 24px;
}

.footer-socials a {
    width: 58px;
    height: 58px;
    border: 1px solid #e5e0d9;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7d7872;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    border-color: #bdb5ac;
    color: #2f2b28;
}

.footer-socials svg {
    width: 24px;
    height: 24px;
}

.footer-minhtam-bottom {
    border-top: 1px solid #ece7e1;
    padding: 22px 70px;
    font-size: 14px;
    color: #8b857f;
}

@media (max-width: 1200px) {
    .footer-minhtam-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .footer-minhtam-inner {
        grid-template-columns: 1fr;
        padding: 52px 24px 60px;
        gap: 42px;
    }

    .footer-minhtam-bottom {
        padding: 18px 24px;
    }

    .footer-socials {
        gap: 16px;
    }

    .footer-socials a {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }
}

/* --------------------------------- FOOTER --------------------------------- */
/* ------------------------------ HERO + ABOUT ------------------------------ */
a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section {
    padding: 40px 0;
}

/* HERO */
.hero {
    padding-top: 20px;
}

.hero-wrap {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    max-height: 500px;
    overflow: hidden;
}

.hero-content {
    padding: 70px 28px 50px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    font-family: Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #7b7b7b;
    margin-bottom: 18px;
}

.hero-title {
    font-size: clamp(24px, 5vw, 40px);
    line-height: 1.05;
    color: #3e4341;
    margin-bottom: 22px;
    font-weight: unset;
}

.hero-subtitle {
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #646464;
    margin-bottom: 12px;
}

.hero-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-note::before {
    content: "";
    width: 2px;
    min-width: 2px;
    height: 56px;
    background: #b9b9b9;
    margin-top: 3px;
}

.hero-note p {
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #777;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    height: 48px;
    padding: 0 24px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
    border: 1px solid #9c9c9c;
}

.btn-primary {
    background: #091413;
    color: #fff;
    border-color: #091413;
}

.btn-primary:hover {
    background: #5c5757;
    border-color: #5c5757;
}

.btn-outline {
    background: transparent;
    color: #4f4f4f;
}

.btn-outline:hover {
    background: #ddd;
}

.hero-image {
    min-height: 540px;
    border-radius: 10px;
}
.hero-image img{
    border-radius: 10px;
}

/* STORY */
.story {
    padding-top: 56px;
    padding-bottom: 56px;
}

.story-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.story-media {
    position: relative;
    max-width: 460px;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    height: 390px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.story-badge {
    position: absolute;
    top: -24px;
    right: -18px;
    background: #f3f1ee;
    padding: 20px 22px 18px;
    border-radius: 10px;
    min-width: 165px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.story-badge h3 {
    font-size: 26px;
    font-style: italic;
    font-weight: 500;
    color: #64605d;
    line-height: 1.1;
    margin-bottom: 4px;
}

.story-badge p {
    font-family: Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8a8a8a;
}

.story-content h2 {
    font-size: clamp(24px, 5vw, 40px);
    line-height: 1.08;
    font-weight: unset;
    color: #3e4341;
    margin-bottom: 24px;
}

.story-content p {
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #686868;
    line-height: 1.9;
    margin-bottom: 24px;
    max-width: 620px;
}

.story-link {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #4b4b4b;
    display: inline-block;
    margin-top: 6px;
}

.story-link:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-wrap {
        grid-template-columns: 1fr 1fr;
        min-height: unset;
    }

    .story-wrap {
        gap: 40px;
    }

    .story-content h2 {
        font-size: 32px;
    }

    .story-content p {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .container {
        width: min(100% - 24px, 1200px);
    }

    .section {
        padding: 24px 0;
    }

    .hero-wrap,
    .story-wrap {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 34px 12px 28px;
        order: 1;
    }

    .hero-image {
        min-height: 360px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-note p {
        font-size: 14px;
    }

    .hero-note::before {
        height: 52px;
    }

    .btn {
        width: auto;
        min-width: 145px;
    }

    .story {
        padding-top: 28px;
    }

    .story-media {
        max-width: 100%;
    }

    .story-image {
        height: 350px;
    }

    .story-badge {
        top: 16px;
        right: 16px;
        min-width: 150px;
        padding: 16px 18px;
    }

    .story-badge h3 {
        font-size: 24px;
    }

    .story-content h2 {
        font-size: 38px;
        margin-bottom: 18px;
    }

    .story-content p {
        font-size: 16px;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 15px 6px 22px;
    }


    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .btn {
        width: 100%;
    }
.hero-wrap{
    max-height: unset !important;
}
.hero-image{
        min-height: 255px;
    }
    .hero-image img{
        aspect-ratio: 16 / 9;
        border-radius: 10px;
    }

    .story-image {
        height: 280px;
    }

    .story-content h2 {
        font-size: 24px;
    }

    .story-content p {
        font-size: 15px;
    }

    .story-badge {
        position: static;
        margin-bottom: 14px;
        width: fit-content;
    }
}

/* ------------------------------ HERO + ABOUT ------------------------------ */
/* ---------------------------------- CATE ---------------------------------- */
.product-category-section {
    padding: 80px 0 60px;
    /* background: #f9f9f9; */
}

.section-heading {
    text-align: center;
    margin-bottom: 48px;
}

.section-heading .sub-title {
    font-family: Arial, sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #7a7a7a;
    margin-bottom: 10px;
}

.section-heading .title {
    font-size: clamp(24px, 5vw, 40px);
    line-height: 1.15;
    font-weight: unset;
    color: #343938;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.category-card {
    background-color: white;
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.category-thumb {
    aspect-ratio: 1 / 1.1;
    overflow: hidden;
    background: #ddd;
}

.category-thumb img {
    transition: transform 0.4s ease;
}

.category-card:hover .category-thumb img {
    transform: scale(1.04);
}

.category-content {
    text-align: center;
    padding: 24px 18px 26px;
}

.category-name {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 500;
    color: #444;
    margin-bottom: 10px;
}

.category-link {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #7c7c7c;
    transition: color 0.25s ease;
}

.category-link:hover {
    color: #343938;
}

@media (max-width: 1199px) {

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .product-category-section {
        padding: 56px 0 40px;
    }

    .container {
        width: min(100%, calc(100% - 24px));
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading .sub-title {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .section-heading .title {
        font-size: 24px;
    }

    .category-grid {
        gap: 18px;
    }

    .category-card {
        border-radius: 18px;
    }

    .category-content {
        padding: 15px 8px;
    }

    .category-name {
        font-size: 16px;
    }

    .category-link {
        font-size: 10px;
        letter-spacing: 2px;
    }
}

/* ---------------------------------- CATE ---------------------------------- */
/* --------------------------------- PRODUCT -------------------------------- */
.featured-products-section {
    padding: 28px 0 10px;
}

.featured-products-section * {
    box-sizing: border-box;
}

.featured-products-container {
    margin: 0 auto;
}

.featured-products-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 34px;
}

.featured-products-subtitle {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 2px;
    color: #7e7e7e;
    margin-bottom: 6px;
}

.featured-products-title {
    margin: 0;
    font-size: clamp(24px, 5vw, 40px);
    line-height: 1.15;
    font-weight: unset;
    color: #363b39;
}

.featured-products-viewall {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #6c7471;
    font-size: 15px;
    line-height: 1.4;
    white-space: nowrap;
    margin-top: 18px;
    transition: opacity 0.25s ease;
}

.featured-products-viewall:hover {
    opacity: 0.7;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.featured-product-card {
    position: relative;
    background: white;
    border-radius: 18px;
    padding: 15px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
}

.featured-product-card:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.featured-product-thumb {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #ebe7e5;
}

.featured-product-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.featured-product-badge {
    position: absolute;
    top: 10px;
    right: 12px;
    background: #C21010;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    padding: 7px 9px;
    border-radius: 2px;
}

.featured-product-content {
    padding: 14px 4px 0;
}

.featured-product-title {
    margin: 0 0 4px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
    color: #444846;
}

.featured-product-desc {
    margin: 0 0 7px;
    font-size: 13px;
    line-height: 1.55;
    color: #868686;
    display: -webkit-box;

    -webkit-line-clamp: 2;
    /* số dòng tối đa */

    -webkit-box-orient: vertical;

    overflow: hidden;

    text-overflow: ellipsis;
}

.featured-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.featured-product-price {
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    color: #4a4d4b;
    letter-spacing: -0.5px;
}

.featured-product-price small {
    font-size: 15px;
    font-weight: 700;
}

.featured-product-icon {
    width: 24px;
    height: 24px;
    border: 1px solid #9c9c9c;
    border-radius: 8px;
    position: relative;
    flex-shrink: 0;
}

.featured-product-icon::before {
    content: "";
    width: 9px;
    height: 9px;
    border: 1.5px solid #7f7f7f;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 6px;
}

@media (max-width: 991px) {

    .featured-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 767px) {
    .featured-products-section {
        padding-top: 22px;
    }

    .featured-products-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 24px;
    }

    .featured-products-viewall {
        margin-top: 0;
        display: none;
    }

    .featured-products-grid {
        gap: 10px;
    }

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

    .featured-products-subtitle {
        font-size: 13px;
        letter-spacing: 1.6px;
    }

    .featured-product-title {
        font-size: 15px;
    }

    .featured-product-desc {
        min-height: auto;
        font-size: 13px;
    }

    .featured-products-container {
        margin: 0;
    }

    .featured-product-card {
        padding: 7px;
    }
}

/* --------------------------------- PRODUCT -------------------------------- */
/* ----------------------------------- ADV ---------------------------------- */
.container-advan {
    position: relative;
    margin-top: 50px;
    background-image: url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?auto=format&fit=crop&w=900&q=80');
    background-repeat: no-repeat;
    background-size: cover;
}

.container-advan::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    /* chỉnh độ tối ở đây */
    z-index: 1;
}

.container-advan>* {
    position: relative;
    z-index: 2;
}

.advantages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 60px 0px;
}

.advan {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    color: white;
}

.advan i {
    font-size: 40px;
}

.advan .title-advan {
    font-size: 20px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .advan i {
        font-size: 30px;
    }

    .advantages {
        grid-template-columns: repeat(2, 1fr);
    }

    .advan .title-advan {
        font-size: 17px;
        font-weight: bold;
    }

    .des-advan {
        font-size: 14px;
    }
}

/* ----------------------------------- ADV ---------------------------------- */
/* --------------------------------- REVIEW --------------------------------- */
.container-reviews {
    padding: 50px 0 20px 0px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 1. Định vị lại vùng chứa nút (để nút nằm đè lên slide hoặc sát mép) */
.swiper {
    padding: 40px 50px !important;
    /* Tạo khoảng trống 2 bên để hiện nút */
    position: relative;
}

/* 2. CSS biến nút thành hình tròn và nhỏ lại */
.swiper-button-next,
.swiper-button-prev {
    background-color: #ffffff;
    /* Màu nền nút */
    width: 60px !important;
    /* Chiều rộng nút */
    height: 60px !important;
    /* Chiều cao nút */
    border-radius: 50%;
    /* Bo tròn tuyệt đối */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* Đổ bóng nhẹ */
    border: 1px solid #eee;
    /* Viền mảnh */
    transition: all 0.3s ease;
}

/* 3. Chỉnh kích thước icon mũi tên bên trong nhỏ lại */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px !important;
    /* Kích thước mũi tên */
    font-weight: bold;
    color: #333;
    /* Màu mũi tên */
}

/* 4. Hiệu ứng khi di chuột vào (Hover) */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #333;
    border-color: #333;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: #fff;
}

/* 5. Căn chỉnh vị trí nút để không bị dính vào mép màn hình */
.swiper-button-prev {
    left: 5px !important;
}

.swiper-button-next {
    right: 5px !important;
}

/* 6. Tùy chỉnh thêm cho các chấm (dots) bên dưới */
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #333 !important;
    /* Màu chấm khi đang ở slide đó */
    width: 20px;
    /* Làm chấm đang chọn dài ra một chút (optional) */
    border-radius: 5px;
}

.swiper {
    width: 100%;
    padding-bottom: 50px;
    /* Chừa chỗ cho dots */
}

.a-review {
    padding: 25px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    background: #fff;
    margin: 10px;
    /* Tạo khoảng cách để không bị dính box-shadow */
    height: auto;
}

.star {
    color: gold;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.content-review {
    color: gray;
    padding: 15px 0;
    min-height: 80px;
}

.user {
    font-weight: bold;
}

.user-address {
    color: #999;
    font-size: 0.9em;
}

/* Tùy chỉnh màu sắc nút và dots */
.swiper-button-next,
.swiper-button-prev {
    color: #333;
    transform: scale(0.7);
    /* Thu nhỏ nút một chút */
}

.swiper-pagination-bullet-active {
    background: #333;
}

/* --------------------------------- REVIEW --------------------------------- */
.commitment-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 52px 6%;
    background: url("https://images.unsplash.com/photo-1617038220319-276d3cfab638?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
    overflow: hidden;
}

/* overlay */
.commitment-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    /* chỉnh độ mờ ở đây */
    z-index: 1;
}

/* đảm bảo content nằm trên overlay */
.commitment-hero>* {
    position: relative;
    z-index: 2;
    color: #fff;
}
@media screen and (max-width: 575px){
    .container-reviews .a-review, .container-reviews .swiper {
        padding: 15px !important;
    }
    .content-review{
        font-size: 15px;
    }
    .swiper-button-next{
        right: -4px !important;
    }
    .swiper-button-prev{
        left: -4px !important;
    }
    .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
        bottom: 0px !important;
    }
}
.footer-minhtam-bottom{
    text-align: center;
}

.price-bac {
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
    background-color: white;
    line-height: 30px;
    margin: 50px 0px;
}
@media screen and (max-width: 575px){
    .price-bac{
        padding: 10px;
        margin: 30px 0px;
    }
    .price-bac table{
        line-height: 15px;
        font-size: 11px;
        margin: 10px 0px;
    }
    .section-title{
        font-size: 21px;
        margin-bottom: 10px;
    }
    .section-time{
        font-size: 15px;
    }
}