@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@300;500;700;900&display=swap");


/* =========================================================
   01. 品牌色彩變數
========================================================= */
:root {
    --cy-gold: #B88A52;
    --cy-gold-dark: #8E643B;
    --cy-gold-light: #DCC2A2;
    --cy-brown: #5B4639;
    --cy-text: #62544A;
    --cy-muted: #8F7E72;
    --cy-cream: #FBF7F2;
    --cy-cream-deep: #F2E8DD;
    --cy-line: #DED0C2;
    --cy-white: #FFFFFF;
    --cy-shadow: rgba(142, 100, 59, 0.16);

    /* 秀銀會計記帳士事務所：Header / Footer 專用色 */
    --sy-navy: #162B4D;
    --sy-navy-deep: #0F203A;
    --sy-cream: #FFFAF2;
    --sy-gold: #CCAD74;
    --sy-white: #FFFFFF;
}



/* =========================================================
   02. 全站基礎、首頁背景與開場動畫
========================================================= */
body,
#content {
    color: var(--cy-text);
}


#content_main {
    margin: 0;
    background: transparent;
}

.path {
    display: none;
}

.pageIndex .main_part {
    border-top: none;
}

.bannerindex,
.swiper-banner {
    position: static;
    height: auto;
    margin: 0;
}

.swiper-banner .swiper-slide img {
    width: 100%;
    height: auto;
}

/* 首頁開場動畫 */
.pageIndex #page::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 999998;
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    backdrop-filter: grayscale(1) blur(7px);
    pointer-events: none;
    animation: action-bg 4.3s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}

.pageIndex #page::after {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 999999;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background-image: url("https://pic03.eapple.com.tw/maslow/index.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: action-logo 3s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}

/* 首頁主 Banner 不再使用放大縮小效果 */
.pageIndex .swiper-banner .swiper-wrapper {
    animation: none;
}

.pageIndex .swiper-banner .swiper-slide img,
.pageIndex .swiper-banner .swiper-slide-active img {
    animation: none;
    transform: none;
    transition: none;
}

@keyframes action-bg {
    0% {
        background-color: #FFFFFF;
        backdrop-filter: grayscale(1) blur(7px);
    }

    100% {
        background-color: transparent;
        backdrop-filter: grayscale(0) blur(0);
    }
}

@keyframes action-logo {
    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    .bannerindex {
        margin: 0;
        padding: 0;
    }

    /* 開場動畫：手機版固定滿版裁切，畫面中心不跑掉 */
    .pageIndex #page::after {
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100svh;
        padding-bottom: 0;
        background-position: center center;
        background-size: cover;
        transform: none;
    }
}


/* =========================================================
   03. Header
   首頁初始：白色漸層＋彩色 LOGO＋深藍選單
   下滑 Sticky：深藍底＋白色 LOGO＋白色選單
========================================================= */

/* ---------- 一般內頁：深藍 Header ---------- */
.header_area {
    width: 100%;
    padding: 0;
    background: var(--sy-navy);
}

.main_header_area,
.header_area.sticky .main_header_area {
    min-height: 90px;
    padding: 0;
    background: rgba(22, 43, 77, 0.98);
    border-bottom: 1px solid rgba(204, 173, 116, 0.32);
    box-shadow: 0 6px 22px rgba(15, 32, 58, 0.18);
    backdrop-filter: blur(10px);
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        backdrop-filter 0.3s ease;
}

.main_header_area .container,
.header_area.sticky .main_header_area .container {
    width: 94%;
    max-width: 1600px;
    transition: none;
}

/* LOGO：橫式固定 230px */
.nav-header,
.header_area.sticky .nav-header {
    display: flex;
    width: 250px;
    min-width: 250px;
    max-width: 250px;
    height: 90px;
    margin: 0;
    justify-content: center;
    align-items: center;
    transition: none;
}

.nav-brand,
.header_area.sticky .nav-brand {
    width: 230px;
    min-width: 230px;
    max-width: 230px;
    transition: none;
}

/* 一般內頁與 Sticky 狀態，LOGO 顯示為白色 */
.nav-brand img,
.header_area.sticky .nav-brand img {
    display: block;
    width: 100%;
    max-width: 230px;
    height: auto;
    filter: brightness(0) invert(1);
    transform: none;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

/* 購物功能列 */
.me_tp_features {
    margin: 0;
    padding: 6px 0 0;
    color: rgba(255, 255, 255, 0.82);
}

.me_tp_features a {
    color: rgba(255, 255, 255, 0.82);
}

.me_tp_features a:hover {
    color: var(--sy-gold);
}

.shop_search_btn {
    color: var(--sy-navy);
    background: var(--sy-gold);
    border-color: var(--sy-gold);
}

.shop_search input[type="text"],
.shop_search input[type="search"] {
    color: var(--sy-navy);
    background: var(--sy-cream);
    border-color: rgba(204, 173, 116, 0.55);
}

/* 主選單 */
.navigation,
.header_area.sticky .navigation {
    padding: 5px 0 8px;
    transition: none;
}

.stellarnav {
    position: relative;
    z-index: 99;
    width: 100%;
    line-height: normal;
}

.stellarnav > ul {
    font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

.stellarnav li.has-sub > a::after {
    content: none;
}

.stellarnav > ul > li > a {
    display: block;
    height: 34px;
    margin-left: 22px;
    padding: 0 4px;
    color: var(--sy-white);
    font-size: 15px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 0.06em;
    background:
        linear-gradient(to right, var(--sy-gold) 50%, transparent 50%)
        100% 100% / 200% 1px no-repeat;
    transition:
        color 0.3s ease,
        background-position 0.3s cubic-bezier(0, 0, 0.61, 1.01);
}

.stellarnav > ul > li > a:hover,
.stellarnav li.has-sub:hover > a {
    color: var(--sy-gold);
    background-position: 0 100%;
}

.tp_links,
.i_news_b {
    display: none;
}

.stellarnav .menu-toggle {
    color: var(--sy-white);
}

.stellarnav .menu-toggle::after {
    display: none;
}

.stellarnav .menu-toggle span.bars {
    margin-top: 10px;
}

.stellarnav .menu-toggle span.bars span {
    display: block;
    width: 32px;
    height: 3px;
    margin: 0 auto 7px;
    background: var(--sy-gold);
    border-radius: 6px;
}

/* 下拉選單 */
.stellarnav ul ul {
    left: 60%;
    background: var(--sy-cream);
    border-top: 2px solid var(--sy-gold);
    box-shadow: 0 12px 28px rgba(15, 32, 58, 0.18);
    transform: translateX(-50%);
}

.stellarnav ul ul ul {
    right: auto;
    left: 200px;
    transform: none;
}

.stellarnav > ul > li.drop-left > ul {
    right: unset;
}

.stellarnav li li {
    margin-bottom: 0;
    border: none;
}

.stellarnav li li a,
.stellarnav li li.has-sub > a,
.stellarnav.mobile li li.has-sub a {
    padding: 10px;
    color: var(--sy-navy);
    background: var(--sy-cream);
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    transition: all 0.3s;
}

.stellarnav li li a:hover,
.stellarnav li li.has-sub > a:hover,
.stellarnav.mobile li li.has-sub a:hover {
    color: var(--sy-navy-deep);
    background: rgba(204, 173, 116, 0.24);
}

/* ---------- 首頁：尚未下滑 ---------- */
.pageIndex .header_area {
    position: fixed;
    background: transparent;
}

.pageIndex .main_header_area {
    min-height: 90px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.91) 58%,
        rgba(255, 255, 255, 0) 100%
    );
    border-bottom: none;
    box-shadow: none;
    backdrop-filter: none;
}

