/* ===== Root Variables ===== */
:root {
    --civet-primary: #0A4089;
    --civet-primary-dark: #072d61;
    --civet-accent: #E25514;
    --civet-accent-hover: #c94a10;
    --civet-text: #0A0A0A;
    --civet-text-light: #555555;
    --civet-bg-light: #f8f9fa;
    --civet-white: #ffffff;
    --civet-border: #d1d2d4;
    --civet-footer-bg: #101828;
    --civet-footer-text: #99A1AF;
}

/* ===== Global ===== */
body {
    font-family: 'Inter', sans-serif;
    color: var(--civet-text);
    overflow-x: hidden;
}

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

/* ===== Top Bar ===== */
.civet-topbar {
    background-color: var(--civet-primary);
    font-size: 14px;
}

.civet-topbar__link {
    color: rgba(255, 255, 255, 0.85);
}

.civet-topbar__link:hover {
    color: var(--civet-white);
}

.civet-topbar__separator {
    color: rgba(255, 255, 255, 0.5);
}

.civet-topbar__item {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.civet-topbar__list {
    display: inline-flex;
    align-items: center;
}

.civet-topbar__social {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.civet-topbar__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1;
    transition: color 0.25s ease, transform 0.25s ease;
}

.civet-topbar__social-link img {
    height: 20px;
    width: auto;
    object-fit: contain;
}

.civet-topbar__social-link:hover,
.civet-topbar__social-link:focus {
    color: var(--civet-white);
    transform: translateY(-1px);
}

/* .civet-topbar__social-link:hover img {
    filter: invert(10) brightness(15);
} */

/* ===== Navbar ===== */
.civet-navbar {
    background-color: var(--civet-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1030;
}

.civet-navbar__wrapper {
    padding: 10px 0;
}

.civet-navbar__logo {
    height: 40px;
    width: auto;
}

.civet-navbar__brand {
    display: inline-flex;
}

.civet-navbar__link {
    color: var(--civet-text);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: color 0.3s ease, background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.civet-navbar__link:hover {
    color: var(--civet-primary);
}

.civet-navbar__link.active {
    color: var(--civet-primary);
    font-weight: 600;
}

.civet-navbar__chevron {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.civet-navbar__btn-enquiry {
    background-color: var(--civet-accent);
    color: var(--civet-white) !important;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 6px;
    border: none;
    transition: background-color 0.3s ease;
}

.civet-navbar__btn-enquiry:hover {
    background-color: var(--civet-accent-hover);
    color: var(--civet-white);
}

/* Desktop Dropdown */
.civet-navbar__dropdown-wrap:hover .civet-navbar__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.civet-navbar__dropdown-wrap:hover .civet-navbar__chevron {
    transform: rotate(180deg);
}

.civet-navbar__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--civet-white);
    border: 1px solid var(--civet-border);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 360px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1050;
}

.civet-navbar__dropdown-item {
    display: block;
    padding: 9px 19px;
    color: var(--civet-text);
    font-size: 14px;
    transition: all 0.2s ease;
}

.civet-navbar__dropdown-item:hover,
.civet-navbar__dropdown-item.active {
    background-color: var(--civet-bg-light);
    color: var(--civet-primary);
    padding-left: 24px;
}

.civet-navbar__dropdown-item.active {
    font-weight: 600;
}

/* Hamburger Toggler */
.civet-navbar__toggler {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.civet-navbar__toggler-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--civet-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== Offcanvas Mobile Menu ===== */
.civet-offcanvas {
    max-width: 320px;
    border-left: none !important;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
}

.civet-offcanvas__header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--civet-border);
}

.civet-offcanvas__logo {
    height: 38px;
    width: auto;
}

.civet-offcanvas__close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--civet-text);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color 0.3s ease;
}

.civet-offcanvas__close:hover {
    color: var(--civet-accent);
}

.civet-offcanvas__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.civet-offcanvas__link {
    color: var(--civet-text);
    font-weight: 500;
    font-size: 16px;
    padding: 11px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.civet-offcanvas__link:hover,
.civet-offcanvas__link.active {
    color: var(--civet-primary);
    background-color: rgba(26, 60, 110, 0.06);
}

.civet-offcanvas__chevron {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.civet-offcanvas__link[aria-expanded="true"] .civet-offcanvas__chevron {
    transform: rotate(180deg);
}

.civet-offcanvas__sub-menu {
    padding: 4px 0 4px 16px;
}

.civet-offcanvas__sub-menu li {
    margin-bottom: 4px;
}

.civet-offcanvas__sub-link {
    display: block;
    color: var(--civet-text-light);
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 2px solid var(--civet-border);
    transition: all 0.2s ease;
}

.civet-offcanvas__sub-link:hover,
.civet-offcanvas__sub-link.active {
    color: var(--civet-primary);
    background-color: rgba(26, 60, 110, 0.04);
    border-left-color: var(--civet-primary);
}

.civet-offcanvas__sub-link.active {
    font-weight: 600;
}

.civet-offcanvas__contact-item {
    font-size: 14px;
    color: var(--civet-text-light);
}

.civet-offcanvas__contact-link {
    color: var(--civet-text-light);
}

.civet-offcanvas__contact-link:hover {
    color: var(--civet-primary);
}

.civet-offcanvas__contact-item .bi {
    color: var(--civet-accent);
}

.civet-offcanvas__contact-item--emails {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
    font-size: 14px;
    color: var(--civet-text-light);
}

.civet-offcanvas__contact-item--emails .bi {
    margin-top: 3px;
    flex-shrink: 0;
}

.civet-offcanvas__email-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    word-break: break-all;
    line-height: 1.4;
}

.civet-offcanvas__social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(26, 60, 110, 0.08);
    color: var(--civet-primary);
    font-size: 15px;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.civet-offcanvas__social-link img {
    height: 16px;
    width: auto;
    object-fit: contain;
}

.civet-offcanvas__social-link:hover img {
    /* filter: invert(10) brightness(15); */
}

.civet-offcanvas__social-link:hover,
.civet-offcanvas__social-link:focus {
    background-color: var(--civet-bg-light);
    color: var(--civet-white);
    transform: translateY(-2px);
}

/* ===== Hero Slider Section ===== */
.civet-hero {
    position: relative;
    overflow: hidden;
}

.civet-hero__slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.civet-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.90) 50%, rgba(255, 255, 255, 0.90) 100%);
    z-index: 1;
}

.civet-hero__slide .container-fluid {
    position: relative;
    z-index: 2;
}

.civet-hero__row {
    min-height: 100vh;
}

.civet-hero__content {
    color: var(--civet-text);
}

.civet-hero__title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--civet-text);
}

.civet-hero__title span {
    color: var(--civet-primary);
}

.civet-hero__text {
    font-size: 18px;
    color: var(--civet-text-light);
    font-weight: 600px;
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.7;
}

.civet-hero__badges {
    margin-bottom: 45px;
}

.civet-hero__btn-quote {
    background-color: var(--civet-accent);
    color: var(--civet-white);
    font-weight: 600;
    padding: 11px 32px;
    border-radius: 6px;
    border: none;
    transition: background-color 0.3s ease;
}

.civet-hero__btn-quote:hover {
    background-color: var(--civet-accent-hover);
    color: var(--civet-white);
}

.civet-hero__iso-text {
    font-size: 12px;
    color: var(--civet-text-light);
    line-height: 1.3;
}

.civet-hero__iso-img {
    height: 55px;
}

.civet-hero__stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--civet-text);
}

.civet-hero__stats .col-4:not(:last-child) {
    border-right: 1px solid var(--civet-border);
}

.civet-hero__stat-label {
    font-size: 14px;
    color: var(--civet-text-light);
    margin-bottom: 0;
}

.civet-hero__rating .bi-star-fill,
.civet-hero__rating .bi-star-half {
    color: #ffc107;
    font-size: 16px;
}

.civet-hero__rating-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--civet-text);
}

.civet-hero__rating-text {
    font-size: 14px;
    color: var(--civet-text-light);
}

.civet-hero__image-wrapper {
    position: relative;
    z-index: 2;
}

.civet-hero__image {
    max-width: 90%;
    height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Hero Swiper Navigation */
.civet-hero__nav-prev,
.civet-hero__nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--civet-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.civet-hero__nav-prev:hover,
.civet-hero__nav-next:hover {
    background-color: var(--civet-accent);
    color: var(--civet-white);
}

.civet-hero__nav-prev {
    left: 20px;
}

.civet-hero__nav-next {
    right: 20px;
}

/* Hero Slide Animation */
.civet-hero__slide .civet-hero__content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.civet-hero__slide.swiper-slide-active .civet-hero__content {
    opacity: 1;
    transform: translateY(0);
}

.civet-hero__slide .civet-hero__image-wrapper {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}

.civet-hero__slide.swiper-slide-active .civet-hero__image-wrapper {
    opacity: 1;
    transform: translateX(0);
}

/* ===== Counter Stats Bar ===== */
.civet-counter {
    background-color: var(--civet-primary-dark);
    padding: 32px 0;
}

.civet-counter__item {
    color: var(--civet-white);
}

.civet-counter__icon {
    width: 40px;
    height: 40px;
    color: var(--civet-accent);
}

.civet-counter__info {
    text-align: left;
}

.civet-counter__number {
    font-size: 30px;
    font-weight: 700;
    display: inline;
    color: var(--civet-white);
}

.civet-counter__suffix {
    font-size: 32px;
    font-weight: 700;
    color: var(--civet-white);
}

.civet-counter__label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    margin-bottom: 0;
}

/* ===== Products Section ===== */
.civet-products {
    padding: 50px 0px;
    background-color: #f9fafb;
}

.civet-products__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--civet-text);
}

