/*
Theme Name: Benji Theme
Theme URI: 
Author: Trae AI Assistant
Author URI: 
Description: A custom WordPress theme for BNJIS (奔际不锈钢).
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: benji-theme
*/

/* 
 * Reset & Base Styles 
 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

html { margin-top: 0; }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 
 * Colors 
 */
:root {
    --primary-color: #009b77; /* Main green color from design */
    --secondary-color: #f5f5f5;
    --text-color: #333;
    --text-light: #666;
    --border-color: #eee;
}

:target {
    scroll-margin-top: calc(var(--benji-header-height, 75px) + 14px);
}

.about-anchor {
    scroll-margin-top: calc(var(--benji-header-height, 75px) + 14px);
}

/* 
 * Header Styles 
 */
.site {
    padding-top: 0;
    margin-top: 0 !important;
}

.site-header {
    background: #009b77;
    color: #fff;
    padding: 16px 0 14px;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    margin-top: 0;
    top: 0;
}
.site-header.is-scrolled {
    background: rgba(0, 155, 119, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.14);
}

.site-header::after {
    display: none;
}

.site-header .container {
    max-width: 100%;
    padding: 0 16px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.site-branding {
    flex: 0 0 auto;
    padding-left: 25px;
}

.main-navigation {
    flex: 1 1 0;
    display: flex;
    justify-content: stretch;
    padding: 0 18px;
}

.header-right {
    flex: 0 0 auto;
    margin-left: 12px;
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
}

.site-logo-img {
    height: 46px;
    width: auto;
}

.site-logo-text {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1;
}

.main-navigation ul {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    gap: 0;
    flex-wrap: nowrap;
}

.main-navigation li {
    position: relative;
}

.main-navigation .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    transform: none;
    min-width: 240px;
    background: rgba(0, 155, 119, 0.92);
    color: #fff;
    border: 0;
    box-shadow: 0 16px 36px rgba(0,0,0,0.18);
    display: none;
    padding: 14px 22px;
    z-index: 1000;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    text-align: left;
}
.main-navigation li:hover > .sub-menu {
    display: block;
}
.main-navigation .sub-menu li a {
    display: block;
    color: rgba(255,255,255,0.95);
    padding: 9px 0;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
}
.main-navigation .sub-menu li a:hover {
    background: transparent;
    color: #fff;
    text-decoration: underline;
}

.main-navigation .sub-menu a::after {
    display: none !important;
}
.main-navigation li:hover > .sub-menu {
    display: block;
}

.main-navigation .menu-item-has-children > a::after {
    content: '▾';
    margin-left: 6px;
    font-size: 12px;
    opacity: 0.85;
}

.main-navigation a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 0 6px 10px;
    white-space: nowrap;
    word-break: keep-all;
    position: relative;
    letter-spacing: 0.5px;
}

.main-navigation > ul > li > a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    height: 3px;
    background: #0e4a92;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 160ms ease;
    opacity: 0.95;
}

.main-navigation > ul > li:hover > a::after {
    transform: scaleX(1);
}

.main-navigation li:hover > a {
    color: #fff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-search-form {
    position: relative;
}

.header-search-form input {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    padding: 5px 30px 5px 15px;
    color: #fff;
    outline: none;
    width: 200px;
}

.header-search-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.header-search-form button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.search-suggest {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.14);
    overflow: hidden;
    z-index: 90;
    display: none;
}

.search-suggest.is-open {
    display: block;
}

.search-suggest-item {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    background: #fff;
    color: #333;
    padding: 9px 12px;
    cursor: pointer;
    font-size: 13px;
}

.search-suggest-item + .search-suggest-item {
    border-top: 1px solid rgba(0,0,0,0.06);
}

.search-suggest-item:hover,
.search-suggest-item.is-active {
    background: rgba(0,155,119,0.1);
    color: #0b6b51;
}

.search-suggest-empty {
    padding: 10px 12px;
    color: #666;
    font-size: 12px;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    cursor: pointer;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.language-switch img {
    width: 20px;
    height: 14px;
}

.language-toggle {
    appearance: none;
    background: transparent;
    border: 0;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 14px;
}

.language-toggle:focus {
    outline: none;
}

.lang-flag {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.25);
}
.lang-flag.zh {
    background: #d90000;
    border-color: rgba(255,255,255,0.7);
}
.lang-flag.en {
    background: #0e4a92;
    border-color: rgba(255,255,255,0.7);
}
.lang-flag.ru {
    background: #2b6cb0;
    border-color: rgba(255,255,255,0.7);
}
.lang-flag-img {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.6);
    object-fit: cover;
    display: block;
}