.pageIndex .main_header_area .container,
.pageIndex .header_area.sticky .main_header_area .container {
    width: 96%;
    max-width: 1600px;
    transition: none;
}

.pageIndex .nav-header,
.pageIndex .header_area.sticky .nav-header {
    width: 250px;
    min-width: 250px;
    max-width: 250px;
    height: 90px;
    margin: 0;
}

.pageIndex .nav-brand,
.pageIndex .header_area.sticky .nav-brand {
    width: 230px;
    min-width: 230px;
    max-width: 230px;
}

/* 首頁初始使用原始彩色 LOGO */
.pageIndex .nav-brand img {
    filter: none;
}

.pageIndex .navigation,
.pageIndex .header_area.sticky .navigation {
    padding: 5px 0 8px;
}

.pageIndex .stellarnav > ul > li > a {
    height: 34px;
    margin-left: 24px;
    padding: 0 5px;
    color: var(--sy-navy);
    line-height: 34px;
    letter-spacing: 0.05em;
}

.pageIndex .stellarnav .menu-toggle {
    color: var(--sy-navy);
}

.pageIndex .stellarnav .menu-toggle span.bars span {
    background: var(--sy-navy);
}

/* ---------- 首頁：下滑 Sticky ---------- */
.pageIndex .header_area.sticky .main_header_area {
    min-height: 90px;
    background: rgba(22, 43, 77, 0.97);
    border-bottom: 1px solid rgba(204, 173, 116, 0.32);
    box-shadow: 0 6px 22px rgba(15, 32, 58, 0.20);
    backdrop-filter: blur(10px);
}

.pageIndex .header_area.sticky .nav-brand img {
    filter: brightness(0) invert(1);
}

.pageIndex .header_area.sticky .stellarnav > ul > li > a {
    color: var(--sy-white);
}

.pageIndex .header_area.sticky .stellarnav .menu-toggle {
    color: var(--sy-white);
}

.pageIndex .header_area.sticky .stellarnav .menu-toggle span.bars span {
    background: var(--sy-gold);
}