.civet-products__view-all {
    color: var(--civet-accent);
    font-weight: 500;
    font-size: 14px;
}

.civet-products__view-all:hover {
    color: var(--civet-accent-hover);
}

.civet-products__tabs {
    gap: 8px;
    border: none;
}

.civet-products__tab {
    background-color: var(--civet-bg-light);
    border: 1px solid var(--civet-border);
    border-radius: 25px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--civet-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.civet-products__tab.active,
.civet-products__tab:hover {
    background-color: var(--civet-primary);
    color: var(--civet-white);
    border-color: var(--civet-primary);
}

/* Products Hover Panel */
.civet-products__tabs-wrapper {
    position: relative;
}

.civet-products__hover-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--civet-white);
    border: 1px solid var(--civet-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 8px;
    max-height: 70vh;
    overflow-y: auto;
}

.civet-products__hover-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.civet-products__hover-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 4px;
}

.civet-products__hover-subtitle {
    font-size: 13px;
    color: var(--civet-text-light);
    margin-bottom: 0;
}

.civet-products__hover-divider {
    border-color: var(--civet-border);
    margin: 24px 0;
}

.civet-products__hover-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--civet-border);
    border-radius: 10px;
    color: var(--civet-text);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.civet-products__hover-item:hover {
    border-color: var(--civet-primary);
    color: var(--civet-primary);
}

.civet-products__hover-item .servIcon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 20px;
    color: var(--civet-primary);
    flex-shrink: 0;
    background-color: #ECF0F6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.civet-products__hover-item:hover .servIcon {
    color: var(--civet-accent);
    background-color: #c94a1020;
}

.civet-products__hover-footer {
    padding-top: 16px;
    border-top: 1px solid var(--civet-border);
    font-size: 14px;
    color: var(--civet-text-light);
}

.civet-products__hover-count {
    color: var(--civet-primary);
    font-weight: 600;
}

.civet-products__hover-close {
    background: none;
    border: none;
    font-size: 14px;
    color: var(--civet-text-light);
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s ease;
}

.civet-products__hover-close:hover {
    color: var(--civet-text);
}

.civet-products__card {
    border: 1px solid var(--civet-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px -1px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

a.civet-products__card:hover,
a.civet-products__card:focus {
    color: inherit;
    text-decoration: none;
}

.civet-products__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.civet-products__card-header {
    /* padding: 19px 16px 13px; */
    margin-bottom: 20px;
}

.civet-products__card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--civet-text);
}

.civet-products__card-tag {
    font-size: 14px;
    color: var(--civet-text-light);
    margin-bottom: 16px;
}

.civet-products__card-img-wrap {
    background-color: var(--civet-bg-light);
    padding: 8px;
    height: 250px;
    border-radius: 10px;
}

.civet-products__card-img-wrap.bg1 {
    background-color: #ECF0F6;
}

.civet-products__card-img-wrap.bg2 {
    background-color: #FCEFE9;
}

.civet-products__card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.civet-products__swiper {
    position: relative;
    padding: 0 56px;
}

.civet-products__swiper .swiper-slide {
    height: auto;
    display: flex;
}

.civet-products__swiper .civet-products__card {
    width: 100%;
}

.civet-products__prev,
.civet-products__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid var(--civet-border);
    color: var(--civet-text);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    user-select: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.civet-products__prev {
    left: 0;
}

.civet-products__next {
    right: 0;
}

.civet-products__prev:hover,
.civet-products__next:hover {
    background-color: var(--civet-primary);
    border-color: var(--civet-primary);
    color: #fff;
}

.civet-products__prev.swiper-button-disabled,
.civet-products__next.swiper-button-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

@media (max-width: 575.98px) {
    .civet-products__swiper {
        padding: 0 40px;
    }

    .civet-products__prev,
    .civet-products__next {
        width: 36px;
        height: 36px;
    }
}

.hero-swiper.swiper-pagination {
    display: none;
}

/* ===== Innovative Packaging ===== */
.civet-innovative {
    /* background-color: var(--civet-bg-light); */
    padding: 50px 0px;
}

.civet-innovative__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 16px;
}

.civet-innovative__title--highlight {
    color: var(--civet-primary);
    display: block;
}

.title--highlight {
    color: var(--civet-primary);
}

.civet-innovative__text {
    color: var(--civet-text-light);
    font-size: 14px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.civet-innovative__btn {
    background-color: var(--civet-primary);
    color: var(--civet-white);
    font-weight: 500;
    font-size: 14px;
    padding: 10px 29px;
    border-radius: 6px;
    border: none;
    transition: background-color 0.3s ease;
}

.civet-innovative__btn:hover {
    background-color: var(--civet-primary-dark);
    color: var(--civet-white);
}

.civet-innovative__image {
    border-radius: 12px;
    background: linear-gradient(to bottom,
            rgba(10, 64, 137, 0.05),
            rgba(226, 85, 20, 0.05));
    padding: 16px;
}

.civet-innovative__iso-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.civet-innovative__iso-img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.civet-certificate__swiper {
    position: relative;
    padding: 0 56px;
}

.civet-certificate__swiper .swiper-slide {
    height: auto;
}

.civet-certificate__img {
    border-radius: 12px;
    background: linear-gradient(to bottom,
            rgba(10, 64, 137, 0.05),
            rgba(226, 85, 20, 0.05));
    padding: 16px;
    width: 100%;
    height: 330px;
    object-fit: contain;
}

.civet-certificate__prev,
.civet-certificate__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid var(--civet-border);
    color: var(--civet-text);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    user-select: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.civet-certificate__prev {
    left: 0;
}

.civet-certificate__next {
    right: 0;
}

.civet-certificate__prev:hover,
.civet-certificate__next:hover {
    background-color: var(--civet-primary);
    border-color: var(--civet-primary);
    color: #fff;
}

.civet-certificate__prev.swiper-button-disabled,
.civet-certificate__next.swiper-button-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

@media (max-width: 575.98px) {
    .civet-certificate__swiper {
        padding: 0 40px;
    }

    .civet-certificate__prev,
    .civet-certificate__next {
        width: 36px;
        height: 36px;
    }
}

/* ===== Support & Service ===== */
.civet-support {
    padding: 50px 0px;
    background-color: #f8f9fa;
}

.civet-support__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 12px;
}

.civet-support__title--highlight {
    color: var(--civet-primary);
}

.civet-support__subtitle {
    color: var(--civet-text-light);
    max-width: 700px;
    margin: 8px auto 0;
    font-size: 14px;
}

.civet-support__card {
    border: none;
    border-radius: 16px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.civet-support__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Blue gradient card */
.civet-support__card--blue {
    background: linear-gradient(165deg, #EFF6FF 0%, #FFFFFF 100%);
}

.civet-support__card--blue .civet-support__icon-wrap {
    background-color: var(--civet-primary);
}

.civet-support__card--blue .civet-support__icon {
    color: #ffffff;
}

.civet-support__card--blue .civet-support__card-title {
    color: var(--civet-primary);
}

.civet-support__card--blue .civet-support__list li::marker {
    color: var(--civet-primary);
}

/* Orange gradient card */
.civet-support__card--orange {
    background: linear-gradient(90deg, #FFF7ED, #FFFFFF);
}

.civet-support__card--orange .civet-support__icon-wrap {
    color: #ffffff;
    background-color: var(--civet-accent);
}

.civet-support__card--orange .civet-support__icon {
    color: #ffffff;
}

.civet-support__card--orange .civet-support__card-title {
    color: var(--civet-accent);
}

.civet-support__card--orange .civet-support__list li::marker {
    color: var(--civet-accent);
}

.civet-support__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.civet-support__icon {
    font-size: 24px;
}

.civet-support__card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.civet-support__card-text {
    font-size: 12px;
    color: var(--civet-text-light);
    margin-bottom: 16px;
}

.civet-support__list {
    padding-left: 18px;
    margin-bottom: 0;
}

.civet-support__list li {
    font-size: 12px;
    color: var(--civet-text-light);
    margin-bottom: 8px;
}

/* ===== CTA Banner ===== */
.civet-cta {
    background: linear-gradient(90deg,
            rgba(10, 64, 137, 1) 0%,
            rgba(10, 64, 137, 0.95) 50%,
            rgba(226, 85, 20, 1) 100%);
}

.civet-cta__wrapper {
    color: var(--civet-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 48px;
}

.civet-cta__content {
    text-align: left;
}

.civet-cta__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.civet-cta__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 750px;
    margin: 0;
}

.civet-cta__btn {
    background-color: var(--civet-accent);
    color: var(--civet-white);
    font-weight: 600;
    padding: 10px 32px;
    border-radius: 6px;
    border: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.civet-cta__btn:hover {
    background-color: var(--civet-accent-hover);
    color: var(--civet-white);
}

/* ===== Manufacturing Facility ===== */
.civet-facility {
    background-color: var(--civet-white);
    padding: 50px 0px;
}

.civet-facility__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--civet-text);
}

.civet-facility__title--highlight {
    color: var(--civet-primary);
}

.civet-facility__subtitle {
    color: var(--civet-text-light);
    max-width: 700px;
    margin: 8px auto 0;
    font-size: 15px;
}

/* .civet-facility > .container > .row > .col-md-6:first-child > .civet-facility__card {
    height: 100%;
}

.civet-facility > .container > .row > .col-md-6:last-child > .row {
    height: 100%;
    gap: 12px;
}

.civet-facility > .container > .row > .col-md-6:last-child > .row > .col-12 {
    flex: 1;
} */

.civet-facility__card {
    cursor: pointer;
    height: 270px;
}

.civet-facility__card.one {
    height: 555px;
}

.civet-facility__img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.civet-facility__card:hover .civet-facility__img {
    transform: scale(1.05);
}

.civet-facility__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: var(--civet-white);
}

.civet-facility__card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.civet-facility__card-text {
    font-size: 12px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.85);
}