.language-menu {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 10px;
    min-width: 160px;
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
    display: none;
    z-index: 1200;
}

.language-switch:hover .language-menu,
.language-switch:focus-within .language-menu {
    display: block;
}

.language-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: #333;
    background: #fff;
    font-size: 14px;
}
.language-menu .lang-flag,
.language-menu .lang-flag-img {
    border-color: rgba(0,0,0,0.12);
}

.language-menu a:hover {
    background: #f5f5f5;
    color: var(--primary-color);
}

.language-menu a.is-active {
    background: #e6f5f0;
    color: var(--primary-color);
}

.mobile-menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    opacity: .9;
    
}

.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(0, 155, 119, 0.96);
    color: #fff;
    display: none;
    padding: 22px 0 26px;
    box-shadow: 0 16px 36px rgba(0,0,0,0.18);
    z-index: 1200;
}
.site-header:hover .mega-menu,
.mega-menu:hover {
    display: block;
}
.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}
.mega-col h4 {
    font-size: 18px;
    margin-bottom: 12px;
}
.mega-col h4 a { color: #fff; }
.mega-col ul li { margin: 8px 0; }
.mega-col ul li a {
    color: rgba(255,255,255,0.92);
    font-size: 14px;
}
.mega-col ul li a:hover { color: #fff; text-decoration: underline; }


/* 
 * Banner Styles 
 */
.page-banner {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner--plain {
    height: auto;
    display: block;
    background-image: none;
    line-height: 0;
}

.page-banner--plain .page-banner-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
.page-banner h1 {
    color: #fff;
    font-size: 36px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* 
 * Sub Nav & Breadcrumbs 
 */
.sub-nav-breadcrumbs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.sub-nav {
    display: flex;
}

.sub-nav a {
    display: inline-block;
    padding: 20px 30px;
    font-size: 16px;
    color: var(--text-color);
    position: relative;
}

.sub-nav a.active,
.sub-nav a:hover {
    color: var(--primary-color);
}
.sub-nav a.active::after,
.sub-nav a:hover::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.breadcrumbs {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--text-light);
}
.breadcrumbs a:hover {
    color: var(--primary-color);
}

/*
 * Products Page
 */
.products-banner-title {
    font-size: 48px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.5px;
    text-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.products-page {
    padding-bottom: 40px;
    max-width: 1400px;
    --products-sidebar-width: 300px;
    --products-gap: 46px;
    --products-thumb-w: 300px;
    --products-thumb-h: 230px;
    --products-thumb-gap: 22px;
    --products-thumb-visible: 3;
}

.products-breadcrumbs {
    margin-top: 20px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumbs-label {
    color: var(--text-light);
}

.breadcrumbs-sep {
    color: var(--text-light);
}
.benji-home-breadcrumbs-wrap {
    margin-top: 18px;
    margin-bottom: 18px;
}

.products-layout {
    display: flex;
    gap: var(--products-gap);
    margin-bottom: 56px;
}

.products-sidebar {
    width: var(--products-sidebar-width);
    flex: 0 0 auto;
}

.products-main-below {
    margin-left: 0;
}

.products-sidebar-title {
    background-color: var(--primary-color);
    color: #fff;
    padding: 14px 18px;
    font-size: 18px;
    text-align: center;
    margin: 0;
}

.products-category-list {
    border: 1px solid var(--border-color);
    border-top: none;
}

.products-category-item {
    border-bottom: 1px solid var(--border-color);
}

.products-category-item:last-child {
    border-bottom: none;
}

.products-category-btn {
    width: 100%;
    text-align: center;
    display: block;
    padding: 18px 18px;
    background: #fafafa;
    border: 0;
    cursor: pointer;
    color: #333;
    font-size: 15px;
}
.products-category-item.is-active .products-category-btn,
.products-category-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.products-main {
    flex: 1 1 0;
    min-width: 0;
}

.products-intro {
    display: grid;
    grid-template-columns: minmax(0, 480px) 1fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 18px;
}

.products-intro-media {
    max-width: 480px;
    margin: 0;
}

.products-lead-btn {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    display: block;
}

.products-lead-img {
    width: 100%;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.06);
    background: #fff;
    display: block;
    height: 420px;
    object-fit: cover;
}

.products-section-title {
    font-size: 24px;
    margin-bottom: 12px;
}

.products-standards {
    margin-bottom: 14px;
}
.products-standards-list {
    margin: 0;
    padding-left: 18px;
    color: var(--text-light);
    display: grid;
    gap: 8px;
}

.products-materials-wide {
    margin-top: 8px;
    margin-bottom: 18px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}
.products-materials-wide__title {
    margin: 0;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 800;
    color: #1f1f1f;
    background: #f6fbf9;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.products-materials-wide__body {
    padding: 12px 16px 16px;
}

.fittings-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}
.fittings-card {
    padding: 18px 16px 14px;
    border-right: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    display: grid;
    place-items: center;
    gap: 14px;
    background: #fff;
    transition: transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fittings-card:hover {
    transform: translateY(-2px);
}
.fittings-card img {
    width: min(320px, 100%);
    height: 320px;
    object-fit: contain;
    display: block;
}
.fittings-card__title {
    font-size: 14px;
    font-weight: 800;
    color: #1f1f1f;
}

.fitting-detail-top {
    display: grid;
    grid-template-columns: minmax(0, 420px) 1fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 22px;
}
.fitting-detail-media {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}
.fitting-detail-media img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    display: block;
}
.fitting-detail-title {
    margin: 0 0 14px;
    font-size: 24px;
    font-weight: 900;
    color: #111;
}
.fitting-detail-contact {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}
.fitting-detail-contact__item {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.fitting-detail-contact__icon {
    width: 16px;
    text-align: center;
    color: var(--primary-color);
    font-size: 14px;
}
.fitting-detail-contact__text {
    line-height: 1.3;
}
.fitting-detail-contact__item:hover {
    text-decoration: underline;
}
.fitting-detail-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 18px;
    border-radius: 10px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
}
.fitting-detail-cta:hover {
    background: #007a52;
}
.fitting-detail-section__title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 900;
    color: #111;
}
.fitting-detail-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid rgba(0,0,0,0.10);
}
.fitting-detail-table th,
.fitting-detail-table td {
    border: 1px solid rgba(0,0,0,0.10);
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.6;
}
.fitting-detail-table th {
    width: 140px;
    background: #f6fbf9;
    color: #235a4e;
    text-align: left;
    font-weight: 800;
}
.fitting-detail-nav {
    margin-top: 18px;
    display: grid;
    gap: 8px;
}
.fitting-detail-nav a {
    color: var(--primary-color);
    font-weight: 800;
    text-decoration: none;
}
.fitting-detail-nav a:hover {
    text-decoration: underline;
}
.fitting-more {
    margin-top: 26px;
}
.fitting-more-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.fitting-more-card {
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
}
.fitting-more-card img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    display: block;
    background: #fff;
}
.fitting-more-card__title {
    padding: 10px 12px 12px;
    font-size: 13px;
    font-weight: 800;
    color: #1f1f1f;
}