/* ---------- 平板／手機 Header 與選單修正 ---------- */
@media screen and (max-width: 1024px) {

    /*
       手機 Header 維持在畫面上方。
       使用 sticky 而不是 fixed，避免 Banner 被壓住或版面突然跳動。
    */
    .header_area,
    .header_area.sticky,
    .pageIndex .header_area,
    .pageIndex .header_area.sticky {
        position: sticky !important;
        top: 0;
        z-index: 99990;
        width: 100%;
        background: #FFFFFF;
    }

    /*
       下滑前後都維持白底，不再切換成深藍底。
       這樣彩色 LOGO、漢堡與選單不會在 Sticky 狀態消失。
    */
    .main_header_area,
    .header_area.sticky .main_header_area,
    .pageIndex .main_header_area,
    .pageIndex .header_area.sticky .main_header_area {
        min-height: 76px;
        padding: 0;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(22, 43, 77, 0.12);
        box-shadow: 0 4px 16px rgba(15, 32, 58, 0.10);
        backdrop-filter: none;
    }

    .main_header_area .container,
    .header_area.sticky .main_header_area .container,
    .pageIndex .main_header_area .container,
    .pageIndex .header_area.sticky .main_header_area .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }

    .navigation,
    .header_area.sticky .navigation,
    .pageIndex .navigation,
    .pageIndex .header_area.sticky .navigation {
        position: relative;
        min-height: 76px;
        padding: 0;
    }

    /* LOGO 尺寸固定，避免下滑前後忽大忽小 */
    .nav-header,
    .header_area.sticky .nav-header,
    .pageIndex .nav-header,
    .pageIndex .header_area.sticky .nav-header {
        display: flex;
        width: 210px;
        min-width: 210px;
        max-width: 210px;
        height: 76px;
        margin: 0;
        padding: 8px 0;
        align-items: center;
        justify-content: flex-start;
    }

    .nav-brand,
    .header_area.sticky .nav-brand,
    .pageIndex .nav-brand,
    .pageIndex .header_area.sticky .nav-brand {
        width: 190px;
        min-width: 190px;
        max-width: 190px;
    }

    .nav-brand img,
    .header_area.sticky .nav-brand img,
    .pageIndex .nav-brand img,
    .pageIndex .header_area.sticky .nav-brand img {
        display: block;
        width: 100%;
        max-width: 190px;
        height: auto;
        filter: none !important;
        transform: none;
    }

    /*
       漢堡容器固定在 Header 右側。
       不再把 menu-toggle 絕對定位在高度為 0 的 .stellarnav 內，
       避免按鈕被推到 Header 上方而消失。
    */
    .stellarnav.mobile {
        position: absolute !important;
        top: 0;
        right: 15px;
        z-index: 10;
        width: 60px !important;
        height: 76px;
        padding: 0 !important;
        overflow: visible;
    }

    .stellarnav.mobile .menu-toggle,
    .header_area.sticky .stellarnav.mobile .menu-toggle,
    .pageIndex .stellarnav.mobile .menu-toggle,
    .pageIndex .header_area.sticky .stellarnav.mobile .menu-toggle {
        position: static !important;
        display: flex !important;
        width: 60px;
        height: 76px;
        margin: 0 !important;
        padding: 0 !important;
        align-items: center;
        justify-content: center;
        color: var(--sy-navy) !important;
        background: transparent !important;
        transform: none !important;
    }

    .stellarnav.mobile .menu-toggle span.bars {
        display: block;
        margin: 0;
    }

    .stellarnav.mobile .menu-toggle span.bars span,
    .header_area.sticky .stellarnav.mobile .menu-toggle span.bars span,
    .pageIndex .stellarnav.mobile .menu-toggle span.bars span,
    .pageIndex .header_area.sticky .stellarnav.mobile .menu-toggle span.bars span {
        display: block;
        width: 30px;
        height: 3px;
        margin: 0 auto 6px;
        background: var(--sy-navy) !important;
        border-radius: 5px;
    }

    .stellarnav.mobile .menu-toggle span.bars span:last-child {
        margin-bottom: 0;
    }

    /*
       展開後的側邊選單：
       固定在視窗，不會因頁面下滑一起被捲走。
       不指定 display，保留原本外掛的開關功能。
    */
    .stellarnav.mobile > ul {
        position: fixed !important;
        top: 0;
        left: 0;
        z-index: 100000;
        width: min(86vw, 340px);
        max-width: 340px;
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        overflow-y: auto;
        background: #FFFFFF !important;
        box-shadow: 8px 0 28px rgba(15, 32, 58, 0.18);
        overscroll-behavior: contain;
    }

    /* 選單上方 CLOSE */
    .stellarnav.mobile > ul > .close-menu.full {
        display: flex;
        min-height: 44px;
        padding: 0 16px;
        align-items: center;
        justify-content: flex-end;
        color: var(--sy-navy) !important;
        background: #F7F7F7 !important;
        border-bottom: 1px solid rgba(22, 43, 77, 0.12);
        font-size: 12px;
        text-decoration: none;
    }

    .stellarnav.mobile > ul > li {
        position: relative;
        width: 100%;
        margin: 0;
        padding: 0;
        background: #FFFFFF !important;
        border-bottom: 1px solid rgba(22, 43, 77, 0.13);
    }

    /* 第一層選單：白底、深藍字 */
    .stellarnav.mobile > ul > li > a:not(.dd-toggle),
    .pageIndex .stellarnav.mobile > ul > li > a:not(.dd-toggle),
    .pageIndex .header_area.sticky .stellarnav.mobile > ul > li > a:not(.dd-toggle) {
        display: block;
        width: 100%;
        height: auto;
        min-height: 54px;
        margin: 0;
        padding: 16px 58px 16px 18px;
        color: var(--sy-navy) !important;
        background: #FFFFFF !important;
        font-size: 16px;
        font-weight: 500;
        line-height: 22px;
        letter-spacing: 0.04em;
        text-align: left;
    }

    .stellarnav.mobile > ul > li:not(.has-sub) > a:not(.dd-toggle) {
        padding-right: 18px;
    }

    .stellarnav.mobile > ul > li > a:not(.dd-toggle):hover,
    .stellarnav.mobile > ul > li.open > a:not(.dd-toggle) {
        color: var(--sy-navy-deep) !important;
        background: var(--sy-cream) !important;
    }

    /*
       ＋／× 按鈕固定在右側 50px 範圍，
       不會擠壓文字，也不會因 Sticky 狀態跑位。
    */
    .stellarnav.mobile li.has-sub {
        position: relative;
    }


    .stellarnav.mobile li.has-sub > a.dd-toggle {
        position: absolute !important;
        top: 0;
        right: 0;
        z-index: 2;
        display: flex !important;
        width: 50px !important;
        height: 54px !important;
        min-height: 54px;
        margin: 0 !important;
        padding: 0 !important;
        align-items: center;
        justify-content: center;
        color: var(--sy-navy) !important;
        background: transparent !important;
        border-left: 1px solid rgba(22, 43, 77, 0.10);
    }

    .stellarnav.mobile li.has-sub > a.dd-toggle:hover {
        background: var(--sy-cream) !important;
    }

    /*
       ＋／× 圖示沿用 Stellarnav 模組原始樣式。
       這裡不再改寫 .icon-plus 或任何圖示偽元素。
    */

    /* 第二層選單：淡米白底、深藍字 */
    .stellarnav.mobile ul ul,
    .stellarnav.mobile ul ul ul {
        position: static !important;
        top: auto;
        right: auto;
        left: auto !important;
        width: 100%;
        margin: 0;
        padding: 0;
        background: var(--sy-cream) !important;
        border-top: 1px solid rgba(204, 173, 116, 0.30);
        box-shadow: none;
        transform: none !important;
    }

    .stellarnav.mobile ul ul li {
        position: relative;
        width: 100%;
        margin: 0;
        padding: 0;
        background: var(--sy-cream) !important;
        border-bottom: 1px solid rgba(22, 43, 77, 0.08);
    }

    .stellarnav.mobile ul ul li:last-child {
        border-bottom: 0;
    }

    .stellarnav.mobile ul ul li > a:not(.dd-toggle),
    .stellarnav.mobile li li.has-sub > a:not(.dd-toggle) {
        display: block;
        width: 100%;
        min-height: 46px;
        margin: 0;
        padding: 12px 54px 12px 22px;
        color: var(--sy-navy) !important;
        background: var(--sy-cream) !important;
        font-size: 15px;
        font-weight: 400;
        line-height: 22px;
        text-align: center;
    }

    .stellarnav.mobile ul ul li > a:not(.dd-toggle):hover {
        color: var(--sy-navy-deep) !important;
        background: rgba(204, 173, 116, 0.18) !important;
    }

    /* 清除舊版選單寬度與偏移，避免右側多出空白或橫向跑版 */
    .nav-menu {
        margin: 0;
    }

    .nav-menu > li:not(.tp_links) {
        padding-right: 0;
    }

    .nav-dropdown > li,
    .nav-dropdown > li > a {
        width: 100%;
        text-align: center;
    }
}

