/*==================================================
PROCESS TEMPERATURE CONTROL SYSTEMS — KMW / KMW-H / KMO / KMO-H
Prefix: ac- (shared product-page system)
==================================================*/

/*---------- HERO ----------*/

.ac-hero {

    position: relative;

    overflow: hidden;

    padding: clamp(160px, 20vw, 220px) 6% clamp(90px, 14vw, 140px);

    background: linear-gradient(180deg, #05070B, #0A0E15);

}

.ac-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:

        radial-gradient(55% 55% at 80% 20%, rgba(66, 165, 255, .12), transparent 70%),
        radial-gradient(50% 50% at 10% 80%, rgba(79, 246, 255, .08), transparent 70%);

}

.ac-hero-inner {

    position: relative;

    z-index: 2;

    max-width: 980px;

    margin: auto;

    text-align: center;

}

.ac-hero-inner h1 {

    margin-top: 25px;

    font-size: clamp(38px, 6vw, 76px);

    line-height: 1.05;

}

.ac-hero-inner p {

    margin: 35px auto 0;

    max-width: 720px;

    color: #9FB1C2;

    line-height: 1.9;

    font-size: clamp(16px, 2vw, 19px);

}

.ac-series-pills {

    display: flex;

    justify-content: center;

    gap: 16px;

    flex-wrap: wrap;

    margin-top: 40px;

}

.ac-series-pill {

    padding: 12px 24px;

    border-radius: 40px;

    border: 1px solid rgba(79, 246, 255, .2);

    background: rgba(255, 255, 255, .03);

    backdrop-filter: blur(20px);

    font-size: 14px;

    color: #C7D3DE;

}

.ac-series-pill b {

    color: var(--cyan);

    font-family: 'Orbitron', sans-serif;

}

.ac-hero-meta {

    display: flex;

    justify-content: center;

    gap: 60px;

    flex-wrap: wrap;

    margin-top: 45px;

}

.ac-hero-meta-item {

    text-align: center;

}

.ac-hero-meta-item span {

    display: block;

    color: #7F93A6;

    font-size: 12px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    margin-bottom: 8px;

}

.ac-hero-meta-item b {

    font-family: 'Orbitron', sans-serif;

    font-size: clamp(18px, 2.6vw, 24px);

    color: white;

}

.ac-hero-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    margin-top: 50px;

    flex-wrap: wrap;

}

/*---------- SHARED SECTION SHELL ----------*/

.ac-section {

    padding: clamp(80px, 14vw, 150px) 6%;

}

.ac-section.alt {

    background: #070B11;

}

.ac-section-header {

    max-width: 820px;

    margin: 0 auto;

}

.ac-section-header.center {

    text-align: center;

    margin-left: auto;

    margin-right: auto;

}

.ac-section-header h2 {

    margin-top: 25px;

    font-size: clamp(30px, 4.5vw, 56px);

    line-height: 1.1;

}

.ac-section-header p {

    margin-top: 25px;

    color: #9FB1C2;

    line-height: 1.9;

    font-size: clamp(16px, 2vw, 18px);

}

/*---------- PRODUCT GALLERY ----------*/

.ac-gallery {

    max-width: 950px;

    margin: clamp(50px, 8vw, 80px) auto 0;

}

.ac-gallery-main {

    position: relative;

    height: clamp(280px, 40vw, 460px);

    border-radius: 26px 26px 0 0;

    overflow: hidden;

    background: linear-gradient(135deg, #0A0E15, #0F1620);

    border: 1px solid rgba(79, 246, 255, .12);

    border-bottom: none;

}

.ac-gallery-img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: contain;

    object-position: center;

    padding: 24px;

    box-sizing: border-box;

    opacity: 0;

    transform: scale(1.02);

    transition: opacity .5s ease, transform .6s ease;

    pointer-events: none;

}

.ac-gallery-img.active {

    opacity: 1;

    transform: scale(1);

}

