/* =============================== begin header =============================== */
/* General Body Styles */
body {
    font-family: 'Noto Serif JP';
    margin: 0;
    padding: 0;
    line-height: 150%;
}

.font-size--18{
    font-size: 18px !important;
}

.flex-row-reverse{
    flex-direction: row-reverse ;
}

.bg--F5F5F5{
    background: #F5F5F5 !important;
}

/* Utility Classes: Desktop Only & Mobile Only */
.desktop-only {
    display: block;
}

.desktop-only.desktop-only--flex {
    display: flex;
}

.desktop-only.desktop-only--inline {
    display: inline;
}

.desktop-only.desktop-only--inline-block {
    display: inline-block;
}

.mobile-only {
    display: none;
}

/* breacum */
.contact-section-banner {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.contact-section-banner .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-section-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.contact-section-banner-content .section-title {
    color: #FFFFFF;
}

.contact-section-breadcrumb {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

/* =============================== Header Styles =============================== */
.top-header {
    background: #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
    padding: 20px 0;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
}

.header-container {
    max-width: 100%;
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 1;
    min-width: 300px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.header-logo:hover {
    opacity: 0.8;
}

.logo-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-title {
    font-size: 32px;
    font-weight: 700;
    color: #FE4BA0;
    margin: 0; 
    line-height: 1.5;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
}
.logo-title::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -15px;
    width: 19px;
    height: 18px;
    background-image: url('../images/icons/star-pink.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.logo-title::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: -7px;
    width: 8px;
    height: 10px;
    background-image: url('../images/icons/star-pink.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.logo-location {
    font-size: 14px;
    color: #FE4BA0;
    margin: 0;
    line-height: 1.2;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    color: #7B7B7B;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    padding: 8px 4px;
    transition: color 0.2s ease;
    font-family: 'Noto Sans JP', sans-serif;
    white-space: nowrap;
}

.nav-link:hover {
    color: #FE4BA0;
}

.nav-link.active {
    color: #FE4BA0;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 700;
    display: inline-block;
}

.nav-separator {
    background: #FE4BA0;
    width: 6px;
    height: 6px;
    border-radius: 99%;
    display: inline-block;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-icon {
    width: 30px;
    height: 3px;
    background: #FE4BA0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #E0E0E0;
    background: #FFFFFF;
    gap: 16px;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    flex: 1;
    min-width: 0;
}

.mobile-logo-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-logo-icon-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

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

.mobile-logo-title {
    font-size: 14px;
    font-weight: 700;
    color: #FE4BA0;
    margin: 0;
    line-height: 1.5;
    font-family: 'Noto Sans JP', sans-serif;
    white-space: nowrap;
    overflow: visible;
}

.mobile-logo-location {
    font-size: 12px;
    color: #FE4BA0;
    margin: 0;
    line-height: 1.2;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
    white-space: nowrap;
    overflow: visible;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close-icon {
    font-size: 40px;
    color: #FE4BA0;
    font-weight: 300;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 0;
    max-width: 100%;
}

.mobile-menu-link {
    color: #7B7B7B;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    transition: color 0.2s ease;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    width: auto;
    display: inline-block;
    line-height: 1.5;
}

.mobile-menu-link:hover {
    color: #FE4BA0;
}

.mobile-menu-link.active {
    color: #FE4BA0;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    font-weight: 700;
}

.mobile-menu-separator {
    background: #FE4BA0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: block;
    margin: 8px 0;
    flex-shrink: 0;
}

/* =============================== Mobile Responsive Styles =============================== */
@media (max-width: 1024px) {
    .header-nav {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
    }
    
    .header-logo {
        min-width: auto;
        flex: 0 0 auto;
        width: auto;
    }
    
    .header-nav {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .logo-title {
        font-size: 16px;
    }
    
    .logo-location {
        font-size: 12px;
    }
    
}

@media (max-width: 480px) {
    .header-container {
        padding: 12px 16px;
    }
    
    .logo-title {
        font-size: 14px;
    }
    
    .logo-location {
        font-size: 11px;
    }
    
    
    .mobile-menu-icon {
        width: 24px;
        height: 2.5px;
    }
}

/* =============================== Home Banner Styles =============================== */
.home-banner {
    width: 100%;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-bg-image-mobile {
    display: none;
}

.banner-bg-image-desktop {
    display: block;
}

.banner-container {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.banner-content {
    flex: 0 0 66.666%;
    max-width: 66.666%;
    padding: 80px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-text-wrapper {
    position: relative;
    max-width: 1000px;
}

.banner-headline {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 30px 0;
    line-height: 1.5;
    font-family: 'Noto Sans JP', sans-serif;
}

.banner-subheadline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.subheadline-text {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
}

.subheadline-location {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
}

.banner-text-block {
    background: rgba(255, 214, 232, 0.9);
    border-radius: 12px;
    padding: 30px 40px;
    margin-top: 20px;
}

.banner-text-block p {
    font-size: 28px;
    line-height: 1.5;
    font-weight: 500;
    color: #000000;
    margin: 0 0 16px 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.banner-text-block p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    color: #FE4BA0;
    font-weight: 600;
}

/* =============================== Content Banner Block Styles =============================== */
.content-banner {
    width: 100%;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.content-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content-banner-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.content-banner-container {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 60px 100px;
    max-width: 1200px;
    box-sizing: border-box;

}

.content-banner-title {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    letter-spacing: 2px;
    margin: 0 100px;
}

/* =============================== Banner Breadcrumb Styles =============================== */
.banner-breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 0px; 
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.breadcrumb-link {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #FF8DD0;
}

.breadcrumb-link.breadcrumb-home {
    color: #FE4BA0;
}

.breadcrumb-text {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    font-family: 'Noto Sans JP', sans-serif;
}

.breadcrumb-separator {
    background: #7B7B7B;
    width: 12px;
    height: 12px;
    border-radius: 99%;
    display: inline-block;
}

.breadcrumb-separator svg {
    width: 9px;
    height: 14px;
}

.breadcrumb-dot {
    width: 6px;
    height: 6px;
    background: #666666;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    margin: 0 4px;
}

/* =============================== Home Features Section Styles =============================== */
.home-features {
    width: 100%;
    background: #FFFFFF;
    padding: 48px 0;
}

.features-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.features-top-box {
    border-radius: 12px;
    padding: 0px;
    margin-bottom: 24px;
    display: inline-block;
    border: 2px solid #F77DC2;
}

.features-top-title {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.4;
    font-family: 'Noto Sans JP', sans-serif;
}

.features-main-text {
    margin-bottom: 20px;
}

.features-main-text p {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    line-height: 1.5;
    margin: 0;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.features-main-text p span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-main-text p span .ai-select-icon {
    display: inline-block;
    vertical-align: sub;
    align-self: center;
    flex-shrink: 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;

}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-text {
    font-size: 24px;
    line-height: 1.5;
    color: #434343;
    font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif;
    flex: 1;
}

.features-bottom-box {
    border: 2px solid #F77DC2;
    border-radius: 12px;
    padding: 0px;
    margin-top: 20px;
}

.features-bottom-text {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.5;
    margin: 0 0 8px 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.features-bottom-text:last-child {
    margin-bottom: 0;
}

/* =============================== Button Styles =============================== */
.block-title-pink {
    display: inline-block;
    background: #F77DC2;
    border: 2px solid #FFFFFF;
    border-radius: 10px;
    padding: 10px;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0;
}

/* =============================== Home Ranking Section Styles =============================== */
.home-ranking {
    width: 100%;
    background: #F5E6F0;
    padding: 60px 0;
}

.ranking-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.ranking-title-box {
    margin-bottom: 30px;
    border: 2px solid #F77DC2;
    border-radius: 10px;
}

.ranking-description {
    margin-bottom: 40px;
    text-align: center;
}

.ranking-description-text{
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    line-height: 1.5;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.ranking-description-subtext{
    font-size: 24px;
    font-weight: 500;
    color: #434343;
    line-height: 1.5;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
}

.ranking-list {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    box-sizing: border-box;
    overflow: hidden;
}

/* Top 1 - Special Structure */
.ranking-first-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    background: #FA309B;
    padding: 32px;
    border-radius: 16px;
    box-sizing: border-box;
}

.ranking-first-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ranking-first-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.ranking-card {
    background: #FF69B9;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
    text-decoration: none;
}

.ranking-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.ranking-card-horizontal {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

.card-image {
    max-width: 250px;
    max-height: 130px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    box-sizing: border-box;

}

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

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

.card-content-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.card-title {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.4;
    font-family: 'Noto Sans JP' ;
    display: inline-block;
    position: relative;
    -webkit-text-stroke: 2px #7B4B7B;
  paint-order: stroke fill;
}

.card-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -20px;
    width: 19px;
    height: 24px;
    background-image: url('../images/icons/star-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.card-title::after {
    content: '';
    position: absolute;
    top: 10px;
    left: -11px;
    width: 11px;
    height: 14px;
    background-image: url('../images/icons/star-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-features li {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    font-family: 'Noto Sans JP', sans-serif;
}

.card-promo {
    font-size: 14px;
    color: #666666;
    margin: 8px 0 4px 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.card-discount {
    font-size: 32px;
    font-weight: 700;
    color: #F77DC2;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.discount-off {
    font-size: 20px;
    vertical-align: super;
}

.card-image-right {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background: #FFFFFF;
    margin-left: auto;
}

.card-image-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-arrow {
    right: 20px;
    bottom: 30px;
    font-size: 24px;
    color: #F77DC2;
    position: absolute;
}

/* Top 2-10 - Standard Structure */
.ranking-item {
    display: flex;
    align-items: center;
    gap: 40px;
    border-radius: 12px;
    padding: 16px 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    text-decoration: none;
}

.background-ranking-item {
    background:#FFAFDF;
}
.background-ranking-item--FFDBF2 {
    background: #FFDBF2;

}
.background-ranking-item--FFFFFF {
    background: #FFFFFF;

}

.ranking-item:hover {
    background: #FFD6E8;
    transform: translateX(4px);
}

.ranking-badge img{
    max-width: 95px;
    max-height: 57px;
 
}

.ranking-content {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.ranking-text {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.5;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    paint-order: stroke fill;
}

.stroke-text--410226 {
    -webkit-text-stroke: 2px #410226;
    paint-order: stroke fill;
}

.text-stroke--BF3370 {
    -webkit-text-stroke: 2px #BF3370;
    paint-order: stroke fill;
}

.stroke-text--004964 {
    -webkit-text-stroke: 2px #004964;
    paint-order: stroke fill;
}

.stroke-text--FE4BA0 {
    -webkit-text-stroke: 2px #FE4BA0;
    paint-order: stroke fill;
}

.stroke-text--00335B {
    -webkit-text-stroke: 2px #00335B;
    paint-order: stroke fill;
    color: #F4DA04;
}

.stroke-text--F2096C {
    -webkit-text-stroke: 3px #F2096C;
    paint-order: stroke fill;
    position: relative;
}
/* Lớp viền ngoài */
.stroke-text--F2096C::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    -webkit-text-stroke: 8px #FE4BA0; /* Viền hồng nhạt */
    z-index: -1;
    color: transparent;
}
.text-color--00C2E9 {
    color: #00C2E9;
}
.text-color--434343 {
    color: #434343;
}
.text-color--FE4BA0 {
    color: #FE4BA0;
}
.text-color--93397B {
    color: #93397B;
}
.text-color--410226 {
    color: #410226;
}
.text-color--004964 {
    color: #004964;
}
.text-color--black {
    color: #000000;
}
.text-gradient-pink-orange {
    background: linear-gradient(135deg, #EE5770 50%, #FF7840 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
}

/* .ranking-text::before {
    content: '';
    position: absolute;
    top: 0px;
    left: -15px;
    width: 14px;
    height: 17px;
    background-image: url('../images/icons/star-pink.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.ranking-text::after {
    content: '';
    position: absolute;
    top: 15px;
    left: -10px;
    width: 8px;
    height: 10px;
    background-image: url('../images/icons/star-pink.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
} */

/* =============================== Gradient Text Styles =============================== */
.ranking-chevron {
    font-size: 24px;
    color: #666666;
    font-weight: 700;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    flex-shrink: 0;
}

.ranking-chevron .card-arrow {
    position: static;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.ranking-chevron svg {
    display: block;
    opacity: 1;
    visibility: visible;
}

.ranking-button-wrapper {
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: end;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn-see-more {
    display: inline-block;
    border-radius: 12px;
    color: #009BE3;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}


.ranking-footer-text {
    text-align: left;
    width: 100%;
    font-size: 24px;
    font-weight: 500;
    color: #434343;
    line-height: 1.5;
    font-family: 'Noto Sans JP', sans-serif;
    box-sizing: border-box;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.ranking-footer-text p {
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    line-height: 1.8;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.ranking-icon-pink-check {
    list-style: none; /* Bỏ bullet mặc định */
    padding-left: 0 !important;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 500;
}

.ranking-icon-pink-check > li {
    position: relative;
    padding-left: 28px; /* Khoảng cách cho icon */
    display: flex;
    align-items: center;
    gap: 10px;
}

.ranking-icon-pink-check > li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 18px;
    background-image: url('../images/icons/icon-check-pink.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* =============================== Home Blog Section Styles =============================== */
.home-blog {
    width: 100%;
    background: #FFFFFF;
}

.blog-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 0px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    box-sizing: border-box;
}

.blog-image-wrapper {
    flex: 0 0 400px;
    max-width: 400px;
}

.blog-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.blog-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-title {
    font-size: 32px;
    font-weight: 700;
    color: #FE4BA0;
    margin: 0;
    line-height: 1.5;
    font-family: 'Noto Sans JP', sans-serif;
}

.blog-intro {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-intro p {
    font-size: 24px;
    font-weight: 500;
    color: #434343;
    line-height: 1.5;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.blog-list {
    margin: 0;
    padding: 0;
}

.blog-conclusion {
    display: flex;
    flex-direction: column;
}

.blog-conclusion p {
    font-size: 24px;
    font-weight: 500;
    color: #434343;
    line-height: 1.8;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.flex-direction-reverse {
    flex-direction: row-reverse;
}

/* =============================== Home Column Section Styles =============================== */
.home-column {
    width: 100%;
    background: #FFFFFF;
    padding: 80px 0;
}

.column-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;

}

.column-header {
    text-align: center;
    margin-bottom: 50px;
}

.column-main-title {
    font-size: 40px;
    font-weight: 700;
    color: #FE4BA0;
    margin: 0 0 16px 0;
    line-height: 1.5;
    font-family: 'Noto Sans JP', sans-serif;
}

.column-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #F77DC2;
    margin: 0;
    line-height: 1.4;
    font-family: 'Noto Sans JP', sans-serif;
}

.column-section {
    margin-bottom: 50px;
}

.column-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #E60012;
    margin: 0 0 24px 0;
    line-height: 1.4;
    font-family: 'Noto Sans JP', sans-serif;
}

.column-description {
    margin-bottom: 40px;
}

.column-description p {
    font-size: 24px;
    font-weight: 400;
    color: #2E2E2E;
    line-height: 1.5;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
}

.column-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.column-article-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.column-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.article-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-logo {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 2;
}

.logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #00B4E6;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
}

.article-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-meta {
    margin-bottom: 8px;
}

.article-date {
    font-size: 14px;
    font-weight: 500;
    color: #828282;
    font-family: 'Noto Sans JP', sans-serif;
}

.article-title {
    font-size: 24px;
    font-weight: 700;
    color: #1C1C1C;
    margin: 0;
    line-height: 1.5;
    font-family: 'Noto Sans JP', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-excerpt {
    font-size: 20px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-author,
.article-affiliation {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    color: #FE4BA0;
    line-height: 1.0;
}

.article-author{
    justify-content: end;
    align-items: center;
}

.author-icon,
.affiliation-icon {
    font-size: 16px;
    color: #00C853;
}

.column-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.column-button-wrapper-inner {
    border: 2px solid #FE4BA0;
    border-radius: 99px;
    padding: 1px;
}
.btn-column-more {
    display: inline-block;
    background: #FE4BA0;
    border: none;
    border-radius: 99px;
    padding: 10px;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.btn-column-more:hover {
    background: #FF8DD0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* =============================== Home Ranking Guide Section Styles =============================== */
.home-ranking-guide{
    width: 100%;  
    padding: 30px 40px;
    box-sizing: border-box;
}

.ranking-guide-content-wrapper{
    width: 100%;
    max-width: 100%;
    padding: 48px 0;
    border-radius: 24px;
    background: #FE4BA0;
    margin: 0;
    box-sizing: border-box;
}

.ranking-guide-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.ranking-guide-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 48px 0;
    line-height: 1.5;
    font-family: 'Noto Sans JP', sans-serif;
}

.ranking-guide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
    align-items: stretch;
}

.ranking-guide-left {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.guide-text-block {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.guide-text-block p {
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.5;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.ranking-guide-right {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.guide-cta-box {
    background: #FE4BA0;
    border: 2px solid #FFFFFF;
    border-radius: 24px;
    padding: 24px 0px;
    width: 100%;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 20px 0;
    line-height: 1.5;
    font-family: 'Noto Sans JP', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding-left: 0;
    color: #FFFFFF;

}

.cta-title-bar {
    display: inline-block;
    width: 4px;
    height: 24px;
    background: #12C06C;
    flex-shrink: 0;
    border-radius: 90px;
}

.cta-content {
    margin-top: 20px;
    padding: 0 24px;

}

.cta-content p {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.ranking-guide-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    margin-bottom: 32px;
    width: 100%;
    max-width: 100%;
}

.nav-hint-text {
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    color: #FE4BA0;
    font-family: 'Noto Sans JP', sans-serif;
}

/* =============================== Footer Styles =============================== */
.main-footer {
    width: 100%;
    background: #2E2E2E;
    padding: 48px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-title {
    font-size: 32px;
    font-weight: 700;
    color: #FE4BA0;
    margin: 0;
    line-height: 1.5;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
}

.footer-title::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -12px;
    width: 14px;
    height: 17px;
    background-image: url('../images/icons/star-pink.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: -8px;
    width: 8px;
    height: 10px;
    background-image: url('../images/icons/star-pink.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.footer-location {
    font-size: 24px;
    font-weight: 500;
    color: #FE4BA0;
    margin: 0;
    line-height: 1.2;
    font-family: 'Noto Sans JP', sans-serif;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.footer-info-line {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-icon {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
}

.footer-info-text {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    font-family: 'Noto Sans JP', sans-serif;
    white-space: nowrap;
}

.footer-links-line {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-link {
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #FE4BA0;
}

.footer-dot {
    width: 6px;
    height: 6px;
    background: #FE4BA0;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.border-bottom--1{
    width: 100%;
    height: 1px;
    background: #C4C4C4;
    margin: 24px 0;
}

.m-0{
    margin: 0 !important;
}

/* =============================== Sticky Footer Styles =============================== */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, #FFF6FA 0%, #FFFFFF 25%, #FFFFFF 75%, #FFF6FA 100%);
    padding: 20px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #E0E0E0;
}

.sticky-footer.show {
    transform: translateY(0);
}

.sticky-footer.hide {
    transform: translateY(100%);
}

.sticky-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 100px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.sticky-footer-left {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-footer-woman {
    width: auto;
    height: 120px;
    object-fit: contain;
    object-position: center;
}

.sticky-footer-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.sticky-footer-text {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.5;
    font-family: 'Noto Sans JP', sans-serif;
}

.sticky-footer-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-footer-ranking-btn-wrapper{
    border: 2px solid #FE4BA0;
    border-radius: 50px;
}

.sticky-footer-ranking-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(to bottom, #FF6B9D, #FF4785);
    border: 2px solid #ffffff;
    border-radius: 50px;
    padding: 12px 24px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}


.sticky-footer-arrow-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.sticky-footer-ranking-text {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Noto Sans JP', sans-serif;
    white-space: nowrap;
}

/* =============================== Notification Popup =============================== */
.notification-popup {
    position: fixed;
    bottom: 175px;
    right: 10px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(120%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    pointer-events: none;
  }
  
  .notification-popup.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
  
  .notification-popup-content {
    background: #ffffff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-width: 340px;
    max-width: 480px;
    position: relative;
  }
  
  .notification-medal {
    flex-shrink: 0;
  }
  
  .medal-icon-popup {
    width: 24px;
    height: 20px;
    object-fit: contain;
    transform: rotate(15deg);
  }
  
  .notification-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .notification-text p {
    font-size: 18px;
    line-height: 1.5;
    color: #1C1C1C;
    font-weight: 400;
    margin: 0;
  }
  
  .notification-link {
    color: #0070c9;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    align-self: flex-end;
    margin-top: 12px;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
  }
  
  .notification-highlight {
    color: #c5b100;
    font-weight: 700;
  }
  
  .notification-phone-icon {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
  }
  
  .notification-link:hover {
    color: #045a54;
    text-decoration: underline;
  }

  .notification-link-label{
    text-decoration: underline;
  }