.products-intro-desc {
    color: var(--text-light);
    margin-bottom: 14px;
}

.products-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.products-info-block {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}
.products-info-title {
    margin: 0;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 700;
    color: #1f1f1f;
    background: #f6fbf9;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.products-info-body {
    padding: 12px 16px 16px;
}
.products-accordion {
    display: grid;
    gap: 10px;
}

.products-accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.products-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    border: 0;
    background: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #1f1f1f;
}

.products-accordion-btn:hover {
    background: #f6fbf9;
}

.products-accordion-icon {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 2px solid rgba(120,120,120,0.55);
    background: transparent;
    position: relative;
    flex: 0 0 auto;
    margin-left: 10px;
}

.products-accordion-item.is-open .products-accordion-icon {
    border-color: rgba(0,155,119,0.75);
}

.products-accordion-item.is-open .products-accordion-icon::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 999px;
    background: var(--primary-color);
}

.products-accordion-panel {
    padding: 0 16px 16px;
}

.products-materials-list {
    margin: 0;
    padding-left: 0;
    color: var(--text-light);
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px 18px;
}
.products-materials-list li {
    padding: 2px 0;
}

.products-params-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.products-params-table th,
.products-params-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    line-height: 1.35;
}

.products-params-table tr:last-child th,
.products-params-table tr:last-child td {
    border-bottom: none;
}

.products-params-table th {
    width: 120px;
    text-align: left;
    background: #f6fbf9;
    color: #235a4e;
    font-weight: 600;
}