/* ---------- 手機 ---------- */
@media screen and (max-width: 768px) {
    .main_header_area,
    .header_area.sticky .main_header_area,
    .pageIndex .main_header_area,
    .pageIndex .header_area.sticky .main_header_area,
    .navigation,
    .header_area.sticky .navigation,
    .pageIndex .navigation,
    .pageIndex .header_area.sticky .navigation {
        min-height: 70px;
    }

    .nav-header,
    .header_area.sticky .nav-header,
    .pageIndex .nav-header,
    .pageIndex .header_area.sticky .nav-header {
        width: 180px;
        min-width: 180px;
        max-width: 180px;
        height: 70px;
        padding: 8px 0;
    }

    .nav-brand,
    .header_area.sticky .nav-brand,
    .pageIndex .nav-brand,
    .pageIndex .header_area.sticky .nav-brand {
        width: 160px;
        min-width: 160px;
        max-width: 160px;
    }

    .nav-brand img,
    .header_area.sticky .nav-brand img,
    .pageIndex .nav-brand img,
    .pageIndex .header_area.sticky .nav-brand img {
        max-width: 160px;
    }

    .stellarnav.mobile {
        height: 70px;
    }

    .stellarnav.mobile .menu-toggle,
    .header_area.sticky .stellarnav.mobile .menu-toggle,
    .pageIndex .stellarnav.mobile .menu-toggle,
    .pageIndex .header_area.sticky .stellarnav.mobile .menu-toggle {
        height: 70px;
    }

    .stellarnav.mobile > ul {
        width: min(88vw, 340px);
    }
}

@media screen and (max-width: 400px) {
    .stellarnav.mobile {
        padding: 0;
    }

    .stellarnav.mobile > ul {
        width: 88vw;
    }
}

/* =========================================================
   04. 內頁 Banner
========================================================= */
.banner {
    padding:80px 0 50px 0;
    background: transparent;
    font-size: 30px;
    text-align: center;
	min-height: 180px;
}

.banner h5 {
    position: relative;
    color: var(--sy-navy-deep);
    font-family: "Noto Serif TC", serif;
    font-size: 28px;
    letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
    .banner h5 {
        font-size: 23px;
    }

    .banner.banF h5::before {
        font-size: 15px;
    }
	.banner {
    padding:50px 0 50px 0;
    background: transparent;
    font-size: 30px;
    text-align: center;
	min-height: 120px;
}
}


/* =========================================================
   05. 首頁文章、商品與最新活動
========================================================= */
.pageIndex .i_prod_tit {
    text-align: center;
}

.i_prod_tit span,
.i_video_tit span {
    font-family: "Noto Serif TC", serif;
    font-size: 28px;
}

.news_part {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 50px 0;
}

.news_part .title_i_box {
    display: flex;
    margin-bottom: 30px;
    padding: 0 46px;
    flex-direction: column-reverse;
    text-align: left;
}

.news_part .title_i_box h4 {
    color: var(--cy-gold-dark);
    font-family: "Noto Serif TC", serif;
    font-size: 40px;
    font-weight: 700;
}

.news_part .title_i_box h6 {
    color: var(--cy-muted);
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
}

.news_list ul li a:hover {
    background: var(--cy-cream);
}

.prod_part {
    margin: auto;
    padding: 50px 20px;
    background: #FDF6F0;
}

.pageIndex .products-list .pic img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* 最新活動 */
.module_i_news {
    background: #FFF;
}

.pageIndex .module_i_news .title_i_box {
    align-items: center;
    margin-bottom: 40px;
    padding: 0 20px;
    text-align: center;
}

.pageIndex .module_i_news .title_i_box h4 {
    color: var(--sy-gold);
    font-family: "Noto Serif TC", serif;
    font-size: 40px;
    font-weight: 500;
}

