.imageye-selected {
    outline: 2px solid black !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5) !important;
}

:root {
    --bprogress-color: #39b54a;
    --bprogress-height: 4px;
    --bprogress-spinner-size: 18px;
    --bprogress-spinner-animation-duration: 400ms;
    --bprogress-spinner-border-size: 2px;
    --bprogress-box-shadow: 0 0 10px #39b54a, 0 0 5px #39b54a;
    --bprogress-z-index: 99999;
    --bprogress-spinner-top: 15px;
    --bprogress-spinner-bottom: auto;
    --bprogress-spinner-right: 15px;
    --bprogress-spinner-left: auto;
}

.bprogress {
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: var(--bprogress-z-index);
}

.bprogress .bar {
    background: var(--bprogress-color);
    position: fixed;
    z-index: var(--bprogress-z-index);
    top: 0;
    left: 0;
    width: 100%;
    height: var(--bprogress-height);
}

/* Fancy blur effect */
.bprogress .peg {
    display: block;
    position: absolute;
    right: 0;
    width: 100px;
    height: 100%;
    box-shadow: var(--bprogress-box-shadow);
    opacity: 1.0;
    transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
.bprogress .spinner {
    display: block;
    position: fixed;
    z-index: var(--bprogress-z-index);
    top: var(--bprogress-spinner-top);
    bottom: var(--bprogress-spinner-bottom);
    right: var(--bprogress-spinner-right);
    left: var(--bprogress-spinner-left);
}

.bprogress .spinner-icon {
    width: var(--bprogress-spinner-size);
    height: var(--bprogress-spinner-size);
    box-sizing: border-box;
    border: solid var(--bprogress-spinner-border-size) transparent;
    border-top-color: var(--bprogress-color);
    border-left-color: var(--bprogress-color);
    border-radius: 50%;
    -webkit-animation: bprogress-spinner var(--bprogress-spinner-animation-duration) linear infinite;
    animation: bprogress-spinner var(--bprogress-spinner-animation-duration) linear infinite;
}

.bprogress-custom-parent {
    overflow: hidden;
    position: relative;
}

.bprogress-custom-parent .bprogress .spinner,
.bprogress-custom-parent .bprogress .bar {
    position: absolute;
}

.bprogress .indeterminate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--bprogress-height);
    overflow: hidden;
}

.bprogress .indeterminate .inc,
.bprogress .indeterminate .dec {
    position: absolute;
    top: 0;
    height: 100%;
    background-color: var(--bprogress-color);
}

.bprogress .indeterminate .inc {
    animation: bprogress-indeterminate-increase 2s infinite;
}

.bprogress .indeterminate .dec {
    animation: bprogress-indeterminate-decrease 2s 0.5s infinite;
}

@-webkit-keyframes bprogress-spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes bprogress-spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes bprogress-indeterminate-increase {
    from {
        left: -5%;
        width: 5%;
    }

    to {
        left: 130%;
        width: 100%;
    }
}

@keyframes bprogress-indeterminate-decrease {
    from {
        left: -80%;
        width: 80%;
    }

    to {
        left: 110%;
        width: 10%;
    }
}

/* Pharmacity Banner Styles */
.pharmacity-banner {
    width: 100%;
    background-color: #006030; /* Màu xanh đậm */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    gap: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.pharmacity-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.text-main {
    font-size: 12px;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    letter-spacing: 0.2px;
}

.text-sub {
    font-size: 12px;
    font-weight: 400;
    color: white;
    line-height: 1.2;
    opacity: 0.95;
}