.products-advantages {
    margin: 0;
    padding-left: 18px;
    color: var(--text-light);
    display: grid;
    gap: 10px;
}

.products-gallery {
    margin-top: 30px;
    margin-bottom: 26px;
}

.products-carousel {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.products-carousel-viewport {
    overflow: hidden;
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc((var(--products-thumb-visible) * var(--products-thumb-w)) + ((var(--products-thumb-visible) - 1) * var(--products-thumb-gap)));
}

.products-carousel-track {
    display: flex;
    gap: var(--products-thumb-gap);
    will-change: transform;
    transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.products-carousel-item {
    flex: 0 0 auto;
    width: var(--products-thumb-w);
    height: var(--products-thumb-h);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    background: #fff;
    padding: 0;
    cursor: pointer;
}

.products-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.products-carousel-item:hover img {
    transform: scale(1.08);
}

.products-carousel-item.is-active {
    outline: 2px solid rgba(0,155,119,0.55);
    outline-offset: 0;
}

.products-carousel-arrow {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.14);
    background: #fff;
    color: #245a4e;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 22px;
    line-height: 1;
}

.products-carousel-arrow.is-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.products-carousel-arrow:hover {
    border-color: rgba(0,155,119,0.45);
    color: var(--primary-color);
}

.products-process {
    margin-top: 10px;
    padding-bottom: 6px;
    text-align: center;
    overflow-x: hidden;
}

.products-center-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 26px;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.products-process-chart {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: visible;
    border-radius: 0;
    border: 0;
    background: transparent;
}

.products-process-chart img {
    width: min(1600px, 122%);
    height: auto;
    display: block;
    margin: 0 auto;
}

.contact-page {
    padding-top: 20px;
    padding-bottom: 70px;
}

.contact-breadcrumbs {
    margin-top: 20px;
    margin-bottom: 18px;
}

.contact-title-area {
    text-align: center;
    padding: 14px 0 18px;
}

.contact-title {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.contact-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 14px auto 0;
    border-radius: 3px;
}

.contact-info-strip {
    background: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    text-align: center;
    padding: 18px 12px;
    gap: 8px;
}

.contact-info-icon {
    font-size: 26px;
    line-height: 1;
    margin-bottom: 6px;
}

.contact-info-label {
    font-size: 14px;
    opacity: 0.95;
}

.contact-info-value {
    display: block;
    color: #fff;
    font-size: 13px;
    opacity: 0.92;
    margin-top: 4px;
    word-break: break-word;
}

.contact-info-value:hover {
    opacity: 1;
    text-decoration: underline;
}

.contact-map-area {
    margin-top: 26px;
}

.contact-map {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    background: #f4f6f8;
}

.contact-map-link {
    display: block;
}

.contact-map-image {
    width: 100%;
    height: 420px;
    display: block;
    object-fit: contain;
    background: #f4f6f8;
}

.contact-map-viewer {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: #f4f6f8;
    touch-action: pan-x pan-y;
}

.contact-map-viewer.is-dragging {
    cursor: grabbing;
}

.contact-map-canvas {
    width: 100%;
    height: 100%;
    transform-origin: center center;
    will-change: transform;
}

.contact-map-viewer .contact-map-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
    user-select: none;
}

.contact-map-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    transform: translate(-50%, -100%);
    background: var(--primary-color);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.contact-map-marker::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid var(--primary-color);
    transform: translateX(-50%);
}

.contact-map-controls {
    position: absolute;
    right: 14px;
    top: 14px;
    display: grid;
    gap: 8px;
}

.contact-map-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.10);
    background: rgba(255,255,255,0.92);
    color: #333;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.contact-map-btn:hover {
    border-color: rgba(0,155,119,0.25);
}

.contact-map-iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
    background: #f4f6f8;
}

.contact-map-baidu {
    width: 100%;
    height: 420px;
}

.contact-map-baidu-inner {
    width: 100%;
    height: 100%;
}

.contact-map-open {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

.contact-map-open:hover {
    text-decoration: underline;
}

.contact-map-placeholder {
    height: 360px;
    display: grid;
    place-items: center;
    gap: 10px;
    background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.01));
}

.contact-map-pin {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(0,155,119,0.12);
    color: var(--primary-color);
    font-size: 22px;
}

.contact-map-text {
    color: var(--text-color);
    font-size: 14px;
}

.contact-section-title {
    text-align: center;
    font-size: 28px;
    color: var(--primary-color);
    margin: 48px 0 10px;
    letter-spacing: 1px;
}

