body {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    color: #111;
    background: #fff;
}

a:hover {
    color: #c20d00;
}

.inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

.ptb70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.ss-header {
    border-top: 1px solid #f2f2f2;
}

.ss-header-top {
    min-height: 82px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid #e6e6e6;
    gap: 20px;
    padding: 8px 0;
}

.ss-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    justify-self: start;
}

.ss-contact a {
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ss-contact a i {
    font-size: 13px;
    color: #333;
}

.ss-search {
    width: 332px;
    height: 34px;
    border: 1px solid #9b9b9b;
    border-radius: 999px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-self: end;
}

.ss-search input {
    flex: 1;
    border: 0;
    outline: none;
    height: 100%;
    font-size: 12px;
    color: #333;
    padding: 0 12px;
}

.ss-search button {
    width: 38px;
    height: 100%;
    border: 0;
    border-left: 1px solid #9b9b9b;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ss-search button i {
    font-size: 14px;
    color: #222;
}

.ss-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
}

.ss-logo img {
    display: block;
    max-height: 78px;
    width: auto;
}

.ss-nav-wrap {
    padding: 14px 0 12px;
}

.ss-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 76px;
}

.ss-nav-list a {
    text-decoration: none;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.2;
}

.ss-nav-list .icon {
    width: 92px;
    height: 92px;
    margin-bottom: 10px;
    object-fit: contain;
}

.ss-hero {
    position: relative;
}

.ss-hero-slide {
    position: relative;
}

.ss-hero-image {
    display: block;
    width: 100%;
    height: auto;
}

.ss-hero-slide .inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.ss-hero-content,
.ss-hero-btn {
    pointer-events: auto;
}

.ss-hero-content {
    max-width: 520px;
    color: #111;
}

.ss-hero-content h2 {
    margin: 0 0 16px;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 1px;
}

.ss-hero-content ul {
    margin: 0;
    padding-left: 24px;
}

.ss-hero-content li {
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 1.35;
}

.ss-hero-content li:last-child {
    margin-bottom: 0;
}

.ss-hero-btn {
    margin-top: 20px;
    min-width: 160px;
    height: 46px;
    border-radius: 23px;
    background: #111;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.ss-hero-pagination {
    bottom: 20px !important;
}

.ss-hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.6;
}

.ss-hero-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #111;
}

.ss-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 14px;
}

.ss-feature-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    text-decoration: none;
}

.ss-feature-item.is-large {
    grid-row: 1 / 3;
}

.ss-feature-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ss-feature-mask {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center;
    background: rgba(0, 0, 0, 0.46);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
    z-index: 1;
}