.pharmacity-button {
    flex-shrink: 0;
    background-color: white;
    color: #006030;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 10px;
    border: none;
    border-radius: 999px; /* Hình viên thuốc */
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pharmacity-button:hover {
    background-color: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.pharmacity-button:active {
    background-color: #e8e8e8;
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Header Logo Styles */
.header-logo {
    height: auto;
    width: 150px;
    max-width: 150px;
    object-fit: contain;
}

.header-bg {
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
}

/* Header Icon Styles */
.header-icon-button {
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-icon-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.header-icon-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.header-icon-svg {
    width: 20px;
    height: 20px;
    color: #006030;
}

.visible-header-bottom {
    margin: 10px 0;
}

.brand-name {
    color: #006030;
}

/* Hotline Icon Styles */
.hotline-icon-wrapper {
    width: 32px;
    height: 32px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hotline-icon-svg {
    width: 18px;
    height: 18px;
    color: #006030;
}

/* Chat Icon Styles */
.chat-icon-wrapper {
    width: 32px;
    height: 32px;
    background-color: #006030;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-icon-svg {
    width: 18px;
    height: 18px;
    color: white;
}

.disease-detail {
    background-color: #328744;
    overflow: visible;
}

/* Disease Carousel Styles */
.disease-carousel-container.swiper {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    overflow: hidden;
    position: relative;
    touch-action: pan-x pan-y pinch-zoom;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.disease-carousel-container .swiper-wrapper {
    display: flex;
    align-items: stretch;
    will-change: transform;
    position: relative;
    transition-property: transform;
    transform: translate3d(0px, 0px, 0px);
}

.disease-card-item.swiper-slide {
    width: auto;
    min-width: 140px;
    max-width: 160px;
    height: auto;
    flex-shrink: 0;
    display: flex;
    box-sizing: border-box;
}

.disease-card-item.swiper-slide a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Disease Carousel Navigation Buttons */
.disease-nav-prev,
.disease-nav-next {
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
}

.disease-nav-prev {
    left: 4px;
}

.disease-nav-next {
    right: 4px;
}

.disease-nav-prev:hover,
.disease-nav-next:hover {
    background-color: #f5f5f5;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.disease-nav-prev::after,
.disease-nav-next::after {
    font-size: 16px;
    font-weight: 700;
    color: #006030;
}

.disease-nav-prev::after {
    content: '‹';
}

.disease-nav-next::after {
    content: '›';
}

.disease-nav-prev.swiper-button-disabled,
.disease-nav-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Disease Section Header Styles */
.disease-banner-container {
    position: relative;
}

.disease-section-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px;
    width: 60%;
}

.disease-heading {
    font-size: 18px;
    font-weight: 700;
    color: #f0a500;
    line-height: 1.4;
    margin-bottom: 4px;
}

.disease-subheading {
    font-size: 13px;
    font-weight: 400;
    color: white;
    line-height: 1.4;
    opacity: 0.9;
    margin-bottom: 4px;
}

.disease-view-all-btn {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.2s ease;
    white-space: nowrap;
    margin-top: 0;
}

.disease-view-all-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.color-yellow {
    color: #f0a500;
}

/* Hotline Text Styles */
.hotline-text {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.hotline-text .color-yellow {
    text-decoration: none;
    font-weight: 700;
}

/* Banner Slider Styles */
.banner-slider-container.swiper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
}

.banner-slider-container .swiper-slide {
    width: 100%;
    flex-shrink: 0;
}

.banner-slider-container .swiper-slide a {
    display: block;
    width: 100%;
}

/* Banner Navigation Buttons */
.banner-nav-prev,
.banner-nav-next {
    width: 36px !important;
    height: 36px !important;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
}

.banner-nav-prev {
    left: 8px;
}

.banner-nav-next {
    right: 8px;
}

.banner-nav-prev:hover,
.banner-nav-next:hover {
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.banner-nav-prev::after,
.banner-nav-next::after {
    font-size: 16px !important;
    font-weight: 700;
    color: white !important;
}

.banner-nav-prev::after {
    content: '‹' !important;
}

.banner-nav-next::after {
    content: '›' !important;
}

.banner-nav-prev.swiper-button-disabled,
.banner-nav-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Banner Pagination */
.banner-pagination {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 10;
}

.banner-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.banner-bullet-active {
    width: 20px;
    height: 6px;
    border-radius: 3px;
    background-color: white;
}

/* Certificate Icon Styles */
.certificate-icon-wrapper {
    width: 32px;
    height: 32px;
    background-color: #006030;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.certificate-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1); /* Chuyển SVG thành màu trắng */
    object-fit: contain;
}

/* Check Icon Styles */
.check-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(3000%) hue-rotate(130deg) brightness(0.3); /* Chuyển SVG thành màu xanh #006030 */
    object-fit: contain;
}

.fz-14 {
    font-size: 14px;
}

.fz-16 {
    font-size: 16px;
}

/* Disease Icon Styles */
.disease-icon-wrapper {
    width: 45px;
    height: 45px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.disease-icon-bg {
    width: 68%;
    height: 68%;
    border-radius: 50%;
    background: linear-gradient(180deg, #9bd5b8, #fff);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.disease-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* Tab Navigation Swiper Styles */
.tab-navigation-swiper {
    width: calc(100% - 16px);
    max-width: calc(100% - 16px);
    overflow: hidden !important;
    position: relative;
    box-sizing: border-box;
    margin: 0;
    margin-left: 16px;
    padding-left: 0;
    padding-right: 16px;
    padding-bottom: 12px;
}

/* Đảm bảo container cha không bị overflow */
.tab-navigation-swiper.swiper-container {
    overflow: hidden !important;
    max-width: 100% !important;
}

.tab-navigation-swiper .swiper-container {
    overflow: hidden !important;
    max-width: 100% !important;
}

.tab-navigation-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    width: auto;
    max-width: none;
}

.tab-navigation-swiper .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    max-width: none;
}

/* Tab Navigation Styles */
.tab-button {
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    color: white;
    text-align: center;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    background-color: #006030; /* Màu xanh đậm cho tab inactive */
    border: 2px solid #f0a500;
    min-width: fit-content;
}

.tab-button.active {
    background-color: #f0a500; /* Màu vàng cam cho tab active */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: #006030;
    font-weight: 700;
}

.tab-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Text "CHỌN ĐÚNG ĐỂ KHÔNG HIỂU SAI" Styles */
.choose-correct-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: 16px;
    margin-top: 5px;
}

.text-line {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
}

.text-line-white {
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.text-line-yellow {
    color: #f0a500;
    text-shadow: 3px 3px 6px rgba(200, 100, 0, 0.8);
}

/* Tab Type Product Styles */
.tab-type-product {
    margin-bottom: 10px;
    margin-left: 16px !important;
    margin-right: 0 !important;
}

/* Đảm bảo container cha của tab không bị overflow */
.bg-\[length\:100\%_auto\] {
    overflow-x: hidden !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.bg-green {
    background-color: #006030;
}

/* Treatment Plans Section Styles */
.treatment-plans-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.treatment-plans-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    background: linear-gradient(180deg, #f5f5f5 0%, #f8f8f8 30%, #fafafa 60%, #ffffff 100%);
    border-radius: 0;
}

/* Treatment Plans Header */
.treatment-plans-header {
    margin-bottom: 20px;
    padding-top: 10px;
}

.treatment-plans-title {
    font-size: 22px;
    font-weight: 700;
    color: #006030;
    text-align: center;
    line-height: 1.3;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
}

.treatment-plans-subtitle {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.subtitle-line {
    font-size: 14px;
    font-weight: 400;
    color: #222;
    letter-spacing: 0.5px;
}

.subtitle-separator {
    font-size: 16px;
    font-weight: 600;
    color: #006030;
    opacity: 0.6;
}

/* Treatment Tabs Swiper */
.treatment-tabs-swiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden !important;
    position: relative;
    box-sizing: border-box;
    margin: 0 0 20px 0;
    margin-left: 16px;
    padding-left: 0;
    padding-right: 16px;
    padding-bottom: 12px;
}

.treatment-tabs-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    width: auto;
    max-width: none;
}

.treatment-tabs-swiper .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    max-width: none;
}

/* Treatment Tab Button */
.treatment-tab-button {
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 400;
    color: #006030;
    text-align: center;
    border: 1px solid #006030;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    background-color: #ffffff;
    min-width: fit-content;
}

.treatment-tab-button.active {
    background-color: #fff;
    border: 1px solid #f0a500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #f0a500;
    font-weight: 700;
}

/* Treatment Tab Content */
.treatment-tab-content {
    display: none;
}

.treatment-tab-content.active {
    display: block;
}

/* Treatment Products Swiper */
.treatment-products-swiper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 4px;
}

.treatment-products-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.treatment-products-swiper .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}

/* Product Cards Swiper Styles */
.product-cards-swiper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 4px;
}

.product-cards-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.product-cards-swiper .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}

/* Why Choose Us Section Styles */
.why-choose-us-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0;
    background-color: #f1f1f1;
}

.why-choose-us-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 16px;
    position: relative;
}

