.single-page-body {
    background: #fff;
}

.single-page-main {
    overflow: hidden;
}

.single-hero {
    position: relative;
    min-height: 620px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.single-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 128px;
    background: url("/static/images/shape-divider.png") center bottom / 100% 100% no-repeat;
}

.single-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 22, 29, 0.72) 0%, rgba(16, 22, 29, 0.28) 42%, rgba(16, 22, 29, 0.08) 100%);
}

.single-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 508px;
}

.single-hero-copy {
    max-width: 560px;
    color: #fff;
}

.single-hero-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.02;
    font-weight: 300;
}

.single-hero-copy p {
    margin: 0;
    max-width: 440px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.9;
    font-size: 15px;
}

.single-intro {
    padding: 34px 0 42px;
}

.single-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.single-intro-title h2 {
    margin: 0;
    color: #12181d;
    font-size: clamp(34px, 3.8vw, 56px);
    line-height: 1.05;
    font-weight: 300;
}

.single-intro-title h2 span {
    color: var(--primary);
}

.single-intro-text p {
    margin: 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.85;
}

.single-story {
    padding: 12px 0 66px;
}

.single-story-grid,
.single-quality-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 48px;
    align-items: center;
}

.single-story-media,
.single-quality-media {
    position: relative;
}

.single-story-media::after,
.single-quality-media::after {
    content: "";
    position: absolute;
    inset: auto;
    left: 18px;
    right: 18px;
    bottom: -18px;
    height: 28px;
    background: rgba(0, 0, 0, 0.06);
    filter: blur(18px);
    z-index: 0;
}

.single-story-image,
.single-quality-image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 420px;
    border-radius: 2px;
    object-fit: cover;
    object-position: center;
}

.single-story-copy h2,
.single-quality-copy h2,
.single-content-head h2 {
    margin: 0 0 20px;
    color: #12181d;
    font-size: clamp(34px, 3.8vw, 54px);
    line-height: 1.08;
    font-weight: 300;
}

.single-story-copy p,
.single-quality-copy p,
.single-content-head p {
    margin: 0 0 18px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.9;
}

.single-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    margin-top: 10px;
    border: 1px solid rgba(7, 163, 74, 0.45);
    border-radius: 999px;
    color: #171d23;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.single-outline-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.single-highlight {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 440px;
    padding: 0 16px;
    box-sizing: border-box;
    background-color: #232b31;
    background-image: url("/static/picture/about-bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

.single-highlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 12, 15, 0.62) 0%,
        rgba(10, 12, 15, 0.45) 50%,
        rgba(10, 12, 15, 0.38) 100%
    );
    pointer-events: none;
}

.single-highlight-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 980px;
}

.single-highlight-inner h2 {
    margin: 0 0 18px;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 300;
}

.single-highlight-inner p {
    margin: 0 auto;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
    font-size: 15px;
}

.single-quality {
    position: relative;
    padding: 72px 0 82px;
}

.single-quality::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -48px;
    height: 110px;
    background: #fff;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    z-index: 0;
}

.single-quality-grid {
    grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
}

.single-content {
    padding: 20px 0 110px;
}

.single-content-card {
    padding: 42px 46px;
}

.single-content-head {
    max-width: 820px;
    margin-bottom: 26px;
}

.single-content-numbers {
    padding: 48px 52px 56px;
}

.single-content-numbers-title {
    margin: 0 0 40px;
    font-size: clamp(32px, 3.6vw, 48px);
    line-height: 1.12;
    font-weight: 300;
    color: #12181d;
    letter-spacing: -0.02em;
}

.single-numbers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 56px;
    align-items: stretch;
}

.single-numbers-item {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 0;
}

.single-numbers-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    border: 2px solid var(--primary, #07a34a);
    color: var(--primary, #07a34a);
    font-size: 44px;
}

.single-numbers-icon .fas {
    line-height: 1;
}

.single-numbers-copy {
    min-width: 0;
    text-align: left;
}

.single-numbers-copy h3 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #12181d;
}

.single-numbers-copy p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #5a6570;
}

.single-richtext {
    color: #3b4650;
    font-size: 15px;
    line-height: 1.95;
}

.single-richtext * {
    max-width: 100%;
}

.single-richtext p {
    margin: 0 0 16px;
}

