/* Zoom media queries */
@media (min-width: 1513px) and (max-width: 1680px) {
    body {
        zoom: 0.875;
    }

    @supports (-moz-appearance: none) {
        body {
            zoom: 1;
        }

        #gitsite-wrapper {
            transform: scale(0.875);
            transform-origin: top left;
            width: calc(100% / 0.875);
        }
    }

    img,
    picture,
    video,
    canvas,
    svg {
        max-width: 100%;
        height: auto;
    }

    header,
    .site-header,
    .global-header {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        height: auto !important;
        min-height: 0 !important;
    }

    body,
    body * {
        -webkit-text-size-adjust: 100%;
        text-rendering: optimizeLegibility;
    }
}

@media (min-width: 1441px) and (max-width: 1512px) {
    body {
        zoom: 0.788;
    }

    @supports (-moz-appearance: none) {
        body {
            zoom: 1;
        }

        #gitsite-wrapper {
            transform: scale(0.788);
            transform-origin: top left;
            width: calc(100% / 0.788);
        }
    }

    img,
    picture,
    video,
    canvas,
    svg {
        max-width: 100%;
        height: auto;
    }

    header,
    .site-header,
    .global-header {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        height: auto !important;
        min-height: 0 !important;
    }

    body,
    body * {
        -webkit-text-size-adjust: 100%;
        text-rendering: optimizeLegibility;
    }
}

@media (min-width: 1369px) and (max-width: 1440px) {
    body {
        zoom: 0.75;
    }

    @supports (-moz-appearance: none) {
        body {
            zoom: 1;
        }

        #gitsite-wrapper {
            transform: scale(0.75);
            transform-origin: top left;
            width: calc(100% / 0.75);
        }
    }

    img,
    picture,
    video,
    canvas,
    svg {
        max-width: 100%;
        height: auto;
    }

    header,
    .site-header,
    .global-header {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        height: auto !important;
        min-height: 0 !important;
    }

    body,
    body * {
        -webkit-text-size-adjust: 100%;
        text-rendering: optimizeLegibility;
    }
}

@media (min-width: 1281px) and (max-width: 1368px) {
    body {
        zoom: 0.71;
    }

    @supports (-moz-appearance: none) {
        body {
            zoom: 1;
        }

        #gitsite-wrapper {
            transform: scale(0.71);
            transform-origin: top left;
            width: calc(100% / 0.71);
        }
    }

    img,
    picture,
    video,
    canvas,
    svg {
        max-width: 100%;
        height: auto;
    }

    header,
    .site-header,
    .global-header {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        height: auto !important;
        min-height: 0 !important;
    }

    body,
    body * {
        -webkit-text-size-adjust: 100%;
        text-rendering: optimizeLegibility;
    }
}

/* Responsive for smaller screens */
@media (max-width: 1024px) {
    /* Utility Classes: Desktop Only & Mobile Only */
    .desktop-only,
    .desktop-only.desktop-only--flex,
    .desktop-only.desktop-only--inline,
    .desktop-only.desktop-only--inline-block {
        display: none !important;
    }

    .mobile-only {
        display: block;
    }

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

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

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

    .home-banner {
        min-height: 500px;
    }

    .banner-container {
        min-height: 500px;
    }

    .subheadline-text {
        font-size: 36px;
    }

    .subheadline-location {
        font-size: 40px;
    }

    .home-ranking {
        padding: 50px 0;
    }

    .ranking-container {
        padding: 0 40px;
    }

    .ranking-description p {
        font-size: 18px;
    }

    .ranking-first-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ranking-item {
        padding: 14px 20px;
    }

    .ranking-badge {
        padding: 6px 12px;
        font-size: 18px;
    }

    .ranking-text {
        font-size: 18px;
    }

    .btn-see-more {
        padding: 16px 40px;
        font-size: 22px;
    }
    .ranking-footer-text p{
        color: #434343;
    }
}