/* ===== Trusted Clients ===== */
.civet-clients {
    padding: 50px 0px;
    background-color: var(--civet-bg-light);
}

.civet-clients__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--civet-text);
}

.civet-clients__subtitle {
    color: var(--civet-text-light);
    max-width: 650px;
    margin: 8px auto 0;
    font-size: 15px;
}

.civet-clients__logo-wrap {
    background-color: var(--civet-white);
    border-radius: 10px;
    border: 1px solid var(--civet-border);
    transition: box-shadow 0.3s ease;
}

.civet-clients__logo-wrap:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.civet-clients__logo {
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.civet-clients__logo-wrap:hover .civet-clients__logo {
    filter: grayscale(0%);
}

.civet-clients__swiper {
    width: 100%;
}

@media (max-width: 767.98px) {
    .civet-clients__slide .civet-clients__logo-wrap {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .civet-clients__swiper {
        overflow: visible;
    }

    .civet-clients__track {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1.5rem 1rem;
        transform: none !important;
    }

    .civet-clients__slide {
        width: calc((100% - 5rem) / 6);
        flex: 0 0 auto;
        margin: 0 !important;
        height: auto;
    }
}

/* ===== Testimonials ===== */
.civet-testimonials {
    background-color: var(--civet-white);
    padding: 50px 0px;
}

.civet-testimonials__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--civet-text);
}

.civet-testimonials__swiper {
    overflow: hidden;
    padding: 10px 4px 20px;
}

.civet-testimonials__swiper .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    align-items: stretch;
}

.civet-testimonials__swiper .swiper-slide {
    height: auto;
    display: flex;
    opacity: 0.55;
    transform: scale(0.96);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.civet-testimonials__swiper .swiper-slide-active,
.civet-testimonials__swiper .swiper-slide-next,
.civet-testimonials__swiper .swiper-slide-prev,
.civet-testimonials__swiper .swiper-slide-visible {
    opacity: 1;
    transform: scale(1);
}

.civet-testimonials__card {
    border: none;
    border-radius: 16px;
    width: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.civet-testimonials__card--blue {
    background: linear-gradient(165deg, #EFF6FF 0%, #FFFFFF 100%);
}

.civet-testimonials__card--orange {
    background: linear-gradient(90deg, #FFF7ED, #FFFFFF);
}

.civet-testimonials__card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.civet-testimonials__prev,
.civet-testimonials__next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--civet-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--civet-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.civet-testimonials__prev:hover,
.civet-testimonials__next:hover {
    background-color: var(--civet-primary);
    border-color: var(--civet-primary);
    color: var(--civet-white);
}

.civet-testimonials__prev.swiper-button-disabled,
.civet-testimonials__next.swiper-button-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.civet-testimonials__stars .bi-star-fill {
    color: #ffc107;
    font-size: 14px;
}

.civet-testimonials__quote {
    font-size: 13px;
    color: var(--civet-text-light);
    line-height: 1.7;
}

.civet-testimonials__avatar {
    width: 45px;
    height: 45px;
    object-fit: cover;
}

.civet-testimonials__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--civet-text);
}


.civet-testimonials__role {
    font-size: 12px;
    color: var(--civet-text-light);
}

/* ===== Footer ===== */
.civet-footer {
    background-color: var(--civet-bg-light);
    border-top: 1px solid #ffffff;
    /* background-color: var(--civet-footer-bg); */
    /* color: var(--civet-footer-text); */
}

.civet-footer__top {
    padding: 60px 0 40px;
}

.civet-footer__logo {
    height: 42px;
    width: auto;
}

.civet-footer__desc {
    font-size: 14px;
    color: var(--civet-text-light);
    max-width: 320px;
    line-height: 1.7;
}

.civet-footer__heading {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.civet-footer__links li {
    margin-bottom: 12px;
}

.civet-footer__link {
    color: var(--civet-text-light);
    font-size: 14px;
    transition: color 0.3s ease;
}

.civet-footer__link:hover {
    color: #1a0c55;
}

.civet-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--civet-text-light);
}

.civet-footer__contact-item .bi {
    color: var(--civet-accent);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.civet-footer__email-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    word-break: break-all;
}

.civet-footer__email-list .civet-footer__link {
    line-height: 1.4;
}

.civet-footer__social-link {
    /* width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #94979b; */
    /* background-color: var(--civet-primary-dark); */
    /* color: #ffffff; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.civet-footer__social-link img {
    height: 24px;
}

/* .civet-footer__social-link:hover {
    background-color: var(--civet-accent);
    color: var(--civet-white);
} */

.civet-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.civet-footer__copyright {
    font-size: 13px;
    color: var(--civet-text-light);
}

.civet-footer__legal .civet-footer__link {
    font-size: 13px;
}

/* ===== About Page : Banner ===== */
.civet-about-banner {
    background: linear-gradient(90deg, var(--civet-primary) 0%, var(--civet-primary-dark) 100%);
    color: var(--civet-white);
    padding: 40px 0;
}

.civet-about-banner__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--civet-white);
}

.civet-about-banner__subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* ===== About Page : Who We Are ===== */
.civet-about-who {
    background-color: var(--civet-white);
    padding: 50px 0;
}

.civet-about-who__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 20px;
}

.civet-about-who__text {
    font-size: 14px;
    color: var(--civet-text-light);
    line-height: 1.75;
    margin-bottom: 16px;
}

.civet-about-who__visual {
    padding: 20px;
}

.civet-about-who__logo {
    /* max-width: 280px; */
    width: 100%;
    height: auto;
    margin-bottom: 12px;
}

.civet-about-who__cert {
    font-size: 13px;
    color: var(--civet-text-light);
    margin-bottom: 0;
}

/* ===== About Page : Who We Are video ===== */
.civet-about-who__video {
    position: relative;
    display: block;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 0;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: none;
    box-shadow: 0 10px 30px rgba(10, 64, 137, 0.15);
}

.civet-about-who__video-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.civet-about-who__video:hover .civet-about-who__video-thumb {
    transform: scale(1.05);
}

.civet-about-who__video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.25);
    transition: background 0.3s ease;
}

.civet-about-who__video:hover::after {
    background: rgba(10, 10, 10, 0.35);
}

.civet-about-who__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: var(--civet-accent);
    color: var(--civet-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 2;
    box-shadow: 0 0 0 0 rgba(226, 85, 20, 0.55);
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: civet-play-pulse 2.2s infinite;
}

.civet-about-who__play-btn i {
    margin-left: 4px;
}

.civet-about-who__video:hover .civet-about-who__play-btn {
    background-color: var(--civet-accent-hover);
    transform: translate(-50%, -50%) scale(1.08);
}

@keyframes civet-play-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(226, 85, 20, 0.55);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(226, 85, 20, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(226, 85, 20, 0);
    }
}

/* ===== Video Modal ===== */
.civet-video-modal {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.civet-video-modal.is-open {
    display: flex;
}

.civet-video-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.85);
}

.civet-video-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 900px;
    z-index: 1;
}

.civet-video-modal__frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.civet-video-modal__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.civet-video-modal__close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background-color: var(--civet-white);
    color: var(--civet-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
}

/* ===== Request Quote Modal ===== */
.civet-quote-modal {
    position: fixed;
    inset: 0;
    z-index: 1090;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.civet-quote-modal.is-open {
    display: flex;
}

.civet-quote-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.85);
}

.civet-quote-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--civet-white);
    border-radius: 14px;
    z-index: 1;
}

.civet-quote-modal__body {
    padding: 28px 28px 24px;
}

.civet-quote-modal__title {
    margin-bottom: 14px;
    font-size: 19px;
    color: var(--civet-text);
}

.civet-quote-modal__body .row {
    --bs-gutter-y: 0.65rem;
}

.civet-quote-modal__body .civet-contact__label {
    margin-bottom: 4px;
    font-size: 13px;
}

.civet-quote-modal__body .civet-contact__input {
    padding: 9px 14px;
    font-size: 13px;
    border-radius: 8px;
}

.civet-quote-modal__body .civet-contact__input[readonly] {
    background-color: var(--civet-bg-light);
    color: var(--civet-primary);
    font-weight: 600;
    cursor: default;
}

.civet-quote-modal__body .civet-contact__textarea {
    min-height: 64px;
}

.civet-quote-modal__body .civet-contact__submit {
    padding: 10px 20px;
    font-size: 13px;
}

.civet-quote-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background-color: var(--civet-bg-light);
    color: var(--civet-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 2;
}

.civet-quote-modal__submit {
    width: 100%;
}

.civet-quote-modal__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.civet-quote-modal__feedback {
    font-size: 13px;
    margin-bottom: 8px;
    display: none;
}

.civet-quote-modal__feedback.is-success {
    display: block;
    color: #1a7f37;
}

.civet-quote-modal__feedback.is-error {
    display: block;
    color: #c0392b;
}

/* ===== About Page : Vision & Mission ===== */
.civet-about-vm {
    background-color: var(--civet-bg-light);
    padding: 50px 0;
}

.civet-about-vm__card {
    background-color: var(--civet-white);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.civet-about-vm__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.civet-about-vm__icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.civet-about-vm__icon-wrap--blue {
    background-color: #EFF6FF;
}

.civet-about-vm__icon-wrap--blue .civet-about-vm__icon {
    color: var(--civet-primary);
    font-size: 32px;
}

.civet-about-vm__icon-wrap--orange {
    background-color: #FFF0E6;
}

.civet-about-vm__icon-wrap--orange .civet-about-vm__icon {
    color: var(--civet-accent);
    font-size: 32px;
}

.civet-about-vm__icon {
    font-size: 20px;
}

.civet-about-vm__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 12px;
}