/* Why Choose Us Header */
.why-choose-us-header {
    text-align: center;
    margin-bottom: 30px;
}

.why-choose-us-title {
    font-size: 22px;
    font-weight: 700;
    color: #006030;
    margin-bottom: 12px;
    line-height: 1.3;
}

.why-choose-us-description {
    font-size: 14px;
    font-weight: 400;
    color: #222;
    line-height: 1.5;
    max-width: 100%;
}

/* Why Choose Us Reasons Grid */
.why-choose-us-reasons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
}

/* Why Choose Us Card */
.why-choose-us-card {
    background-color: #fff;
    border: 1px solid #006030;
    border-radius: 16px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 150px;
    max-height: 150px;
    justify-content: space-between;
}

/* Why Choose Us Icon Styles */
.why-choose-us-icon-wrapper {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-choose-us-icon-bg {
    width: 68%;
    height: 68%;
    border-radius: 50%;
    background: linear-gradient(180deg, #9bd5b8, #fff);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.why-choose-us-icon-placeholder {
    width: 60px;
    height: 60px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-us-icon-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.why-choose-us-text {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
    margin-bottom: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.why-choose-us-link {
    font-size: 14px;
    font-weight: 400;
    color: #006030;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.why-choose-us-link:hover {
    color: #004020;
    text-decoration: underline;
}

/* FAQ Section Styles */
.faq-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0;
    background-color: #ffffff;
}

.faq-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 16px;
    position: relative;
}

.faq-title {
    font-size: 22px;
    font-weight: 700;
    color: #006030;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.3;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

/* FAQ Item */
.faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-item.active .faq-question {
    background-color: #f9f9f9;
}

/* FAQ Question Icon */
.faq-question-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.faq-item.active .faq-question-icon {
    background-color: #006030;
}

.faq-question-mark {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

/* FAQ Question Text */
.faq-question-text {
    flex: 1;
    font-size: 14px;
    font-weight: 400;
    color: #222;
    line-height: 1.5;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question-text {
    color: #006030;
    font-weight: 600;
}

/* FAQ Chevron */
.faq-chevron {
    width: 20px;
    height: 20px;
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: #006030;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 16px;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 16px 16px 16px;
}

.faq-answer p {
    font-size: 14px;
    font-weight: 400;
    color: #222;
    line-height: 1.6;
    margin: 0;
    padding-top: 8px;
}

/* Bottom Navigation Bar Styles */
.bottom-nav-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    height: 60px;
    background-color: #ffffff;
    border-top: 2px solid #f0a500;
    max-width: 640px;
    margin: 0 auto;
    padding: 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

/* Border xám phân tách */
.bottom-nav-divider {
    width: 1px;
    height: 80%;
    background-color: #d0d0d0;
    opacity: 0.5;
    flex-shrink: 0;
}

/* Phần Phone/SĐT - chiếm nhiều không gian nhất */
.bottom-nav-phone {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 2;
    padding: 0 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.bottom-nav-phone:hover {
    opacity: 0.8;
}

.bottom-nav-icon-phone {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

/* SVG icons màu cam #f0a500 */
.bottom-nav-icon-phone[src$=".svg"],
.bottom-nav-icon[src$=".svg"] {
    filter: invert(64%) sepia(97%) saturate(1751%) hue-rotate(1deg) brightness(104%) contrast(103%);
}

.bottom-nav-text-phone {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    white-space: nowrap;
    color: #f0a500;
}

/* Phần Zalo - nhỏ hơn */
.bottom-nav-zalo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    padding: 0 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.bottom-nav-zalo:hover {
    opacity: 0.8;
}

.bottom-nav-icon-zalo {
    width: 28px;
    height: 28px;
    filter: none;
    object-fit: contain;
}

/* Phần Go Top - nhỏ nhất */
.bottom-nav-gotop {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    padding: 0 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bottom-nav-gotop:hover {
    opacity: 0.8;
}

.bottom-nav-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.bottom-nav-text-secondary {
    font-size: 11px;
    font-weight: 400;
    color: #666;
    white-space: nowrap;
    text-align: center;
}

/* Footer Info Section */
.footer-info-section {
    background-color: #f5f5f5;
    padding: 20px 16px;
    border-top: 1px solid #e0e0e0;
}

.footer-info-container {
    max-width: 640px;
    margin: 0 auto;
}

.footer-section {
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.footer-section:last-child {
    border-bottom: none;
}

.footer-section-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
}

.footer-payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.footer-certification-badges {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-social-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

/* Icon Circle Placeholder */
.footer-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* background-color: #e0e0e0; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.footer-icon-circle-social {
    text-decoration: none;
    transition: transform 0.2s ease;
}

.footer-icon-circle-social:hover {
    transform: scale(1.1);
}

.footer-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.footer-cert-badge {
    width: 60px;
    height: 60px;
}

/* Footer Accordion */
.footer-accordion {
    margin-bottom: 24px;
}

.footer-accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.footer-accordion-item:last-child {
    border-bottom: none;
}

.footer-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    user-select: none;
}

.footer-accordion-header:hover {
    opacity: 0.8;
}

.footer-accordion-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.footer-accordion-chevron {
    font-size: 12px;
    color: #666;
    transition: transform 0.3s ease;
}

.footer-accordion-item.active .footer-accordion-chevron {
    transform: rotate(180deg);
}

.footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.footer-accordion-item.active .footer-accordion-content {
    max-height: 1000px;
    padding-bottom: 16px;
}

.footer-accordion-link {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-accordion-link:hover {
    color: #006030;
}

/* Company Information */
.footer-company-info {
    background-color: #f1faf5;
    padding: 20px 16px;
}

.footer-company-name {
    font-size: 16px;
    font-weight: 700;
    color: #006030;
    margin-bottom: 12px;
}

.footer-company-text {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-company-link {
    color: #0066cc;
    text-decoration: none;
}

.footer-company-link:hover {
    text-decoration: underline;
}

.footer-company-border {
    height: 2px;
    background-color: #f0a500;
    margin-top: 16px;
    width: 100%;
}

/* Floating Consultation Icon */
.floating-consultation-icon {
    position: fixed;
    bottom: 80px;
    right: 16px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.floating-consultation-icon:hover {
    transform: scale(1.05);
}

.floating-icon-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.floating-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.floating-icon-text {
    font-size: 11px;
    font-weight: 600;
    color: #0066cc;
    white-space: nowrap;
    text-align: center;
}


.news-title {
    font-size: 22px;
    font-weight: 700;
    color: #006030;
}

/* Desktop PC Layout Styles */
.disease-cards-grid {
    display: grid;
    gap: 16px;
}

.product-cards-grid {
    display: grid;
    gap: 16px;
}

.treatment-products-grid {
    display: grid;
    gap: 16px;
}

.health-news-grid {
    display: grid;
    gap: 16px;
}

.tab-navigation-desktop {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.treatment-tabs-desktop {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Desktop specific adjustments */
@media (min-width: 1024px) {
    .disease-cards-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .product-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .treatment-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .health-news-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .product-cards-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .treatment-products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .health-news-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}