﻿:root {
    --header-height: 70px;
    --header-bg: #ffffff;
    --text-color: #000000;
    --text-muted: #7d7d7d;
    --border-color: #eeeeee;
    --overlay-bg: rgba(255, 255, 255, 0.98);
    --color-primary-from: #ff8fa3;
    --color-primary-to: #f4cdc2;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../font/Inter-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../font/Inter-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../font/Inter-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../font/Inter-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../font/Inter-ExtraBold.woff2') format('woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-color);
    background-color: #fff;
    line-height: 1.6;
}

.container {
    width: 100%;
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 0 40px;
}

.site-header {
    height: var(--header-height);
    background: var(--header-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-container {
    max-width: 1800px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.header-inner-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-logo img {
    height: 28px;
    display: block;
}

.pc-search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    cursor: text;
    padding: 0 16px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border-radius: 0;
    height: var(--header-height);
}

.pc-search-box:hover {
    background: #f7f7f7;
}

.pc-search-box.active {
    background: #f3f3f3;
}

.pc-search-box input {
    border: none;
    background: transparent;
    font-size: 13px;
    width: 100px;
    outline: none;
    cursor: pointer;
    transition: width 0.3s;
    color: var(--text-color);
}

.pc-search-box:hover input,
.pc-search-box.active input {
    width: 160px;
    cursor: text;
}

.header-inner-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.desktop-nav {
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-list>li>a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.nav-list>li>a:hover {
    color: var(--text-color);
}

.has-submenu {
    position: relative;
}

.nav-list .submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    min-width: 120px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    list-style: none;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.submenu li a {
    display: block;
    padding: 8px 24px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 12px;
    transition: all 0.2s;
    min-width: 120px;
}

.submenu li a:hover {
    background: #f9f9f9;
    color: var(--text-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pc-menu-container {
    position: relative;
}

.pc-hamburger {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    transition: all 0.2s;
    padding: 4px;
}

.pc-hamburger:hover {
    color: var(--text-color);
}

.pc-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: #ffffff;
    min-width: 160px;
    box-shadow: rgba(0, 0, 0, 0.13) 0px -1px 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    filter: drop-shadow(rgba(0, 0, 0, 0.1) 0 2px 10px);
}

.pc-dropdown-menu::after {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 12px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
}

.pc-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pc-dropdown-list {
    list-style: none;
    padding: 8px 0;
}

.pc-dropdown-list li {
    position: relative;
}

.pc-dropdown-list li a,
.pc-sub-header {
    display: block;
    padding: 12px 24px;
    font-size: 14px;
    text-decoration: none;
    color: var(--text-muted);
    transition: all 0.2s;
    cursor: pointer;
    white-space: nowrap;
}

.pc-dropdown-list li:hover>a,
.pc-dropdown-list li:hover>.pc-sub-header {
    background: #f9f9f9;
    color: var(--text-color);
}

.pc-sub-list {
    position: absolute;
    top: 0;
    right: 100%;
    background: #fff;
    min-width: 140px;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    list-style: none;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.pc-sub-list li a {
    font-size: 12px;
}


.has-pc-sub:hover .pc-sub-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.pc-sub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.pc-sub-header .arrow {
    width: 6px;
    height: 6px;
    border-left: 1px solid var(--text-muted);
    border-bottom: 1px solid var(--text-muted);
    transform: rotate(45deg);
}

.mobile-left-controls {
    position: relative;
    display: none;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 18px;
    height: 2px;
    background: var(--text-muted);
}

.mobile-search-btn svg,
.pc-search-box svg,
.search-bar-container svg {
    flex-shrink: 0;
    fill: #7d7d7d !important;
}

.pc-search-box:hover svg,
.pc-search-box.active svg {
    fill: #7d7d7d !important;
}

.search-full-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--overlay-bg);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.search-full-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-overlay-bar {
    height: var(--header-height);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    background: #fff;
}

.search-bar-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-bar-container input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: inherit;
    background: transparent;
}

.close-search-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #7d7d7d;
    padding: 4px;
    display: flex;
    align-items: center;
}

.close-search-btn svg {
    stroke: #7d7d7d !important;
}

.mobile-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background: #ffffff;
    border-radius: 4px;
    min-width: 190px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.13) 0px -1px 8px;
    z-index: 1210;
    padding-top: 10px;
    filter: drop-shadow(rgba(0, 0, 0, 0.1) 0 2px 10px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1200;
}

#mobile-menu-wrapper.active .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-close-btn {
    position: fixed;
    top: 12px;
    left: 210px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    z-index: 1220;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#mobile-menu-wrapper.active .mobile-close-btn {
    opacity: 1;
    visibility: visible;
}