.civet-about-vm__text {
    font-size: 14px;
    color: var(--civet-text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.civet-about-vm__list {
    margin-bottom: 0;
}

.civet-about-vm__list li {
    font-size: 14px;
    color: var(--civet-text-light);
    line-height: 1.6;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.civet-about-vm__list li:last-child {
    margin-bottom: 0;
}

.civet-about-vm__check {
    color: var(--civet-accent);
    font-size: 18px;
    font-weight: 700;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===== About Page : Core Values ===== */
.civet-about-values {
    background-color: var(--civet-white);
    padding: 50px 0;
}

.civet-about-values__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 8px;
}

.civet-about-values__subtitle {
    font-size: 14px;
    color: var(--civet-text-light);
    margin-bottom: 0;
}

.civet-about-values__icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.civet-about-values__icon-wrap--blue {
    background-color: #EFF6FF;
}

.civet-about-values__icon-wrap--blue .civet-about-values__icon {
    color: var(--civet-primary);
    font-size: 40px;
}

.civet-about-values__icon-wrap--orange {
    background-color: #FFF0E6;
}

.civet-about-values__icon-wrap--orange .civet-about-values__icon {
    color: var(--civet-accent);
    font-size: 40px;
}

.civet-about-values__icon {
    font-size: 24px;
}

.civet-about-values__item-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 10px;
}

.civet-about-values__item-text {
    font-size: 14px;
    color: var(--civet-text-light);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ===== About Page : Manufacturing Strength ===== */
.civet-about-strength {
    background-color: var(--civet-bg-light);
    padding: 60px 0;
}

.civet-about-strength__image {
    width: 100%;
    object-fit: cover;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.civet-about-strength__title {
    font-size: 30px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 16px;
}

.civet-about-strength__text {
    font-size: 14px;
    color: var(--civet-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.civet-about-strength__list li {
    font-size: 14px;
    color: var(--civet-text);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.civet-about-strength__check {
    color: var(--civet-accent);
    font-size: 18px;
    font-weight: 700;
    margin-right: 10px;
    flex-shrink: 0;
}

/* ===== About Page : Certifications ===== */
.civet-about-cert {
    background-color: var(--civet-white);
    padding: 50px 0;
}

.civet-about-cert__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 8px;
}

.civet-about-cert__subtitle {
    font-size: 14px;
    color: var(--civet-text-light);
    margin-bottom: 0;
}

.civet-about-cert__panel {
    background: linear-gradient(175deg,
            rgba(10, 64, 137, 0.05) 0%,
            rgba(226, 85, 20, 0.05) 100%);
    border-radius: 12px;
    padding: 28px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.civet-about-cert__panel-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--civet-text);
    text-align: center;
    margin-bottom: 16px;
}

.civet-about-cert__panel-text {
    font-size: 14px;
    color: var(--civet-text-light);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 0;
}

.civet-about-cert__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.civet-about-cert__item-icon {
    color: var(--civet-accent);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.civet-about-cert__item-text {
    font-size: 14px;
    color: var(--civet-text);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ===== About Page : Managing Partners ===== */
.civet-about-partners {
    background-color: var(--civet-bg-light);
    padding: 50px 0;
}

.civet-about-partners__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 0;
}

.civet-about-partners__card {
    background-color: var(--civet-white);
    border-radius: 16px;
    padding: 28px 20px;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.civet-about-partners__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.civet-about-partners__avatar-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 3px solid var(--civet-primary);
    padding: 3px;
    overflow: hidden;
}

.civet-about-partners__avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.civet-about-partners__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--civet-text);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.civet-about-partners__role {
    font-size: 12px;
    color: var(--civet-text-light);
    margin-bottom: 12px;
}

.civet-about-partners__phone {
    font-size: 13px;
    font-weight: 500;
    color: var(--civet-primary);
    display: inline-flex;
    align-items: center;
}

.civet-about-partners__phone:hover {
    color: var(--civet-accent-hover);
}

/* ===== Products Page : Breadcrumb ===== */
.civet-breadcrumb {
    background-color: var(--civet-white);
    padding: 18px 0;
}

.civet-breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.civet-breadcrumb__item a {
    color: var(--civet-text-light);
}

.civet-breadcrumb__item a:hover {
    color: var(--civet-primary);
}

.civet-breadcrumb__item--active {
    color: var(--civet-primary);
    font-weight: 600;
}

.civet-breadcrumb__sep {
    color: var(--civet-border);
}

/* ===== Products Page : Filters Bar (inline with breadcrumb) ===== */
.civet-products-filters__group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.civet-products-filters__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--civet-text);
    margin-bottom: 0;
    white-space: nowrap;
}

.civet-products-filters__select {
    font-size: 13px;
    border: 1px solid var(--civet-border);
    border-radius: 6px;
    padding: 7px 30px 7px 12px;
    color: var(--civet-text);
    background-color: var(--civet-white);
    min-width: 180px;
    box-shadow: none;
}

.civet-products-filters__select:focus {
    border-color: var(--civet-primary);
    box-shadow: 0 0 0 3px rgba(10, 64, 137, 0.1);
}

/* ===== Products Page : Grid & Card ===== */
.civet-products-list {
    background-color: var(--civet-bg-light);
    padding: 32px 0 60px;
}

.civet-products-list__empty {
    text-align: center;
    background-color: var(--civet-white);
    border: 1px dashed var(--civet-border);
    border-radius: 12px;
    padding: 48px 24px;
    margin-bottom: 32px;
}

.civet-products-list__empty i {
    font-size: 32px;
    color: var(--civet-text-light);
    margin-bottom: 12px;
    display: inline-block;
}

.civet-products-list__empty-text {
    font-size: 15px;
    color: var(--civet-text-light);
    margin-bottom: 16px;
}

.civet-products-list__empty-reset {
    background-color: var(--civet-primary);
    color: var(--civet-white);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 6px;
    border: none;
}

.civet-products-list__empty-reset:hover {
    background-color: var(--civet-accent);
    color: var(--civet-white);
}

.civet-product-card {
    background-color: var(--civet-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.civet-product-card:hover,
.civet-product-card:focus {
    text-decoration: none;
    color: inherit;
}

.civet-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.civet-product-card__img-wrap {
    background-color: #f1f4f8;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.civet-product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.civet-product-card:hover .civet-product-card__img {
    transform: scale(1.04);
}

.civet-product-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.civet-product-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--civet-text);
    line-height: 1.35;
    margin-bottom: 10px;
    min-height: 42px;
}

.civet-product-card__tag {
    display: inline-block;
    align-self: flex-start;
    background-color: #e6ecf3;
    color: var(--civet-primary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.6px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.civet-product-card__desc {
    font-size: 15px;
    color: var(--civet-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.civet-product-card__features-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--civet-text);
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.civet-product-card__features {
    margin-bottom: 18px;
}

.civet-product-card__features li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    color: var(--civet-text-light);
    line-height: 1.6;
    margin-bottom: 6px;
}

.civet-product-card__features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--civet-accent);
}

.civet-product-card__link {
    margin-top: auto;
    font-size: 14px;
    font-weight: 700;
    color: var(--civet-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease, color 0.25s ease;
}

.civet-product-card__link:hover {
    color: var(--civet-primary-dark);
    gap: 10px;
}

/* ===== Products Page : Custom Solution CTA ===== */
.civet-products-cta {
    background-color: var(--civet-white);
    padding: 60px 0;
}

.civet-products-cta__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 12px;
}

.civet-products-cta__text {
    font-size: 14px;
    color: var(--civet-text-light);
    max-width: 520px;
    margin: 0 auto 24px;
}

.civet-products-cta__btn {
    background-color: var(--civet-accent);
    color: var(--civet-white);
    font-size: 14px;
    font-weight: 600;
    padding: 11px 26px;
    border-radius: 6px;
    border: none;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.civet-products-cta__btn:hover {
    background-color: var(--civet-accent-hover);
    color: var(--civet-white);
}

/* ===== Product Details Page ===== */
.civet-pd {
    background-color: var(--civet-bg-light);
    padding: 24px 0 40px;
}

.civet-pd-card {
    background-color: var(--civet-white);
    border: 1px solid #eef1f5;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(16, 24, 40, 0.04);
}

/* ----- Gallery ----- */
.civet-pd-gallery {
    padding: 16px;
}

.civet-pd-gallery .civet-pd-model-block {
    margin-bottom: 16px;
}

.civet-pd-gallery__model-tabs {
    margin-bottom: 4px;
}

.civet-pd-gallery__main {
    background-color: #f1f4f8;
    border-radius: 10px;
    height: 450px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 16px;
}

/* ----- Gallery media carousel (image + video per model) ----- */
.civet-pd-media-swiper {
    --swiper-navigation-size: 18px;
    --swiper-navigation-color: var(--civet-primary);
    --swiper-pagination-color: var(--civet-accent);
    --swiper-pagination-bullet-inactive-color: var(--civet-border);
    --swiper-pagination-bullet-inactive-opacity: 1;
    background-color: #f1f4f8;
    border-radius: 10px;
    height: 450px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 16px;
}

.civet-pd-media-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.civet-pd-media-swiper .swiper-button-prev,
.civet-pd-media-swiper .swiper-button-next {
    width: 36px;
    height: 36px;
    background-color: var(--civet-white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(16, 24, 40, 0.12);
}

.civet-pd-media-swiper .swiper-button-prev::after,
.civet-pd-media-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
}

.civet-pd-media-swiper__video-slide {
    width: 100%;
    height: 100%;
}

.civet-pd-media-swiper__video-slide iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.civet-pd-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.civet-pd-gallery__thumbs-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.civet-pd-gallery__thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    flex: 1;
    padding: 2px;
}

.civet-pd-gallery__thumbs::-webkit-scrollbar {
    display: none;
}

.civet-pd-gallery__nav {
    width: 36px;
    height: 80px;
    border-radius: 8px;
    border: 1px solid var(--civet-border);
    background-color: var(--civet-white);
    color: var(--civet-primary);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.civet-pd-gallery__nav:hover:not(:disabled) {
    background-color: var(--civet-primary);
    border-color: var(--civet-primary);
    color: var(--civet-white);
}

.civet-pd-gallery__nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.civet-pd-gallery__thumb {
    width: 180px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 0;
    background-color: #f1f4f8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: border-color 0.25s ease;
    flex-shrink: 0;
}

.civet-pd-gallery__thumb.active,
.civet-pd-gallery__thumb:hover {
    border-color: var(--civet-primary);
}

.civet-pd-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----- Section Cards ----- */
.civet-pd-section__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 16px;
}

.civet-pd-section__subtitle {
    font-size: 18px;
    font-weight: 700;
    color: var(--civet-text);
    margin-top: 18px;
    margin-bottom: 10px;
}

.civet-pd-section__text {
    font-size: 14px;
    color: var(--civet-text-light);
    line-height: 1.6;
    margin-bottom: 8px;
}

.civet-pd-section__note {
    font-size: 12px;
    color: var(--civet-text-light);
    font-style: italic;
    margin-bottom: 0;
}

/* ----- Benefits list ----- */
.civet-pd-benefit {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--civet-text-light);
    line-height: 1.5;
}

.civet-pd-benefit i {
    color: var(--civet-accent);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ----- Spec banner ----- */
.civet-pd-spec-banner {
    background: linear-gradient(to bottom,
            rgba(10, 64, 137, 0.05),
            rgba(226, 85, 20, 0.05));
    /* border-left: 3px solid var(--civet-primary); */
    border-radius: 8px;
    padding: 16px 18px;
    margin-bottom: 20px;
}

.civet-pd-spec-banner__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--civet-primary);
    margin-bottom: 6px;
}

.civet-pd-spec-banner__text {
    font-size: 13px;
    color: var(--civet-text-light);
    line-height: 1.55;
    margin-bottom: 0;
}

/* ----- Spec bullet list ----- */
.civet-pd-spec-list {
    margin-bottom: 20px;
}

.civet-pd-spec-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--civet-text-light);
    line-height: 1.55;
    padding: 8px 0;
    border-bottom: 1px solid #f0f2f5;
}