.ac-gallery-caption {

    display: flex;

    align-items: baseline;

    gap: 14px;

    padding: 20px 28px;

    border-radius: 0 0 26px 26px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(79, 246, 255, .12);

    border-top: none;

}

.ac-gallery-caption span {

    color: var(--cyan);

    font-size: 11px;

    letter-spacing: 2.5px;

    text-transform: uppercase;

    flex-shrink: 0;

}

.ac-gallery-caption b {

    font-size: 18px;

    color: white;

    font-weight: 600;

}

.ac-gallery-thumbs {

    display: flex;

    justify-content: center;

    gap: 12px;

    margin-top: 24px;

    flex-wrap: wrap;

}

.ac-gallery-dot {

    width: 46px;

    height: 46px;

    border-radius: 12px;

    border: 1px solid rgba(79, 246, 255, .15);

    background: rgba(255, 255, 255, .03);

    color: #7F93A6;

    font-size: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: .3s;

}

.ac-gallery-dot:hover {

    border-color: rgba(79, 246, 255, .4);

    color: var(--cyan);

}

.ac-gallery-dot.active {

    background: linear-gradient(135deg, rgba(66, 165, 255, .25), rgba(79, 246, 255, .12));

    border-color: var(--cyan);

    color: var(--cyan);

    box-shadow: 0 0 20px rgba(79, 246, 255, .25);

}

/*---------- OVERVIEW TEXT ----------*/

.ac-overview-text {

    max-width: 820px;

    margin: clamp(50px, 8vw, 80px) auto 0;

    text-align: center;

}

.ac-overview-text p {

    color: #A3B4C5;

    line-height: 1.9;

    margin-bottom: 20px;

}

/*---------- KEY FEATURES (ICON CARDS) ----------*/

.ac-feature-grid {

    max-width: 1100px;

    margin: clamp(50px, 8vw, 90px) auto 0;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

}

.ac-feature-card {

    position: relative;

    overflow: hidden;

    padding: clamp(28px, 3vw, 38px);

    border-radius: 22px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(79, 246, 255, .08);

    transition: .4s;

}

.ac-feature-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 2px;

    background: linear-gradient(90deg, transparent, var(--cyan), transparent);

    transform: translateX(-100%);

    transition: .6s;

}

.ac-feature-card:hover::before {

    transform: translateX(100%);

}

.ac-feature-card:hover {

    transform: translateY(-8px);

    border-color: rgba(79, 246, 255, .28);

    box-shadow: 0 20px 50px rgba(66, 165, 255, .1);

}

.ac-feature-icon {

    width: 56px;

    height: 56px;

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    background: linear-gradient(135deg, rgba(66, 165, 255, .25), rgba(79, 246, 255, .12));

    color: var(--cyan);

    margin-bottom: 24px;

}

.ac-feature-card h3 {

    font-size: 19px;

    margin-bottom: 14px;

}

.ac-feature-card p {

    color: #9FB1C2;

    font-size: 14.5px;

    line-height: 1.75;

}

.ac-feature-card ul {

    list-style: none;

    padding: 0;

    margin-top: 6px;

}

.ac-feature-card ul li {

    color: #9FB1C2;

    font-size: 14px;

    padding: 6px 0 6px 20px;

    position: relative;

}

.ac-feature-card ul li::before {

    content: "";

    position: absolute;

    left: 0;

    top: 15px;

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: var(--cyan);

}

@media(max-width:900px) {

    .ac-feature-grid {

        grid-template-columns: 1fr 1fr;

    }

}

@media(max-width:560px) {

    .ac-feature-grid {

        grid-template-columns: 1fr;

    }

}

/*---------- PRODUCT SERIES TABS ----------*/

.ac-tabs-wrap {

    max-width: 1100px;

    margin: clamp(50px, 8vw, 90px) auto 0;

}