.pageIndex .module_i_news_list {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.pageIndex .module_i_news_list > ul {
    display: grid;
    width: 100%;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
    list-style: none;
}

.pageIndex .module_i_news_list > ul > li {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: rgba(255, 252, 248, 0.9);
    border: 1px solid rgba(184, 138, 82, 0.16);
    border-radius: 18px;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.pageIndex .module_i_news_list > ul > li:hover {
    border-color: rgba(184, 138, 82, 0.35);
    box-shadow: 0 16px 35px rgba(91, 70, 57, 0.10);
    transform: translateY(-6px);
}

.pageIndex .module_i_news_list > ul > li > a {
    display: flex;
    height: 100%;
    color: inherit;
    flex-direction: column;
    text-decoration: none;
}

.pageIndex .module_i_news_list .i_blog_le {
    width: 100%;
    overflow: hidden;
    background: var(--cy-cream);
    aspect-ratio: 1 / 1;
}

.pageIndex .module_i_news_list .i_blog_le img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pageIndex .module_i_news_list li:hover .i_blog_le img {
    transform: scale(1.05);
}

.pageIndex .module_i_news_list .i_blog_ri {
    display: flex;
    width: 100%;
    padding: 24px 24px 28px;
    flex: 1;
    flex-direction: column;
}

.pageIndex .module_i_news_list .i_blog_ri h5 {
    margin: 0 0 10px;
    color: var(--cy-brown);
    font-family: "Noto Serif TC", serif;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.5;
}

.pageIndex .module_i_news_list .i_blog_ri em {
    display: block;
    margin-bottom: 14px;
    color: var(--cy-gold);
    font-size: 13px;
    font-style: normal;
    letter-spacing: 0.04em;
}

.pageIndex .module_i_news_list .i_blog_ri p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #76675D;
    font-size: 15px;
    line-height: 1.8;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.pageIndex .i_blog_b {
    display: flex;
    margin-top: 45px;
    justify-content: center;
}

.pageIndex .i_blog_b .animated-arrow {
    display: flex;
    min-width: 210px;
    padding: 15px 28px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--cy-white);
    background: var(--cy-gold);
    border-radius: 0;
    text-align: center;
}

.pageIndex .i_blog_b .animated-arrow b,
.pageIndex .i_blog_b .animated-arrow i {
    position: static;
    margin: 0;
}

.pageIndex .i_blog_b .animated-arrow:hover {
    background: var(--cy-gold-dark);
}

@media screen and (max-width: 1024px) {
    .pageIndex .module_i_news_list > ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px;
    }
}