.contact-section-title--dark {
    color: var(--text-color);
    letter-spacing: 0;
}

.contact-section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin: 0 auto 26px;
    max-width: 760px;
}

.contact-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 26px;
}

.contact-step {
    text-align: center;
}

.contact-step-num {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    margin: 0 auto 14px;
}

.contact-step-title {
    font-size: 18px;
    margin: 0 0 10px;
    color: var(--text-color);
}

.contact-step-desc {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.contact-after-sales {
    margin-top: 46px;
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #f3f3f3;
}

.contact-after-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    align-items: start;
    gap: 1px;
    max-width: 1320px;
    margin: 0 auto;
    background: transparent;
    border-radius: 0;
    border: 0;
    padding: 34px 26px;
}

.contact-after-left {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.contact-fax-card {
    display: grid;
    gap: 6px;
    color: var(--text-color);
}

.contact-fax-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.contact-fax-title i {
    opacity: 0.85;
}

.contact-fax-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
    opacity: 0.85;
}

.contact-fax-value {
    color: var(--text-light);
    font-size: 14px;
}

.contact-qr-stack {
    display: grid;
    gap: 14px;
}

.contact-qr-stack-item {
    width: 132px;
}

.contact-hotline-card {
    width: 100%;
    max-width: 520px;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: grid;
    gap: 10px;
    justify-items: start;
    text-align: left;
}

.contact-hotline-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--text-color);
    font-size: 24px;
}

.contact-hotline-title i {
    color: var(--primary-color);
    opacity: 0.95;
}

.contact-hotline-value {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    letter-spacing: 0.6px;
    white-space: nowrap;
    color: var(--primary-color);
    font-weight: 800;
}

.contact-hotline-value:hover {
    text-decoration: underline;
}

.contact-hotline-tip {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.9;
    font-weight: 400;
}

.contact-after-grid {
    background: #fafafa;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 32px;
    display: grid;
    grid-template-columns: minmax(0, 320px) 1fr;
    gap: 26px;
    align-items: center;
}



.contact-qr-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-qr-box img,
.contact-qr-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.contact-qr-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.contact-qr-label {
    text-align: center;
    margin-top: 8px;
    color: var(--text-color);
    font-size: 13px;
}

.contact-after-textcol {
    min-width: 0;
}

.contact-after-title {
    margin: 0 0 10px;
    font-size: 24px;
    color: var(--text-color);
}

.contact-after-desc {
    margin: 0 0 16px;
    color: var(--text-light);
    line-height: 1.9;
}

.contact-after-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 16px;
}

.contact-after-phone:hover {
    background: #007a52;
}