.ac-tab-buttons {

    display: flex;

    justify-content: center;

    gap: 10px;

    margin-bottom: 50px;

    flex-wrap: wrap;

}

.ac-tab-btn {

    padding: 16px 38px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(79, 246, 255, .15);

    color: #9FB1C2;

    font-family: 'Orbitron', sans-serif;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 1px;

    cursor: pointer;

    transition: .35s;

}

.ac-tab-btn:hover {

    color: white;

    border-color: rgba(79, 246, 255, .35);

}

.ac-tab-btn.active {

    color: #05070B;

    background: linear-gradient(135deg, var(--blue), var(--cyan));

    border-color: transparent;

    box-shadow: 0 10px 30px rgba(79, 246, 255, .25);

}

.ac-series-panel {

    display: none;

}

.ac-series-panel.active {

    display: block;

    animation: ac-fade-in .5s ease;

}

@keyframes ac-fade-in {

    from {

        opacity: 0;

        transform: translateY(12px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

.ac-series-intro {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;

    margin-bottom: 50px;

}

.ac-series-intro-text h3 {

    font-size: clamp(22px, 3vw, 30px);

    margin-bottom: 10px;

}

.ac-series-intro-text span.ac-series-sub {

    display: block;

    color: var(--cyan);

    font-size: 13px;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 16px;

}

.ac-series-intro-text ul {

    list-style: none;

    padding: 0;

    margin-top: 8px;

}

.ac-series-intro-text ul li {

    color: #C7D3DE;

    font-size: 14.5px;

    padding: 6px 0 6px 20px;

    position: relative;

}

.ac-series-intro-text ul li::before {

    content: "";

    position: absolute;

    left: 0;

    top: 14px;

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: var(--cyan);

}

.ac-series-quickspecs {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px 24px;

    align-content: start;

    padding: 28px;

    border-radius: 20px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(79, 246, 255, .08);

}

.ac-qs-item span {

    display: block;

    color: #7F93A6;

    font-size: 11.5px;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 6px;

}

.ac-qs-item b {

    color: white;

    font-size: 15px;

    font-family: 'Orbitron', sans-serif;

}

@media(max-width:800px) {

    .ac-series-intro {

        grid-template-columns: 1fr;

    }

}

/*---------- AVAILABLE MODELS (COMPACT LIST) ----------*/

.ac-model-mini-label {

    color: var(--cyan);

    font-size: 12px;

    letter-spacing: 2.5px;

    text-transform: uppercase;

    display: block;

    margin-bottom: 20px;

}

.ac-model-mini-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));

    gap: 12px;

    margin-bottom: 20px;

}

.ac-model-mini {

    display: flex;

    align-items: baseline;

    justify-content: space-between;

    padding: 14px 18px;

    border-radius: 12px;

    background: rgba(255, 255, 255, .025);

    border: 1px solid rgba(79, 246, 255, .08);

}

.ac-model-mini b {

    font-family: 'Orbitron', sans-serif;

    font-size: 13.5px;

    color: white;

}

.ac-model-mini span {

    font-size: 12.5px;

    color: var(--cyan);

}

/*---------- EXPAND BUTTON + FULL SPEC TABLE ----------*/

.ac-expand-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: 100%;

    margin-top: 10px;

    padding: 18px 24px;

    border-radius: 14px;

    background: rgba(79, 246, 255, .05);

    border: 1px solid rgba(79, 246, 255, .2);

    color: var(--cyan);

    font-size: 14px;

    font-weight: 600;

    letter-spacing: .5px;

    cursor: pointer;

    transition: .3s;

}

.ac-expand-btn:hover {

    background: rgba(79, 246, 255, .1);

    border-color: rgba(79, 246, 255, .4);

}

.ac-expand-btn .ac-expand-caret {

    display: inline-block;

    transition: transform .35s;

}

.ac-expand-btn.open .ac-expand-caret {

    transform: rotate(180deg);

}