@media screen and (max-width: 768px) {
    body.pageIndex .products-list {
        padding: 40px 0 20px;
    }

    .pageIndex .products-list .item {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .pageIndex .module_i_news_list {
        padding: 0 20px;
    }

    .pageIndex .module_i_news_list > ul {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pageIndex .module_i_news_list .i_blog_ri {
        padding: 20px;
    }

    .pageIndex .module_i_news_list .i_blog_ri h5 {
        font-size: 19px;
    }

    .pageIndex .module_i_news .title_i_box h4 {
        font-size: 28px;
    }
}

@media screen and (max-width: 425px) {
    .news_part .title_i_box h4 {
        font-size: 32px;
    }
}


/* =========================================================
   06. 文章列表與文章內頁
========================================================= */
.blog_page .main_part {
    max-width: 1440px;
}

.blog_in_page .main_part {
    max-width: 1200px;
}

.blog_subbox {
    padding: 10px 20px;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.blog_box_edit {
    color: var(--cy-text);
    line-height: 1.8;
    text-align: justify;
}

h4.blog_category_title {
    margin-bottom: 20px;
    padding: 10px 0;
    color: var(--cy-brown);
    border-bottom: 1px solid var(--cy-line);
    font-size: 26px;
    font-weight: 400;
}

.subbox_item {
    margin-right: 2%;
    background: var(--cy-white);
    border: none;
}

.subbox_item:hover {
    box-shadow: 0 10px 28px var(--cy-shadow);
}

.subbox_item a {
    position: relative;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 0 0 1px var(--cy-line);
}

.subbox_item a::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 8;
    width: 0;
    background: rgba(242, 232, 221, 0.72);
    border: 1px solid var(--cy-gold-light);
    opacity: 0;
    transition:
        width 0.5s ease,
        opacity 0.5s ease;
}

.subbox_item a:hover::after {
    width: 100%;
    opacity: 1;
}

.subbox_item a::before {
    content: "READ MORE";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 19;
    width: 150px;
    height: 45px;
    padding: 10px 5px;
    color: var(--cy-brown);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--cy-gold);
    font-size: 18px;
    text-align: center;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.subbox_item a:hover::before {
    color: var(--cy-white);
    background: var(--cy-gold);
    border-color: var(--cy-gold);
    transform: translate(-50%, -50%) scale(1);
}

.blog_list_le {
    width: 100%;
    height: 100%;
    padding: 0;
}

.blog_list_le img {
    max-width: 100%;
}

.blog_list_ri {
    width: 100%;
    padding: 10px 10px 30px;
}

.blog_list_ri h5 {
    color: var(--cy-gold-dark);
    font-weight: 600;
}

.blog_list_ri p {
    display: -webkit-box;
    padding-top: 10px;
    overflow: hidden;
    color: var(--cy-muted);
    font-size: 15px;
    line-height: 1.3;
    white-space: normal;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.blog_list_ri em {
    display: none;
}

.news_related {
    background: none;
    border-top: 1px solid var(--cy-line);
}

.blog_in_page .show_content.blog_box.clearfix {
    padding: 40px;
}

.blog_le {
    width: 220px;
}

.blog_search input[type="search"] {
    width: 100%;
    padding: 10px 35px 10px 10px;
    color: var(--cy-text);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--cy-line);
    border-radius: 0;
    outline: none;
    box-sizing: border-box;
    font-size: 14px;
}

.blog_search input[type="search"]:focus {
    border-color: var(--cy-gold);
    box-shadow: 0 0 0 3px rgba(184, 138, 82, 0.12);
}

.blog_le .accordion {
    margin: auto;
    overflow: hidden;
    border: none;
    border-radius: 0;
    list-style: none;
}

.blog_le .accordion > li:hover,
.blog_le .accordion > li.on_this_category {
    color: var(--cy-gold-dark) !important;
    background: var(--cy-cream-deep) !important;
}

.blog_le .accordion > li:hover .link a,
.blog_le .accordion > li.on_this_category .link a {
    color: var(--cy-gold-dark) !important;
}

.blog_le .accordion li .link:last-child {
    border-bottom: 1px solid var(--cy-line);
}

.blog_ri {
    min-height: 75vh;
    padding: 0;
}

@media screen and (max-width: 768px) {
    .subbox_item {
        width: 46%;
        margin-right: 2%;
    }
}

@media screen and (max-width: 425px) {
    .blog_subbox {
        padding: 20px;
    }

    .subbox_item {
        width: 100%;
        margin-right: 0;
    }

    .blog_list_le img {
        width: 100%;
    }
}


/* =========================================================
   07. 聯絡我們
========================================================= */
.contact_page .main_part {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 0;
}

.contact_editbox {
    margin: auto;
    padding: 0;
}

.contact_content {
    max-width: 1400px;
    margin: auto;
    padding: 10px;
    background: rgba(255, 255, 255, 0.88);
}

.blank_letter {
    color: var(--cy-gold-dark);
    font-family: "Noto Serif TC", serif;
}

.ADD2::before {
    content: "營業時間";
}

.note {
    color: var(--cy-muted);
    font-size: 13px;
    text-align: right;
}

.contact_form {
    margin: 30px 0 20px;
    color: var(--cy-text);
    font-size: 15px;
}

.contact_form li {
    display: block;
    padding: 10px 0 10px 90px;
    border-bottom: 1px solid var(--cy-line);
}

.contact_form li.last {
    margin-top: 30px;
    padding-left: 0;
    border: none;
    text-align: right;
}

.contact_form li .form__label {
    display: inline-block;
    width: 85px;
    margin-left: -90px;
    padding-right: 10px;
    background: transparent;
    text-align: right;
    vertical-align: top;
}

.contact_form li .form__insert {
    display: inline-block;
    width: 100%;
    vertical-align: top;
}

.contact_form li input.noborder,
.contact_form li textarea.noborder {
    color: var(--cy-text);
    background: var(--cy-cream);
    border: 1px solid var(--cy-line);
}

.contact_form li input.noborder:focus,
.contact_form li textarea.noborder:focus {
    border-color: var(--cy-gold);
    box-shadow: 0 0 0 3px rgba(184, 138, 82, 0.12);
}

.contact_form li.last blockquote,
.contact_form li.last cite {
    border: 1px solid var(--cy-gold);
}
.contact_content .information_left{display: none;}
@media screen and (max-width: 1024px) {
    .contact_content .information_right {
        width: 100%;
    }

    .contact_content .information_right {
        padding-left: 0;
    }
}

@media screen and (max-width: 768px) {
    .contact_form li {
        padding: 12px 0;
    }

    .contact_form li .form__label {
        display: block;
        width: 100%;
        margin: 0 0 8px;
        padding: 0;
        float: none;
        background: transparent;
        text-align: left;
    }

    .contact_form li .form__insert {
        display: block;
        width: 100%;
        float: none;
    }

    .contact_form li .form__insert input.noborder,
    .contact_form li .form__insert textarea.noborder,
    .contact_form li .form__insert select {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact_form li.last {
        padding-left: 0;
    }
}


/* =========================================================
   08. 相簿
========================================================= */
.subalbum-menu h2 {
    color: var(--cy-gold-dark);
}

.other_subalbum li {
    background: transparent;
}

.other_album_choice li {
    display: inline-block;
    margin: 0 7px 7px 0;
    padding: 7px 20px;
    color: var(--cy-brown);
    background: var(--cy-cream);
    border: 1px solid var(--cy-line);
    border-radius: 4px;
    font-size: 15px;
    font-variant-east-asian: jis04;
}

.other_album_choice li:hover {
    color: var(--cy-white);
    background: var(--cy-gold);
    border-color: var(--cy-gold);
}

.show-list .show_name {
    color: var(--cy-brown);
    text-align: center;
}

.show-list .item:hover .show_name {

    color: var(--cy-gold-dark);
}

.show-list .show_pic {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 0;
    text-align: center;
}

.show-list .show_pic img,
.pic-list .show_pic img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.show-list .show_pic:hover img,
.pic-list .show_pic:hover img {
    transform: translate(-50%, -50%) scale(1.1);
    transition: transform 0.3s;
}

.overlay {
    z-index: 2;
}

.show_content {
    margin: auto;
    padding: 10px;
}


/* =========================================================
   09. 商品、詢價、Q&A 與促銷
========================================================= */
.filltext {
    color: var(--cy-text);
    background: var(--cy-cream);
}

.form_formonly li {
    display: block;
    padding: 10px 0 10px 160px;
    border-bottom: 1px solid var(--cy-line);
}

.qaform .breakF {
    background: unset;
    border: 1px solid var(--cy-line);
}

ul.prod li h3.prod-thumb {
    margin-bottom: 15px;
    padding: 5px;
    color: var(--cy-white);
    background: var(--cy-gold);
    border-bottom: 1px solid var(--cy-gold);
    font-weight: 400;
    text-align: center;
}

ul.prod li .prod-panel {
    font-size: 14px;
    line-height: 23px;
}

.prod_related {
    display: none;
}

.prod_related h6 span::before {
    color: var(--cy-brown);
    letter-spacing: 0.1em;
}

.products-list {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 10px;
}

.products-list .item {
    width: 100%;
}

.products-list .name {
    height: auto;
    margin: 0;
    padding: 10px 0;
    color: var(--cy-brown);
    font-size: 16px;
    text-align: left;
    -webkit-line-clamp: 6;
}

.products-list .pic img {
    width: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.4s ease;
}

.products-list .pic:hover img {
    transform: scale(1.2);
}

.products-list .more {
    padding: 4px;
    color: var(--cy-gold-dark);
    background: transparent;
    border: 1px solid var(--cy-gold);
    font-size: 16px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    transition: all 0.5s;
}

.products-list .item a:hover .more {
    color: var(--cy-white);
    background: var(--cy-gold);
    letter-spacing: 2px;
}

.products-list .price {
    margin: 0;
}

.products-list .price b {
    display: none;
    color: var(--cy-gold-dark);
    font-size: 16px;
}

.related_list li a {
    display: block;
    padding: 4px;
    background: none;
}

.product_page .main_part {
    width: 100%;
    max-width: 1500px;
}

.product_page .show_content {
    display: flex;
    margin: auto;
    padding: 10px;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.product_page .products-list {
    width: calc(100% - 280px);
}

.product_info_page .product-layer-two {
    display: none;
}

.product-layer-two {
    width: 250px;
    margin: 0;
}

.product-layer-two li {
    width: 100%;
    margin: 0;
    padding: 0 10px;
}

.product-layer-two li i {
    width: 50px;
    height: 45px;
}

.product-layer-two li a {
    position: relative;
    display: block;
    padding: 7px 16px;
    color: var(--cy-brown);
    background: transparent;
    border: none;
    line-height: 2;
    transition: all 0.3s;
}

.product-layer-two > li > a {
    padding-left: 25px;
    border-bottom: 1px dotted var(--cy-line);
}

.product-layer-two li:hover > a,
.product-layer-two li.active > a {
    color: var(--cy-white);
    background: var(--cy-gold);
}

.product-layer-two li.active > a {
    font-weight: 700;
}

.product-layer-two > li > a::before {
    display: none;
}

.product-layer-two li ul {
    position: relative;
    padding-top: 1px;
}

.product-layer-two li li {
    background: transparent;
    border: none;
}

.product-layer-two li li a {
    background: transparent;
}

.product-layer-two li li:hover a {
    color: var(--cy-gold-dark);
    background: transparent;
}

.separate_title {
    padding: 10px 0 10px 40px;
    color: var(--cy-white);
    background: var(--cy-gold-dark);
    font-size: 16px;
}

.sidebarBtn {
    border: 1px solid var(--cy-gold);
}

.sidebarBtn h2 {
    color: var(--cy-brown);
    font-size: 26px;
}

div#number_area {
    font-size: 14px;
}

.mobile_product_name {
    position: relative;
    display: block;
    padding-bottom: 3%;
    color: var(--cy-brown);
    font-size: 30px;
    letter-spacing: 1px;
    text-align: left;
}

.mobile_product_name::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 0;
    left: 6%;
    width: 10%;
    height: 6px;
    background: var(--cy-gold);
    transform: translate(-50%, 4px);
}

.product_pic .bx-wrapper {
    padding: 0;
}

.promotion_title h2 {
    margin-left: 5px;
    color: var(--cy-brown);
    font-weight: 700;
}

@media screen and (max-width: 1024px) {
    .product_page .products-list,
    .product-layer-two {
        width: 100%;
    }

    .product_page .products-list {
        display: grid;
    }

    .product_page .clearfix::before,
    .product_page .clearfix::after {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .product_page .products-list {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .product-layer-two,
    .mobile_product_name {
        display: none;
    }

    .prod_related h6 span::before {
        font-size: 24px;
    }

    .sidebarBtn {
        order: -1;
        margin: 0 auto 20px;
    }

    .product_pic {
        padding-top: 0;
    }

    #prod_thumbSwiper {
        margin: 20px 0;
    }
}

@media screen and (max-width: 425px) {
    .product_page .show_content {
        padding: 10px;
        flex-direction: column;
        justify-content: space-around;
        align-content: center;
    }

    .product_page .products-list {
        width: 100%;
    }
}


/* =========================================================
   10. 共用按鈕與互動狀態
========================================================= */
.animated-arrow,
.send_simple,
.inquiry_a1,
.inquiry_a2,
.inquiry_a3,
.contact_form li.last cite,
.contact_le_map a,
.lastPage,
.blog_back a.article_btn_back,
.nextaction,
.lastaction {
    color: var(--cy-white);
    background-color: var(--cy-gold);
    border-color: var(--cy-gold);
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.animated-arrow:hover,
.send_simple:hover,
.inquiry_a1:hover,
.inquiry_a2:hover,
.inquiry_a3:hover,
.contact_form li.last cite:hover,
.contact_le_map a:hover,
.lastPage:hover,
.blog_back a.article_btn_back:hover,
.nextaction:hover,
.lastaction:hover {
    color: var(--cy-white);
    background-color: var(--cy-gold-dark);
    border-color: var(--cy-gold-dark);
    box-shadow: 0 8px 22px var(--cy-shadow);
}

.rewrite_simple {
    color: var(--cy-brown);
    background: var(--cy-cream-deep);
    border-color: var(--cy-line);
}

.rewrite_simple:hover {
    color: var(--cy-white);
    background: var(--cy-muted);
    border-color: var(--cy-muted);
}

.productBtn {
    width: 100%;
    margin-top: 10px;
    padding-left: 15px;
    background-repeat: no-repeat;
    border: none;
    font-size: 16px;
    line-height: 50px;
    text-align: center;
}

.lastPage {
    display: block;
    width: 130px;
    margin: 40px auto;
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
}

.nextaction {
    background-image: url("../images/next_AC.png");
    background-repeat: no-repeat;
    background-position: right bottom;
}

.lastaction {
    background-image: url("../images/last_AC.png");
    background-repeat: no-repeat;
    background-position: right top;
}


/* =========================================================
   11. Footer
========================================================= */
.footer {
    height: auto;
    padding: 0;
    overflow: hidden;
    color: var(--sy-white);
    background: var(--sy-navy);
    border-top: 3px solid var(--sy-gold) !important;
}

.footer .center {
    max-width: 90%;
    margin: 0 auto;
    padding: 35px 0 30px;
}

.footer_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: none !important;
}

.footer_menu a {
    width: calc(100% / 3 - 20px);
    margin: 10px;
    padding: 10px 15px;
    color: rgba(255, 255, 255, 0.88);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(204, 173, 116, 0.48);
    transition: all 0.3s;
}

.footer_menu a:hover {
    color: var(--sy-navy);
    background: var(--sy-gold);
    border-bottom-color: var(--sy-gold);
    border-radius: 8px 8px 0 0;
}

.footer_menu a:first-child {
    display: none;
}

.footer_info {
    display: flex;
    padding: 50px 0 0;
    flex-direction: column;
    justify-content: center;
}

.footer_info ul {
    display: flex;
    width: 100%;
    padding: 20px 0;
    justify-content: flex-end;
}

.footer_info li:first-child {
    display: flex;
    padding: 0;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    gap: 10px;
}

.footer_info li:nth-child(2) {
    position: static;
    padding: 0;
}

.footer_info li p {
    width: calc(50% - 20px);
    height: fit-content;
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
}

.footer_info li p a {
    color: rgba(255, 255, 255, 0.86);
}

.footer_info li p a:hover {
    color: var(--sy-gold);
}

.footer_info li p.tel2:before {
    content: '所長專線：';
}

/* Footer 橫式 LOGO */
.footer_logo {
    display: flex;
    width: 100%;
    max-width: 230px;
    margin: auto;
    justify-content: center;
    align-items: center;
}

.footer_logo a {
    display: block;
    width: 100%;
}

.footer_logo img {
    display: block;
    width: 100%;
    max-width: 230px;
    height: auto;
    filter: brightness(0) invert(1);
}

.copy {
    margin-top: 0;
    padding: 0 0 15px;
    color: rgba(255, 255, 255, 0.60);
    background: transparent;
    border: none;
    font-size: 12px;
}

.copy a {
    color: rgba(255, 255, 255, 0.60);
}

.copy a:hover {
    color: var(--sy-gold);
}

.box_link {
    display: none;
}

.fa-facebook-f::before {
    content: "\f39e" !important;
}

.footer_info li p.tel::before {
    content: "TEL：";
}

.footer_info li p.add::before {
    content: "ADD：";
}

@media screen and (min-width: 1025px) {
    .footer_info {
        padding-top: 35px;
    }

    .footer_info ul {
        position: relative;
        display: grid;
        padding: 25px 0 30px;
        grid-template-columns:
            260px
            minmax(480px, 1.35fr)
            minmax(330px, 0.9fr);
        align-items: center;
        gap: 45px;
    }

    .footer_logo {
        position: absolute;
        top: 50%;
        left: 0;
        width: 230px;
        max-width: 230px;
        margin: 0;
        transform: translateY(-50%);
    }

    .footer_info li:first-child {
        display: grid;
        width: auto;
        padding: 0;
        grid-column: 2;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-content: center;
        gap: 12px 45px;
    }

    .footer_info li:first-child p {
        width: 100%;
        margin: 0;
    }

    .footer_info li:first-child::after {
        width: 100%;
        margin-top: 2px;
        grid-column: 1;
    }

    .footer_info li:nth-child(2) {
        width: auto;
        padding: 0;
        grid-column: 3;
    }

    .footer_menu {
        justify-content: flex-start;
        align-content: flex-start;
        gap: 0 18px;
    }

    .footer_menu a {
        width: 145px;
        margin: 0 0 16px;
        padding: 10px 14px;
        flex: 0 0 145px;
        text-align: left;
    }
}

@media screen and (max-width: 1024px) {
    .footer_logo {
        position: static;
        width: 100%;
        max-width: 200px;
        margin: 0 auto 20px;
        transform: none;
    }

    .footer_logo img {
        max-width: 200px;
    }

    .footer_info li:first-child {
        flex-direction: column;
    }

    .footer_info li p {
        width: 100%;
    }

    .footer_menu {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 768px) {
    #bottom_menu {
        display: none;
    }

    .footer .center {
        max-width: 90%;
    }

    .footer_logo,
    .footer_logo img {
        max-width: 180px;
    }

    .footer_menu a {
        width: calc(50% - 20px);
    }

    .footer_info ul {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer_info li:first-child,
    .footer_info li:nth-child(2) {
        width: 90%;
    }

    .footer_info li p,
    .footer_info li:first-child::after {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   12. 浮動社群與回到頂部
========================================================= */
.info_fix {
    position: fixed;
    right: 0;
    display: flex;
    width: auto;
    opacity: 1;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    transition: all 0.5s;
}

.info_fix_links {
    display: flex !important;
    width: auto;
    padding: 5px;
    flex-direction: column;
    background: rgba(91, 70, 57, 0.78);
    border-radius: 10px 0 0 10px;
}

.info_fix_links a {
    width: 40px;
    height: 50px;
    margin-bottom: 0;
    color: var(--cy-white);
    background: transparent;
    transition: all 0.3s;
}

.info_fix_links a i {
    font-size: 20px;
}

.info_fix_links a:hover {
    color: #D9B98E;
    background: transparent;
}

.info_fix_links a.info_fix_yt:hover {
    filter: brightness(0.75);
}

.linksBtn {
    display: none;
}

#to_top {
    position: fixed;
    right: 10px;
    bottom: 60px;
    z-index: 999;
    width: 50px;
    height: 50px;
    padding-top: 10px;
    color: var(--cy-white);
    background: var(--cy-gold);
    border-radius: 15px;
    box-shadow: 0 8px 22px var(--cy-shadow);
    font-size: 12px;
    text-align: center;
    text-decoration: none;
}

#to_top:hover {
    background: var(--cy-gold-dark);
}

#to_top i.top {
    height: 15px;
}

#to_top i.top::before,
#to_top i.top::after {
    width: 2px;
    height: 12px;
    background: var(--cy-white);
}

@media screen and (max-width: 768px) {
    .info_fix_links a i {
        font-size: 16px;
    }

    .info_fix_links a.info_fix_ig i {
        font-size: 14px;
    }

    #to_top {
        width: 40px;
        border-radius: 10px;
    }
}