.civet-pd-spec-list li:last-child {
    border-bottom: none;
}

.civet-pd-spec-list li i {
    color: var(--civet-accent);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ----- Safety features box ----- */
.civet-pd-safety {
    background-color: #f1f6fc;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.civet-pd-safety__intro {
    font-size: 13px;
    color: var(--civet-text);
    font-weight: 500;
    margin-bottom: 8px;
}

.civet-pd-safety__list {
    padding-left: 18px;
    margin-bottom: 0;
    font-size: 13px;
    color: var(--civet-text-light);
    line-height: 1.7;
}

/* ----- Spec table rows ----- */
.civet-pd-spec-table {
    margin-bottom: 14px;
    border-top: 1px solid #eef1f5;
}

.civet-pd-spec-table li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 4px;
    border-bottom: 1px solid #eef1f5;
    font-size: 14px;
}

.civet-pd-spec-table__label {
    color: var(--civet-text);
    font-weight: 500;
}

.civet-pd-spec-table__value {
    color: var(--civet-text-light);
    text-align: right;
}

/* ----- Applications chips ----- */
.civet-pd-app {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background-color: #f4f7fb;
    border: 1px solid #e6ecf3;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--civet-text);
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.civet-pd-app:hover {
    background-color: #e6ecf3;
    border-color: var(--civet-primary);
}

.civet-pd-app i {
    color: var(--civet-primary);
    font-size: 15px;
}

/* ----- Feature grid ----- */
.civet-pd-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-right: 6px;
}

.civet-pd-feature__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(to bottom,
            rgba(10, 64, 137, 0.05),
            rgba(226, 85, 20, 0.05));
    color: var(--civet-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.civet-pd-feature__body {
    flex: 1;
    min-width: 0;
}

.civet-pd-feature__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 6px;
    line-height: 1.35;
}

.civet-pd-feature__text {
    font-size: 13px;
    color: var(--civet-text-light);
    line-height: 1.55;
    margin-bottom: 0;
}

/* ----- Info card (right column) ----- */
.sider-sticky-part {
    position: sticky;
    top: 90px;
    z-index: 2;
}

.civet-pd-info__badge {
    display: inline-block;
    background-color: var(--civet-primary);
    color: var(--civet-white);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 6px;
    margin-bottom: 14px;
}

.civet-pd-info__title {
    font-size: 28px;
    font-weight: 800;
    color: var(--civet-text);
    line-height: 1.25;
    margin-bottom: 10px;
}

.civet-pd-info__desc {
    font-size: 14px;
    color: var(--civet-text-light);
    line-height: 1.55;
    margin-bottom: 14px;
}

.civet-pd-info__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}

.civet-pd-info__price-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--civet-primary);
    line-height: 1.1;
}

.civet-pd-info__price-unit {
    font-size: 14px;
    font-weight: 500;
    color: var(--civet-text-light);
}

.civet-pd-info__price-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--civet-primary);
    text-decoration: underline;
    margin-bottom: 14px;
}

.civet-pd-info__price-link:hover {
    color: var(--civet-primary);
    opacity: 0.85;
}

.civet-pd-info__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eef1f5;
    margin-bottom: 18px;
}

.civet-pd-info__stars {
    color: #F5B014;
    font-size: 15px;
    display: inline-flex;
    gap: 2px;
}

.civet-pd-info__rating-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--civet-text);
}

.civet-pd-info__rating-count {
    font-size: 13px;
    color: var(--civet-text-light);
}

.civet-pd-info__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.civet-pd-btn {
    width: 100%;
    padding: 13px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid transparent;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.civet-pd-btn--accent {
    background-color: var(--civet-accent);
    color: var(--civet-white);
}

.civet-pd-btn--accent:hover {
    background-color: var(--civet-accent-hover);
    color: var(--civet-white);
}

.civet-pd-btn--primary {
    background-color: var(--civet-primary);
    color: var(--civet-white);
}

.civet-pd-btn--primary:hover {
    background-color: var(--civet-primary-dark);
    color: var(--civet-white);
}

.civet-pd-btn--outline {
    background-color: var(--civet-white);
    color: var(--civet-primary);
    border-color: var(--civet-primary);
}

.civet-pd-btn--outline:hover {
    background-color: var(--civet-primary);
    color: var(--civet-white);
}

/* ----- Expert advice card ----- */
.civet-pd-expert {
    background-color: var(--civet-primary);
    color: var(--civet-white);
    border-color: var(--civet-primary);
}

.civet-pd-expert__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--civet-white);
    margin-bottom: 10px;
}

.civet-pd-expert__text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
    margin-bottom: 16px;
}

.civet-pd-expert__list {
    margin-bottom: 0;
}

.civet-pd-expert__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.civet-pd-expert__item:last-child {
    margin-bottom: 0;
}

.civet-pd-expert__item i {
    font-size: 14px;
    color: var(--civet-white);
}

.civet-pd-expert__item a {
    color: rgba(255, 255, 255, 0.9);
}

.civet-pd-expert__item a:hover {
    color: var(--civet-white);
}

/* ----- Commitment card ----- */
.civet-pd-commit__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 14px;
}

.civet-pd-commit__list {
    margin-bottom: 0;
}

.civet-pd-commit__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
}

.civet-pd-commit__item+.civet-pd-commit__item {
    border-top: 1px solid #f0f2f5;
}

.civet-pd-commit__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.civet-pd-commit__icon--orange {
    background-color: #fff1e8;
    color: var(--civet-accent);
}

.civet-pd-commit__icon--blue {
    background-color: #e6ecf3;
    color: var(--civet-primary);
}

.civet-pd-commit__icon--amber {
    background-color: #fff7e0;
    color: #d89a00;
}

.civet-pd-commit__label {
    font-size: 14px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 4px;
}

.civet-pd-commit__text {
    font-size: 12px;
    color: var(--civet-text-light);
    margin-bottom: 0;
}

/* ----- Bottom navigation bar ----- */
.civet-pd-navbar {
    background-color: var(--civet-white);
    border-top: 1px solid #eef1f5;
    border-bottom: 1px solid #eef1f5;
    padding: 16px 0;
}

.civet-pd-navbar__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--civet-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease, color 0.25s ease;
}

.civet-pd-navbar__link:hover {
    color: var(--civet-primary-dark);
    gap: 10px;
}

/* ===== Industries Page ===== */
.civet-industries-tabs {
    background-color: var(--civet-white);
    padding: 16px 0;
    border-bottom: 1px solid #eef1f5;
}

.civet-industries-tabs__list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.civet-industries-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid #e6ecf3;
    background-color: var(--civet-white);
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    min-width: 200px;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.civet-industries-tab:hover {
    border-color: var(--civet-primary);
}

.civet-industries-tab.active {
    background-color: var(--civet-primary);
    border-color: var(--civet-primary);
    color: var(--civet-white);
}

.civet-industries-tab__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #eef2f7;
    color: var(--civet-primary);
    font-size: 20px;
    flex-shrink: 0;
}

.civet-industries-tab.active .civet-industries-tab__icon {
    background-color: transparent;
    color: var(--civet-white);
}