.ac-expand-panel {

    max-height: 0;

    overflow: hidden;

    transition: max-height .5s ease;

}

.ac-expand-panel-inner {

    padding-top: 26px;

}

.ac-spec-group-title {

    color: white;

    font-size: 13px;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin: 26px 0 14px;

}

.ac-spec-group-title:first-child {

    margin-top: 0;

}

.ac-spec-footnote {

    margin-top: 18px;

    color: #6E8192;

    font-size: 12.5px;

    line-height: 1.7;

}

.ac-common-specs {

    margin-top: 30px;

    padding-top: 26px;

    border-top: 1px solid rgba(255, 255, 255, .06);

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px 30px;

}

.ac-common-specs .ac-cs-item {

    display: flex;

    justify-content: space-between;

    gap: 16px;

    padding: 10px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .05);

    font-size: 14px;

}

.ac-common-specs .ac-cs-item span:first-child {

    color: #7F93A6;

}

.ac-common-specs .ac-cs-item span:last-child {

    color: #D3DEE8;

    text-align: right;

}

@media(max-width:700px) {

    .ac-common-specs {

        grid-template-columns: 1fr;

    }

}

/*---------- TECHNICAL SPECIFICATIONS TABLE (shared) ----------*/

.ac-table-wrap {

    overflow-x: auto;

    border-radius: 20px;

    border: 1px solid rgba(79, 246, 255, .1);

    background: rgba(255, 255, 255, .02);

}

.ac-table {

    width: 100%;

    border-collapse: collapse;

    min-width: 900px;

    font-size: 13.5px;

}

.ac-table thead th {

    text-align: left;

    padding: 16px 18px;

    color: var(--cyan);

    font-size: 10.5px;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    background: rgba(79, 246, 255, .06);

    white-space: nowrap;

}

.ac-table tbody td {

    padding: 14px 18px;

    color: #C7D3DE;

    border-top: 1px solid rgba(255, 255, 255, .05);

    white-space: nowrap;

}

.ac-table tbody tr {

    transition: background .3s;

}

.ac-table tbody tr:hover {

    background: rgba(79, 246, 255, .03);

}

.ac-table tbody td:first-child {

    color: white;

    font-weight: 600;

    font-family: 'Orbitron', sans-serif;

    font-size: 12.5px;

}

/* Placeholder rows pending real datasheet values */
.ac-table tbody tr.ac-row-placeholder td {

    color: #6E8192;
    font-style: italic;
    white-space: normal;

}

/*---------- GENERAL SPECIFICATIONS CARD ----------*/

.ac-genspec-card {

    max-width: 900px;

    margin: clamp(50px, 8vw, 90px) auto 0;

    padding: clamp(30px, 4vw, 46px);

    border-radius: 24px;

    background: linear-gradient(135deg, rgba(66, 165, 255, .06), rgba(79, 246, 255, .02));

    border: 1px solid rgba(79, 246, 255, .15);

}

.ac-genspec-card .ac-cs-item {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 16px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .06);

    font-size: 15px;

}

.ac-genspec-card .ac-cs-item:last-child {

    border-bottom: none;

}

.ac-genspec-card .ac-cs-item span:first-child {

    color: #7F93A6;

    flex-shrink: 0;

}

.ac-genspec-card .ac-cs-item span:last-child {

    color: white;

    text-align: right;

}

/*---------- APPLICATIONS (EMOJI GRID) ----------*/

.ac-app-grid {

    max-width: 1150px;

    margin: clamp(50px, 8vw, 90px) auto 0;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

}

.ac-app-card {

    position: relative;

    padding: 30px 22px;

    border-radius: 20px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(79, 246, 255, .08);

    overflow: hidden;

    transition: .4s;

    text-align: center;

}

.ac-app-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 2px;

    background: linear-gradient(90deg, transparent, var(--cyan), transparent);

    transform: translateX(-100%);

    transition: .6s;

}