.single-richtext img {
    border-radius: 12px;
}

.single-richtext h1,
.single-richtext h2,
.single-richtext h3,
.single-richtext h4,
.single-richtext h5,
.single-richtext h6 {
    color: #12181d;
    line-height: 1.3;
    margin: 26px 0 16px;
}

.single-richtext ul,
.single-richtext ol {
    padding-left: 20px;
    margin: 0 0 16px;
}

@media (max-width: 1200px) {
    .single-story-grid,
    .single-quality-grid,
    .single-intro-grid {
        grid-template-columns: 1fr;
    }

    .single-hero {
        min-height: 560px;
    }

    .single-hero-inner {
        min-height: 460px;
    }

    .single-story-copy,
    .single-quality-copy {
        max-width: none;
    }

    .single-numbers-grid {
        gap: 40px 36px;
    }

    .single-numbers-icon {
        width: 96px;
        height: 96px;
        font-size: 38px;
    }
}

@media (max-width: 760px) {
    .single-hero {
        min-height: 420px;
        padding-top: 84px;
    }

    .single-hero::after {
        height: 76px;
    }

    .single-hero-inner {
        min-height: 320px;
    }

    .single-hero-copy h1,
    .single-intro-title h2,
    .single-story-copy h2,
    .single-quality-copy h2,
    .single-content-head h2,
    .single-content-numbers-title,
    .single-highlight-inner h2 {
        font-size: 34px;
    }

    .single-intro,
    .single-story,
    .single-quality,
    .single-content {
        padding-top: 36px;
        padding-bottom: 44px;
    }

    .single-highlight {
        height: 360px;
        padding: 0 14px;
    }

    .single-story-grid,
    .single-quality-grid,
    .single-intro-grid {
        gap: 24px;
    }

    .single-story-image,
    .single-quality-image {
        height: 240px;
    }

    .single-content-card {
        padding: 26px 22px;
        border-radius: 20px;
    }

    .single-content-numbers {
        padding: 28px 22px 36px;
    }

    .single-content-numbers-title {
        margin-bottom: 28px;
    }

    .single-numbers-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .single-numbers-item {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .single-numbers-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .single-numbers-copy h3 {
        font-size: 17px;
    }
}

/* —— Article list (News & Articles) —— */
.article-list-page {
    background: #fff;
}

.article-list-main {
    overflow: hidden;
}

.article-list-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 440px;
    padding: 0 16px;
    box-sizing: border-box;
    background-color: #232b31;
    background-image: url("/static/picture/Hist33.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

.article-list-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 128px;
    background: url("/static/images/shape-divider.png") center bottom / 100% 100% no-repeat;
    z-index: 2;
    pointer-events: none;
}

.article-list-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 12, 15, 0.35) 0%,
        rgba(10, 12, 15, 0.5) 55%,
        rgba(10, 12, 15, 0.55) 100%
    );
    pointer-events: none;
}

.article-list-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 12px 48px;
}

.article-list-hero-title {
    margin: 0;
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.12;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.02em;
}

.article-list-hero-accent {
    display: inline-block;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary, #07a34a);
}

.article-list-hero-rest {
    font-weight: 300;
}

.article-list-body {
    padding: 28px 0 100px;
    background: #fff;
}

.article-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    margin: 0 0 36px;
    font-size: 13px;
    line-height: 1.5;
    color: #8a939c;
}

.article-breadcrumb-icon {
    font-size: 12px;
    color: #9aa3ad;
    margin-right: 2px;
}

.article-breadcrumb a,
.article-breadcrumb-link {
    color: #8a939c;
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-breadcrumb a:hover,
.article-breadcrumb-link:hover {
    color: var(--primary, #07a34a);
}

.article-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 32px;
    margin-bottom: 48px;
}

.article-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.article-card-media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #eef2f4;
}

.article-card-media img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.article-card-media:hover img {
    transform: scale(1.04);
}

.article-card-tag {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 1;
    padding: 5px 12px;
    background: #2563eb;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.article-card-body {
    padding: 20px 4px 0 0;
    text-align: left;
}

.article-card-title {
    margin: 0 0 12px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: #12181d;
}