.contact-after-illustration {
    width: 100%;
    height: 380px;
    border-radius: 0;
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-after-illustration-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

.site-content {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.site-content > *:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.contact-message {
    margin-top: 0;
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #fff;
    border: 0;
    border-radius: 0;
    padding: 64px 0 70px;
}

.contact-alert {
    max-width: 860px;
    margin: 0 auto 18px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
}

.contact-alert.is-success {
    background: rgba(0,155,119,0.10);
    border: 1px solid rgba(0,155,119,0.22);
    color: #0b5a45;
}

.contact-alert.is-error {
    background: rgba(220,38,38,0.10);
    border: 1px solid rgba(220,38,38,0.20);
    color: #7f1d1d;
}

.contact-form {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 26px;
}

.contact-form textarea {
    width: 100%;
    height: 220px;
    padding: 16px;
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 0;
    resize: none;
    background: #f3f3f3;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 340px 340px;
    justify-content: start;
    gap: 14px;
    margin-top: 14px;
}

.contact-form input {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 0;
    background: #f3f3f3;
}

.contact-form textarea:focus,
.contact-form input:focus {
    outline: none;
    border-color: rgba(0,155,119,0.55);
    box-shadow: 0 0 0 4px rgba(0,155,119,0.12);
}

.contact-form button {
    width: 100%;
    margin-top: 16px;
    padding: 14px;
    background: var(--primary-color);
    color: #fff;
    border: 0;
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.contact-form button:hover {
    background: #007a52;
}

@media (max-width: 992px) {
    .contact-info-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        text-align: left;
        padding: 16px;
        gap: 14px;
    }
    .contact-info-item {
        text-align: left;
        display: grid;
        grid-template-columns: 34px 1fr;
        column-gap: 10px;
        row-gap: 2px;
        align-items: start;
    }
    .contact-info-icon {
        margin-bottom: 0;
        font-size: 22px;
        grid-row: span 2;
    }
    .contact-info-label {
        font-size: 13px;
    }
    .contact-info-value {
        margin-top: 0;
    }
    .contact-steps {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .contact-after-strip {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .contact-after-illustration {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .contact-form-row {
        grid-template-columns: 1fr;
    }
}

.online-inquiry {
    background-size: cover;
    background-position: center;
    padding: 64px 0;
    color: #fff;
    text-align: center;
    position: relative;
}

.online-inquiry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.35);
}

.online-inquiry .container {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.online-inquiry h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.online-inquiry p {
    margin-bottom: 26px;
    color: rgba(255,255,255,0.86);
}

.inquiry-alert {
    padding: 10px 14px;
    border-radius: 8px;
    margin: 0 auto 14px;
    max-width: 720px;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.14);
}

.inquiry-alert.is-success {
    border-color: rgba(0,155,119,0.6);
    background: rgba(0,155,119,0.22);
}

.inquiry-alert.is-error {
    border-color: rgba(255,90,90,0.6);
    background: rgba(255,90,90,0.18);
}

.inquiry-form .form-row {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 14px 14px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 6px;
    color: #fff;
    outline: none;
    font-size: 14px;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: rgba(255,255,255,0.65);
}

.inquiry-form textarea {
    height: 130px;
    resize: none;
}

.inquiry-form button {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
}

.inquiry-form button:hover {
    background-color: #007a52;
}

/* 
 * Pagination
 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a, .pagination span {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 34px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-light);
}

.pagination a:hover, .pagination span.current {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.page-banner--factory {
    position: relative;
}
.factory-banner-inner {
    width: 100%;
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-right: 10%;
    padding-bottom: 26px;
}
.factory-banner-pill {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px 40px;
    border-radius: 40px 0 0 40px;
    text-align: left;
}
.factory-banner-line1 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 700;
}
.factory-banner-line2 {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 800;
}

.factory-section {
    margin: 26px 0 40px;
}
.factory-section__title {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 900;
    color: #111;
}

.factory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.factory-card {
    position: relative;
    overflow: hidden;
    display: block;
}

.factory-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.factory-card:hover .factory-card__image {
    transform: scale(1.05);
}

.factory-card__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.8);
    text-align: center;
    padding: 10px 0;
    color: #333;
    font-size: 14px;
}

.factory-card__placeholder {
    width: 100%;
    height: 200px;
    background: #f2f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.benji-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
}
.benji-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.66);
}
.benji-lightbox__dialog {
    position: absolute;
    inset: 24px;
    display: grid;
    place-items: center;
}
.benji-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(0,0,0,0.35);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
}
.benji-lightbox__nav:hover {
    background: rgba(255,255,255,0.16);
}
.benji-lightbox__nav--prev {
    left: 18px;
}
.benji-lightbox__nav--next {
    right: 18px;
}
.benji-lightbox__img {
    max-width: min(1100px, calc(100vw - 48px));
    max-height: calc(100vh - 48px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 28px 70px rgba(0,0,0,0.35);
    background: #fff;
}
.benji-lightbox__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(0,0,0,0.35);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}
.benji-lightbox__close:hover {
    background: rgba(255,255,255,0.16);
}

.pagination-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.factory-page .pagination-area {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.factory-page .pagination-area .page-info {
    justify-self: start;
}

.factory-page .pagination {
    justify-content: center;
    margin-top: 0;
}

.pagination-area .page-info {
    color: var(--text-light);
    font-size: 13px;
}

.factory-empty {
    padding: 60px 0;
    text-align: center;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .factory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .factory-banner-inner {
        padding-right: 6%;
    }
}

@media (max-width: 576px) {
    .factory-grid {
        grid-template-columns: 1fr;
    }
    .factory-banner-inner {
        padding-right: 4%;
    }
    .factory-banner-pill {
        padding: 14px 18px;
        border-radius: 22px 0 0 22px;
    }
    .factory-banner-line1 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    .factory-banner-line2 {
        font-size: 22px;
    }
    .pagination-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

/* 
 * Floating Sidebar 
 */
.floating-sidebar {
    position: fixed;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.floating-sidebar a {
    width: 56px;
    height: 56px;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    font-size: 24px;
    position: relative;
}

.floating-sidebar .float-icon-img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    display: block;
    filter: brightness(0) invert(1);
}

.floating-sidebar a:hover {
    background-color: #007a52;
}
.floating-sidebar a.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.benji-return-btn {
    display: none;
}
.breadcrumbs .benji-return-inline {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 12px;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid rgba(0,155,119,0.45);
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}
.breadcrumbs .benji-return-inline:hover {
    background: #fff;
    color: var(--primary-color);
    border-color: rgba(0,155,119,0.55);
}

.benji-chat-launcher {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1001;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 52px;
    padding: 0 16px 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(0,155,119,0.40);
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}
.benji-chat-launcher__icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.22);
    font-size: 18px;
}
.benji-chat-launcher__text {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.benji-chat-launcher:hover {
    background: #fff;
    color: var(--primary-color);
    border-color: rgba(0,155,119,0.55);
}
.benji-chat-launcher:hover .benji-chat-launcher__icon {
    background: rgba(0,155,119,0.10);
    border-color: rgba(0,155,119,0.22);
}

.benji-chat-setup {
    position: fixed;
    inset: 0;
    z-index: 1100;
}
.benji-chat-setup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}
.benji-chat-setup__panel {
    position: absolute;
    right: 18px;
    bottom: 82px;
    width: min(360px, calc(100vw - 24px));
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 20px 44px rgba(0,0,0,0.22);
    padding: 16px 16px 14px;
}
.benji-chat-setup__title {
    font-size: 16px;
    font-weight: 900;
    color: #111;
    margin-bottom: 8px;
}
.benji-chat-setup__desc {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 14px;
}
.benji-chat-setup__actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}
.benji-chat-setup__btn {
    appearance: none;
    border: 1px solid rgba(0,0,0,0.10);
    background: #fff;
    color: #111;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
}
.benji-chat-setup__btn.is-primary {
    background: var(--primary-color);
    color: #fff;
    border-color: rgba(0,155,119,0.35);
}
.benji-chat-setup__btn.is-primary:hover {
    background: #007a52;
}