.civet-industries-tab__body {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.civet-industries-tab__title {
    font-size: 14px;
    font-weight: 600;
}

.civet-industries-tab__count {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 2px;
}

/* Panels */
.civet-industries-panel {
    display: none;
    background-color: var(--civet-white);
    padding: 32px 0 40px;
}

.civet-industries-panel.active {
    display: block;
}

/* Hero */
.civet-industries-hero {
    border-radius: 14px;
    padding: 36px 36px;
    margin-bottom: 40px;
}

.civet-industries-hero--food {
    background-color: #eff6ff;
}

.civet-industries-hero--pharma {
    background-color: #fff7ec;
}

.civet-industries-hero--agro {
    background-color: #f8f9fb;
}

.civet-industries-hero__icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background-color: var(--civet-white);
    color: var(--civet-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.civet-industries-hero--pharma .civet-industries-hero__icon {
    color: var(--civet-accent);
}

.civet-industries-hero__title {
    font-size: 32px;
    font-weight: 800;
    color: var(--civet-text);
    margin-bottom: 14px;
}

.civet-industries-hero__desc {
    font-size: 14px;
    color: var(--civet-text-light);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 540px;
}

.civet-industries-hero__btn {
    background-color: var(--civet-accent);
    color: var(--civet-white);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.25s ease;
}

.civet-industries-hero__btn:hover {
    background-color: var(--civet-accent-hover);
    color: var(--civet-white);
}

.civet-industries-hero__img-wrap {
    background-color: var(--civet-white);
    border-radius: 12px;
    padding: 0;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.civet-industries-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Solutions */
.civet-industries-solutions {
    margin-bottom: 40px;
}

.civet-industries-solutions__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.civet-industries-solutions__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 8px;
}

.civet-industries-solutions__subtitle {
    font-size: 14px;
    color: var(--civet-text-light);
    margin-bottom: 0;
}

.civet-industries-solutions__badge {
    display: inline-block;
    background-color: #e6ecf3;
    color: var(--civet-primary);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 8px;
}

.civet-industry-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background-color: var(--civet-white);
    border: 1px solid #eef1f5;
    border-radius: 10px;
    height: 100%;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.civet-industry-card:hover {
    border-color: var(--civet-primary);
    box-shadow: 0 6px 18px rgba(10, 64, 137, 0.08);
    transform: translateY(-2px);
}

.civet-industry-card__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(to bottom,
            rgba(10, 64, 137, 0.05),
            rgba(226, 85, 20, 0.05));
    color: var(--civet-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.civet-industry-card__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--civet-text);
    margin-bottom: 4px;
    line-height: 1.35;
}

.civet-industry-card__text {
    font-size: 12px;
    color: var(--civet-text-light);
    margin-bottom: 0;
}

/* Why Choose */
.civet-industries-why {
    background-color: #f4f7fb;
    border-radius: 12px;
    padding: 32px 28px;
    margin-top: 10px;
}

.civet-industries-why__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 20px;
}

.civet-industries-why__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.civet-industries-why__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.civet-industries-why__icon--blue {
    background-color: var(--civet-primary);
    color: var(--civet-white);
}

.civet-industries-why__icon--orange {
    background-color: var(--civet-accent);
    color: var(--civet-white);
}

.civet-industries-why__label {
    font-size: 14px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 4px;
}

.civet-industries-why__text {
    font-size: 13px;
    color: var(--civet-text-light);
    line-height: 1.55;
    margin-bottom: 0;
}

/* Coverage */
.civet-industries-coverage {
    background-color: var(--civet-bg-light);
    padding: 50px 0;
}

.civet-industries-coverage__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 8px;
}

.civet-industries-coverage__subtitle {
    font-size: 14px;
    color: var(--civet-text-light);
    margin-bottom: 0;
}

.civet-industry-cover-card {
    width: 100%;
    text-align: left;
    background-color: var(--civet-white);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 22px;
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.civet-industry-cover-card:hover {
    box-shadow: 0 10px 25px rgba(10, 64, 137, 0.08);
}

.civet-industry-cover-card.active {
    border-color: var(--civet-primary);
}

.civet-industry-cover-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: #e6ecf3;
    color: var(--civet-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.civet-industry-cover-card__icon--orange {
    background-color: #fff1e8;
    color: var(--civet-accent);
}

.civet-industry-cover-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 6px;
}

.civet-industry-cover-card__text {
    font-size: 13px;
    color: var(--civet-text-light);
    line-height: 1.55;
    margin-bottom: 14px;
}

.civet-industry-cover-card__link {
    font-size: 13px;
    font-weight: 700;
    color: var(--civet-primary);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 6px;
}

.civet-industry-cover-card__link i {
    color: var(--civet-accent);
}

/* CTA */
.civet-industries-cta {
    background-color: var(--civet-primary);
    padding: 54px 0;
}

.civet-industries-cta__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--civet-white);
    margin-bottom: 12px;
}

.civet-industries-cta__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 22px;
}

