﻿/* ============================================================
   Levi Materials — Enterprise English Site Stylesheet
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    margin-top: 0 !important;
}

body {
    font-family: 'Segoe UI', Arial, 'Helvetica Neue', sans-serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

/* ---------- CONTAINER ---------- */
.container {
    width: 96%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- CAROUSEL / HERO ---------- */
.hero-carousel {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 500px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: none;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.4);
    border: none;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.35);
    color: rgba(255, 255, 255, 0.7);
}

.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }

.carousel-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active,
.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   FLOATING HEADER / NAV
   Layout: left = LOGO | right = contact bar + menu (one row)
   No background color on nav area.
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
}

.site-header > .container {
    padding-left: 0;
    padding-right: 0;
}

.site-header.scrolled {
    background: linear-gradient(180deg, #1b6cbf 0%, #04408f 100%);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0 18px;
    width: 100%;
    transition: padding 0.35s;
}

.site-header.scrolled .header-inner {
    padding: 8px 0 8px;
}

/* ----- Left: logo only ----- */
.header-left {
    flex-shrink: 0;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}

.site-header.scrolled .logo-img {
    filter: drop-shadow(0 0 0 transparent);
}

/* ----- Right: contact + nav ----- */
.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    width: 80%;
    min-width: 0;
}

/* Contact bar — no background, right-aligned text */
.contact-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 8px;
    transition: opacity 0.3s, max-height 0.35s, border-bottom 0.35s;
    max-height: 60px;
    overflow: hidden;
}

.contact-sep {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    align-self: center;
}

.site-header.scrolled .contact-bar {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 0.4px;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.site-header.scrolled .contact-item {
    text-shadow: none;
}

.icon-whatsapp,
.icon-email {
    flex-shrink: 0;
    color: #f0c040;
}

/* Nav list — items share width equally */
.main-nav {
    position: static;
    visibility: visible;
    width: 100%;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    list-style: none;
    visibility: visible;
    height: auto;
}

.nav-list > li {
    flex: 1;
    position: relative;
}

.nav-link {
    display: block;
    padding: 8px 10px;
    text-align: center;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: font-weight 0.2s;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.site-header.scrolled .nav-link {
    text-shadow: none;
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
    color: #ffffff;
}

.nav-link:hover {
    font-weight: 700;
}

.nav-link.active {
    font-weight: 700;
}

/* WordPress default dropdown parent class */
.has-dropdown > .nav-link::after {
    content: ' ▾';
    font-size: 0.7em;
    margin-left: 3px;
}

/* Nav link color enforcement */
.nav-link,
.nav-link:hover,
.nav-link.active,
.dropdown-link,
.dropdown-link:hover {
    color: #ffffff !important;
}

/* Desktop dropdown arrow indicator */
.has-dropdown > .nav-link {
    position: relative;
}

.has-dropdown > .nav-link::after {
    display: inline-block;
    transition: transform 0.25s ease;
}

.has-dropdown:hover > .nav-link::after {
    transform: rotate(180deg);
}

/* Second-level dropdown */
.dropdown-menu,
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #1b6cbf 0%, #04408f 100%);
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    min-width: 100%;
    padding: 6px 0;
    list-style: none;
    margin: 0;
    z-index: 200;
}

.has-dropdown:hover > .dropdown-menu,
.has-dropdown:hover > .sub-menu {
    display: block;
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-left-color: #f0c040;
    padding-left: 24px;
}

/* Hamburger — hidden on desktop */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.hamburger-line {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.site-header.scrolled .hamburger-line {
    text-shadow: none;
}

.menu-toggle.open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open .hamburger-line:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 50px;
}

/* ============================================================
   ABOUT US
   ============================================================ */
.section-about {
    background: url('../img/jjbj.jpg') center center / cover no-repeat;
}

.section-about .section-title {
    margin-bottom: 40px;
}

.about-content {
    margin-bottom: 50px;
}

.about-content p {
    margin-bottom: 28px;
    color: #282828;
    font-size: 1rem;
    line-height: 1.8;
}
.about-content p:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.stat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    color: #0d1b3e;
    border-radius: 8px;
    padding: 20px 25px;
    text-align: center;
    flex: 3;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.stat-card:hover::after {
    left: 140%;
}

.stat-icon {
    display: block;
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    object-fit: contain;
}

.stat-card-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: left;
}