.ss-feature-border {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    transform: scale(0.65);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.ss-feature-title {
    position: relative;
    z-index: 2;
    color: #fff !important;
    font-size: 24px;
    line-height: 1.35;
    text-align: center;
    letter-spacing: 0.6px;
    opacity: 0;
    transform: scale(0.85);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.ss-feature-item:hover .ss-feature-mask {
    transform: translate(-50%, -50%) scale(1);
}

.ss-feature-item:hover .ss-feature-border,
.ss-feature-item:hover .ss-feature-title {
    transform: scale(1);
    opacity: 1;
}

.ss-products {
    background: #eee;
}

.ss-products-title {
    margin: 0 0 18px;
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.8px;
    line-height: 1.2;
}

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

.ss-products .ss-product-card,
.ss-product-list .ss-product-card {
    background: #fff;
    padding: 5px;
}

.ss-product-thumb {
    position: relative;
    display: block;
    overflow: hidden;
}

.ss-product-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1.1 / 1;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.ss-product-thumb:hover img {
    transform: scale(1.08);
}

.ss-product-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    background: #ff7d00;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-size: 12px;
}

.ss-product-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.ss-product-badges img {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
    border-radius: 2px;
}

.ss-products .ss-product-name,
.ss-product-list .ss-product-name {
    margin: 0;
    min-height: 54px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.25;
}

.ss-products .ss-product-name a,
.ss-product-list .ss-product-name a {
    color: #2a2a2a;
    text-decoration: none;
}

.ss-products .ss-product-action,
.ss-product-list .ss-product-action {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0;
    background: #eee;
    color: #2b2b2b;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    border-radius: 3px;
    overflow: hidden;
}

.ss-products .ss-product-action i,
.ss-product-list .ss-product-action i {
    font-size: 13px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ss-products .ss-product-action span,
.ss-product-list .ss-product-action span {
    flex: 1;
    text-align: center;
    font-size: 14px;
    text-transform: none;
    color: #111;
    line-height: 40px;
}

.ss-products .ss-product-action i:first-child,
.ss-product-list .ss-product-action i:first-child {
    width: 36px;
    border-right: 1px solid #ddd;
    color: #666;
}

.ss-products .ss-product-action i:last-child,
.ss-product-list .ss-product-action i:last-child {
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
}

.ss-best-inner {
    position: relative;
    padding: 0 28px;
}

.ss-best-swiper {
    padding: 8px;
    margin: -8px;
    overflow: hidden;
}

.ss-best-title {
    margin: 0 0 18px;
    text-align: center;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.8px;
}

.ss-best-prev,
.ss-best-next {
    position: absolute;
    top: 50%;
    width: 34px;
    height: 34px;
    margin-top: 10px;
    border: 0;
    border-radius: 50%;
    background: #f3f3f3;
    color: #3b3b3b;
    cursor: pointer;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.ss-best-prev {
    left: -8px;
}

.ss-best-next {
    right: -8px;
}

.ss-best-card {
    border: 0;
    padding: 10px 10px 20px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.ss-best-thumb {
    display: block;
    overflow: hidden;
    border: 1px solid #e3e3e3;
    background: #dfe3e4;
}

.ss-best-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.ss-best-thumb:hover img {
    transform: scale(1.08);
}

.ss-best-name {
    margin: 0;
    margin-top: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    padding: 8px 10px;
}

.ss-best-name a {
    color: #2a2a2a;
    text-decoration: none;
}

.ss-best-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 8px;
    background: transparent;
}

.ss-best-btn {
    height: 40px;
    border: 1px solid #dbdbdb;
    background: #fff;
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 14px;
    line-height: 1;
    border-radius: 4px;
}

.ss-best-btn i {
    font-size: 14px;
}

.ss-best-btn.is-dark {
    background: #000;
    border-color: #000;
    color: #fff;
}
.ss-best-btn.is-dark:hover {
    background: #333;
}
.ss-footer {
    background: #1f1f21;
    color: #fff;
    padding-top: 48px;
}

.ss-footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 42px;
}

.ss-footer-col h3 {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.ss-footer-col p {
    margin: 0 0 10px;
    color: #d7d7d7;
    font-size: 13px;
    line-height: 1.35;
}

.ss-footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ss-footer-col li {
    margin-bottom: 10px;
}

.ss-footer-col a {
    color: #d7d7d7;
    text-decoration: none;
    font-size: 13px;
}

.ss-footer-more {
    margin-top: 10px;
    min-width: 130px;
    height: 36px;
    padding: 0 16px;
    border-radius: 18px;
    background: #fff;
    color: #1f1f21 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px !important;
    font-weight: 600;
}

.ss-social {
    display: flex;
    align-items: center;
    gap: 24px;
}

.ss-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ss-social i {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.ss-footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    text-align: center;
    color: #c7c7c7;
    font-size: 12px;
    line-height: 1.5;
    padding: 14px 0 12px;
}

.ss-footer-copy a {
    color: #c7c7c7;
    text-decoration: none;
}

.ss-list-banner {
    position: relative;
}

.ss-list-banner img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 260px;
    object-fit: cover;
}

.ss-list-banner .inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.ss-list-banner-content {
    max-width: 620px;
    color: #fff;
}

.ss-list-banner-content h1 {
    margin: 0 0 12px;
    font-size: 52px;
    line-height: 1.05;
    letter-spacing: 1px;
}

.ss-list-banner-content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
}

.ss-product-list {
    background: #f5f5f5;
}

.ss-list-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.ss-breadcrumb {
    font-size: 14px;
    color: #666;
}

.ss-breadcrumb ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ss-breadcrumb li {
    position: relative;
}

.ss-breadcrumb li + li {
    padding-left: 14px;
}

.ss-breadcrumb li + li::before {
    content: "/";
    position: absolute;
    left: 0;
    top: 0;
    color: #999;
}

.ss-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.ss-list-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 500;
    color: #111;
}