.mobile-dropdown::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 8px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #ffffff;
}

#mobile-menu-wrapper.active .mobile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.mobile-nav>li {
    position: relative;
}

.mobile-nav a {
    display: block;
    padding: 12px 24px;
    color: #7D7D7D;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.mobile-nav a:hover,
.has-mobile-sub:hover>a {
    background: #f5f5f5;
    color: #000;
}

.mobile-sub {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 130px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.mobile-sub li a {
    padding: 10px 24px 10px 40px;
    font-size: 13px;
    color: var(--text-muted);
}

.has-mobile-sub:hover .mobile-sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.footer-color-stripe {
    height: 3px;
    background: linear-gradient(90deg, #f97316, #eab308, #22c55e, #06b6d4, #6366f1, #ec4899);
}

.site-footer {
    padding: 60px 0 0 0;
    font-size: 14px;
    background: #EAEAEA !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.site-footer .container {
    max-width: 1800px;
    padding: 0 24px;
}

.footer-main-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding-bottom: 50px;
}

.footer-col-left {
    flex: 1;
    max-width: 400px;
}

.logo-footer {
    margin-bottom: 30px;
}

.logo-footer .logo-img {
    height: 28px;
    width: auto;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #7D7D7D;
    line-height: 1.5;
}

.footer-contact-list svg {
    color: #7D7D7D;
    flex-shrink: 0;
}

.footer-col-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-end;
}

.footer-nav a {
    color: #7D7D7D;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #000;
}

.footer-social-box {
    display: flex;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    border-radius: 6px;
}

.footer-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 0px;
}

.footer-qr-container img {
    width: 80px;
    height: 80px;
    display: block;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 24px 0;
    text-align: center;
    color: #7D7D7D;
    font-size: 13px;
}

.footer-bottom-bar p {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    white-space: normal;
    line-height: 1.6;
}
.footer-bottom-bar a{
    color:#7d7d7d;
    text-decoration: none;
}
.legal-divider {
    margin: 0 12px;
    color: rgba(0, 0, 0, 0.2);
}

.legal-item {
    display: inline-flex;
    align-items: center;
}

@media (max-width: 1600px) {}

@media (max-width: 1024px) {

    .desktop-nav,
    .pc-search-box,
    .header-actions {
        display: none;
    }

    .mobile-left-controls {
        display: flex;
    }

    .header-container {
        padding: 0 16px;
        position: relative;
    }

    .header-logo img {
        height: 18px;
        display: block;
    }

    .header-inner-left {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        gap: 0;
    }

    .mobile-search-btn {
        border: none !important;
        outline: none !important;
        background: transparent !important;
        padding: 0;
        box-shadow: none !important;
        margin-left: 10%;
    }
}

@media (max-width: 992px) {
    .footer-main-row {
        flex-direction: column;
        gap: 50px;
    }

    .footer-col-left {
        max-width: 100%;
    }

    .footer-col-right {
        align-items: flex-start;
    }

    .footer-nav {
        justify-content: flex-start;
    }

    .footer-bottom-bar p {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .legal-divider {
        display: none;
    }

    .legal-item {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .footer-social-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-nav {
        gap: 15px 25px;
    }
}

@media (max-width: 480px) {
    .mobile-sub {
        left: auto;
        right: -10px;
        top: 100%;
        position: relative;
        left: 0;
        box-shadow: none;
        display: none;
        border: none;
        background: #fafafa;
        transform: none;
    }

    .has-mobile-sub.active .mobile-sub {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .mobile-sub li a {
        padding-left: 50px;
    }
}