.stat-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    display: flex;
    align-items: center;
    height: 64px;
}

.stat-divider {
    height: 1px;
    background: #ffffff;
    margin: 12px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
            mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.stat-card-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-sub {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.stat-card-bottom .stat-sub:first-child {
    font-size: 1.5rem;
}

.stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    color: #0d1b3e;
    line-height: 1.1;
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 8px;
}

.stat-grad-a {
    background: linear-gradient(to bottom, #1b6cbf, #04408f);
}

.stat-grad-b {
    background: linear-gradient(to bottom, #1257a6, #0395dd);
}

.about-sep {
    position: relative;
    background: url('../img/jt.png') center center / contain no-repeat;
    flex: 1;
}

.about-sep span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 1px;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.about-chain {
    text-align: center;
    margin: 48px 0 24px;
}

.chain-title {
    color: #1c6ec1;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-market-wrap {
    text-align: center;
}

.about-market {
    display: inline-block;
    background: #029fff;
    padding: 4px 36px;
    margin: 30px auto;
    border-radius: 6px;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
            mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.market-text {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-slogan {
    text-align: center;
    color: #888;
    font-size: 1rem;
    line-height: 1.7;
    margin: 10px 0 24px;
}

.about-btn {
    text-align: center;
    margin-top: 16px;
}

.btn-more {
    display: inline-block;
    background: #1c6ec1;
    color: #fff;
    padding: 12px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-more:hover {
    background: #1560a8;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.section-products {
    background: #fff;
}

.products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

.section-title {
    margin-bottom: 0;
}

.products-btn {
    display: inline-block;
    background: transparent;
    color: #1c6ec1;
    padding: 10px 28px;
    border-radius: 50px;
    border: 1px solid #1c6ec1;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.products-btn:hover {
    background: #1c6ec1;
    color: #fff;
}

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

.product-card {
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s;
    position: relative;
    padding-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-inner {
    position: relative;
    background: #f6f8fc;
}

.product-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(24, 110, 197, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.product-card:hover .product-inner::after {
    opacity: 1;
}

.product-inner img {
    width: 100%;
    height: auto;
    display: block;
}

.product-inner .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 18px;
    color: #000;
}

.product-inner .product-overlay h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.product-card:hover .product-overlay h3 {
    color: #1c6ec1;
}

.product-action {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    padding: 0 18px;
    pointer-events: none;
}

.product-btn {
    display: inline-block;
    background: linear-gradient(to bottom, #54636e, #7b8998);
    color: #fff;
    padding: 10px 28px;
    border-radius: 50px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    pointer-events: auto;
    transition: background 0.3s, border 0.3s;
}

.product-btn:hover,
.product-card:hover .product-btn {
    background: #176dc5;
    border: 1px solid #fff;
    color: #fff;
}

/* ============================================================
   STRENGTH
   ============================================================ */
.section-strength {
    background: linear-gradient(to bottom, #176dc5, #fff, #fff);
    color: #000;
}

.section-strength .section-title {
    color: #fff;
}

.strength-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

.strength-header .section-title {
    color: #fff;
    text-align: left;
}

.products-header .section-title {
    text-align: left;
}

.strength-btn {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 10px 28px;
    border-radius: 50px;
    border: 1px solid #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.strength-btn:hover {
    background: #fff;
    color: #176dc5;
}

.strength-item {
    text-align: center;
    padding: 36px 20px;
    background: #f5f6f7;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.strength-item:hover {
    background: #176dc5;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(23,109,197,0.25);
}

.strength-item:hover h3,
.strength-item:hover p {
    color: #fff;
}

.strength-item:hover .strength-icon img {
    filter: brightness(0) invert(1);
}

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

.strength-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strength-item h3 {
    font-size: 1.3rem;
    min-height: 2.6em;
    margin-bottom: 10px;
    color: #176dc5;
    font-weight: 700;
}

.strength-item p {
    font-size: 0.9rem;
    color: #176dc5;
    opacity: 0.9;
    line-height: 1.6;
}

.strength-sub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    margin-bottom: 28px;
}

.strength-sub-item {
    text-align: left;
    padding: 36px 32px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.strength-sub-item:hover {
    background: #176dc5;
    box-shadow: 0 8px 24px rgba(23,109,197,0.25);
}

.strength-sub-item h4 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    color: #176dc5;
    font-weight: 700;
}

.strength-sub-item p {
    font-size: 0.95rem;
    color: #176dc5;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 16px;
    text-align: left;
}

.strength-sub-item:hover h4,
.strength-sub-item:hover p {
    color: #fff;
}

.strength-item .strength-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strength-item .strength-icon img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.strength-sub-item .strength-icon {
    width: 100%;
    height: auto;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strength-sub-item .strength-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.strength-core-title {
    text-align: center;
    color: #176dc5;
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: 1px;
}

/* Strength standalone page */
.strength-page {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.strength-page-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #133b5f;
}

.strength-page-content p {
    margin: 0 0 14px;
}

.strength-gallery-block {
    background: #f6f8fc;
    border: 1px solid #e7ecf2;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.strength-gallery-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #176dc5;
    margin: 0 0 18px;
    text-align: center;
}

.strength-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.strength-gallery-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.strength-gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    background: #f6f8fc;
    display: block;
}

.strength-gallery-caption {
    padding: 10px 12px 14px;
    color: #133b5f;
    font-weight: 600;
    text-align: center;
}

.strength-gallery-empty {
    color: #6a7684;
    text-align: center;
    margin: 0;
}

/* ============================================================
   STRENGTH LIGHTBOX
   ============================================================ */
.sg-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 14, 26, 0.85);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.sg-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.sg-lightbox.is-loaded {
    opacity: 1;
}

.sg-lightbox img {
    max-width: min(92vw, 1200px);
    max-height: min(88vh, 900px);
    width: auto;
    height: auto;
    min-width: 200px;
    min-height: 120px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    object-fit: contain;
    display: block;
    background: rgba(255, 255, 255, 0.08);
}

.sg-lightbox img.is-error {
    opacity: 0.6;
    border: 1px dashed rgba(255, 255, 255, 0.4);
}

.sg-lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.sg-lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
/* ============================================================
   NEWS
   ============================================================ */
.section-news {
    background: #f5f6f7;
}

.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

.section-title {
    margin-bottom: 0;
}

.news-btn {
    display: inline-block;
    background: transparent;
    color: #1c6ec1;
    padding: 10px 28px;
    border-radius: 50px;
    border: 1px solid #1c6ec1;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.news-btn:hover {
    background: #1c6ec1;
    color: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: stretch;
    width: 100%;
}

.news-col-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.news-col-right {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.news-card-horizontal {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: stretch;
    height: 100%;
}

.news-card-vertical {
    flex-direction: column;
    height: 100%;
    min-height: 100%;
}

.news-card-img {
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
}

.news-card-horizontal .news-card-img {
    width: 30%;
    height: 100%;
}

.news-card-vertical .news-card-img {
    width: 100%;
    max-height: 240px;
    flex-shrink: 0;
}

.news-card-vertical .news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-vertical .news-card-content {
    padding: 20px;
}

.news-card-horizontal .news-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

.news-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    color: #1c6ec1;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
}

.news-more:hover {
    text-decoration: underline;
}

.news-card:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    height: 60px;
    background: #0d1b3e;
    color: #fff;
    border-radius: 6px;
    flex-shrink: 0;
}

.news-day {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

.news-month {
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

.news-date-simple {
    font-size: 0.82rem;
    color: #666;
    margin: 6px 0;
}

.news-body h3 {
    font-size: 0.95rem;
    color: #0d1b3e;
    margin-bottom: 6px;
}

.news-body p {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.6;
}

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact {
    background: linear-gradient(to bottom, #0295e0, #0e57ac);
}

.section-contact .section-title {
    color: #fff;
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: #fff;
}

.contact-text {
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.6;
}

.contact-pitch {
    margin-top: 40px;
}

.contact-pitch-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.contact-pitch-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 2rem;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.8);
}

.info-value {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    font-size: 0.92rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d4a017;
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    align-self: flex-start;
    padding: 12px 36px;
    background: linear-gradient(to bottom, #556470, #7b8999);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.25s;
}

.btn-submit:hover {
    background: #d4a017;
    color: #0d1b3e;
}

/* ============================================================
   PAGE BANNER
   ============================================================ */
.page-banner {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #1a1a2e;
}

.page-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.page-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96%;
    max-width: 1600px;
    text-align: center;
}

.page-banner-title {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-section {
    background: #f5f6f7;
    padding: 14px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #666;
}

.breadcrumb a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #0295e0;
}

.breadcrumb-sep {
    color: #aaa;
}

.breadcrumb-current {
    color: #0295e0;
}

/* ============================================================
   PAGE CONTENT
   ============================================================ */
.section-page-content {
    background: #fff;
    padding: 50px 0 60px;
}

.page-content-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar */
.page-sidebar {
    background: #faf5fb;
    padding: 0;
    border-radius: 0;
}

.sidebar-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 22px 20px;
    background: linear-gradient(to bottom, #1a6bbe, #054291);
    border-radius: 6px 6px 0 0;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.sidebar-link {
    display: block;
    padding: 14px 20px;
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}

.sidebar-link:hover {
    background: #1c6ec1;
    color: #fff;
    border-left-color: #1c6ec1;
}

.sidebar-link.active {
    background: #1c6ec1;
    color: #fff;
    border-left-color: #1c6ec1;
    font-weight: 600;
}

/* Main Content */
.page-main-content {
    padding: 24px 20px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

.page-main-content h2 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-main-content h2:not(.index-list-title):not(.category-list-title) {
    font-size: 1.8rem;
}

.page-main-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: linear-gradient(to bottom, #31373f, #282e35);
    color: #8b9199;
    text-align: center;
    padding: 20px 0;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0d1b3e;
    color: #fff;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: #d4a017;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet — max-width: 1200px */
@media (max-width: 1200px) {
    .hero-carousel {
        height: auto;
        min-height: 0;
    }

    .carousel-slide {
        position: relative;
        width: 120%;
        margin-left: -10%;
    }

    .carousel-slide img {
        width: 100%;
        height: auto;
        display: block;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strength-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        gap: 32px;
    }
}

/* Mobile Large — max-width: 768px */
@media (max-width: 768px) {
    .hero-carousel {
        height: auto;
        min-height: 0;
    }

    .carousel-slide {
        width: 120%;
        margin-left: -10%;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.9rem;
        margin-bottom: 36px;
    }

    /* Header layout: logo left, right side left — no centering */
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        width: 100%;
        height: 50px;
        padding: 0 14px;
    }

    .site-header {
        width: 100%;
        left: 0;
    }

    .header-left {
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }

    .logo-img {
        height: 32px;
    }

    /* Right side: contact bar only on desktop, hidden on mobile */
    .header-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0;
        width: auto;
        flex: 0;
    }

    /* Contact bar */
    .contact-bar {
        display: none;
    }

    /* Hamburger — show on mobile, vertically centered */
    .menu-toggle {
        display: flex;
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    /* Nav dropdown — slides down below the header bar */
    .main-nav {
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        transition: max-height 0.4s ease, visibility 0.4s;
        z-index: 99;
    }

    .main-nav.open {
        max-height: calc(100vh - 50px);
        visibility: visible;
        overflow-y: auto;
    }

    .nav-list {
        flex-direction: column;
        background: linear-gradient(180deg, #1b6cbf 0%, #04408f 100%);
        padding: 6px 0;
        height: auto;
        max-height: none;
        visibility: visible;
    }

    .nav-list > li {
        flex: none;
    }

    .nav-link {
        padding: 14px 20px;
        font-size: 1.05rem;
        text-align: center;
        font-weight: 400;
        color: #ffffff;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        text-shadow: none;
    }

    .nav-link.active {
        font-weight: 700;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    /* Mobile: hide desktop dropdown arrow */
    .has-dropdown > .nav-link::after {
        content: '';
    }

    /* Second-level dropdown — mobile: hidden by default, block when open */
    .dropdown-menu,
    .sub-menu {
        display: none;
        list-style: none;
        margin: 0;
        padding: 0;
        background: rgba(0, 0, 0, 0.25);
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        min-width: 0;
        width: 100%;
        border-left: 2px solid rgba(255, 255, 255, 0.2);
    }

    /* Show submenu when parent li has .sub-open */
    .has-dropdown.sub-open > .dropdown-menu,
    .has-dropdown.sub-open > .sub-menu {
        display: block;
    }

    .dropdown-link {
        display: block;
        padding: 11px 20px 11px 36px;
        color: #ffffff;
        font-size: 0.9rem;
        letter-spacing: 1px;
        text-align: left;
        transition: all 0.2s;
        border-left: 2px solid transparent;
        margin-left: -2px;
    }

    .dropdown-link:hover {
        background: rgba(255, 255, 255, 0.15);
        border-left-color: #f0c040;
        padding-left: 40px;
    }

    /* About */
    .about-stats {
        flex-direction: column;
        gap: 0;
    }

    .stat-card {
        flex: none;
        width: 100%;
        padding: 18px 20px;
    }

    .about-sep {
        height: 80px;
        flex: none;
        width: 100%;
        background: url('../img/jt.png') center center / auto 80px no-repeat;
        transform: rotate(90deg);
    }

    .about-sep::before {
        display: none;
    }

    .about-sep span {
        transform: translate(-50%, -50%) rotate(-90deg);
    }

    /* Products */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    /* Strength */
    .strength-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .strength-sub-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .strength-sub-item {
        padding: 18px 16px;
    }

    /* News */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .news-col-left,
    .news-col-right {
        min-width: 0;
    }

    .news-card-horizontal {
        flex-direction: column;
        width: 100%;
    }

    .news-card-horizontal .news-card-img {
        width: 100%;
        height: auto;
    }

    .news-card-horizontal .news-card-img img {
        width: 100%;
        height: auto;
        max-height: 220px;
        object-fit: cover;
    }

    .news-card-horizontal .news-card-content {
        padding: 20px;
    }

    /* News header button hidden on mobile */
    .news-header .news-btn {
        display: none;
    }

    /* News card more link hidden on mobile */
    .news-more {
        display: none;
    }

    /* Page Content */
    .page-banner {
        height: 220px;
    }

    .page-banner-title {
        font-size: 1.8rem;
    }

    .page-content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .page-sidebar {
        padding: 0;
        border-radius: 8px;
    }

    .sidebar-title {
        padding: 14px 16px;
    }

    .sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-link {
        padding: 10px 14px;
        font-size: 0.9rem;
        border-left: none;
        border-bottom: 2px solid transparent;
        color: #444;
    }

    .sidebar-link:hover {
        background: #1c6ec1;
        color: #fff;
        border-left: none;
        border-bottom-color: #1c6ec1;
    }

    .sidebar-link.active {
        background: #1c6ec1;
        color: #fff;
        border-left: none;
        border-bottom-color: #1c6ec1;
    }

    .page-main-content {
        padding: 16px 12px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Carousel arrows */
    .carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
    }

    .carousel-prev { left: 8px; }
    .carousel-next { right: 8px; }
}

/* Small Mobile — max-width: 480px */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .contact-bar {
        gap: 10px;
        padding: 6px 10px;
    }

    .contact-item {
        font-size: 0.72rem;
        gap: 4px;
    }

    .logo-img {
        height: 34px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    /* Strength */
    .strength-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .strength-sub-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* Carousel */
    .carousel-dots {
        bottom: 14px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    color: inherit;
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}
.search-toggle:hover {
    opacity: 0.7;
}

.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.search-overlay.active {
    display: flex;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 32px;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    font-size: 1.2rem;
    padding: 12px 80px 12px 0;
    border: none;
    border-bottom: 1.5px solid #ddd;
    outline: none;
    background: transparent;
    color: #333;
}
.search-input::placeholder {
    color: #bbb;
}

.search-submit {
    position: absolute;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}
.search-submit:hover {
    color: #333;
}

.search-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}
.search-close:hover {
    color: #333;
}

/* ========== SINGLE POST ========== */
.single-post {
    padding: 40px 0;
}

.entry-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.post-thumbnail {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.post-thumbnail img {
    max-height: 500px;
    object-fit: cover;
    width: 100%;
}

.single-post-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.3;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.single-post-meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.single-post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.single-post-meta span::before {
    content: '';
}

.entry-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 40px;
}

.entry-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 40px 0 20px;
}

.entry-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 30px 0 15px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content blockquote {
    border-left: 4px solid #176dc5;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

.post-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.post-tags a {
    display: inline-block;
    background: #f5f6f7;
    color: #176dc5;
    padding: 6px 12px;
    margin: 4px 4px 4px 0;
    border-radius: 4px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s;
}

.post-tags a:hover {
    background: #176dc5;
    color: #fff;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.post-navigation a {
    color: #176dc5;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.post-navigation a:hover {
    color: #1257a6;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-next {
    text-align: right;
}

/* ========== BLOG LIST ========== */
.blog-post {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}
.blog-post:last-child {
    border-bottom: none;
}
.entry-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.entry-title a {
    color: #1a1a2e;
    transition: color 0.2s;
}
.entry-title a:hover {
    color: #176dc5;
}
.entry-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}
.post-thumbnail {
    margin-bottom: 20px;
}
.post-thumbnail img {
    border-radius: 6px;
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}
.entry-content {
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}
.read-more {
    display: inline-block;
    color: #176dc5;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.read-more:hover {
    color: #1257a6;
}
.no-posts {
    text-align: center;
    padding: 80px 0;
}
.no-posts h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.no-posts p {
    color: #666;
}

/* ========== PRODUCTS LIST (Category Page) ========== */
.products-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-list-card {
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s;
    position: relative;
    padding-bottom: 30px;
    display: block;
}

.product-list-card:hover {
    transform: translateY(-6px);
}

.product-list-inner {
    position: relative;
    background: #f6f8fc;
}

.product-list-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(24, 110, 197, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.product-list-card:hover .product-list-inner::after {
    opacity: 1;
}

.product-list-inner img {
    width: 100%;
    height: auto;
    display: block;
}

.product-list-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 18px;
    color: #000;
}

.product-list-overlay h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.product-list-card:hover .product-list-overlay h3 {
    color: #1c6ec1;
}

.product-list-action {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    padding: 0 18px;
    pointer-events: none;
}

.product-list-btn {
    display: inline-block;
    background: linear-gradient(to bottom, #54636e, #7b8998);
    color: #fff;
    padding: 10px 28px;
    border-radius: 50px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    pointer-events: auto;
    transition: background 0.3s, border 0.3s;
}

.product-list-btn:hover,
.product-list-card:hover .product-list-btn {
    background: #176dc5;
    border: 1px solid #fff;
    color: #fff;
}

.products-list-no-results {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    grid-column: 1 / -1;
}

.products-list-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.products-list-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    margin: 0 4px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #444;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
}

.products-list-pagination .page-numbers:hover,
.products-list-pagination .page-numbers.current {
    background: #1c6ec1;
    border-color: #1c6ec1;
    color: #fff;
}

/* ========== PRODUCT DETAIL PAGE ========== */
.product-page {
    padding: 0;
}

.product-page-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.product-page-image img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
}

.product-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}

.product-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.product-page-header-main {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-page-quote-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 6px;
    background: linear-gradient(90deg, #1a6bbe, #064493);
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

.product-page-quote-btn:hover {
    opacity: 0.95;
}

.product-page-share {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.product-page-share-label {
    font-size: 0.95rem;
    color: #555;
    margin-right: 4px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 4px;
    background: #f3f6fb;
    color: #1a1a2e;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid #dde3ef;
    cursor: pointer;
}

.share-btn:hover {
    background: #e6ecf7;
}

.product-page-gallery {
    margin-bottom: 24px;
}

.product-page-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.product-page-gallery-item a {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.product-page-gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #f8f9fb;
    transition: transform 0.2s;
}

.product-page-gallery-item a:hover img {
    transform: scale(1.03);
}

.product-page-body {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
}

.product-page-body img {
    max-width: 100%;
    height: auto;
    display: block;
}

.product-page-body h2 {
    font-size: 1.6rem;
    color: #1a1a2e;
    margin: 30px 0 15px;
    font-weight: 700;
}

.product-page-body h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin: 25px 0 12px;
    font-weight: 600;
}

.product-page-body p {
    margin-bottom: 18px;
}

.product-page-body ul,
.product-page-body ol {
    padding-left: 28px;
    margin-bottom: 20px;
}

.product-page-body li {
    margin-bottom: 8px;
}

/* Related Products */
.product-page-related {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.product-page-related-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 24px;
}

.product-page-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-page-related-item {
    text-align: center;
}

.product-page-related-thumb {
    display: block;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
    height: 140px;
}

.product-page-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-page-related-thumb:hover img {
    transform: scale(1.05);
}

.product-page-related-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.product-page-related-item-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.product-page-related-item-title a:hover {
    color: #1c6ec1;
}

/* ========== CATEGORY LIST (Default Category Page) ========== */
.category-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.category-list-item {
    display: flex;
    gap: 28px;
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.category-list-item:hover {
    background: #f9fafc;
}

.category-list-image {
    flex-shrink: 0;
    width: 220px;
    height: 160px;
    overflow: hidden;
    display: block;
}

.category-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.category-list-item:hover .category-list-image img {
    transform: scale(1.05);
}

.category-list-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.index-list-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.index-list-title a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.2s;
}

.index-list-title a:hover {
    color: #1c6ec1;
}

.index-list-excerpt {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.index-list-meta {
    font-size: 0.85rem;
    color: #999;
}

.category-list-meta {
    font-size: 0.85rem;
    color: #999;
}

.category-list-no-results {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.category-list-pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.category-list-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    margin: 0 4px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #444;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
}

.category-list-pagination .page-numbers:hover,
.category-list-pagination .page-numbers.current {
    background: #1c6ec1;
    border-color: #1c6ec1;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .products-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-page-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .category-list-item {
        flex-direction: column;
        gap: 16px;
    }

    .category-list-image {
        width: 100%;
        height: 200px;
    }

    .products-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .products-list-grid {
        grid-template-columns: 1fr;
    }

    .product-page-related-grid {
        grid-template-columns: 1fr;
    }
}