.ss-list-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.ss-list-filter a {
    height: 34px;
    padding: 0 16px;
    border-radius: 17px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.ss-list-filter a.is-active,
.ss-list-filter a:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.ss-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.ss-list-pagination {
    margin-top: 34px;
}

.ss-list-pagination .pagination {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.ss-list-pagination .pagination li {
    margin: 0;
    padding: 0;
}

.ss-list-pagination .pagination li a,
.ss-list-pagination .pagination li span {
    min-width: 20px;
    height: 38px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 10px;
}

.ss-list-pagination .pagination .disabled span {
    color: #aaa;
    background: #f5f5f5;
    border-color: #e5e5e5;
    cursor: not-allowed;
}

.ss-list-pagination .pagination .active span,
.ss-list-pagination .pagination li a:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.ss-product-detail {
    background: #f5f5f5;
}

.ss-detail-main {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
}

.ss-detail-gallery {
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 12px;
}

.ss-detail-main-image {
    border: 1px solid #ececec;
    background: #f8f8f8;
}

.ss-detail-main-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.ss-detail-thumbs {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.ss-detail-thumbs a {
    border: 1px solid #e5e5e5;
    background: #fff;
    padding: 2px;
    display: block;
}

.ss-detail-thumbs a.is-active {
    border-color: #111;
}

.ss-detail-thumbs img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.ss-detail-summary {
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 24px;
}

.ss-detail-summary h1 {
    margin: 0 0 16px;
    font-size: 34px;
    line-height: 1.2;
}

.ss-detail-meta {
    padding: 12px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.ss-detail-meta p {
    margin: 0 0 8px;
    color: #555;
    font-size: 14px;
}

.ss-detail-meta p:last-child {
    margin-bottom: 0;
}

.ss-detail-meta span {
    display: inline-block;
    min-width: 86px;
    color: #111;
    font-weight: 500;
}

.ss-detail-excerpt {
    margin-top: 14px;
    color: #333;
    font-size: 15px;
    line-height: 1.75;
}

.ss-detail-actions {
    margin-top: 24px;
    display: flex;
    gap: 10px;
}

.ss-detail-actions .ss-best-btn {
    min-width: 170px;
    height: 42px;
    font-size: 13px;
}

.ss-detail-content {
    margin-top: 28px;
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 28px;
}

.ss-detail-content h2 {
    margin: 0 0 16px;
    font-size: 28px;
    line-height: 1.2;
}

.ss-detail-editor {
    color: #333;
    font-size: 15px;
    line-height: 1.9;
}

.ss-detail-editor img {
    max-width: 100%;
    height: auto;
}

.ss-product-related {
    background: #eee;
}

.ss-news-list {
    background: #f5f5f5;
}

.ss-news-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
}

.ss-news-sticky {
    position: sticky;
    top: 20px;
}

.ss-news-panel {
    background: #fff;
    border: 1px solid #e7e7e7;
    padding: 18px;
    margin-bottom: 16px;
}

.ss-news-panel h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.2;
}

.ss-news-cats,
.ss-news-latest {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ss-news-cats li + li,
.ss-news-latest li + li {
    margin-top: 8px;
}

.ss-news-cats a {
    display: block;
    padding: 10px 12px;
    border: 1px solid #e8e8e8;
    background: #fafafa;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.ss-news-cats a.is-active,
.ss-news-cats a:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.ss-news-latest li a {
    color: #222;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.45;
    display: block;
}

.ss-news-latest li span {
    margin-top: 4px;
    display: inline-block;
    color: #888;
    font-size: 12px;
}

.ss-news-main {
    min-width: 0;
}

.ss-news-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ss-news-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 14px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 16px;
}

.ss-news-thumb {
    display: block;
    overflow: hidden;
    background: #f3f3f3;
}

.ss-news-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1.55 / 1;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.ss-news-thumb:hover img {
    transform: scale(1.06);
}

.ss-news-body {
    display: flex;
    flex-direction: column;
}

.ss-news-body h3 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 500;
}

.ss-news-body h3 a {
    color: #111;
    text-decoration: none;
}

.ss-news-body p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.ss-news-date {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #777;
    font-size: 13px;
}

.ss-inquiry-float {
    position: fixed;
    right: 20px;
    bottom: 90px;
    z-index: 999;
}

.ss-inquiry-float-toggle {
    width: 62px;
    height: 62px;
    border: 0;
    border-radius: 50%;
    background: #788399;
    color: #fff;
    position: relative;
    cursor: pointer;
    font-size: 27px;
}

.ss-inquiry-count {
    position: absolute;
    right: -2px;
    top: -4px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 11px;
    background: #ef2525;
    color: #fff;
    font-size: 12px;
    line-height: 22px;
    font-weight: 600;
}

.ss-inquiry-panel {
    position: absolute;
    right: 0;
    bottom: 74px;
    width: 320px;
    background: #fff;
    border: 1px solid #dcdcdc;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
    display: none;
}

.ss-inquiry-panel.is-open {
    display: block;
}

.ss-inquiry-panel-header {
    background: #788399;
    color: #fff;
    padding: 12px 14px;
    font-size: 18px;
    font-weight: 600;
}

.ss-inquiry-panel-body {
    max-height: 260px;
    overflow: auto;
    background: #f0f0f0;
}

.ss-inquiry-mini-item {
    display: grid;
    grid-template-columns: 48px 1fr 20px;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.ss-inquiry-mini-item img {
    width: 38px;
    height: 38px;
    object-fit: cover;
}

.ss-inquiry-mini-item a {
    color: #1063bd;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.3;
}

.ss-inquiry-mini-item button {
    border: 0;
    background: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
}

.ss-inquiry-empty {
    padding: 18px 12px;
    color: #777;
    font-size: 14px;
}

.ss-inquiry-panel-footer {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: #f0f0f0;
}

.ss-btn-empty,
.ss-btn-inquire {
    min-width: 72px;
    height: 34px;
    border-radius: 4px;
    border: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
}

.ss-btn-empty {
    background: #dedede;
    color: #e53f3f;
}

.ss-btn-inquire {
    background: #ef4a4a;
    color: #fff;
}
.ss-btn-inquire:hover {
    color: #fff;
    background: #e53f3f;
}
.ss-inquire-page {
    background: #f3f3f3;
}

.ss-inquire-box {
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
    padding: 18px;
}

.ss-inquire-box h1 {
    margin: 0 0 14px;
    text-align: center;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 500;
}

.ss-inquire-table {
    width: 100%;
    border-collapse: collapse;
}

.ss-inquire-table th,
.ss-inquire-table td {
    border: 1px solid #ddd;
    padding: 8px;
    font-size: 14px;
    color: #444;
    text-align: left;
    vertical-align: middle;
}

.ss-inquire-table td img {
    width: 84px;
    height: 84px;
    object-fit: cover;
}

.ss-inquire-table td a {
    color: #444;
    text-decoration: none;
}

.ss-inquire-table input[type="number"] {
    width: 90px;
    height: 38px;
    border: 1px solid #ddd;
    padding: 0 8px;
}

.ss-inquire-fields {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
}

.ss-inquire-fields input,
.ss-inquire-fields textarea,
.ss-inquire-captcha input {
    width: 100%;
    border: 1px solid #ddd;
    height: 42px;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 14px;
}

.ss-inquire-fields textarea {
    grid-column: 1 / 3;
    height: 110px;
    padding-top: 10px;
    resize: vertical;
}

.ss-inquire-captcha {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ss-inquire-captcha input {
    width: 200px;
}

.ss-inquire-captcha img {
    height: 42px;
    cursor: pointer;
}

.ss-inquire-submit {
    margin-top: 22px;
    text-align: center;
}

.ss-inquire-submit button {
    width: 160px;
    height: 42px;
    border: 0;
    background: #333;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.ss-inquire-empty-row {
    text-align: center !important;
    color: #888;
    padding: 18px !important;
}

.ss-inquiry-fly-icon {
    position: fixed;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ef4a4a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    pointer-events: none;
    will-change: left, top, transform, opacity;
}

.ss-inquiry-fly-icon i {
    font-size: 14px;
}

.ss-inquiry-toast {
    position: fixed;
    right: 96px;
    bottom: 108px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 13px;
    line-height: 1;
    padding: 10px 12px;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 10001;
    pointer-events: none;
}

.ss-inquiry-toast.is-show {
    opacity: 1;
    transform: translateY(0);
}

.ss-about-list {
    background: #f5f5f5;
}

.ss-about-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
}

.ss-about-sticky {
    position: sticky;
    top: 20px;
}

.ss-about-main {
    min-width: 0;
}

.ss-about-intro {
    background: #fff;
    border: 1px solid #e7e7e7;
    padding: 22px 24px;
    margin-bottom: 16px;
}

.ss-about-intro h3 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 500;
}

.ss-about-intro p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.85;
}

.ss-about-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ss-about-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 14px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 16px;
}