@media (max-width: 768px) {
    /* Header */
    .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;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-title {
        font-size: 16px;
    }
    
    .logo-location {
        font-size: 12px;
    }
    
    .nav-link {
        font-size: 13px;
    }

    /* Banner */
    .home-banner {
        min-height: auto;
        position: relative;
    }

    .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-desktop {
        display: none;
    }

    .banner-bg-image-mobile {
        display: block;
        object-fit: cover;
        object-position: 80% 0%;
        height: 150%;
        width: 100%;
        top: -25%;
        position: relative;
    }

    .banner-content {
        padding: 0;
        width: 100%;
        max-width: 100%;
        flex: 1;
        box-sizing: border-box;
    }

    .banner-text-wrapper {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }

    .banner-headline {
        font-size: 32px;
        margin-bottom: 12px;
        line-height: 1.4;
        width: auto;
        padding: 0;
    }

    .banner-subheadline {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 16px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .subheadline-text {
        font-size: 20px;
        display: block;
    }

    .subheadline-location {
        font-size: 20px;
        display: block;
        flex-basis: 100%;
        width: 100%;
    }

    .banner-text-block {
        padding: 12px 8px;
        background: #FFF2F8;
    }

    .banner-text-block p {
        font-size: 16px;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    /* Ranking */
    .home-ranking {
        padding: 40px 0;
    }

    .ranking-container {
        padding: 0 30px;
    }

    .ranking-title-box {
        margin-bottom: 24px;
    }

    .ranking-description {
        margin-bottom: 30px;
    }

    .ranking-description p {
        font-size: 16px;
    }

    .ranking-list {
        gap: 10px;
        margin-bottom: 30px;
    }

    .crown-icon {
        font-size: 20px;
    }

.ranking-first-badge img,
    .ranking-badge img{
        width: 54px;
        height: 32px;
    }

    .ranking-first-wrapper{
        padding: 20px 16px;
        gap: 12px;
    }

    .ranking-button-wrapper{
        margin-bottom: 12px;
    }

    .badge-text {
        font-size: 24px;
    }

    .ranking-first-cards {
        gap: 12px;
    }

    .ranking-card {
        padding: 16px;
    }

    .card-image {
        height: 160px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-discount {
        font-size: 28px;
    }

    .ranking-item {
        padding: 12px 18px;
        gap: 12px;
    }

    .ranking-badge {
        padding: 6px 12px;
        font-size: 16px;
    }

    .ranking-text {
        font-size: 16px;
    }

    .ranking-chevron {
        font-size: 20px;
    }

    .btn-see-more {
        padding: 14px 36px;
        font-size: 20px;
    }

    .ranking-footer-text {
        padding: 0 10px;
    }

    /* Blog */
    .home-blog {
        padding: 40px 0;
    }

    .blog-container {
        flex-direction: column;
        padding: 0 30px;
        gap: 30px;
    }

    .blog-image-wrapper {
        flex: 1;
        max-width: 100%;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-content {
        gap: 24px;
    }

    .blog-intro p,
    .blog-conclusion p {
        font-size: 15px;
    }

    /* Column */
    .home-column {
        padding: 40px 0;
    }

    .column-wrapper {
        padding: 0 30px;
    }

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

    .column-main-title {
        font-size: 24px;
    }

    .column-subtitle {
        font-size: 20px;
    }

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

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

    .column-description p {
        font-size: 16px;
    }

    .column-articles {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .article-image-wrapper {
        height: 180px;
    }

    .btn-column-more {
        padding: 16px 40px;
        font-size: 20px;
    }

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

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

    /* Ranking Guide */
    .home-ranking-guide {
        padding: 40px 0 0 0;
        border-radius: 12px;
        margin: 20px 0 0 0;
    }

    .ranking-guide-container {
        padding: 0 30px;
    }

    .ranking-guide-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .ranking-guide-content {
        gap: 24px;
        margin-bottom: 30px;
        flex-direction: column;
        display: flex;
    }

    .guide-text-block {
        gap: 16px;
    }

    .guide-text-block p {
        font-size: 15px;
    }

    .guide-cta-box {
        padding: 20px;
    }

    .cta-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .cta-title-bar {
        height: 20px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .nav-hint-text {
        font-size: 16px;
    }

    .nav-arrow {
        font-size: 28px;
    }

    /* Footer */
    .main-footer {
        padding: 30px 0;
    }

    .footer-container {
        padding: 0 30px;
        gap: 24px;
    }

    .sticky-footer {
        padding: 16px 0;
    }

    .sticky-footer-container {
        padding: 0 30px;
        gap: 20px;
    }

    .sticky-footer-woman {
        height: 80px;
    }

    .sticky-footer-text {
        font-size: 18px;
    }

    .sticky-footer-ranking-btn {
        padding: 10px 20px;
    }

    .sticky-footer-ranking-text {
        font-size: 18px;
    }

    .sticky-footer-arrow-icon {
        width: 20px;
        height: 20px;
    }

    .footer-logo {
        gap: 10px;
    }

    .footer-title {
        font-size: 24px;
    }

    .footer-location {
        font-size: 12px;
    }

    .footer-info-text,
    .footer-link {
        font-size: 14px;
    }

    .footer-info-line {
        gap: 10px;
    }

    .footer-links-line {
        flex-wrap: wrap;
        gap: 8px;
    }

    /* Breadcrumb */
    .banner-breadcrumb {
        padding: 12px 30px;
        overflow-x: auto;
        overflow-y: hidden;
        -ms-overflow-style: none;
        scrollbar-width: none;
        flex-wrap: nowrap;
        width: 100%;
        box-sizing: border-box;
    }

    .banner-breadcrumb::-webkit-scrollbar {
        display: none;
    }

    .breadcrumb-link,
    .breadcrumb-text,
    .breadcrumb-separator {
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .breadcrumb-separator{
        width: 8px;
        height: 8px;
    }

    /* Column Page */
    .column-page {
        padding: 40px 0;
    }

    .column-page-container {
        padding: 0 30px;
    }

    .column-articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .column-page-subtitle {
        font-size: 22px;
    }

    .column-page-description {
        margin-bottom: 30px;
    }

    .column-page-description p {
        font-size: 16px;
        line-height: 1.5;
    }

    .column-article-card .article-title {
        font-size: 16px;
    }

    .column-article-card .article-excerpt {
        font-size: 13px;
    }

    .notification-popup {
        bottom: 245px;
        right: 16px;
        left: 16px;
        max-width: calc(100% - 32px);
    }

    .notification-popup-content {
        min-width: auto;
        max-width: 100%;
        padding: 16px;
        gap: 12px;
    }

    .medal-icon-popup {
        width: 20px;
        height: 16px;
    }

    .notification-text p {
        font-size: 16px;
        line-height: 1.4;
    }

    .notification-link {
        font-size: 16px;
        margin-top: 8px;
    }
}

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

    /* Banner */
    .home-banner {
        min-height: auto;
        position: relative;
    }

    .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-desktop {
        display: none;
    }

    .banner-bg-image-mobile {
        display: block;
        object-fit: cover;
        object-position: 65% 0%;
        height: 110%;
        width: 100%;
        top: -21%;
        position: relative;
    }

    .banner-container {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
        padding: 30px 20px 20px;
        box-sizing: border-box;
        background: linear-gradient(to bottom, transparent 0%, transparent 85%, #FEE2EF 85%, #FEE2EF 100%);
    }

    .banner-content {
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-top: 150px;
    }

    .banner-text-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }

    .banner-subheadline {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 16px;
        gap: 6px;
        flex-wrap: wrap;
    }

    .subheadline-text {
        font-size: 18px;
        display: block;
    }

    .subheadline-location {
        font-size: 18px;
        display: block;
        flex-basis: 100%;
        width: 100%;
    }

    /* Content Banner */
    .content-banner {
        min-height: 200px;
    }

    .content-banner-container {
        min-height: 200px;
        padding: 30px 20px;
        flex-shrink: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .content-banner-title {
        font-size: 28px;
        letter-spacing: 1px;
        margin: 0;
        text-align: center;
    }

    /* Features */
    .home-features {
        padding: 40px 0;
    }

    .features-container {
        padding: 0 20px;
    }

    .features-top-title {
        font-size: 20px;
    }

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

    .features-main-text p {
        font-size: 18px;
    }

    .feature-item {
        gap: 12px;
        margin-bottom: 16px;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
        margin-top: 2px;
    }

    .feature-text {
        font-size: 14px;
    }

    .features-bottom-text {
        font-size: 16px;
    }

    .block-title-pink {
        padding: 14px 24px;
        font-size: 20px;
        border-radius: 10px;
    }

    /* Ranking */
    .block-title-pink {
        padding: 14px 24px;
        font-size: 20px;
        border-radius: 10px;
    }

    .home-ranking {
        padding: 30px 0;
    }

    .ranking-container {
        padding: 0 20px;
    }

    .ranking-title-box {
        margin-bottom: 20px;
    }

    .ranking-description {
        margin-bottom: 24px;
    }

    .ranking-description p {
        font-size: 14px;
    }

    .ranking-list {
        gap: 8px;
        margin-bottom: 24px;
    }

    .crown-icon {
        font-size: 18px;
    }

    .badge-text {
        font-size: 20px;
    }

    .ranking-card {
        padding: 12px;
    }

    .card-image {
        height: 140px;
        margin-bottom: 12px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-features li {
        font-size: 12px;
    }

    .card-discount {
        font-size: 24px;
    }

    .card-image-right {
        width: 100px;
        height: 100px;
    }

    .ranking-item {
        padding: 10px 14px;
        gap: 10px;
    }

    .ranking-badge {
        padding: 5px 10px;
        font-size: 14px;
    }

    .ranking-content {
        gap: 6px;
    }

    .sparkle-icon {
        font-size: 14px;
    }

    .ranking-text {
        font-size: 14px;
    }

    .ranking-chevron {
        font-size: 18px;
    }

    .btn-see-more {
        padding: 12px 32px;
        font-size: 18px;
        border-radius: 10px;
    }

    /* Blog */
    .home-blog {
        padding: 30px 0;
    }

    .blog-container {
        padding: 0 20px;
        gap: 24px;
    }

    .blog-title {
        font-size: 24px;
    }

    .blog-content {
        gap: 20px;
    }

    .blog-intro p,
    .blog-conclusion p {
        font-size: 14px;
    }

    .ranking-icon-pink-check > li {
        font-size: 14px;
        margin-bottom: 12px;
    }

    /* Column */
    .home-column {
        padding: 30px 0;
    }

    .column-wrapper {
        padding: 0 20px;
    }

    .column-header {
        margin-bottom: 30px;
    }

    .column-main-title {
        font-size: 20px;
    }

    .column-subtitle {
        font-size: 18px;
    }

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

    .column-description p {
        font-size: 14px;
    }

    .article-content {
        padding: 16px;
    }

    .article-title {
        font-size: 16px;
    }

    .article-excerpt {
        font-size: 13px;
    }

    .btn-column-more {
        padding: 14px 32px;
        font-size: 18px;
    }

    .ranking-guide-navigation{
        margin: 20px 0;
    }

        /* Ranking Guide */

    .ranking-guide-container {
        padding: 0 20px;
    }

    .ranking-guide-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .guide-text-block p {
        font-size: 14px;
    }

    .guide-cta-box {
        padding: 16px;
    }

    .cta-title {
        font-size: 16px;
    }

    .cta-content p {
        font-size: 13px;
    }

    .nav-hint-text {
        font-size: 14px;
    }

    .nav-arrow {
        font-size: 24px;
    }

    /* Footer */
    .main-footer {
        padding: 24px 0;
    }

    .footer-container {
        padding: 0 20px;
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-footer {
        padding: 24px 0;
    }

    .sticky-footer     .footer-container {
        padding: 0 20px;
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-footer {
        padding: 12px 0;
    }

    .sticky-footer-container {
        padding: 0 20px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .sticky-footer-left {
        order: 1;
        width: 100%;
        justify-content: flex-start;
    }

    .sticky-footer-woman {
        height: 60px;
    }

    .sticky-footer-center {
        order: 2;
        width: 100%;
    }

    .sticky-footer-text {
        font-size: 16px;
    }

    .sticky-footer-right {
        order: 3;
        width: 100%;
        justify-content: flex-start;
    }

    .sticky-footer-ranking-btn {
        padding: 8px 16px;
    }

    .sticky-footer-ranking-text {
        font-size: 16px;
    }

    .sticky-footer-arrow-icon {
        width: 18px;
        height: 18px;
    }

    .footer-right {
        align-items: flex-start;
        width: 100%;
    }

    .footer-info-line {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-title {
        font-size: 20px;
    }

    .footer-info-text,
    .footer-link {
        font-size: 13px;
    }

    .footer-icon {
        width: 18px;
        height: 18px;
    }

    /* Breadcrumb */
    .banner-breadcrumb {
        padding: 10px 20px;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        -ms-overflow-style: none;
        scrollbar-width: none;
        flex-wrap: nowrap;
        width: 100%;
        box-sizing: border-box;
    }

    .banner-breadcrumb::-webkit-scrollbar {
        display: none;
    }

    .breadcrumb-link,
    .breadcrumb-text,
    .breadcrumb-separator {
        font-size: 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .breadcrumb-separator svg {
        width: 7px;
        height: 12px;
    }

    .breadcrumb-dot {
        width: 4px;
        height: 4px;
    }

    /* Column Page */
    .column-page {
        padding: 30px 0;
    }

    .column-page-container {
        padding: 0 20px;
    }

    .column-page-header {
        margin-bottom: 24px;
    }

    .column-page-subtitle {
        font-size: 20px;
    }

    .column-page-description {
        margin-bottom: 24px;
    }

    .column-articles-grid {
        gap: 16px;
    }

    .column-article-card .article-content {
        padding: 16px;
    }

    .column-article-card .article-title {
        font-size: 15px;
    }

    .pagination-link {
        font-size: 16px;
        padding: 8px 20px;
    }

    .pagination-info {
        font-size: 16px;
    }
    .mobile-only--480{
        display: block !important;
    }
    .notification-popup {
        bottom: 245px;
        right: 16px;
        left: 16px;
        max-width: calc(100% - 32px);
    }

    .notification-popup-content {
        padding: 12px;
        gap: 10px;
        flex-direction: row;
        align-items: flex-start;
    }

    .medal-icon-popup {
        width: 18px;
        height: 14px;
    }

    .notification-text p {
        font-size: 14px;
        line-height: 1.3;
    }

    .notification-link {
        font-size: 14px;
        margin-top: 6px;
    }
}
