

@keyframes ly_web_header_0001_0FadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/*   Header 核心佈局與防護   */
.header { position: fixed; top: 0; left: 0; width: 100%; padding: 28px 5%; display: flex; align-items: center; z-index: 1000; color: var(--text-white, #fff); transition: all 0.5s ease; overflow: visible !important; }
/* 1. 頁面向下滾動時：變矮 + 變色 */
.header.scrolled,
.header.hasBack { background: rgba(250, 249, 246, 0.98); backdrop-filter: blur(10px); padding: 14px 5%; border-bottom: 1px solid var(--border-light, #e2dfd8); color: var(--text-main, #33312e); }
/* 2. 首屏未滾動且滑鼠懸停時：只變色，絕不縮小高度 */
.header:not(.scrolled):hover,
.header.search { background: rgba(250, 249, 246, 0.98); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-light, #e2dfd8); color: var(--text-main, #33312e); }
.header.hidden { transform: translateY(-100%); }
.logo { margin-right: auto; }
.logo img { height: 72px; transition: height 0.4s, filter 0.4s; filter: brightness(0) invert(1); }
/* Logo 滾動時縮小並變深色 */
.header.scrolled .logo img,
.header.hasBack .logo img { height: 52px; filter: none; }
/* Logo 首屏懸停時只變深色，保持 72px 高度 */
.header:not(.scrolled):hover .logo img,
.header:not(.hasBack):hover .logo img,
.header.search .logo img {filter: none; }

.nav { display: flex; align-items: center; gap: 40px; margin-right: 40px; font-size: 16px; letter-spacing: 1.5px; }
.nav a { position: relative; color: inherit; transition: color .3s; text-decoration: none; }
.nav a::after { content: ""; position: absolute; left: 50%; bottom: -4px; width: 0; height: 1px; background: var(--accent, #8e6d45); transition: all 0.3s ease; transform: translateX(-50%); }
.nav a:hover, .nav a.active { color: var(--accent, #8e6d45); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.nav-dropdown { position: relative; display: flex; align-items: center; cursor: pointer; padding: 10px 0; }
.dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); background: var(--accent, #8e6d45); padding: 10px 0; min-width: 140px; opacity: 0; visibility: hidden; transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu a { display: block; color: #fff !important; padding: 12px 20px; text-align: center; font-size: 15px; letter-spacing: 2px; white-space: nowrap; transition: background 0.3s; }
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: rgba(0,0,0,0.1); }

/*   工具欄區    */
.nav-tools { display: flex; align-items: center; gap: 20px; padding-left: 30px; border-left: none; position: relative; overflow: visible !important; }
.nav-tools::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 16px; background: currentColor; transition: background 0.5s ease; }
/* .header.scrolled .nav-tools::before, 
.header:hover .nav-tools::before,
.header.hasBack .nav-tools::before { background: var(--border-light, #e2dfd8); }
.header.search .nav-tools::before { background: var(--text-main, #33312e); } */

.nav-tools-item { display: flex; align-items: center; gap: 8px; transition: color 0.3s; text-decoration: none; color: currentColor; white-space: nowrap; }
.nav-tools-item:hover { color: var(--accent, #8e6d45); }
.nav-tools-item .svg{width: 18px; height: 18px;;}
.nav-tools svg { width: 18px; height: 18px; filter: brightness(0) invert(1); transition: all 0.3s; stroke: var(--text-white, #fff); flex-shrink: 0;}
.header.scrolled .nav-tools svg, 
.header.search .nav-tools svg, 
.header:hover .nav-tools svg ,
.header.hasBack .nav-tools svg { filter: none; stroke: var(--text-main, #33312e); }
.nav-tools-item:hover svg { filter: none; stroke: var(--accent, #8e6d45) !important; }
.nav-tools-divider { width: 1px; height: 16px; background: currentColor; opacity: 0.5; margin: 0 5px; }

/* 語言與貨幣下拉選單 */
.tools-dropdown { position: relative; display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 10px; }
.tools-dropdown.rate{padding-left: 0;}
.tools-dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); background: #fff; min-width: 140px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); padding: 8px 0; z-index: 99999; text-align: left; }
.tools-dropdown-item { display: flex !important; align-items: center; justify-content: flex-start; color: var(--text-main, #33312e) !important; padding: 10px 20px !important; font-family: var(--font-sans, sans-serif); font-size: 14px !important; font-weight: 400 !important; text-decoration: none !important; transition: background 0.3s, color 0.3s; }
.currency-menu { max-height: 320px; overflow-y: auto; }
.currency-menu::-webkit-scrollbar { width: 4px; }
.currency-menu::-webkit-scrollbar-thumb { background: #ddd; }
.currency-menu::-webkit-scrollbar-thumb:hover { background: var(--accent, #8e6d45); }
.tools-dropdown-menu .currency-symbol { font-family: var(--font-num, sans-serif); font-weight: 600; color: var(--text-gray, #888); width: 30px; display: inline-block; text-align: left; transition: color 0.3s; }
.rate .nav-tools-item .svg{flex: none; width: auto;}

@media (min-width: 769px) {
    .tools-dropdown:hover .tools-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    #ly_web_header_0001_0_m_tool { display: none !important; }
}
.tools-dropdown-item:hover { background: var(--paper-bg, #faf9f6) !important; color: var(--accent, #8e6d45) !important; }
.tools-dropdown-item.rate:hover .currency-symbol { color: var(--accent, #8e6d45); }


/* 「找商品」全域篩選抽屜  */
.search-overlay { position: absolute; top: 100%; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.5); cursor: default; opacity: 0; visibility: hidden; transition: 0.4s ease; overflow: hidden; z-index: -1; }
.search-overlay.active { opacity: 1; visibility: visible; }
.search-panel { position: absolute; top: 0; left: 0; width: 100%; background: #fff; box-shadow: 0 15px 40px rgba(0,0,0,0.15); transform: translateY(-100%); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); padding: 40px 0 60px; color: var(--text-main, #33312e); }
.search-overlay.active .search-panel { transform: translateY(0); }
.search-container { width: 1600px; max-width: 95%; margin: 0 auto; position: relative; }

.btn-close-search { position: absolute; top: -10px; right: 0; z-index: 10; background: none; border: none; cursor: pointer; color: var(--text-gray, #888); transition: 0.3s; }
.btn-close-search:hover { color: var(--accent, #8e6d45); transform: rotate(90deg); }
.btn-close-search svg { width: 32px; height: 32px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.search-tabs { display: flex; justify-content: center; gap: 60px; margin-bottom: 40px; position: relative; border-bottom: 1px solid var(--border-light, #e2dfd8); }
.search-tabs .tab-btn { font-family: var(--font-serif, serif); font-size: 18px; font-weight: 300; color: var(--text-gray, #888); letter-spacing: 2px; background: none; border: none; padding: 0 10px 20px; cursor: pointer; position: relative; transition: 0.3s; }
.search-tabs .tab-btn:hover { color: var(--text-main, #33312e); }
.search-tabs .tab-btn.active { color: var(--text-main, #33312e); font-weight: 600; }
.search-tabs .tab-btn::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 2px; background: var(--accent, #8e6d45); transform: scaleX(0); transition: 0.3s; }
.search-tabs .tab-btn.active::after { transform: scaleX(1); }

.filter-section {max-height: 420px; overflow-y: auto; display: none; animation: ly_web_header_0001_0FadeIn 0.4s; }
.filter-section.active { display: block; }

.filter-row { display: flex; align-items: flex-start; padding: 18px 0; border-bottom: 1px dashed var(--border-light, #e2dfd8); }
.filter-row.last-row { border-bottom: none !important; }
.filter-label { font-family: var(--font-serif, serif); font-weight: 600; font-size: 16px; width: 100px; flex-shrink: 0; color: var(--text-main, #33312e); padding-top: 6px; letter-spacing: 1px; }
.filter-options { display: flex; flex-wrap: wrap; gap: 15px; flex: 1; }
.filter-options .opt-btn { font-family: var(--font-sans, sans-serif); font-size: 15px; color: var(--text-gray, #888); background: transparent; border: 1px solid transparent; padding: 6px 20px; cursor: pointer; transition: all 0.3s; letter-spacing: 1px; border-radius: 0; }
.filter-options .opt-btn:hover { color: var(--accent, #8e6d45); }
.filter-options .opt-btn.active { background: var(--accent, #8e6d45); color: #fff; }

.search-actions { display: flex; justify-content: center; gap: 20px; margin-top: 50px; }
.search-actions .btn-action { width: 160px; height: 45px; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-sans, sans-serif); font-size: 15px; font-weight: 300; letter-spacing: 2px; cursor: pointer; transition: 0.3s; border-radius: 0; }
.search-actions .btn-clear { background: transparent; color: var(--text-main, #33312e); border: 1px solid var(--border-light, #e2dfd8); }
.search-actions .btn-clear:hover { background: var(--paper-bg, #faf9f6); border-color: var(--text-main, #33312e); }
.search-actions .btn-confirm { background: var(--text-main, #33312e); color: #fff; border: 1px solid var(--text-main, #33312e); }
.search-actions .btn-confirm:hover { background: var(--accent, #8e6d45); border-color: var(--accent, #8e6d45); }


#artisanNameRowHeader { margin-top: -10px; background: #f5f4f1; padding: 15px 0 20px 0; border-bottom: 1px dashed var(--border-light) !important; margin-bottom: 0; }
.sub-filter-box { background: transparent; padding: 0 20px 0 0; border: none; display: flex; flex-wrap: wrap; gap: 12px 15px; width: 100%; }
.sub-filter-box a { font-size: 14px; color: var(--text-gray); padding: 6px 14px; background: transparent; border: none; transition: 0.3s; }
.sub-filter-box a:hover { background: transparent !important; color: var(--accent) !important; }
#headerArtisanNameGroup a.active { background: var(--accent) !important; color: #fff !important; font-weight: 500 !important; }

.search-bar-wrapper { display: flex; align-items: center; max-width: 800px; margin: 0 auto 35px auto; border: 1px solid var(--border-light, #e2dfd8); height: 50px; background: #fff; }
.search-type-select { height: 100%; border: none; background-color: var(--paper-bg, #faf9f6); color: var(--text-main, #33312e); padding: 0 35px 0 20px; font-family: var(--font-sans, sans-serif); font-size: 15px; outline: none; cursor: pointer; border-right: 1px solid var(--border-light, #e2dfd8); appearance: none; -webkit-appearance: none; background-image: url('data:image/svg+xml;utf8,<svg fill="%23888" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>'); background-repeat: no-repeat; background-position: right 10px center;}
.search-input-group { display: flex; flex: 1; height: 100%; }
.search-input { flex: 1; border: none; padding: 0 20px; font-size: 15px; color: var(--text-main, #33312e); outline: none; background: transparent; }
.search-input::placeholder { color: var(--text-gray, #888); font-weight: 300; }
.btn-submit-search { background: transparent; border: none; padding: 0 20px; cursor: pointer; color: var(--text-gray, #888); transition: 0.3s; display: flex; align-items: center; justify-content: center; }
.btn-submit-search:hover { color: var(--accent, #8e6d45); }
.btn-submit-search svg { width: 20px; height: 20px; }

#ly_web_header_0001_0 .menu,
.ly_web_header_0001_0_m_side_panel{display:none;}

@media (max-width: 1680px) {
    .header{padding: 15px 5%;}
    .nav{gap: 35px;  margin-right: 20px;}
    .nav-tools{padding: 10px 8px; gap: 15px; padding-left: 20px;}
    
    .search-panel{padding: 30px 0 50px;}
    .search-tabs{margin-bottom: 30px;}
    .filter-row{padding: 15px 0;}
    .search-actions{margin-top: 30px;}

    #artisanNameRowHeader{margin-top: 0; padding: 15px 0;}
}
@media (max-width: 1536px) {
    .nav{gap: 25px;}
    
    .filter-options{gap: 10px;}
}
@media (max-width: 1280px) {
    .header { padding: 15px 3%;}
    .header.scrolled, .header.hasBack{padding: 14px 3%;}

    .nav-tools-item:not(.rate) span{display: none;}

    .search-bar-wrapper{max-width: 50%; margin: 0 auto 30px auto;}
    .search-tabs .tab-btn{padding: 0 10px 15px;}
    .filter-section{max-height: 395px;}
    .search-actions{margin-top: 25px;}
}
@media (max-width: 1200px) {
    #ly_web_header_0001_0 .nav,
    .nav-tools::before,
    .nav-tools-item.searchPro,
    .nav-tools-divider{display: none;}
    
    .nav-tools{padding: 0; gap: 25px;}
    .tools-dropdown.rate{padding: 0;}
    
    .header { padding: 10px 3%;}
    .header.scrolled, .header.hasBack{padding: 10px 3%;}
    .header.scrolled .logo img, .header.hasBack .logo img{height: 72px;}

    #ly_web_header_0001_0 .menu{display:flex; width:30px; height:30px;}
    #ly_web_header_0001_0 .menu > div{position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%); font-size: 24px; color: currentColor;}
    #ly_web_header_0001_0 .menu .icon2{opacity: 0;}
    #ly_web_header_0001_0 .menu.cur .icon1{opacity: 0;}
    #ly_web_header_0001_0 .menu.cur .icon2{opacity: 1;}

    .ly_web_header_0001_0_m_side_panel,
    #ly_web_header_0001_0_m_nav{top: 97px;}
    .ly_web_header_0001_0_m_side_panel,
    #ly_web_header_0001_0_m_nav.cur{height: calc(100vh - 97px);border-top:1px solid #ebebeb;}

    #ly_web_header_0001_0_m_nav{display: block;width: 100%;height: 0;z-index:50;left: inherit;right: 0; background: rgba(250, 249, 246, 1); overflow-y: auto;}
    /* #ly_web_header_0001_0_m_nav.cur{height: calc(100vh - 97px);border-top:1px solid #ebebeb;} */
    
    #ly_web_header_0001_0_m_nav .one-icon{font-size: 20px; line-height: 1; font-weight: 700;color:#21292b;}
    #ly_web_header_0001_0_m_nav .list .one-nav{line-height:60px;}
    #ly_web_header_0001_0_m_nav .list .one-nav .one{margin: 0 30px; border-bottom: 1px solid #ebebeb; font-weight: 700;color:#21292b; cursor:pointer; }
    #ly_web_header_0001_0_m_nav .list .one-nav .one-a{display: block; width: calc(100% - 10%); font-size:18px;}
    #ly_web_header_0001_0_m_nav .list .one-nav.cur .one .icon{transform: rotate(90deg);}
    
    /* 二级菜单 */
    #ly_web_header_0001_0_m_nav .list .one-nav .two-nav,
    #ly_web_header_0001_0_m_nav .list .two-item .three-nav,
    #ly_web_header_0001_0_m_nav .list .three-item .four-nav{width: 100%;background: #f7f7f7;padding: 0 30px;}
    #ly_web_header_0001_0_m_nav .list .one-nav .two-nav>div,
    #ly_web_header_0001_0_m_nav .list .two-item .three-nav>div,
    #ly_web_header_0001_0_m_nav .list .three-item .four-nav>div{border-bottom: 1px solid #ebebeb;}
    #ly_web_header_0001_0_m_nav .list .one-nav .two-nav .two-a,
    #ly_web_header_0001_0_m_nav .list .two-item .three-a,
    #ly_web_header_0001_0_m_nav .list .three-item .four-a{font-size: 16px; line-height: 1.5em; color:#21292b; padding: 15px 0;}

    #ly_web_header_0001_0_m_nav .list .one-nav .two-nav .two-a{gap: 10px;}
    #ly_web_header_0001_0_m_nav .list .one-nav .two-nav .two-a .lang_img{width: 25px; height: 25px;}

	#ly_web_header_0001_0_m_nav .bot-box{margin:30px 0 60px}
    #ly_web_header_0001_0_m_nav .bot-box .item .icon{width: 60px;height: 60px;line-height: 60px;border: 1px solid rgba(0, 0, 0, 0.3);font-size: 18px;color: #1a1a1a;border-radius: 100%;margin: 0 auto;}
    #ly_web_header_0001_0_m_nav .bot-box .item .tit{margin-top:12px;font-size:18px;color: #1a1a1a;}

    #ly_web_header_0001_0_m_nav .tools{margin-top: 30px; gap: 40px;}
    #ly_web_header_0001_0_m_nav .tools-item{width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(0, 0, 0, 0.3); border-radius: 50%;}
    #ly_web_header_0001_0_m_nav .tools-item .svg{width: 45%; filter: none; stroke: var(--text-main, #33312e);}

    .tools-dropdown { display: none !important; }

    .ly_web_header_0001_0_m_side_panel { position: fixed; right: 0; width: 100%; max-width: 100%; background: rgba(250, 249, 246, 1); z-index: 99999; transform: translateX(100%); transition: all 0.3s ease; overflow-y: auto; display: block; opacity: 0; visibility: hidden;}
    .ly_web_header_0001_0_m_side_panel.show { transform: translateX(0); opacity: 1; visibility: visible;}
    .ly_web_header_0001_0_m_side_panel .panel-head { height: 60px; padding: 0 30px; border-bottom: 1px solid #ebebeb; }
    .ly_web_header_0001_0_m_side_panel .panel-head h3 { font-size: 18px; font-weight: 700; color: #21292b; margin: 0; }
    .ly_web_header_0001_0_m_side_panel .panel-close { font-size: 22px; cursor: pointer; transform: rotate(180deg); }
    .ly_web_header_0001_0_m_side_panel .panel-list { padding: 20px 30px; }
    .ly_web_header_0001_0_m_side_panel .panel-item { line-height: 55px; font-size: 16px; color: #21292b; border-bottom: 1px solid #ebebeb; display: flex; align-items: center; gap: 10px; text-decoration: none; cursor: pointer; }
    .ly_web_header_0001_0_m_side_panel .currency-symbol { font-weight: 600; width: 30px; }
}
@media (max-width: 768px) {
    .filter-row { flex-direction: column; gap: 15px; }
    .filter-options { gap: 10px; }
    .filter-options .opt-btn { padding: 5px 12px; }
    .search-tabs { gap: 30px; }

    .search-bar-wrapper { flex-direction: column; height: auto; border: none; background: transparent; gap: 10px; margin-bottom: 25px; }
    .search-type-select { width: 100%; height: 45px; border: 1px solid var(--border-light, #e2dfd8); }
    .search-input-group { width: 100%; height: 45px; border: 1px solid var(--border-light, #e2dfd8); background: #fff; }

    .nav-tools{gap: 20px;}
    #ly_web_header_0001_0_m_nav .list .one-nav .one{margin: 0 4%; }
}
#ly_web_footer_0001_0 { padding: 100px 0 40px; background: #fff; border-top: 1px solid var(--border-light, #e2dfd8); font-family: var(--font-sans, sans-serif); color: var(--text-main, #33312e); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; width: 1600px; max-width: 95%; margin: 0 auto; margin-bottom: 80px; }
.footer-info-text img { height: 100px; margin-bottom: 25px; object-fit: contain; }
.footer-info-text p { line-height: 1.8; color: #666; font-size: 16px; font-weight: 300; margin-bottom: 10px; }
.footer-toggle-title { font-family: var(--font-serif, serif); font-size: 20px; font-weight: 700; color: var(--text-main, #33312e); margin-bottom: 30px; letter-spacing: 2px; }
.footer-links a { display: block; font-size: 16px; font-weight: 300; color: #666; margin-bottom: 15px; transition: 0.3s; text-decoration: none;}
.footer-links a:hover { color: var(--accent, #8e6d45); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid var(--border-light, #e2dfd8); color: var(--text-gray, #7a756d); font-size: 16px; font-weight: 300; letter-spacing: 1px; display: flex; justify-content: space-between; width: 1600px; max-width: 95%; margin: 0 auto;}

@media (max-width: 1200px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    #ly_web_footer_0001_0 { padding: .8rem 0 .6rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 0; margin-bottom: .6rem; }
    .footer-info-text{margin-bottom: 20px;}

    .footer-col{border-bottom: 1px solid var(--border-light, #e2dfd8);}
    .footer-links { height: 0; overflow: hidden; transition: height 0.3s ease; margin-bottom: 0 !important;}
    .footer-links.open { height: auto;}
    .footer-toggle-title { margin-bottom: 0; padding: 15px 0; display: flex; justify-content: space-between; align-items: center;}
    .footer-toggle-title .icon{display: block; font-size: 20px; color: var(--font-serif, serif);}

    
    .footer-bottom { flex-direction: column; gap: 10px; }

}
.fixed-widgets { position: fixed; bottom: 40px; right: 40px; z-index: 9999; display: flex; flex-direction: column; align-items: center; pointer-events: none;}
.fab-container, .back-to-top { pointer-events: auto; }
.fab-container { display: flex; flex-direction: column-reverse; align-items: center; gap: 0px; transform: translateY(65px); transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);}
.fixed-widgets.show-btt .fab-container { transform: translateY(0); }
.fab-main { width: 60px; height: 60px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none;  box-shadow: 0 2px 10px rgba(0,0,0,0.1);  transition: box-shadow 0.3s ease;}
.fab-main img { width: 26px; height: 26px; filter: brightness(0) invert(1); }

.fab-sub-list { display: flex; flex-direction: column; gap: 15px; opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(20px); transition: all 0.4s ease; position: absolute; bottom: 100%; left: 50%; padding-bottom: 5px; }
/* .fab-container:hover .fab-sub-list { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }  */

.fab-item-wrap { position: relative; display: flex; align-items: center;}
.qr-box { position: absolute; right: 100%; top: 50%; transform: translateY(-50%) translateX(20px); margin-right: 15px; width: 140px; height: 140px; background: #fff; padding: 8px; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.15); opacity: 0; visibility: hidden; transition: all 0.3s ease;}
.qr-box img { width: 100%; height: 100%; object-fit: contain;}
.fab-item-wrap:hover .qr-box { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0);}

.fab-sub { width: 50px; height: 50px; border-radius: 50%; background: #fff; border: none;  display: flex; align-items: center; justify-content: center; cursor: pointer;  box-shadow: 0 2px 10px rgba(0,0,0,0.1);  transition: box-shadow 0.3s ease; }
.fab-sub img { width: 26px; height: 26px; }

.back-to-top { width: 45px; height: 45px; border-radius: 50%; background: #fff; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transform: scale(0.8); margin-top: 15px;  box-shadow: 0 2px 10px rgba(0,0,0,0.1);  transition: all 0.4s ease;}
.fixed-widgets.show-btt .back-to-top { opacity: 1; visibility: visible; transform: scale(1); }
.back-to-top img { width: 24px; height: 24px; }

.fab-main:hover, .fab-sub:hover, .back-to-top:hover { box-shadow: 0 5px 15px rgba(142, 109, 69, 0.4); }


/* PC端：hover展开子菜单 */
@media (min-width: 769px) {
    .fab-container:hover .fab-sub-list { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
}
/* 移动端：依靠JS添加open类控制展开，取消hover */
@media (max-width: 768px) {
    .fab-container.open .fab-sub-list { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);}
}

@media (max-width: 768px) {
    .fixed-widgets{bottom: .4rem; right: .2rem;}
}
.event-popup { position: fixed; right: -520px; top: 50%; transform: translateY(-50%); width: 480px; height: 550px; background: #fff; z-index: 10001;  box-shadow: -10px 10px 40px rgba(0,0,0,0.15); display: flex; flex-direction: column; padding: 45px 40px; transition: right 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); border: 1px solid var(--border-light);}
.event-popup.show { right: 40px; } 
.event-close { position: absolute; top: 10px; right: 15px; background: none; border: none;  font-size: 28px; color: #888; cursor: pointer; transition: 0.3s; font-weight: 300;}
.event-close:hover { color: var(--accent); }
.event-img { width: 100%; aspect-ratio: 16 / 9; background: #eee; margin-bottom: 25px; overflow: hidden; }
.event-img img { width: 100%; height: 100%; object-fit: cover; }
.event-content h3 { font-size: 26px; font-weight: 700; color: var(--text-main); margin-bottom: 15px; letter-spacing: 1px; }
.event-content .brief { font-size: 15px; color: #666; line-height: 2; text-align: justify; margin-bottom: 10px; letter-spacing: 1px; }

@media (max-width: 768px) {
    .event-popup { width: 90vw !important; right: -100vw !important; height: auto !important; min-height: 400px; padding: 30px 20px !important; }
    .event-popup.show { right: 5vw !important; }
}
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 10002; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.4s;}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { width: 450px; background: #fff; color: var(--text-main); padding: 50px 40px; position: relative; display: flex; flex-direction: column; align-items: center; border-radius: 0; border: 1px solid var(--border-light); box-shadow: 0 20px 50px rgba(0,0,0,0.1);}
.modal-close { position: absolute; top: 15px; right: 20px; background: none; border: none; color: #aaa; font-size: 28px; cursor: pointer; transition: 0.3s; font-weight: 300;}
.modal-close:hover { color: var(--accent); }
.modal-icon { width: 64px; height: 64px; border: 1px solid var(--border-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; background: var(--paper-bg);}
.modal-icon svg { width: 32px; height: 32px; stroke: var(--accent); } 
.modal-title { font-family: var(--font-serif); font-size: 28px; font-weight: 500; color: var(--text-main); margin-bottom: 10px; letter-spacing: 2px;}
.modal-subtitle { font-size: 16px; font-weight: 300; margin-bottom: 25px; letter-spacing: 1px; color: var(--text-gray);}
.modal-offer { border: 1px solid var(--border-light); width: 100%; padding: 25px 20px; text-align: center; margin-bottom: 25px; background: var(--paper-bg); }
.offer-amount { font-family: var(--font-serif); font-size: 48px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 8px;}
.offer-label { font-size: 16px; font-weight: 300; color: var(--text-gray); letter-spacing: 2px;}
.modal-btn { width: 100%; margin-bottom: 25px; background: var(--accent); color: #fff; border: none; font-weight: 300; transition: 0.3s; padding: 16px; font-size: 16px; cursor: pointer; letter-spacing: 2px; display: block; text-align: center; box-sizing: border-box; text-decoration: none;}
.modal-btn:hover { background: #7a5d3b; }
.modal-link { display: block; font-size: 15px; color: var(--text-gray); border-bottom: 1px solid var(--text-gray); padding-bottom: 2px; margin-bottom: 30px; letter-spacing: 1px; transition: 0.3s;}
.modal-link:hover { color: var(--accent); border-color: var(--accent); }
.modal-footer { font-size: 13px; color: #888; text-align: center; line-height: 1.8; letter-spacing: 1px;}
.modal-footer .highlight-text { color: var(--accent); margin-top: 5px; font-size: 14px;}


@keyframes slowZoom {  
    from { transform: scale(1); } 
    to { transform: scale(1.12); } 
}

.ly_web_banner_0001_0 .hero { height: 100vh; position: relative; overflow: hidden; background: #000; }
.ly_web_banner_0001_0 .hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.6s ease; }
.ly_web_banner_0001_0 .hero-slide.active { opacity: 1; z-index: 2; }
.ly_web_banner_0001_0 .hero-slide-bg { width: 115%; height: 115%; position: absolute; top: -7.5%; left: -7.5%; background-size: cover; background-position: center;  animation: slowZoom 8s ease-in-out infinite alternate;}

.ly_web_banner_0001_0 .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.65) 0%, rgba(0,0,0,.1) 60%); z-index: 3; }
.ly_web_banner_0001_0 .hero-content { position: absolute; top: 50%; left: 8%; transform: translateY(-50%); z-index: 4; max-width: 640px; opacity: 0; transform: translateX(-80px) translateY(-50%); transition: all 1.2s cubic-bezier(.2,.8,.2,1);}
.ly_web_banner_0001_0 .hero-content.active { opacity: 1; transform: translateX(0) translateY(-50%); }
.ly_web_banner_0001_0 .hero-content h2 {color: var(--text-white); font-family: var(--font-serif); font-weight: 700; font-size: clamp(38px, 4.8vw, 68px); letter-spacing: 8px; margin-bottom: 24px; line-height: 1.2; }
.ly_web_banner_0001_0 .hero-content p { font-size: 16px; font-weight: 300; letter-spacing: 3px; margin-bottom: 44px; color: var(--text-light); }
.ly_web_banner_0001_0 .btn-group { display: flex; gap: 24px; flex-wrap: wrap; }
.ly_web_banner_0001_0 .btn-outline { font-size: 16px; font-weight: 300; letter-spacing: 3px; padding: 14px 40px; border-radius: 0; border: 1px solid rgba(255, 255, 255, 0.3); color: var(--text-white); background: transparent; cursor: pointer; transition: all .35s ease;}
.btn-outline:hover { background: var(--accent); border-color: var(--accent); }
.ly_web_banner_0001_0 .hero-dots { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 14px; }
.ly_web_banner_0001_0 .dot { width: 10px; height: 10px; background: rgba(255,255,255,.45); cursor: pointer; border-radius: 50%; }
.ly_web_banner_0001_0 .dot.active { background: transparent; border: 2px solid #fff; }

.culture-section-new { padding: 120px 0; background: var(--paper-bg); color: var(--text-main); }
.culture-top-flex { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 60px; }
.culture-title-wrap { margin-bottom: 0; justify-content: flex-start; } 
.culture-desc { width: 45%; font-size: 16px; font-weight: 300; line-height: 2; letter-spacing: 2px; text-align: justify; color: #555; }

.mosaic-container { display: flex; gap: 20px; align-items: stretch; }
.mosaic-side { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.mosaic-center { flex: 1.5; aspect-ratio: 1/1; background: #000; overflow: hidden; position: relative; }
.mosaic-center video { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.3s; }

.mosaic-h-video { width: 100%; aspect-ratio: 16/10; background: #222; overflow: hidden; position: relative; cursor: pointer; border-radius: 0; }
.mosaic-h-video video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.mosaic-h-video:hover video { transform: scale(1.05); }

.mosaic-h-img { width: 100%; flex-grow: 1; background: #eee; overflow: hidden; position: relative; min-height: 250px; border-radius: 0; }
.mosaic-h-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.mosaic-h-img:hover img { transform: scale(1.05); }


@media (max-width: 1200px) {
    .mosaic-container { flex-direction: column; height: auto; }
    .mosaic-side, .mosaic-center { width: 100%; aspect-ratio: auto; }
    .mosaic-center video { aspect-ratio: 16/9; }
}
@media (max-width: 768px) {
    .culture-section-new { padding: 100px 0;}
    .culture-top-flex { flex-direction: column; gap: 20px; }
    .culture-desc { width: 100%; }
}
.craft-carousel-section {  background: #000 url('/module/ly-web/index/0002/images/bg-draft.jpg') no-repeat center center / cover;  height: 950px;  padding: 0; position: relative; overflow: hidden; color: #fff;  display: flex; align-items: center; justify-content: center;}

.craft-slider-wrapper { width: 100%; position: relative; z-index: 2; }

.craft-track { display: flex; transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); width: 100%; }

.craft-slide {  flex: 0 0 100vw; width: 100vw;  display: flex; justify-content: center; align-items: center; 
}
.craft-slide-inner { width: 95%; max-width: 1600px; display: flex; align-items: stretch; justify-content: space-between; gap: 50px; height: 600px; padding: 0 40px;}

.craft-slide-left { width: 35%; display: flex; flex-direction: column; justify-content: space-between; padding: 20px 0; }
.craft-slide-left .craft-desc{font-size: 16px; font-weight: 300; line-height: 2; letter-spacing: 2px; color: rgba(255,255,255,0.8); text-align: justify;}

.craft-slide-right {  width: 60%; display: grid;  grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;  gap: 30px; height: 100%;}
.craft-img-main { grid-column: 1 / 2; grid-row: 1 / 3; }
.craft-img-sub-1 { grid-column: 2 / 3; grid-row: 1 / 2; }
.craft-img-sub-2 { grid-column: 2 / 3; grid-row: 2 / 3; }

.craft-img-box { position: relative; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.5); cursor: pointer; border-radius: 0; }
.craft-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.craft-img-box:hover img { transform: scale(1.05); }

.craft-img-box video.hover-play-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; opacity: 0; transition: opacity 0.5s ease, transform 0.5s ease;}
.craft-img-box:hover video.hover-play-video { opacity: 1; transform: scale(1.05);}

.craft-nav-container { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 95%; max-width: 1600px; height: 0; z-index: 10; pointer-events: none;}
.craft-nav-btn {  pointer-events: auto; position: absolute; top: 50%; transform: translateY(-50%);  width: 72px; height: 72px;  background: rgba(255,255,255,0.05); backdrop-filter: blur(5px); color: #fff;  border: 1px solid rgba(255,255,255,0.3); border-radius: 50%;  display: flex; align-items: center; justify-content: center; cursor: pointer;  transition: all 0.3s ease; }
.craft-nav-btn svg { stroke: #fff; width: 32px; height: 32px; }
.craft-nav-btn:hover { background: var(--accent); border-color: var(--accent); }
.craft-prev { left: -72px; }
.craft-next { right: -72px; }


@media (max-width: 1200px) {
    .craft-slide-inner { flex-direction: column; gap: 30px; padding: 0;height: auto;}
    .craft-slide-left, .craft-slide-right { width: 100%; }
    .craft-slide-right { height: 400px; }
    .craft-nav-container { display: none; } 
}
@media (max-width: 768px) {
    .craft-carousel-section{overflow: hidden; height: auto; padding: 100px 0; }
    .craft-slide{flex: none; width: 100%;}
    .craft-slide-right{grid-area: .3rem;}
    .craft-nav-container{display: flex; justify-content: center; align-items: center; gap: .3rem; width: 100%; top: inherit; bottom: 2%; left: 0; transform: translate(0, 0); height: 50px;}
    .craft-nav-btn {position: relative; top: inherit; bottom: inherit; left: inherit; right: inherit; transform: none; width: 50px; height: 50px;}
}
.products-section-new {  height: 860px; box-sizing: border-box;  background: var(--paper-bg); color: var(--text-main); position: relative; overflow: hidden;  display: flex; align-items: center;  padding: 0 0 0 max(2.5%, calc((100vw - 1600px) / 2));  gap: 50px;}

.product-left-col {  width: 320px; flex-shrink: 0;  height: 470px;  display: flex; flex-direction: column; justify-content: space-between;}

.product-left-top { display: flex; flex-direction: column; align-items: flex-start; gap: 40px; margin-left: 15px; } 
.product-title-wrap.horizontal-adapted { justify-content: flex-start; margin: 0; } 

.tabs { display: flex; gap: 30px; margin: 0; } 
.tab-btn {  font-size: 16px; font-weight: 300; letter-spacing: 2px; cursor: pointer;  color: var(--text-gray); border: none; background: transparent; padding-bottom: 8px; position: relative; transition: color 0.3s;}
.tab-btn.active { color: var(--text-main); font-weight: 400; }
.tab-btn.active::after {  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);  width: 30px; height: 2px; background: var(--accent);}

.prod-nav-group { display: flex; gap: 15px; margin-left: 15px; } 
.prod-nav-btn {  width: 72px; height: 72px; border-radius: 50%; border: 1px solid var(--border-light);  background: transparent; display: flex; align-items: center; justify-content: center;  cursor: pointer; transition: 0.3s;}
.prod-nav-btn svg { stroke: var(--text-main); width: 28px; height: 28px; pointer-events: none; }
.prod-nav-btn:hover { background: var(--accent); border-color: var(--accent); }
.prod-nav-btn:hover svg { stroke: #fff; }

.product-right-col { flex-grow: 1; overflow: hidden; position: relative; margin-left: -80px;}

.product-track-wrapper {  width: 100%;  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; cursor: grab; display: flex;}
.product-track-wrapper::-webkit-scrollbar { display: none; }
.product-track-wrapper.dragging { cursor: grabbing; }

.product-track { display: flex; gap: 20px; width: max-content; min-height: 470px; }
.product-track::after { content: ''; display: block; flex: 0 0 160px; width: 160px; }

.product-card {  flex: 0 0 320px; height: 470px; background: #fff; text-align: center; transition: box-shadow 0.4s ease;  display: flex; flex-direction: column; border: 1px solid #eee; user-select: none;}
.product-card:hover { box-shadow: 0 15px 35px rgba(0,0,0,0.06); }

.product-img-wrap { width: 100%; aspect-ratio: 1; overflow: hidden; margin-bottom: 20px; background: var(--paper-bg); border-radius: 0; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; pointer-events: none;}
.product-card:hover .product-img { transform: scale(1.08); }

.product-info { padding: 0 20px 25px; display: flex; flex-direction: column; flex-grow: 1; }
.product-name { font-size: 20px; font-weight: 600; font-family: var(--font-serif); margin-bottom: 8px; transition: color 0.3s ease; }
.product-card:hover .product-name { color: var(--accent); }
.product-desc { font-size: 16px; font-weight: 300; color: var(--text-gray); margin-bottom: 15px; line-height: 1.6; }
.product-price { font-size: 18px; font-family: var(--font-serif); font-weight: 600; margin-bottom: 20px; margin-top: auto; color: var(--accent); }

.product-actions { display: flex; justify-content: center; gap: 10px; }
.product-actions .btn-action { width: 120px; height: 45px; flex: initial; font-size: 14px; }

.view-all-card { border: 1px solid var(--border-light); background: transparent; display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; transition: all 0.4s ease; text-decoration: none; padding: 40px; border-radius: 0;}
.circle-arrow { width: 70px; height: 70px; border-radius: 50%; border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; margin-bottom: 25px; transition: all 0.3s ease; }
.circle-arrow svg { width: 24px; height: 24px; stroke: var(--text-gray); transition: all 0.3s ease; }
.view-all-text { font-size: 16px; font-family: var(--font-serif); font-weight: 300; color: var(--text-gray); letter-spacing: 2px; transition: color 0.3s ease; }

.view-all-card:hover { background: #fff; border-color: transparent; box-shadow: 0 15px 35px rgba(0,0,0,0.06); }
.view-all-card:hover .circle-arrow { background: var(--accent); border-color: var(--accent); }
.view-all-card:hover .circle-arrow svg { stroke: #fff; transform: translateX(3px); }
.view-all-card:hover .view-all-text { color: var(--accent); }

/* 产品列表加载loading样式 */
.product-loading { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; display: flex; flex-direction: column; gap: 16px; justify-content: center; align-items: center; color: #888; transition: opacity 0.3s ease;}
.loading-spinner { width: 42px; height: 42px; border: 3px solid #eee; border-top-color: #999; border-radius: 50%; animation: spin 0.8s linear infinite;}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


.prod-nav-group.mb{display: none;}


@media (max-width: 1200px) {
    .products-section-new {padding: 100px 4%; flex-direction: column; padding-right: 5%; align-items: flex-start; height: auto;}
    .product-left-col { flex-direction: row; justify-content: space-between; width: 100%; height: auto; padding-bottom: 0; }
    .product-left-top { flex-direction: row; gap: 30px; align-items: center; margin-left: 0;}
    .product-right-col { width: 100%; margin-left: 0; }
}
@media (max-width: 768px) {
    .products-section-new{gap: 40px;}
    .product-left-col{flex-direction: column;}
    .product-left-top{justify-content: space-between;}
    .prod-nav-group{display: none;}
    .prod-nav-group.mb{margin: 0; width: 100%; display: flex; justify-content: center;}
    .prod-nav-btn {  width: 50px; height: 50px;}
}
.ly_web_index_0004_4{background: var(--paper-bg);  padding-bottom: 160px; }
.ai-recommend-section { padding: 0; position: relative; background: #111;}
.ai-container { width: 100vw; max-width: 100%; margin: 0;  height: 480px; position: relative; z-index: 20; overflow: hidden; display: flex; align-items: center; justify-content: center; color: #fff; }
.ai-bg-video { position: absolute; left: 0; top: 0; width: 100%; height: 100%;  object-fit: cover; z-index: 1; filter: brightness(0.4); }
.ai-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.ai-icon-circle { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.05); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.ai-icon-circle img { width: 32px; height: 32px; filter: brightness(0) invert(1); }

.ai-title { font-family: var(--font-serif); font-size: 45px; letter-spacing: 5px; margin-bottom: 16px; font-weight: 700; }
.ai-desc { font-size: 16px; font-weight: 300; letter-spacing: 2px; color: rgba(255,255,255,0.8); margin-bottom: 40px; }

.ai-action-btn {width: auto; height: 50px; background: var(--accent); color: #fff; border: 1px solid var(--accent); padding: 0 40px; height: 50px; font-size: 16px; font-weight: 300; letter-spacing: 2px; border-radius: 0; cursor: pointer; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; transition: all 0.35s ease;}
.ai-action-btn .btn-text { display: inline-block; transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1); }
.ai-action-btn svg { position: absolute; left: 20px; top: 50%; margin-top: -10px; opacity: 0; transform: translateX(-15px); transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);}
.ai-action-btn:hover { background: #7a5d3b; border-color: #7a5d3b; }
.ai-action-btn:hover .btn-text { transform: translateX(12px); }
.ai-action-btn:hover svg { opacity: 1; transform: translateX(0); }

@media (max-width: 768px) {
    .ly_web_index_0004_4{padding-bottom: 0;}
    .ai-title{font-size: 32px;}
}
.why-select-section { height: 250vh; position: relative; background: #000; }
.why-sticky { position: sticky; top: 0; height: 100vh; width: 100%; overflow: hidden; display: flex; align-items: center; }
.why-global-bg { position: absolute; inset: 0; background-image: url();  background-size: cover; background-position: center; filter: brightness(0.6); z-index: 1;}
.why-container { position: relative; z-index: 2; width: 95%; max-width: 1600px; height: 100%; margin: 0 auto; display: flex; justify-content: space-between; }
.why-left { width: 35%; padding-top: calc(25vh - 90px); position: relative; }
.why-title-wrap { margin-bottom: 0; }

.why-right { width: 60%; height: 100%; position: relative; overflow: visible; }

.why-grid { position: absolute; top: calc(25vh + 90px); width: 100%; display: flex; gap: 120px; margin-left: 80px; will-change: transform;}

.why-col { display: flex; flex-direction: column; gap: 120px; } 
.why-col-left { margin-top: 0; }
.why-col-right { transform: translateY(180px); }

.why-card { width: 320px; height: 470px; border-radius: 0; position: relative; overflow: hidden; background: rgba(255,255,255,0.1); backdrop-filter: blur(25px); border: 1px solid rgba(255,255,255,0.12); transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); cursor: pointer;}
.why-card-img { position: absolute; top: 0; left: 0; width: 100%; height: 50%; background-size: cover; background-position: center; opacity: 0; transition: all 0.5s ease;}

.why-card-icon { position: absolute; top: 40px; left: 40px; width: 72px; height: 72px; filter: brightness(0) invert(1); transition: opacity 0.4s ease; z-index: 5;}

.why-card-white-bg { position: absolute; bottom: 0; left: 0; width: 100%; height: 50%; background: #ffffff; opacity: 0; transition: all 0.5s ease;}
.why-card-content { position: absolute; bottom: 0; left: 0; width: 100%; height: 50%; padding: 35px; display: flex; flex-direction: column; justify-content: flex-end; z-index: 2; 
}

.why-hover-icon { width: 45px; height: 45px; margin-bottom: 15px; filter: brightness(0) saturate(100%) invert(45%) sepia(21%) saturate(600%) hue-rotate(345deg) brightness(94%) contrast(87%); opacity: 0; transform: translateY(10px); transition: all 0.4s ease;}

.why-card-title { font-family: var(--font-serif); font-size: 24px; font-weight: 600; letter-spacing: 2px; color: #ffffff; margin-bottom: 15px; transition: color 0.5s ease; }
.why-card-desc { font-size: 16px; font-weight: 300; line-height: 1.8; letter-spacing: 1.5px; color: rgba(255,255,255,0.75); text-align: justify; transition: color 0.5s ease; }

.why-card:hover { border-color: transparent; box-shadow: 0 30px 60px rgba(0,0,0,0.4); transform: translateY(-5px); }
.why-card:hover .why-card-img { opacity: 1; }
.why-card:hover .why-card-icon { opacity: 0; }
.why-card:hover .why-hover-icon { opacity: 1; transform: translateY(0); }
.why-card:hover .why-card-white-bg { opacity: 1; }
.why-card:hover .why-card-title { color: var(--text-main); }
.why-card:hover .why-card-desc { color: #666666; }

@media (max-width: 1200px) {
    .why-grid { flex-direction: column; margin-left: 0; }
    .why-col-left, .why-col-right { margin-top: 0; transform: none; }
    .why-left { width: 30%; }
    .why-right { width: 65%; }
}

@media (max-width: 768px) {
    .why-container { flex-direction: column; }
    .why-left { width: 100%; height: 30vh; padding-top: 15vh; }
    .why-right { width: 100%; height: 70vh; }
    .why-card { width: 100%; }
    .why-col,
    .why-grid{gap: 60px;}
}
.craftsmen-section { position: relative; background: var(--paper-bg); padding: 160px 0 120px; overflow: hidden; z-index: 10; }
        
.craftsmen-top-layout { display: flex; gap: 80px; align-items: stretch; margin-bottom: 80px; }
.craftsmen-left { flex-shrink: 0; }
.culture-title-wrap{margin-bottom: 0;}

.craftsmen-right { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; flex-grow: 1; gap: 60px; }
.craftsmen-desc { width: 740px; font-size: 16px; font-weight: 300; line-height: 2; letter-spacing: 2px; color: #555; text-align: right; }

.stats-grid { display: flex; justify-content: flex-end; gap: 160px; width: 100%; }
.stat-box { display: flex; flex-direction: column; align-items: flex-end; text-align: right; }
.stat-num-box { display: flex; align-items: baseline; color: var(--accent); margin-bottom: 5px; }
.stat-num { font-family: var(--font-serif); font-size: 78px; font-weight: 700; line-height: 1; }
.stat-plus { font-family: var(--font-serif); font-size: 40px; font-weight: 700; margin-left: 4px; }
.stat-name { font-size: 20px; font-weight: 500; letter-spacing: 2px; color: var(--text-main); }

.craftsmen-carousel { width: 100%; height: 500px; border-radius: 0; overflow: hidden; position: relative; }
.craftsmen-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease; border-radius: 0; }
.craftsmen-slide.active { opacity: 1; }

@media (max-width: 1200px) {
    .craftsmen-top-layout { flex-direction: column; align-items: flex-start; gap: 40px; }
    .craftsmen-right, .stats-grid { align-items: flex-start; text-align: left; justify-content: flex-start; gap: 40px; }
    .craftsmen-desc { text-align: left; width: 100%; }
}

@media (max-width: 768px) {
    .craftsmen-section{padding: 100px 0 50px;}
    .craftsmen-top-layout{margin-bottom: 40px;}
    .craftsmen-right, .stats-grid{width: 100%; gap: .4rem; flex-wrap: wrap; }

    .stat-box{width: calc((100% - .4rem) / 2); align-items: flex-start; text-align: left;}
    .stat-num{font-size: .52rem;}
    .stat-plus{font-size: .32rem;}
    .stat-name{font-size: .32rem;}
}
.about-section { padding: 120px 0 180px; background: var(--paper-bg); overflow: hidden; }
.about-flex { display: flex; justify-content: space-between; gap: 5vw; }

.about-img { width: 45%; overflow: hidden; border-radius: 0; aspect-ratio: 7/9; }
.about-img img { width: 100%; height: 100%; display: block; object-fit: cover; border-radius: 0; }

.about-text { width: 35%; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 5%; }
.about-text h2 { margin-bottom: 40px; line-height: 1.6; font-family: var(--font-serif); font-weight: 600; font-size: 24px; letter-spacing: 0.1em; color: var(--text-main); }
.about-text p { margin-bottom: 20px; font-family: var(--font-sans); font-weight: 300; font-size: 16px; letter-spacing: 0.05em; color: #666; line-height: 2.2; }

.about-text .btn-action { margin-top: 40px; align-self: flex-start; }
.about-titles { width: 10%; display: flex; justify-content: flex-end; }

@media (max-width: 1200px) {
    .about-flex { flex-direction: column-reverse; gap: 40px;}
    .about-img, .about-text { width: 100%; }
    .about-titles { width: 100%; justify-content: flex-start; }
}
@media (max-width: 768px) {
    .about-section { padding: 50px 0 100px; }
    .about-text .btn-action{margin-top: .4rem;}
}
.journal-section { padding: 80px 0 140px; background: #fff; }
.journal-title-wrap{justify-content: center; margin-top: 40px;}
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
.article-card { display: block; cursor: pointer; border-radius: 0; }
.article-img { width: 100%; aspect-ratio: 16/10; background: #E8E5E1; overflow: hidden; margin-bottom: 20px; border-radius: 0; }
.article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; border-radius: 0; }
.article-card:hover .article-img img { transform: scale(1.05); }
.article-meta { font-size: 16px; font-weight: 300; color: var(--text-gray); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
.article-card h4 { font-family: var(--font-serif); font-size: 22px; font-weight: 700; margin-bottom: 12px; color: var(--text-main); line-height: 1.4; transition: color 0.3s; }
.article-card:hover h4 { color: var(--accent); }
.article-card p { font-size: 16px; font-weight: 300; color: #666; margin-bottom: 0; line-height: 1.6; }

.more_btn{text-align: center; margin-top: 60px; display: flex; justify-content: center;}

@media (max-width: 1200px) {
    .journal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .journal-section { padding: 100px 0; }
    .journal-grid { grid-template-columns: 1fr; }
    .journal-title-wrap{margin-top: 0; justify-content: flex-start;}
    .more_btn{margin-top: .4rem;}
}
.cta-section { display: flex; position: relative; background-size: auto 100%; background-position: top center; background-attachment: fixed; color: #fff; overflow: hidden;}

.cta-section::after { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: rgba(255,255,255,0.4); z-index: 5; pointer-events: none;}

.cta-bg-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); z-index: 1; }
.cta-box { position: relative; z-index: 2; flex: 1; padding: 120px 8%; display: flex; flex-direction: column; justify-content: center; }

.cta-meta { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.6); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 15px; display: block; font-family: var(--font-sans); }
.cta-box h2 { font-family: var(--font-serif); font-size: 36px; font-weight: 700; margin-bottom: 24px; color: #fff; }
.cta-box p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.8); margin-bottom: 40px; line-height: 1.8; }

.cta-btn { width: 180px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 0; border: 1px solid #fff; background: transparent; color: #fff; font-size: 16px; font-weight: 300; letter-spacing: 2px; cursor: pointer; transition: 0.3s;}
.cta-btn:hover { background: var(--accent); border-color: var(--accent); }

.cta-section .btn-action{color: #fff; width: 180px;}

@media (max-width: 1024px){
    .cta-box{padding: 80px 4%;}
    .cta-meta{margin-bottom: 8px;}
    .cta-box h2{font-size: 32px; margin-bottom: 15px;}
    .cta-box p{font-size: 16px; margin-bottom: 30px;}
    .cta-section .btn-action{width: 150px;}
}
@media (max-width: 769px) {
    .cta-section{flex-direction: column;}
    .cta-section::after{display: none;}

    .cta-box{padding: .8rem 5%;}
    .cta-box:last-child{border-top: 1px solid rgba(255,255,255,0.4);}
}