.ss-about-card-image {
    display: block;
    overflow: hidden;
    background: #f3f3f3;
}

.ss-about-card-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1.55 / 1;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.ss-about-card-image:hover img {
    transform: scale(1.06);
}

.ss-about-card-body {
    display: flex;
    flex-direction: column;
}

.ss-about-card-body h4 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 500;
}

.ss-about-card-body h4 a {
    color: #111;
    text-decoration: none;
}

.ss-about-card-body p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.ss-about-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 38px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
}

.ss-about-more:hover {
    color: #fff;
}

.ss-contact-list {
    background: #f5f5f5;
}

.ss-contact-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
}

.ss-contact-main,
.ss-contact-card,
.ss-contact-map {
    background: #fff;
    border: 1px solid #e5e5e5;
}

.ss-contact-main {
    padding: 26px;
}

.ss-contact-main h3 {
    margin: 0;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
}

.ss-contact-desc {
    margin: 10px 0 0;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.ss-contact-form {
    margin-top: 22px;
}

.ss-contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.ss-contact-field {
    margin-bottom: 14px;
}

.ss-contact-field label {
    display: block;
    margin-bottom: 6px;
    color: #333;
    font-size: 14px;
}

.ss-contact-field input,
.ss-contact-field textarea {
    width: 100%;
    border: 1px solid #ddd;
    height: 44px;
    padding: 0 12px;
    box-sizing: border-box;
    font-size: 14px;
    outline: none;
}

.ss-contact-field textarea {
    height: auto;
    padding: 10px 12px;
    resize: vertical;
}

.ss-contact-field input:focus,
.ss-contact-field textarea:focus {
    border-color: #111;
}

.ss-contact-submit {
    width: 170px;
    height: 44px;
    border: 0;
    background: #111;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

.ss-contact-submit:hover {
    background: #222;
}

.ss-contact-card {
    padding: 20px 18px;
    margin-bottom: 16px;
}

.ss-contact-card h3 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
}

.ss-contact-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ss-contact-card li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    color: #444;
    font-size: 14px;
    line-height: 1.7;
}