.article-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-card-title a:hover {
    color: var(--primary, #07a34a);
}

.article-card-excerpt {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #5a6570;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-list-pagination-wrap {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.article-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.article-pagination li {
    display: inline-flex;
}

.article-pagination a,
.article-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 4px;
    font-size: 14px;
    color: #3b4650;
    text-decoration: none;
    border: 1px solid rgba(31, 37, 43, 0.12);
    background: #fff;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.article-pagination a:hover {
    color: var(--primary, #07a34a);
    border-color: rgba(7, 163, 74, 0.35);
}

.article-pagination li.active a,
.article-pagination li.active span {
    color: #fff;
    background: var(--primary, #07a34a);
    border-color: var(--primary, #07a34a);
}

.article-pagination li.disabled a,
.article-pagination li.disabled span {
    opacity: 0.45;
    pointer-events: none;
}

@media (max-width: 1100px) {
    .article-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 24px;
    }
}

@media (max-width: 760px) {
    .article-list-hero {
        height: 360px;
    }

    .article-list-hero::after {
        height: 76px;
        background-size: cover;
    }

    .article-list-hero-inner {
        padding-bottom: 36px;
    }

    .article-list-body {
        padding: 22px 0 72px;
    }

    .article-breadcrumb {
        margin-bottom: 28px;
    }

    .article-list-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 36px;
    }

    .article-card-media img {
        height: 200px;
    }
}

/* —— Article detail / job view (view_article.htm) —— */
.article-view-page {
    background: #fff;
}

.article-view-main {
    padding: 28px 0 48px;
}

.article-view-inner {
    max-width: 920px;
}

.article-view-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.article-view-toolbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-view-tool {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(31, 37, 43, 0.12);
    color: #1f252b;
    background: #fff;
    text-decoration: none;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.article-view-tool:hover {
    color: var(--primary, #07a34a);
    border-color: rgba(7, 163, 74, 0.35);
}

.article-view-toolbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.article-view-share-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #5a6570;
}

.article-view-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(31, 37, 43, 0.14);
    color: #1f252b;
    text-decoration: none;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.article-view-share-btn:hover {
    color: var(--primary, #07a34a);
    border-color: rgba(7, 163, 74, 0.4);
}

.article-view-header {
    margin-bottom: 28px;
}

.article-view-title {
    margin: 0;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1.2;
    font-weight: 700;
    color: #12181d;
    letter-spacing: -0.02em;
}



.article-view-richtext {
    color: #3b4650;
    font-size: 15px;
    line-height: 1.9;
}

.article-view-richtext * {
    max-width: 100%;
}

.article-view-richtext p {
    margin: 0 0 18px;
}

.article-view-richtext h2,
.article-view-richtext h3,
.article-view-richtext h4 {
    margin: 32px 0 14px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--primary, #07a34a);
}

.article-view-richtext h2:first-child,
.article-view-richtext h3:first-child,
.article-view-richtext h4:first-child {
    margin-top: 0;
}

.article-view-richtext ul,
.article-view-richtext ol {
    margin: 0 0 18px;
    padding-left: 1.35em;
}

.article-view-richtext ul li::marker {
    color: var(--primary, #07a34a);
}

.article-view-richtext ul li {
    margin-bottom: 8px;
}

.article-view-richtext img {
    border-radius: 8px;
}

.article-view-cta {
    margin-top: 40px;
    padding-top: 8px;
}

.article-view-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 36px;
    border-radius: 999px;
    border: 1px solid rgba(31, 37, 43, 0.35);
    background: #fff;
    color: #12181d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.article-view-apply:hover {
    color: var(--primary, #07a34a);
    border-color: var(--primary, #07a34a);
}

.article-view-prenext {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(31, 37, 43, 0.08);
}

.article-view-prenext-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 32px;
}

.article-view-prenext-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.article-view-prenext-item.is-next {
    text-align: right;
}

.article-view-prenext-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a939c;
}

.article-view-prenext-link {
    font-size: 14px;
    font-weight: 600;
    color: #12181d;
    text-decoration: none;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.article-view-prenext-link:hover {
    color: var(--primary, #07a34a);
}

.article-view-prenext-muted {
    font-size: 14px;
    color: #b0b8bf;
}

.article-view-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(31, 37, 43, 0.08);
    font-size: 13px;
    line-height: 1.5;
    color: #8a939c;
}

.article-view-breadcrumb-icon {
    font-size: 12px;
    color: #9aa3ad;
}

.article-view-breadcrumb a,
.article-view-breadcrumb-link {
    color: #8a939c;
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-view-breadcrumb a:hover,
.article-view-breadcrumb-link:hover {
    color: var(--primary, #07a34a);
}

@media (max-width: 760px) {
    .article-view-main {
        padding: 20px 0 36px;
    }

    .article-view-meta-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .article-view-prenext-inner {
        grid-template-columns: 1fr;
    }

    .article-view-prenext-item.is-next {
        text-align: left;
    }

    .article-view-toolbar {
        margin-bottom: 22px;
    }
}

/* —— Contact page (lists_single_contact.htm) —— */
.contact-page .contact-section {
    padding: 48px 0 100px;
    background: #fff;
}

.contact-breadcrumb {
    margin-bottom: 36px;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card {
    padding: 28px 24px 30px;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    background: #fff;
    box-sizing: border-box;
}

.contact-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 18px;
}

.contact-card-title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    color: #12181d;
}

.contact-card-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #5a6570;
}

.contact-card-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-card-text a:hover {
    color: var(--primary, #07a34a);
}

.contact-split {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 48px 40px;
    align-items: start;
}

.contact-kicker {
    margin: 0 0 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8a939c;
}

.contact-heading {
    margin: 0 0 18px;
    font-size: clamp(26px, 2.8vw, 34px);
    line-height: 1.2;
    font-weight: 700;
    color: #12181d;
}

.contact-lead,
.contact-form-hint {
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.75;
    color: #5a6570;
}

.contact-form-hint {
    margin-bottom: 22px;
}

.contact-detail-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-detail-item {
    padding: 20px 0;
    border-top: 1px solid #eeeeee;
}

.contact-detail-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.contact-detail-label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #12181d;
}

.contact-detail-value {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #5a6570;
}

.contact-detail-value a {
    color: inherit;
    text-decoration: none;
}

.contact-detail-value a:hover {
    color: var(--primary, #07a34a);
}

.contact-form-panel {
    position: relative;
    padding: 36px 40px 40px;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    background: #fafafa;
    box-sizing: border-box;
}

.contact-whatsapp-float {
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    z-index: 2;
    transition: transform 0.2s ease;
}

.contact-whatsapp-float:hover {
    transform: translateY(-50%) scale(1.05);
    color: #fff;
}

.contact-guestbook .eyou_form_attr {
    margin-bottom: 18px;
}

.contact-guestbook .eyou_form_text,
.contact-guestbook .eyou_form_textarea,
.contact-guestbook .eyou_form_select,
.contact-guestbook select.eyou_form_select,
.contact-guestbook .inquiry-form input,
.contact-guestbook .inquiry-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    color: #12181d;
    background: #fff;
    transition: border-color 0.2s ease;
}

.contact-guestbook .eyou_form_text:focus,
.contact-guestbook .eyou_form_textarea:focus,
.contact-guestbook .eyou_form_select:focus,
.contact-guestbook select.eyou_form_select:focus,
.contact-guestbook .inquiry-form input:focus,
.contact-guestbook .inquiry-form textarea:focus {
    outline: none;
    border-color: rgba(7, 163, 74, 0.45);
}

.contact-guestbook .eyou_form_textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-guestbook .inquiry-form input,
.contact-guestbook .inquiry-form textarea {
    margin-bottom: 18px;
}

.contact-guestbook .inquiry-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-guestbook .eyou_form_btn {
    cursor: pointer;
}

.contact-form-actions {
    margin-top: 8px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 32px;
    border: 0;
    border-radius: 4px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact-submit-btn:hover {
    background: #2a2a2a;
}

.contact-page-body {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid #eeeeee;
    font-size: 15px;
    line-height: 1.85;
    color: #3b4650;
}

.contact-page-body * {
    max-width: 100%;
}

@media (max-width: 1100px) {
    .contact-card-grid {
        grid-template-columns: 1fr;
    }

    .contact-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-panel {
        padding: 32px 28px 36px;
    }

    .contact-whatsapp-float {
        right: 16px;
        top: auto;
        bottom: 24px;
        transform: none;
    }

    .contact-whatsapp-float:hover {
        transform: scale(1.05);
    }
}

@media (max-width: 760px) {
    .contact-page .contact-section {
        padding: 32px 0 72px;
    }

    .contact-breadcrumb {
        margin-bottom: 28px;
    }

    .contact-card-grid {
        gap: 16px;
        margin-bottom: 36px;
    }

    .contact-card {
        padding: 22px 20px 24px;
    }

    .contact-form-panel {
        padding: 26px 20px 30px;
    }
}

/* —— Product list (lists_product.htm) —— */
.product-list-page {
    background: #fff;
}

.product-list-main {
    padding: 0 0 90px;
}

.product-list-breadcrumb {
    margin-bottom: 28px;
}

.product-list-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.26fr) minmax(0, 1fr);
    gap: 40px 48px;
    align-items: start;
}

.product-list-sidebar {
    position: sticky;
    top: 96px;
}

.product-sidebar-search {
    margin-bottom: 32px;
}

.product-search-form {
    margin: 0;
}

.product-search-inner {
    position: relative;
    display: flex;
    align-items: center;
}

.product-search-input {
    width: 100%;
    height: 46px;
    padding: 0 46px 0 14px;
    box-sizing: border-box;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
    font-size: 14px;
    color: #12181d;
    background: #fff;
    transition: border-color 0.2s ease;
}

.product-search-input:focus {
    outline: none;
    border-color: rgba(7, 163, 74, 0.45);
}

.product-search-input::placeholder {
    color: #9aa3ad;
}

.product-search-submit {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 2px;
    background: transparent;
    color: #5a6570;
    cursor: pointer;
    transition: color 0.2s ease;
}

.product-search-submit:hover {
    color: var(--primary, #07a34a);
}

.product-sidebar-block {
    padding: 16px 14px 14px;
    border: 1px solid #e6ebf0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 31, 48, 0.04);
}

.product-sidebar-title {
    margin: 0 0 14px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #12181d;
    letter-spacing: -0.01em;
    line-height: 1.25;
    border-bottom: 1px solid #edf1f5;
    position: relative;
}

.product-sidebar-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 78px;
    height: 2px;
    background: var(--primary);
}

.product-sidebar-sub {
    display: none;
}

.product-sidebar-rule {
    display: none;
}

.product-sidebar-heading {
    margin: 0 0 10px;
    font-size: 0;
    line-height: 0;
}

.sidebar-newcate,
.sidebar-newcate ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-newcate {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-newcate .menu-item,
.sidebar-newcate .LiLevel2,
.sidebar-newcate .LiLevel3 {
    position: relative;
}

.sidebar-newcate .menu-item > a,
.sidebar-newcate .LiLevel2 > a,
.sidebar-newcate .LiLevel3 > a {
    display: block;
    min-height: 36px;
    padding: 8px 40px 8px 12px;
    border: 0;
    border-radius: 2px;
    background: transparent;
    color: #17222d;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.35;
    transition: color 0.2s ease, background 0.2s ease;
}

.sidebar-newcate .menu-item > a::before,
.sidebar-newcate .LiLevel2 > a::before,
.sidebar-newcate .LiLevel3 > a::before {
    display: none;
}

.sidebar-newcate .menu-item > a:hover,
.sidebar-newcate .LiLevel2 > a:hover,
.sidebar-newcate .LiLevel3 > a:hover {
    color: var(--primary, #07a34a);
    background: #f4f8fc;
}

.sidebar-newcate .cate-toggle {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: #8391a1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.sidebar-newcate .cate-toggle:hover {
    background: #eef3f7;
    color: #4f5c68;
}

.sidebar-newcate .cate-toggle i {
    font-size: 11px;
    transition: transform 0.2s ease;
    transform: rotate(-90deg);
}

.sidebar-newcate li.is-open > .cate-toggle i {
    transform: rotate(0deg);
}

.sidebar-newcate .sub-menu {
    margin: 4px 0 8px;
    margin-left: 8px;
    padding-left: 10px;
    border-left: 1px solid #eef2f6;
    display: none;
}

.sidebar-newcate li.is-open > .sub-menu {
    display: block;
}

.sidebar-newcate .LiLevel2,
.sidebar-newcate .LiLevel3 {
    margin-bottom: 8px;
}

.sidebar-newcate .LiLevel2:last-child,
.sidebar-newcate .LiLevel3:last-child {
    margin-bottom: 0;
}

.sidebar-newcate .LiLevel2 > a {
    font-size: 13px;
    color: #273340;
    min-height: 34px;
    padding: 7px 36px 7px 12px;
}

.sidebar-newcate .LiLevel3 > a {
    font-size: 12px;
    color: #5a6774;
    min-height: 32px;
    padding: 6px 12px 6px 12px;
}

.sidebar-newcate .current > a {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
}

.sidebar-newcate .current > a::before {
    display: none;
}

.sidebar-newcate .current > .cate-toggle {
    color: #fff;
}

.sidebar-newcate .LiLevel2.current > a,
.sidebar-newcate .LiLevel3.current > a {
    background: #ecf4ff;
    color: var(--primary);
}

.product-list-title {
    margin: 0 0 32px;
    font-size: clamp(26px, 2.8vw, 34px);
    line-height: 1.2;
    font-weight: 700;
    color: #12181d;
}

.product-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 24px;
    margin-bottom: 44px;
}

.product-card {
    min-width: 0;
}

.product-card-media {
    display: block;
    overflow: hidden;
    background: #f0f2f4;
    border-radius: 2px;
}

.product-card-media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card-media:hover img {
    transform: scale(1.03);
}

.product-card-code {
    margin: 12px 0 0;
    font-size: 13px;
    font-weight: 600;
    color: #12181d;
    line-height: 1.4;
}

.product-list-pagination-wrap {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.product-pagination.article-pagination a,
.product-pagination.article-pagination span {
    min-width: auto;
    padding: 0 18px;
    border-radius: 2px;
    font-size: 13px;
}

@media (max-width: 1200px) {
    .product-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .product-list-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-list-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .product-sidebar-search {
        margin-bottom: 0;
    }
}

@media (max-width: 760px) {
    .product-list-main {
        padding: 0 0 72px;
    }

    .product-list-breadcrumb {
        margin-bottom: 20px;
    }

    .product-list-sidebar {
        grid-template-columns: 1fr;
    }

    .product-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 14px;
        margin-bottom: 32px;
    }

    .product-list-title {
        margin-bottom: 22px;
    }
}

@media (max-width: 480px) {
    .product-card-grid {
        grid-template-columns: 1fr;
    }
}

/* —— Image article list (lists_article_img.htm) —— */
.article-gallery-page {
    background: #fff;
}

.article-gallery-main {
    overflow: hidden;
}

.article-gallery-hero {
    position: relative;
    height: clamp(210px, 24vw, 320px);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.article-gallery-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 12, 15, 0.28) 0%, rgba(10, 12, 15, 0.1) 100%);
}

.article-gallery-body {
    padding: 28px 0 92px;
    background: #fff;
}

.article-gallery-heading {
    text-align: center;
    margin-bottom: 24px;
}

.article-gallery-heading h1 {
    margin: 0 0 10px;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a2026;
    font-weight: 700;
}

.article-gallery-heading p {
    margin: 0 auto;
    max-width: 680px;
    color: #69747f;
    font-size: 14px;
    line-height: 1.75;
}

.article-gallery-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 10px 0 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e8ecef;
}

.article-gallery-tab {
    position: relative;
    padding: 4px 2px;
    color: #4e5963;
    font-size: 13px;
    text-decoration: none;
}

.article-gallery-tab.is-active,
.article-gallery-tab:hover {
    color: #12181d;
}

.article-gallery-tab.is-active::after,
.article-gallery-tab:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: #12181d;
}