.civet-industries-cta__actions {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.civet-industries-cta__btn {
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.civet-industries-cta__btn--accent {
    background-color: var(--civet-accent);
    color: var(--civet-white);
}

.civet-industries-cta__btn--accent:hover {
    background-color: var(--civet-accent-hover);
    color: var(--civet-white);
}

.civet-industries-cta__btn--outline {
    background-color: var(--civet-white);
    color: var(--civet-primary);
}

.civet-industries-cta__btn--outline:hover {
    background-color: #f1f4f8;
    color: var(--civet-primary);
}

/* ===== Contact Page ===== */
.civet-contact {
    background-color: #f4f5f7;
    padding: 70px 0 90px;
}

.civet-contact__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.civet-contact__desc {
    font-size: 14px;
    color: var(--civet-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 460px;
}

.civet-contact__list {
    margin: 0;
    padding: 0;
}

.civet-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.civet-contact__item:last-child {
    margin-bottom: 0;
}

.civet-contact__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(to bottom,
            rgba(10, 64, 137, 0.08),
            rgba(226, 85, 20, 0.08));
    color: var(--civet-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.civet-contact__item-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 6px;
}

.civet-contact__item-link {
    font-size: 13px;
    color: var(--civet-text);
    font-weight: 500;
    line-height: 1.6;
}

.civet-contact__item-link:hover {
    color: var(--civet-primary);
}

.civet-contact__item-meta {
    display: block;
    font-size: 12px;
    color: var(--civet-text-light);
    margin-top: 4px;
}

.civet-contact__item-address {
    font-size: 13px;
    color: var(--civet-text-light);
    line-height: 1.7;
    margin-bottom: 0;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

/* Form */
.civet-contact__form {
    background-color: transparent;
}

.civet-contact__label {
    font-size: 14px;
    font-weight: 500;
    color: #364153;
    margin-bottom: 8px;
}

.civet-contact__required {
    color: var(--civet-accent);
    margin-left: 2px;
}

.civet-contact__input {
    width: 100%;
    background-color: var(--civet-white);
    border: 1px solid #e3e5ea;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--civet-text);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.civet-contact__input::placeholder {
    color: #9aa0a8;
    font-size: 14px;
}

.civet-contact__input:focus {
    outline: none;
    border-color: var(--civet-primary);
    box-shadow: 0 0 0 3px rgba(10, 64, 137, 0.08);
    background-color: var(--civet-white);
}

.civet-contact__textarea {
    min-height: 120px;
    resize: vertical;
}

.civet-contact__submit {
    background-color: var(--civet-primary);
    color: var(--civet-white);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.civet-contact__submit:hover {
    background-color: var(--civet-primary-dark);
    color: var(--civet-white);
    transform: translateY(-1px);
}

.civet-contact__submit i {
    transition: transform 0.25s ease;
}

.civet-contact__submit:hover i {
    transform: translateX(3px);
}

/* Map */
.civet-contact-map {
    background-color: #e5e7eb;
}

.civet-contact-map__wrap {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.civet-contact-map__frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(10%);
}

/* ===== Careers Page ===== */
.civet-topbar__link--active {
    color: var(--civet-white);
    font-weight: 600;
}

.civet-careers-hero {
    background: linear-gradient(135deg, var(--civet-primary) 0%, #1256b5 55%, #1a63c9 100%);
    padding: 70px 0;
    color: var(--civet-white);
}

.civet-careers-hero__inner {
    max-width: 720px;
}

.civet-careers-hero__title {
    font-size: 48px;
    font-weight: 700;
    color: var(--civet-white);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.civet-careers-hero__subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 640px;
}

.civet-careers-values {
    padding: 64px 0 20px;
    background-color: var(--civet-white);
}

.civet-careers-value {
    padding: 0 10px;
}

.civet-careers-value__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #def9ff;
    color: var(--civet-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 18px;
}

.civet-careers-value__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 8px;
}

.civet-careers-value__text {
    font-size: 16px;
    color: var(--civet-text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.civet-careers-openings {
    padding: 40px 0 80px;
    background-color: var(--civet-white);
}

.civet-careers-openings__title {
    font-size: 30px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 24px;
}

.civet-careers-openings__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.civet-job-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    background-color: var(--civet-white);
    border: 1px solid #e3e6eb;
    border-radius: 12px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.civet-job-card:hover {
    border-color: var(--civet-primary);
    box-shadow: 0 6px 20px rgba(10, 64, 137, 0.08);
    transform: translateY(-2px);
}

.civet-job-card__body {
    flex: 1;
    min-width: 0;
}

.civet-job-card__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--civet-text);
    margin-bottom: 10px;
}

.civet-job-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 0;
}

.civet-job-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--civet-text-light);
}

.civet-job-card__meta-item i {
    color: var(--civet-accent);
    font-size: 14px;
}

.civet-job-card__meta-item:first-child i {
    color: var(--civet-primary);
}

.civet-job-card__btn {
    background-color: var(--civet-primary);
    color: var(--civet-white);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    flex-shrink: 0;
    transition: background-color 0.25s ease;
}

.civet-job-card__btn:hover {
    background-color: var(--civet-primary-dark);
    color: var(--civet-white);
}

/* ===== After-Sales Support Page ===== */
.civet-support {
    padding: 70px 0 90px;
    background-color: var(--civet-white);
}

.civet-support-card {
    padding: 10px 14px;
}

.civet-support-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #e6ecf3;
    color: var(--civet-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 18px;
}

.civet-support-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 8px;
}

.civet-support-card__text {
    font-size: 16px;
    color: var(--civet-text-light);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

.civet-support-request {
    max-width: 760px;
    margin: 60px auto 0;
    background-color: #eff6ff;
    border-radius: 14px;
    padding: 32px 32px;
}

.civet-support-request__title {
    font-size: 24px;
    font-weight: 600;
    color: var(--civet-text);
    margin-bottom: 10px;
}

.civet-support-request__text {
    font-size: 16px;
    color: var(--civet-text-light);
    line-height: 1.6;
    margin-bottom: 22px;
}

.civet-support-request__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.civet-support-request__btn {
    font-size: 14px;
    font-weight: 600;
    padding: 11px 24px;
    border-radius: 8px;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.civet-support-request__btn--primary {
    background-color: var(--civet-primary);
    color: var(--civet-white);
    border-color: var(--civet-primary);
}

.civet-support-request__btn--primary:hover {
    background-color: var(--civet-primary-dark);
    border-color: var(--civet-primary-dark);
    color: var(--civet-white);
}

.civet-support-request__btn--outline {
    background-color: var(--civet-white);
    color: var(--civet-primary);
    border-color: var(--civet-primary);
}

.civet-support-request__btn--outline:hover {
    background-color: var(--civet-primary);
    color: var(--civet-white);
}

/* ===== Legal Pages (Privacy / Terms) ===== */
.civet-legal {
    padding: 70px 0 90px;
    background-color: var(--civet-white);
}

.civet-legal__content {
    max-width: 760px;
    margin: 0 auto;
}

.civet-legal__intro {
    font-size: 15px;
    color: var(--civet-text);
    line-height: 1.7;
    margin-bottom: 32px;
}

.civet-legal__heading {
    font-size: 24px;
    font-weight: 600;
    color: var(--civet-text);
    margin: 28px 0 14px;
    letter-spacing: -0.2px;
}

.civet-legal__heading:first-of-type {
    margin-top: 0;
}

.civet-legal__text {
    font-size: 16px;
    color: var(--civet-text);
    line-height: 1.75;
    margin-bottom: 18px;
}

.civet-legal__list {
    font-size: 15px;
    color: var(--civet-text);
    line-height: 1.75;
    margin: 0 0 22px;
    padding-left: 22px;
}

.civet-legal__list li {
    margin-bottom: 8px;
}

.civet-legal__list li::marker {
    color: var(--civet-accent);
}

.civet-legal__list strong {
    color: var(--civet-text);
    font-weight: 700;
}

.civet-legal__link {
    color: var(--civet-primary);
    font-weight: 600;
}

.civet-legal__link:hover {
    color: var(--civet-primary-dark);
    text-decoration: underline;
}

/* ===== Certifications Page ===== */
.civet-certs {
    padding: 70px 0 90px;
    background-color: var(--civet-white);
}

.civet-certs__list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.civet-cert-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 26px;
    background-color: #f4f7fb;
    border-radius: 12px;
    border-left: 4px solid var(--civet-primary);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.civet-cert-card:hover {
    box-shadow: 0 8px 22px rgba(10, 64, 137, 0.08);
    transform: translateY(-2px);
}

.civet-cert-card__icon {
    /* width: 32px;
    height: 32px;
    border-radius: 10px; */
    /* background-color: var(--civet-white); */
    color: var(--civet-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.civet-cert-card__body {
    flex: 1;
    min-width: 0;
}

.civet-cert-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 8px;
}

.civet-cert-card__text {
    font-size: 16px;
    color: var(--civet-text-light);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ----- Feature list (Bottle Rinsing & Bottle Unscrambler) ----- */
.civet-pd-feature-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.civet-pd-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--civet-text);
    border-bottom: 1px dashed #e6ecf3;
    transition: color 0.2s ease;
}

.civet-pd-feature-list li:last-child {
    border-bottom: none;
}

.civet-pd-feature-list li:hover {
    color: var(--civet-primary);
}

.civet-pd-feature-list li i {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background-color: var(--civet-primary);
    color: #ffffff;
    font-size: 10px;
    margin-top: 2px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.civet-pd-feature-list li:hover i {
    background-color: var(--civet-accent);
    transform: rotate(-8deg);
}

.civet-pd-feature-list li span {
    flex: 1;
    font-weight: 500;
}

@media (max-width: 575.98px) {
    .civet-pd-feature-list li {
        padding: 8px 0;
        font-size: 13px;
        gap: 10px;
    }
}

/* ----- Comparison table (Oil Packaging Machine models) ----- */
.civet-pd-compare-wrap {
    overflow-x: auto;
    margin-top: 10px;
    border: 1px solid #e6ecf3;
    border-radius: 10px;
}

.civet-pd-compare {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
    background-color: #ffffff;
    min-width: 640px;
}

.civet-pd-compare thead th {
    background-color: var(--civet-primary);
    color: #ffffff;
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
    font-size: 13.5px;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.civet-pd-compare thead th:first-child {
    background-color: var(--civet-accent);
}

.civet-pd-compare thead th:last-child {
    border-right: none;
}

.civet-pd-compare tbody td {
    padding: 11px 14px;
    border-bottom: 1px solid #eef2f7;
    border-right: 1px solid #eef2f7;
    color: var(--civet-text-light);
    line-height: 1.45;
    vertical-align: top;
}

.civet-pd-compare tbody td:first-child {
    color: var(--civet-primary);
    font-weight: 600;
    background-color: #f8fbff;
    white-space: nowrap;
}

.civet-pd-compare tbody td:last-child {
    border-right: none;
}

.civet-pd-compare tbody tr:last-child td {
    border-bottom: none;
}

.civet-pd-compare tbody tr:hover td {
    background-color: #f4f7fb;
}

.civet-pd-compare tbody tr:hover td:first-child {
    background-color: #eaf1fa;
}

/* ----- Variant badge card ----- */
.civet-pd-variant {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #e6ecf3;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.civet-pd-variant:hover {
    transform: translateY(-3px);
    border-color: var(--civet-primary);
    box-shadow: 0 8px 20px rgba(10, 64, 137, 0.10);
}

.civet-pd-variant img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    display: block;
}

.civet-pd-variant__tag {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background-color: var(--civet-accent);
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 6px;
    letter-spacing: 0.3px;
    box-shadow: 0 3px 8px rgba(226, 85, 20, 0.25);
}

.image-area-data img {
    width: 100%;
    max-height: 350px;
    object-fit: contain;
}

/* ----- Model spec tabs ----- */
.civet-pd-tabs {
    margin-top: 18px;
}

.civet-pd-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.civet-pd-tabs__btn {
    flex: 1 1 auto;
    min-width: 120px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2px;
    padding: 15px 18px;
    background-color: #f4f7fb;
    border: 1px solid #e6ecf3;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.civet-pd-tabs__btn:hover {
    border-color: var(--civet-primary);
    background-color: #eef4fc;
}

.civet-pd-tabs__btn.active {
    background-color: var(--civet-primary);
    border-color: var(--civet-primary);
    box-shadow: 0 8px 20px rgba(10, 64, 137, 0.18);
}

.civet-pd-tabs__model {
    font-size: 16px;
    font-weight: 700;
    color: var(--civet-text);
    line-height: 1.2;
}

.civet-pd-tabs__ppm {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--civet-text-light);
}

.civet-pd-tabs__btn.active .civet-pd-tabs__model,
.civet-pd-tabs__btn.active .civet-pd-tabs__ppm {
    color: #ffffff;
}

.civet-pd-tabs__panel {
    animation: civetTabFade 0.3s ease;
}

.civet-pd-tabs__panel[hidden] {
    display: none;
}

.civet-pd-tabs__panel .civet-pd-spec-table {
    margin-bottom: 0;
}

.civet-pd-spec-table__value--hl {
    color: var(--civet-accent);
    font-weight: 700;
}

@keyframes civetTabFade {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 575.98px) {
    .civet-pd-compare {
        font-size: 12.5px;
    }

    .civet-pd-compare thead th,
    .civet-pd-compare tbody td {
        padding: 10px 12px;
    }
}

/* ----- Related Products Slider ----- */
.civet-related {
    padding: 48px 0 56px;
    background-color: #f4f7fb;
}

.civet-related__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 12px;
    flex-wrap: wrap;
}

.civet-related__title {
    font-size: 26px;
    font-weight: 700;
    color: var(--civet-text);
    margin: 0;
    position: relative;
    padding-bottom: 10px;
}

.civet-related__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    background-color: var(--civet-accent);
    border-radius: 2px;
}

.civet-related__nav {
    display: flex;
    gap: 10px;
}

.civet-related__btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #d7dde6;
    background-color: #ffffff;
    color: var(--civet-primary);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.civet-related__btn:hover {
    background-color: var(--civet-primary);
    border-color: var(--civet-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.civet-related__swiper {
    padding-bottom: 8px;
}

.civet-related__swiper .civet-product-card {
    height: 100%;
}

.civet-related__swiper .swiper-slide {
    height: auto;
}

@media (max-width: 575.98px) {
    .civet-related {
        padding: 36px 0 44px;
    }

    .civet-related__title {
        font-size: 22px;
    }

    .civet-related__btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* ===== Blog Page ===== */
.civet-blog-list {
    background-color: var(--civet-white);
    padding: 60px 0;
}

.civet-blog-list__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 12px;
}

.civet-blog-list__title--highlight {
    color: var(--civet-primary);
}

.civet-blog-list__subtitle {
    color: var(--civet-text-light);
    max-width: 700px;
    margin: 8px auto 0;
    font-size: 14px;
}

.civet-blog-card {
    background-color: var(--civet-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.civet-blog-card:hover,
.civet-blog-card:focus {
    text-decoration: none;
    color: inherit;
}

.civet-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.civet-blog-card__img-wrap {
    position: relative;
    background-color: #f1f4f8;
    height: 220px;
    overflow: hidden;
}

.civet-blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.civet-blog-card:hover .civet-blog-card__img {
    transform: scale(1.04);
}

.civet-blog-card__category {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: var(--civet-white);
    color: var(--civet-primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.civet-blog-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.civet-blog-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--civet-text-light);
    margin-bottom: 12px;
}

.civet-blog-card__meta i {
    color: var(--civet-accent);
    margin-right: 4px;
}

.civet-blog-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--civet-text);
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.civet-blog-card__desc {
    font-size: 14px;
    color: var(--civet-text-light);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
    margin-bottom: 16px;
}

.civet-blog-card__link {
    margin-top: auto;
    font-size: 14px;
    font-weight: 700;
    color: var(--civet-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease, color 0.25s ease;
}

.civet-blog-card:hover .civet-blog-card__link {
    color: var(--civet-primary-dark);
    gap: 10px;
}

/* ===== Blog Details Page ===== */
.civet-blog-details {
    padding: 50px 0 30px;
    background-color: var(--civet-white);
}

.civet-blog-details__container {
    max-width: 960px;
    margin: 0 auto;
}

.civet-blog-details__category {
    display: inline-block;
    background-color: #e6ecf3;
    color: var(--civet-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.civet-blog-details__title {
    font-size: 38px;
    font-weight: 700;
    color: var(--civet-text);
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.civet-blog-details__lead {
    font-size: 17px;
    color: var(--civet-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.civet-blog-details__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--civet-border);
    margin-bottom: 32px;
}

.civet-blog-details__meta-item {
    font-size: 14px;
    color: var(--civet-text-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.civet-blog-details__meta-item i {
    color: var(--civet-accent);
}

.civet-blog-details__figure {
    margin: 0 0 36px;
}

.civet-blog-details__img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    border-radius: 12px;
}

.civet-blog-details__caption {
    font-size: 13px;
    color: var(--civet-text-light);
    text-align: center;
    margin-top: 10px;
}

.civet-blog-details__subheading {
    font-size: 20px;
    font-weight: 700;
    color: var(--civet-text);
    margin: 22px 0 10px;
}

.civet-blog-details__table-wrap {
    overflow-x: auto;
    margin-bottom: 24px;
    border: 1px solid var(--civet-border);
    border-radius: 8px;
}

.civet-blog-details__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 560px;
}

.civet-blog-details__table th {
    background-color: var(--civet-primary);
    color: var(--civet-white);
    font-weight: 600;
    text-align: left;
    padding: 12px 16px;
}

.civet-blog-details__table td {
    padding: 12px 16px;
    border-top: 1px solid var(--civet-border);
    color: var(--civet-text);
}

.civet-blog-details__table tbody tr:nth-child(even) {
    background-color: var(--civet-bg-light);
}

.civet-blog-details__quote {
    background-color: var(--civet-bg-light);
    border-left: 4px solid var(--civet-accent);
    border-radius: 6px;
    padding: 22px 24px;
    margin: 8px 0 28px;
    font-size: 17px;
    font-style: italic;
    color: var(--civet-text);
    line-height: 1.6;
}

.civet-blog-details__quote cite {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    color: var(--civet-text-light);
}

.civet-blog-details__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 8px;
}

.civet-blog-details__btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.civet-blog-details__btn--accent {
    background-color: var(--civet-accent);
    color: var(--civet-white);
}

.civet-blog-details__btn--accent:hover {
    background-color: var(--civet-accent-hover);
    color: var(--civet-white);
}

.civet-blog-details__btn--outline {
    background-color: var(--civet-white);
    color: var(--civet-primary);
    border-color: var(--civet-primary);
}

.civet-blog-details__btn--outline:hover {
    background-color: var(--civet-primary);
    color: var(--civet-white);
}

.civet-blog-details__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--civet-border);
}

.civet-blog-details__tags-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--civet-text);
}

.civet-blog-details__tag {
    background-color: var(--civet-bg-light);
    border: 1px solid var(--civet-border);
    color: var(--civet-text-light);
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.25s ease;
}

.civet-blog-details__tag:hover {
    background-color: var(--civet-primary);
    border-color: var(--civet-primary);
    color: var(--civet-white);
}

.civet-blog-details__share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.civet-blog-details__share-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--civet-text);
}

.civet-blog-details__share-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--civet-bg-light);
    color: var(--civet-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.25s ease;
}