@media (max-width: 768px) {
    .benji-chat-launcher {
        right: 12px;
        bottom: 12px;
        height: 48px;
        padding: 0 14px 0 12px;
        gap: 8px;
    }
    .benji-chat-launcher__icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    .benji-chat-launcher__text {
        font-size: 14px;
    }
}

.floating-sidebar a[data-label]::after {
    content: attr(data-label);
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.78);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    display: inline-block;
    width: max-content;
    white-space: pre-line;
    text-align: center;
    max-width: min(240px, calc(100vw - 140px));
    word-break: normal;
    overflow-wrap: normal;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.floating-sidebar a[data-label]:hover::after {
    opacity: 1;
}

@media (max-width: 576px) {
    .floating-sidebar a[data-label]::after {
        font-size: 13px;
        padding: 7px 10px;
    }
}

/* 
 * Footer Styles 
 */
.site-footer {
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 0;
    margin-top: 0;
    border-top: 0 !important;
    position: relative;
    top: 0;
    margin-top: -1px !important;
}

#page,
.site-content {
    border-top: 0 !important;
    margin-top: 0 !important;
}

#page {
    padding-top: 0 !important;
}

.site-content {
    padding-top: 0 !important;
}

.site-main {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.site-content > section:last-child,
.site-content > div:last-child,
 .site-main > section:last-child,
 .site-main > div:last-child,
main > section:last-child,
main > div:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
}

body.page-template-template-about .philosophy-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body.page-template-template-about .philosophy-section::after {
    display: none !important;
}

body.page-template-template-about .site-content {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body.page-template-template-about .site-footer {
    margin-top: -1px !important;
    border-top: 0 !important;
}

.site-footer--inner {
    background-image: none;
}

.footer-inner-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 56px;
    padding: 48px 0 34px;
    min-width: 1040px;
}

.site-footer--inner .container {
    overflow-x: auto;
}

.footer-inner-title {
    font-size: 16px;
    margin: 0 0 18px;
    font-weight: 700;
}

.footer-inner-title a {
    color: #fff;
}

.footer-inner-title a:hover {
    text-decoration: underline;
}

.footer-inner-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.footer-inner-list a {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}

.footer-inner-list a:hover {
    color: #fff;
}

.footer-follow {
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
}

.footer-follow-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

.footer-follow-text {
    white-space: nowrap;
}

.footer-follow-item:hover {
    color: #fff;
}

.footer-follow-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.14);
}

.site-info--inner {
    border-top: 0;
    padding: 16px 0;
    background: rgba(0,0,0,0.12);
    color: rgba(255,255,255,0.9);
}