.ac-app-card:hover::before {

    transform: translateX(100%);

}

.ac-app-card:hover {

    transform: translateY(-8px);

    border-color: rgba(79, 246, 255, .25);

    box-shadow: 0 20px 50px rgba(66, 165, 255, .1);

}

.ac-app-emoji {

    font-size: 30px;

    margin-bottom: 16px;

}

.ac-app-card h3 {

    font-size: 15.5px;

    font-weight: 500;

}

.ac-app-card p {

    margin-top: 10px;

    color: #8FA2B4;

    font-size: 13px;

    line-height: 1.6;

}

@media(max-width:900px) {

    .ac-app-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:560px) {

    .ac-app-grid {

        grid-template-columns: 1fr;

    }

}

/*---------- OPTIONAL ACCESSORIES (CARDS) ----------*/

.ac-accessory-grid {

    max-width: 1100px;

    margin: clamp(50px, 8vw, 90px) auto 0;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

}

.ac-accessory-card {

    padding: 30px 28px;

    border-radius: 20px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(79, 246, 255, .08);

    transition: .4s;

}

.ac-accessory-card:hover {

    transform: translateY(-6px);

    border-color: rgba(79, 246, 255, .28);

    box-shadow: 0 20px 50px rgba(66, 165, 255, .1);

}

.ac-accessory-card h3 {

    font-size: 18px;

    margin-bottom: 12px;

}

.ac-accessory-card p {

    color: #9DB0C2;

    font-size: 14px;

    line-height: 1.7;

}

@media(max-width:900px) {

    .ac-accessory-grid {

        grid-template-columns: 1fr 1fr;

    }

}

@media(max-width:560px) {

    .ac-accessory-grid {

        grid-template-columns: 1fr;

    }

}

/*---------- WHY CHOOSE (compact strip) ----------*/

.ac-why-grid {

    max-width: 1100px;

    margin: clamp(50px, 8vw, 90px) auto 0;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

}

.ac-why-item {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 20px 22px;

    border-radius: 14px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(79, 246, 255, .08);

    transition: .35s;

    font-size: 14px;

    color: #D3DEE8;

}

.ac-why-text {

    display: flex;

    flex-direction: column;

    gap: 4px;

}


.ac-why-text b {

    color: white;

    font-size: 14px;

    font-weight: 600;

}


.ac-why-text span {

    color: #9FB1C2;

    font-size: 12.5px;

    line-height: 1.5;

}

.ac-why-item:hover {

    border-color: rgba(79, 246, 255, .28);

    background: rgba(79, 246, 255, .04);

}

.ac-why-check {

    flex-shrink: 0;

    color: var(--cyan);

    font-size: 16px;

}

@media(max-width:900px) {

    .ac-why-grid {

        grid-template-columns: 1fr 1fr;

    }

}

@media(max-width:560px) {

    .ac-why-grid {

        grid-template-columns: 1fr;

    }

}

/*---------- FAQ (ACCORDION) ----------*/

.ac-faq-list {

    max-width: 820px;

    margin: clamp(50px, 8vw, 90px) auto 0;

}

.ac-faq-item {

    border-bottom: 1px solid rgba(255, 255, 255, .08);

}

.ac-faq-question {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 26px 4px;

    cursor: pointer;

    color: white;

    font-size: 16.5px;

    font-weight: 500;

}

.ac-faq-caret {

    flex-shrink: 0;

    color: var(--cyan);

    font-size: 14px;

    transition: transform .35s;

}

.ac-faq-item.open .ac-faq-caret {

    transform: rotate(180deg);

}

.ac-faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height .4s ease;

}

.ac-faq-answer p {

    color: #9FB1C2;

    line-height: 1.85;

    padding: 0 4px 26px;

    max-width: 700px;

}

/*---------- REQUEST QUOTE ----------*/

.ac-quote-checks {

    max-width: 500px;

    margin: 40px auto 0;

    text-align: left;

    display: inline-block;

}