.civet-blog-details__share-link:hover {
    background-color: var(--civet-primary);
    color: var(--civet-white);
    transform: translateY(-2px);
}

.civet-blog-details__author {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background-color: var(--civet-bg-light);
    border-radius: 12px;
    padding: 24px;
    margin-top: 32px;
}

.civet-blog-details__author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: contain;
    background-color: var(--civet-white);
    padding: 6px;
    flex-shrink: 0;
}

.civet-blog-details__author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--civet-text);
    margin-bottom: 6px;
}

.civet-blog-details__author-bio {
    font-size: 14px;
    color: var(--civet-text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== Blog Article Body (content_blocks renderer output) ===== */
.civet-blog-details__body h1,
.civet-blog-details__body h2,
.civet-blog-details__body h3,
.civet-blog-details__body h4 {
    font-weight: 700;
    color: var(--civet-text);
    letter-spacing: -0.2px;
    margin: 28px 0 14px;
}

.civet-blog-details__body h1:first-child,
.civet-blog-details__body h2:first-child,
.civet-blog-details__body h3:first-child,
.civet-blog-details__body h4:first-child {
    margin-top: 0;
}

.civet-blog-details__body h1 { font-size: 32px; }
.civet-blog-details__body h2 { font-size: 24px; }
.civet-blog-details__body h3 { font-size: 20px; }
.civet-blog-details__body h4 { font-size: 17px; }

.civet-blog-details__body p {
    font-size: 16px;
    color: var(--civet-text);
    line-height: 1.75;
    margin-bottom: 18px;
}

.civet-blog-details__body ul,
.civet-blog-details__body ol {
    font-size: 15px;
    color: var(--civet-text);
    line-height: 1.75;
    margin: 0 0 22px;
    padding-left: 22px;
}

.civet-blog-details__body li {
    margin-bottom: 8px;
}

.civet-blog-details__body li::marker {
    color: var(--civet-accent);
}

.civet-blog-details__body a {
    color: var(--civet-primary);
    font-weight: 600;
}

.civet-blog-details__body a:hover {
    color: var(--civet-primary-dark);
    text-decoration: underline;
}

.civet-blog-details__body img {
    max-width: 100%;
    height: auto;
}

.civet-blog-block {
    margin-bottom: 28px;
}

.civet-blog-block.align-center { text-align: center; }
.civet-blog-block.align-right { text-align: right; }

.civet-blog-block.width-narrow { max-width: 640px; margin-left: auto; margin-right: auto; }
.civet-blog-block.width-full { max-width: none; }

.civet-blog-block.spacing-sm { margin-bottom: 14px; }
.civet-blog-block.spacing-lg { margin-bottom: 44px; }

.civet-blog-hero {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 8px;
}

.civet-blog-hero__img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    display: block;
}

.civet-blog-hero__overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--civet-white);
}

.civet-blog-hero__eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--civet-accent);
    margin-bottom: 6px;
}

.civet-blog-hero__text {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.civet-blog-quote {
    background-color: var(--civet-bg-light);
    border-left: 4px solid var(--civet-accent);
    border-radius: 6px;
    padding: 22px 24px;
    font-size: 17px;
    font-style: italic;
    color: var(--civet-text);
    line-height: 1.6;
}

.civet-blog-cta {
    background-color: var(--civet-bg-light);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.civet-blog-cta__btn {
    display: inline-flex;
    margin-top: 12px;
    background-color: var(--civet-accent);
    color: var(--civet-white);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 28px;
    border-radius: 6px;
}

.civet-blog-cta__btn:hover {
    background-color: var(--civet-accent-hover);
    color: var(--civet-white);
}

.civet-blog-image img {
    width: 100%;
    border-radius: 12px;
}

.civet-blog-image-pair {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.civet-blog-image-pair[data-columns="1"] {
    grid-template-columns: 1fr;
}

.civet-blog-image-pair__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.civet-blog-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.civet-blog-gallery[data-columns="2"] {
    grid-template-columns: repeat(2, 1fr);
}

.civet-blog-gallery[data-columns="1"] {
    grid-template-columns: 1fr;
}

.civet-blog-gallery__item img {
    width: 100%;
    border-radius: 12px;
}

.civet-blog-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
}

.civet-blog-video iframe,
.civet-blog-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.civet-blog-divider {
    border: none;
    border-top: 1px solid var(--civet-border);
    margin: 32px 0;
}

@media (max-width: 767.98px) {
    .civet-blog-image-pair,
    .civet-blog-gallery {
        grid-template-columns: 1fr;
    }
}