.article-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px 22px;
    margin-bottom: 42px;
}

.article-gallery-card {
    min-width: 0;
}

.article-gallery-media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #edf1f4;
}

.article-gallery-media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.article-gallery-media:hover img {
    transform: scale(1.04);
}

.article-gallery-mask {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(10, 12, 15, 0.34);
    font-size: 28px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.article-gallery-media:hover .article-gallery-mask {
    opacity: 1;
}

.article-gallery-card h2 {
    margin: 10px 0 0;
    text-align: center;
    color: #12181d;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.article-gallery-pagination-wrap {
    display: flex;
    justify-content: center;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: rgba(10, 12, 15, 0.82);
}

.image-lightbox.is-open {
    display: flex;
}

.image-lightbox-image {
    max-width: min(1200px, calc(100vw - 64px));
    max-height: calc(100vh - 96px);
    object-fit: contain;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

.image-lightbox-close {
    position: absolute;
    top: 14px;
    right: 20px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 1100px) {
    .article-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .article-gallery-body {
        padding: 22px 0 72px;
    }

    .article-gallery-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 16px;
    }

    .article-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 12px;
    }

    .image-lightbox {
        padding: 16px;
    }

    .image-lightbox-image {
        max-width: calc(100vw - 32px);
        max-height: calc(100vh - 64px);
    }
}