.ac-quote-checks li {

    list-style: none;

    color: #C7D3DE;

    padding: 10px 0 10px 30px;

    position: relative;

    font-size: 15px;

}

.ac-quote-checks li::before {

    content: "✓";

    position: absolute;

    left: 0;

    color: var(--cyan);

}

/*---------- SCROLL REVEAL ----------*/

.ac-feature-card,
.ac-app-card,
.ac-accessory-card,
.ac-why-item,
.ac-compare-col,
.ac-select-card {

    opacity: 0;

    transform: translateY(24px);

    transition: opacity .7s ease, transform .7s ease;

}

.ac-feature-card.in-view,
.ac-app-card.in-view,
.ac-accessory-card.in-view,
.ac-why-item.in-view,
.ac-compare-col.in-view,
.ac-select-card.in-view {

    opacity: 1;

    transform: translateY(0);

}

/*---------- RESPONSIVE FIXES ----------*/

@media(max-width:480px) {

    .ac-hero,
    .ac-section {

        padding-left: 5%;

        padding-right: 5%;

    }

}

/*==================================================
WATER VS OIL COMPARISON (new — Temperature Control page)
==================================================*/

.ac-compare-wrap {

    max-width: 950px;

    margin: clamp(50px, 8vw, 90px) auto 0;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 24px;

}

.ac-compare-col {

    border-radius: 22px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(79, 246, 255, .1);

    overflow: hidden;

    transition: .35s;

}

.ac-compare-col:hover {

    border-color: rgba(79, 246, 255, .3);

    transform: translateY(-6px);

}

.ac-compare-head {

    padding: 22px 26px;

    text-align: center;

    font-family: 'Orbitron', sans-serif;

    font-size: 15px;

    letter-spacing: 1px;

    color: #05070B;

    background: linear-gradient(135deg, var(--blue), var(--cyan));

}

.ac-compare-col.ac-compare-oil .ac-compare-head {

    background: linear-gradient(135deg, #FF9E6B, #FFD08A);

}

.ac-compare-row {

    padding: 18px 26px;

    border-bottom: 1px solid rgba(255, 255, 255, .05);

    color: #C7D3DE;

    font-size: 14.5px;

    line-height: 1.6;

}

.ac-compare-row:last-child {

    border-bottom: none;

}

@media(max-width:800px) {

    .ac-compare-wrap {

        grid-template-columns: 1fr;

    }

}

/*==================================================
HOW TO SELECT THE RIGHT SYSTEM (new — Temperature Control page)
==================================================*/

.ac-select-grid {

    max-width: 1000px;

    margin: clamp(50px, 8vw, 90px) auto 0;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 26px;

}

.ac-select-card {

    padding: clamp(28px, 3vw, 36px);

    border-radius: 22px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(79, 246, 255, .1);

    transition: .35s;

}

.ac-select-card:hover {

    border-color: rgba(79, 246, 255, .3);

    transform: translateY(-6px);

}

.ac-select-card h3 {

    font-size: 18px;

    color: var(--cyan);

    margin-bottom: 18px;

}

.ac-select-card.ac-select-oil h3 {

    color: #FF9E6B;

}

.ac-select-card ul {

    list-style: none;

    padding: 0;

}

.ac-select-card ul li {

    color: #D3DEE8;

    font-size: 14.5px;

    padding: 9px 0 9px 24px;

    position: relative;

    border-bottom: 1px solid rgba(255, 255, 255, .05);

}

.ac-select-card ul li:last-child {

    border-bottom: none;

}

.ac-select-card ul li::before {

    content: "→";

    position: absolute;

    left: 0;

    color: var(--cyan);

}

.ac-select-card.ac-select-oil ul li::before {

    color: #FF9E6B;

}

@media(max-width:800px) {

    .ac-select-grid {

        grid-template-columns: 1fr;

    }

}