.ss-contact-card li + li {
    margin-top: 10px;
}

.ss-contact-card li i {
    color: #111;
    margin-top: 3px;
}

.ss-contact-map {
    padding: 10px;
}

.ss-contact-map img {
    display: block;
    width: 100%;
    aspect-ratio: 1.22 / 1;
    object-fit: cover;
}

.ss-about-single {
    background: #f5f5f5;
}

.ss-about-single-box {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 28px 30px;
}

.ss-about-single-box h3 {
    margin: 0 0 16px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 500;
    color: #111;
}

.ss-about-content {
    color: #444;
    font-size: 15px;
    line-height: 1.9;
}

.ss-about-content img {
    max-width: 100%;
    height: auto;
}

.ss-news-detail {
    background: #f5f5f5;
}

.ss-news-article {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 22px 22px 26px;
}

.ss-news-article-title {
    margin: 0 0 12px;
    color: #111;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 500;
}

.ss-news-article-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #777;
    font-size: 13px;
}

.ss-news-article-meta i {
    margin-right: 6px;
}

.ss-news-article-cover {
    margin-top: 14px;
    background: #f3f3f3;
    overflow: hidden;
}

.ss-news-article-cover img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.45s ease;
}

.ss-news-article-cover:hover img {
    transform: scale(1.03);
}

.ss-news-article-content {
    margin-top: 18px;
    color: #333;
    font-size: 15px;
    line-height: 1.9;
}

.ss-news-article-content img {
    max-width: 100%;
    height: auto;
}

.ss-news-article-content h1,
.ss-news-article-content h2,
.ss-news-article-content h3,
.ss-news-article-content h4 {
    color: #111;
    line-height: 1.25;
    margin: 18px 0 10px;
    font-weight: 500;
}

.ss-news-article-content p {
    margin: 0 0 14px;
}

.ss-news-article-content ul,
.ss-news-article-content ol {
    margin: 0 0 14px 18px;
}

.ss-news-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0;
}

.ss-news-article-content table th,
.ss-news-article-content table td {
    border: 1px solid #e5e5e5;
    padding: 10px 12px;
    font-size: 14px;
}

.ss-news-article-content a {
    color: inherit;
}

.ss-search-list {
    background: #f5f5f5;
}

.ss-search-summary {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 14px 16px;
    margin-bottom: 14px;
    color: #555;
    font-size: 14px;
}

.ss-search-summary span {
    color: #777;
    margin-right: 6px;
}

.ss-search-summary strong {
    color: #111;
    font-weight: 600;
}

.ss-search-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ss-search-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 14px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 16px;
}

.ss-search-thumb {
    display: block;
    overflow: hidden;
    background: #f3f3f3;
}

.ss-search-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1.55 / 1;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.ss-search-thumb:hover img {
    transform: scale(1.06);
}

.ss-search-body {
    display: flex;
    flex-direction: column;
}

.ss-search-body h3 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 500;
}

.ss-search-body h3 a {
    color: #111;
    text-decoration: none;
}

.ss-search-body p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.ss-search-meta {
    margin-top: auto;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    color: #777;
    font-size: 13px;
}

.ss-search-meta i {
    margin-right: 6px;
}