@media (max-width: 480px) {
    .article-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* —— Product detail (view_product.htm) —— */


.product-view-main {
    padding: 0 0 20px;
}

.product-view-hero {
    min-height: 420px;
}

.product-view-hero .single-hero-inner {
    min-height: 330px;
}

.product-view-hero .single-hero-copy h1 {
    font-size: clamp(34px, 4.4vw, 58px);
}

.product-view-hero .single-hero-copy p {
    max-width: 640px;
}

.product-view-section {
    position: relative;
    z-index: 2;
    margin-top: -24px;
    padding-bottom: 28px;
}

.product-view-section .page-container {

    padding: 24px 26px 28px;
}

.product-view-breadcrumb {
    margin-bottom: 20px;
}

.product-view-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
}

.product-view-head h1 {
    margin: 0;
    color: #12181d;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.15;
    font-weight: 700;
}

.product-view-head-actions {
    display: flex;
    gap: 12px;
}

.product-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 26px;
    border-radius: 999px;
    border: 1px solid rgba(31, 37, 43, 0.35);
    background: #fff;
    color: #12181d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.product-view-btn.is-primary {
    border-color: #ff7a1a;
    background: #ff7a1a;
    color: #fff;
}

.product-view-layout {
    display: grid;
    grid-template-columns: minmax(380px, 1.15fr) minmax(0, 1fr);
    gap: 28px 30px;
    align-items: start;
}