.footer-main {
    padding: 55px 0 30px;
    position: relative;
}

.footer-main-inner {
    display: grid;
    grid-template-columns: 380px 1fr 140px;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    border: 0;
    background: transparent;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 46px;
    width: auto;
    border: 0;
    outline: 0;
    box-shadow: none;
    background: transparent;
    clip-path: inset(6px 5px 6px 5px);
}

.footer-contact-item {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.92);
}

.footer-contact-item .icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.12);
}
.footer-contact-item .text a { color: rgba(255,255,255,0.92); }
.footer-contact-item .text a:hover { color: #fff; text-decoration: underline; }

.footer-hotline-big {
    margin-top: 12px;
    display: grid;
    gap: 6px;
}
.footer-hotline-big__label {
    font-size: 16px;
    font-weight: 800;
    color: rgba(255,255,255,0.92);
}
.footer-hotline-big__value {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}
.footer-hotline-big__value:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 40px;
    margin-bottom: 40px;
}

.site-footer:not(.site-footer--inner) .footer-column {
    min-width: 0;
}

.footer-column {
    flex: 1;
    min-width: 160px;
    margin-bottom: 20px;
}

.footer-column .widget-title {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: bold;
}
.footer-column .widget-title a { color: #fff; }
.footer-column .widget-title a:hover { text-decoration: underline; }

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 12px;
}
.social-links a i {
    font-size: 24px;
    margin-bottom: 5px;
    display: block;
}
.social-links a:hover {
    color: #fff;
}


.footer-right {
    position: absolute;
    right: 200px;
    bottom: 20px;
    display: block;
}

.footer-qr {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 4px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}
.footer-qr img { width: 100%; height: 100%; object-fit: cover; display: block; }

.site-info {
    text-align: center;
    padding-top: 20px;
    border-top: 0;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

.mobile-head-menu .ul .li{
    padding: 15px 0 15px 25px;
}

/* Responsive */
@media (max-width: 992px) {
    .main-navigation, .header-right .header-search-form, .header-right .language-switch {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
    }
    .products-layout {
        flex-direction: column;
        gap: 22px;
    }
    .products-sidebar {
        width: 100%;
    }
    .products-main-below {
        margin-left: 0;
    }
    .products-intro {
        grid-template-columns: 1fr;
    }
    .products-category-list {
        min-height: 0;
    }
    .products-intro-media {
        max-width: none;
    }
    .products-lead-img {
        height: auto;
    }
    .footer-links{
        display:none;
    }
    .products-page {
        --products-thumb-w: 240px;
        --products-thumb-h: 180px;
        --products-thumb-visible: 2;
    }
    .products-info {
        grid-template-columns: 1fr;
    }
    .products-materials-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .fittings-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .fitting-detail-top {
        grid-template-columns: 1fr;
    }
    .fitting-more-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .products-process-chart img {
        width: 100%;
    }

    .contact-info-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .contact-steps {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .contact-after-grid {
        grid-template-columns: 1fr;
    }
    .contact-after-right {
        grid-template-columns: 1fr;
    }
    .contact-after-illustration {
        height: 220px;
    }
    .footer-columns {
        flex-direction: column;
    }
    .footer-main-inner {
        grid-template-columns: 1fr;
    }
    .footer-right {
      position: relative;
        right: auto;
        bottom: auto;
        text-align: center;

    }
    .footer-qr {
        display: inline-block;
    }
    .footer-inner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
        padding: 34px 0 26px;
    }
    .sub-nav-breadcrumbs {
        flex-direction: column;
        align-items: flex-start;
    }
    .breadcrumbs {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .footer-inner-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .products-banner-title {
        font-size: 34px;
    }
    .products-page {
        --products-thumb-w: 200px;
        --products-thumb-h: 150px;
        --products-thumb-visible: 2;
    }
    .products-carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }

    .contact-title {
        font-size: 32px;
    }
    .contact-map-placeholder {
        height: 260px;
    }
    .contact-message {
        padding: 26px;
    }
    .contact-form-row {
        grid-template-columns: 1fr;
    }
    .inquiry-form .form-row {
        flex-direction: column;
    }
    .floating-sidebar {
        right: 10px;
    }
    .floating-sidebar a {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    .products-materials-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .fittings-grid { grid-template-columns: 1fr; }
    .fittings-card img { height: 200px; }
    .fitting-more-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