.product-view-gallery {
    min-width: 0;
}

.product-view-main-image {
    border: 1px solid #e2e8ee;
    background: linear-gradient(180deg, #fbfdff 0%, #f4f7fa 100%);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.product-view-main-image img {
    display: block;
    width: 100%;
    height: clamp(320px, 34vw, 500px);
    aspect-ratio: 4 / 3;
    object-fit: contain;
    object-position: center;
}

.product-view-thumbs-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.product-view-thumb-nav {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #c9d3dd;
    background: #fff;
    color: #5a6570;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-view-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    flex: 1;
}

.product-view-thumb {
    border: 1px solid #d7e0e8;
    border-radius: 10px;
    padding: 0;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
    aspect-ratio: 4 / 3;
}

.product-view-thumb.is-active {
    border-color: var(--primary, #07a34a);
    box-shadow: 0 0 0 2px rgba(7, 163, 74, 0.14);
}

.product-view-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-view-detail {
    padding: 18px 20px 20px;
    border: 1px solid #e6ebef;
    border-radius: 14px;
    background: #fafcfe;
}

.product-view-detail h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 2.3vw, 34px);
    line-height: 1.2;
    font-weight: 700;
    color: #12181d;
}

.product-view-intro,
.product-view-detail p {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.8;
    color: #3b4650;
}

.product-view-detail p strong {
    color: #12181d;
}

.product-view-share {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 20px 0 16px;
}

.product-view-share span {
    margin-right: 4px;
    color: #12181d;
    font-size: 16px;
    font-weight: 700;
}

.product-share-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
}

.product-share-facebook { background: #3b5998; }
.product-share-x { background: #111; }
.product-share-linkedin { background: #0a66c2; }
.product-share-pinterest { background: #e60023; }
.product-share-whatsapp { background: #25d366; }
.product-share-vk { background: #4a76a8; }

.product-view-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid var(--primary, #07a34a);
    color: var(--primary, #07a34a);
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.product-view-contact-links {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-view-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid #d8e2ea;
    background: #fff;
    color: #3c4853;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.product-view-contact-btn:hover {
    border-color: var(--primary, #07a34a);
    color: var(--primary, #07a34a);
    background: #f6fff9;
}

.product-view-description {
    padding: 36px 0 32px;
    background: transparent;
    border-top: 1px solid #e4eaef;
}

.product-view-description .page-container,
.product-view-inquiry .page-container {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.product-view-description h2 {
    margin: 0 0 6px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e8edf1;
    color: #12181d;
    font-size: clamp(26px, 2.4vw, 34px);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.product-view-richtext {
    min-height: 80px;
    margin-top: 20px;
    color: #3b4650;
    font-size: 15px;
    line-height: 1.85;
}

.product-view-richtext * {
    max-width: 100%;
}

.product-view-prenext {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #eef2f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.product-view-prenext-item {
    display: flex;
    align-items: center;
}

.product-view-prenext-item.is-next {
    margin-left: auto;
}

.product-view-prenext-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 6px;
    border: 1px solid #dde4ea;
    background: #fafbfc;
    color: #4a5560;
    text-decoration: none;
    font-size: 13px;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.product-view-prenext-link:not(.is-disabled):hover {
    border-color: var(--primary, #07a34a);
    color: var(--primary, #07a34a);
    background: #fff;
}

.product-view-prenext-link.is-disabled {
    opacity: 0.66;
}

.product-view-inquiry {
    padding: 32px 0 72px;
    background: transparent;
    border-top: 1px solid #e4eaef;
}

.product-view-inquiry h2 {
    margin: 0 0 6px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e8edf1;
    color: #12181d;
    font-size: clamp(26px, 2.4vw, 34px);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.product-view-inquiry .wmkcfeedback,
.product-view-inquiry .send-inquiry {
    margin: 0;
    padding: 0;
}

.product-inquiry-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
    margin-top: 22px;
}

.product-inquiry-form input,
.product-inquiry-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d5dde4;
    background: #fff;
    height: 44px;
    padding: 0 14px;
    color: #12181d;
    font-size: 14px;
    border-radius: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-inquiry-form input::placeholder,
.product-inquiry-form textarea::placeholder {
    color: #8a949e;
}

.product-inquiry-form input:focus,
.product-inquiry-form textarea:focus {
    outline: none;
    border-color: var(--primary, #07a34a);
    box-shadow: 0 0 0 3px rgba(7, 163, 74, 0.12);
}

.product-inquiry-form textarea {
    grid-column: 1 / -1;
    min-height: 120px;
    height: auto;
    padding: 12px 14px;
    resize: vertical;
}

.product-inquiry-verify {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.product-inquiry-verify input {
    max-width: 200px;
}

.product-inquiry-verify img {
    height: 36px;
    border: 1px solid #d5dde4;
    border-radius: 4px;
    background: #fff;
    vertical-align: middle;
}

.product-inquiry-form button,
.product-inquiry-form .send-btn {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 6px;
    min-width: 200px;
    min-height: 46px;
    border: 0;
    border-radius: 8px;
    background: var(--primary, #07a34a);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.product-inquiry-form button:hover,
.product-inquiry-form .send-btn:hover {
    filter: brightness(1.05);
}

.product-inquiry-form button:active,
.product-inquiry-form .send-btn:active {
    transform: translateY(1px);
}

@media (max-width: 1100px) {
    .product-view-section {
        margin-top: -28px;
    }

    .product-view-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .product-view-hero {
        min-height: 300px;
    }

    .product-view-hero .single-hero-inner {
        min-height: 240px;
    }

    .product-view-main {
        padding-top: 0;
    }

    .product-view-section {
        margin-top: 0;
    }

    .product-view-section .page-container {
        border-radius: 12px;
        padding: 16px;
    }

    .product-view-description {
        padding: 28px 0 24px;
    }

    .product-view-inquiry {
        padding: 28px 0 56px;
    }

    .product-view-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-view-head-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .product-view-btn {
        flex: 1;
    }

    .product-view-detail h2,
    .product-view-description h2,
    .product-view-inquiry h2 {
        font-size: 28px;
    }

    .product-view-main-image img {
        height: clamp(240px, 62vw, 360px);
    }

    .product-view-thumb img {
        height: 100%;
    }

    .product-inquiry-form {
        grid-template-columns: 1fr;
    }

    .product-inquiry-form textarea,
    .product-inquiry-form button,
    .product-inquiry-form .send-btn {
        grid-column: auto;
    }
}
