.collection-page {
    position: relative;
    top: 75px;
}
.collection-hero {
    min-height: 430px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/Banner.jpg);
    background-position: center;
}
.collection-hero-overlay {
    position: absolute;
    inset: 0;
}
.collection-hero-content {
    position: relative;
    z-index: 2;
    width: min(1100px, 90%);
    padding: 70px 60px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 22px;
    background: rgba(255, 255, 255, .08);
    /* backdrop-filter: blur(15px); */
        background: #f0f0f00f;
    backdrop-filter: blur(1px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
}
.collection-hero-content span {
    color: #c9c18a;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.collection-hero-content h1 {
    margin: 10px 0 15px;
    font-size: 48px;
    line-height: 1.1;
    color: #fff;
    font-weight: 400;
}
.collection-hero-content p {
    max-width: 760px;
    margin: auto;
    color: #fff !important;
    font-size: 18px;
    line-height: 1.7;
}
.collection-content {
    position: relative;
    /* Bottom padding = gap between the pagination and the footer (footer has
       no top margin), kept tight on purpose — no extra blank area. */
    padding: 70px 0 45px;
}
.collection-container {
    margin: auto;
    display: grid;
    grid-template-columns: 350px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
    padding-bottom: 50px;
}
.filter-sidebar {
    position: sticky;
    top: 30px;
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 13px;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, .09),
            rgba(255, 255, 255, .035));
    backdrop-filter: blur(18px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, .22);
    z-index: 20;
    background: #c6c6c614;
    backdrop-filter: blur(15px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
}
.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.filter-header h3 {
    font-weight: 400;
    color: #fff;
}
.filter-desktop-icon {
    color: #aaa;
    font-size: 14px;
}
.filter-close {
    display: none;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}
.filter-group {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.filter-group-title {
    width: 100%;
    padding: 17px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    text-align: left;
}
.filter-group-title span {
    color: #ddd !important;
    font-family: poppins;
}
.filter-group-title i {
    color: #aaa;
    font-size: 11px;
    transition: .3s;
}
.filter-options {
    max-height: 500px;
    overflow: hidden;
    padding-bottom: 12px;
    transition: .35s ease;
}
.filter-options.collapsed {
    max-height: 0;
    padding-bottom: 0;
}
.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    margin-bottom: 10px;
    cursor: pointer;
    color: #ddd !important;
}
.filter-options span {
    color: #ddd !important;
}
.filter-option input {
    position: absolute;
    opacity: 0;
}
.custom-check {
    width: 13px;
    height: 13px;
    border: 1px solid #777;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s;
}
.filter-option input:checked+.custom-check {
    background: #ddd;
    border-color: #ddd;
}
.filter-option input:checked+.custom-check::after {
    content: "✓";
    color: #1b1c18;
    font-size: 9px;
    font-weight: 700;
}
.filter-name {
    flex: 1;
}
.filter-count {
    color: #888;
    font-size: 10px;
}
.filter-empty {
    color: #888;
    font-size: 11px;
    padding: 2px 0 4px;
}
.reset-filter {
    width: 100%;
    margin-top: 16px;
    padding: 11px;
    border-radius: 5px;
    border: 0px solid #888b68;
    background: rgba(165, 163, 125, .08);
    color: #fff;
    cursor: pointer;
    transition: .3s;
    border-radius: 30px;
    background: #ffffff0f;
    backdrop-filter: blur(12px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    font-family: poppins;
}
.reset-filter:hover {
    background: #9d9c73;
    color: #111;
}
.products-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 15px;
}
.product-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.product-card-link:hover {
    color: inherit;
    text-decoration: none;
}

.product-view {
    cursor: pointer;
    text-decoration: none;
}
.product-card {
    position: relative;
    min-width: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 20px;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, .09),
            rgba(255, 255, 255, .035));
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(205, 197, 133, .65);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, .28);
}
.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1 / 1;
    background: #333;
}
.product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
}
.product-card:hover .product-image img {
    transform: scale(1.06);
}
.product-size {
    position: absolute;
    left: 7px;
    bottom: 7px;
    padding: 4px 7px;
    border-radius: 4px;
    background: rgba(0, 0, 0, .72);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    font-size: 8px;
}
.product-view {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .65);
    color: #fff;
    opacity: 0;
    transform: translateY(-5px);
    cursor: pointer;
    transition: .3s;
}
.product-card:hover .product-view {
    opacity: 1;
    transform: translateY(0);
}
.product-info {
    padding: 10px 5px 8px;
}
.product-info h3 {
    margin-bottom: 2px;
    color: #fff;
    font-weight: 500;
}
.product-info span {
    color: #aaa;
}
.product-pagination {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.pagination-prev,
.pagination-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    background: #c6c6c614;
    backdrop-filter: blur(15px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    color: #fff;
    cursor: pointer;
    transition: .3s;
    text-decoration: none;
}
.pagination-prev,
.pagination-next,
.pagination-prev i,
.pagination-next i {
    line-height: 1;
}
.pagination-prev:hover,
.pagination-next:hover {
    background: #a7a67d;
}
.pagination-prev[disabled],
.pagination-next[disabled] {
    opacity: .38;
    cursor: not-allowed;
    pointer-events: none;
}
.pagination-pages {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 25px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 40px;
    background: #c6c6c614;
    backdrop-filter: blur(15px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
}
.pagination-pages button,
.pagination-pages span {
    width: 25px;
    height: 25px;
    border: 0;
    background: transparent;
    color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-family: poppins;
    font-size: 13px;
}
.pagination-pages .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    text-decoration: none;
}
.pagination-pages button.active {
    background: #a4a27b;
    color: #171916;
    font-weight: 600;
}
.mobile-filter-button {
    display: none;
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    z-index: 90;
}
@media (max-width: 1200px) {
    .collection-container {
        width: 94%;
        grid-template-columns: 230px minmax(0, 1fr);
        gap: 20px;
    }
    .products-grid {
        gap: 10px;
    }
    .collection-hero-content h1 {
        font-size: 42px;
    }
}
@media (max-width: 991px) {
    .collection-hero {
        min-height: 380px;
    }
    .collection-hero-content {
        padding: 50px 35px;
    }
    .collection-hero-content h1 {
        font-size: 36px;
    }
    .collection-container {
        grid-template-columns: 1fr;
        height: auto;
        padding-top: 40px;
    }
    .mobile-filter-button {
        display: flex;
        margin-bottom: 15px;
    }
    .filter-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        width: 320px;
        max-width: 88vw;
        height: 100vh;
        overflow-y: auto;
        border-radius: 0;
        transform: translateX(-105%);
        transition: transform .4s ease;
        z-index: 99999;
    }
    .filter-sidebar.open {
        transform: translateX(0);
    }
    .filter-close {
        display: block;
    }
    .filter-desktop-icon {
        display: none;
    }
    .filter-overlay.active {
        display: block;
    }
    .products-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 700px) {
    .collection-hero {
        min-height: 350px;
    }
    .collection-hero-content {
        width: 92%;
        padding: 40px 20px;
        border-radius: 15px;
    }
    .collection-hero-content h1 {
        font-size: 30px;
    }
    .collection-hero-content p {
        font-size: 13px;
    }
    .collection-content {
        padding: 40px 0 40px;
    }
    .products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .product-card {
        padding: 5px;
        border-radius: 10px;
    }
    .product-image {
        border-radius: 7px;
    }
    .product-info {
        padding: 8px 4px;
    }
    .product-info h3 {
        font-size: 11px;
    }
    .product-info span {
        font-size: 9px;
    }
    .product-view {
        width: 26px;
        height: 26px;
        font-size: 10px;
    }
    .product-pagination {
        margin-top: 30px;
        gap: 8px;
    }
    .pagination-prev,
    .pagination-next {
        width: 42px;
        height: 42px;
        font-size: 13px;
    }
    .pagination-pages {
        padding: 10px 16px;
        gap: 3px;
    }
    .pagination-pages button,
    .pagination-pages span,
    .pagination-pages .page-link {
        width: 23px;
        height: 23px;
        font-size: 12px;
    }
    .collection-page {
        top: 0px;
    }
}
@media (max-width: 450px) {
    .collection-hero-content h1 {
        font-size: 25px;
    }
    .collection-hero-content p {
        font-size: 12px;
    }
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }
    .product-size {
        font-size: 7px;
    }
}
.product-detail-page {
    color: #fff;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}
.product-container {
    width: min(1400px, 95%);
    margin: auto;
}
.product-detail {
    padding: 120px 0 55px;
}
.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 25px;
    color: #858781;
    white-space: nowrap;
}
.product-breadcrumb a {
    transition: .3s;
    color: #747474;
}
.product-breadcrumb a:hover {
    color: #c8c27f;
}
.product-breadcrumb strong {
    color: #ddd;
    font-weight: 500;
}
.product-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr) minmax(0, .92fr);
    gap: 40px;
    align-items: start;
}
.main-product-image {
    width: 100%;
    aspect-ratio: 1.17 / 1;
    padding: 6px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .25);
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, .13),
            rgba(255, 255, 255, .04));
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .3);
    overflow: hidden;
    margin: auto auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 10px;
    border-radius: 7px;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, .08),
            rgba(255, 255, 255, .02));
    color: #ddd;
    font-size: 18px;
    transition: .35s;
    padding: 15px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
    overflow: hidden;
    transition: .4s;
    background: #e2e2e203;
    backdrop-filter: blur(12px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
}
.main-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: .5s;
}
.main-product-image:hover img {
    transform: scale(1.05);
}
.product-info {
    padding-top: 15px;
}
.product-info h1 {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 600;
}
.product-description {
    max-width: 560px;
    margin-bottom: 28px;
    color: #d0d0d0;
    line-height: 1.7;
}
.product-specifications {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.spec-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: #ddd;
}
.spec-row span {
    font-weight: 600;
}
.spec-row strong {
    font-weight: 400;
}
.spec-row b {
    margin: 0 5px;
    color: #777;
}
.product-thumbnails {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 8px;
    margin-top: 30px;
}
.product-thumb {
    height: 188px;
    padding: 4px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .22);
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, .12),
            rgba(255, 255, 255, .04));
    overflow: hidden;
    cursor: pointer;
    transition: .35s;
}
.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.product-thumb:hover,
.product-thumb.active {
    border-color: #aaa87c;
    box-shadow:
        0 0 15px rgba(200, 194, 127, .15);
}
.product-applications {
    padding: 30px 0 60px;
}
.product-applications h2 {
    margin-bottom: 25px;
    font-size: 25px;
    font-weight: 600;
}
.application-list {
    display: grid;
    grid-template-columns:
        repeat(10, 1fr);
    gap: 25px;
}
.application-item {
    min-width: 0;
    text-align: center;
}
.application-icon {
    margin: auto auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 10px;
    border-radius: 7px;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, .08),
            rgba(255, 255, 255, .02));
    color: #ddd;
    font-size: 18px;
    transition: .35s;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
    overflow: hidden;
    transition: .4s;
    background: #e2e2e203;
    backdrop-filter: blur(12px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
}
.application-icon img {
    width: 80px;
    height: 80px;
}
.application-item span {
    display: block;
    color: #ddd;
    line-height: 1.35;
}
.application-item:hover .application-icon {
    color: #c9c27d;
    border-color: #aaa46d;
    transform: translateY(-4px);
}
.related-products-section {
    padding: 35px 0 100px;
}
.related-heading {
    text-align: center;
    margin-bottom: 25px;
}
.related-heading span {
    display: block;
    margin-bottom: 5px;
    color: #c7c080;
    letter-spacing: 3px;
}
.related-heading h2 {
    font-size: 30px;
    font-weight: 600;
}
.relatedProductsSwiper {
    padding: 5px 2px 45px;
}
.related-product-card {
    padding: 10px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
    overflow: hidden;
    transition: .4s;
    background: #0000000f;
    backdrop-filter: blur(12px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
}
.related-product-card:hover {
    transform: translateY(0px);
    border-color: #aaa56e;
}
.related-product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 15px;
}
.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}
.related-product-card:hover .related-product-image img {
    transform: scale(1.06);
}
.related-product-image span {
    position: absolute;
    left: 7px;
    bottom: 7px;
    padding: 3px 6px;
    border-radius: 3px;
    background: rgba(0, 0, 0, .72);
    color: #fff;
    font-size: 12px;
}
.related-product-info {
    padding: 10px 4px 5px;
}
.related-product-info h3 {
    margin-bottom: 2px;
    font-weight: 600;
}
.related-product-info p {
    color: #aaa;
}
.related-products-pagination {
    bottom: 0 !important;
    text-align: center;
}
.related-products-pagination .swiper-pagination-bullet {
    background: #777;
    opacity: 1;
}
.related-products-pagination .swiper-pagination-bullet-active {
    width: 25px;
    border-radius: 20px;
    background: #c8c27e;
}
@media (max-width: 1000px) {
    .product-container {
        width: 92%;
    }
    .product-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .application-list {
        grid-template-columns:
            repeat(5, 1fr);
        row-gap: 25px;
    }
}
@media (max-width: 767px) {
    .product-detail {
        padding-top: 90px;
    }
    .product-breadcrumb {
        gap: 7px;
        font-size: 8px;
        overflow: hidden;
    }
    .product-info h1 {
        font-size: 25px;
    }
    .spec-row {
        flex-wrap: wrap;
        font-size: 11px;
    }
    .product-thumbnails {
        grid-template-columns:
            repeat(4, 1fr);
        gap: 6px;
    }
    .product-thumb {
        height: 90px;
    }
    .application-list {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 12px;
        scrollbar-width: none;
    }
    .application-list::-webkit-scrollbar {
        display: none;
    }
    .application-item {
        min-width: 65px;
    }
    .application-icon {
        width: 48px;
        height: 48px;
    }
    .related-heading h2 {
        font-size: 25px;
    }
}
@media (max-width: 420px) {
    .product-info h1 {
        font-size: 22px;
    }
    .product-thumb {
        height: 75px;
    }
    .product-applications h2 {
        font-size: 16px;
    }
}
.main-product-image {
    position: relative;
    cursor: zoom-in;
}
.image-zoom-icon {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, .65);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transform: translateY(8px);
    transition: .3s;
    pointer-events: none;
}
.main-product-image:hover .image-zoom-icon {
    opacity: 1;
    transform: translateY(0);
}
.product-gallery-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition:
        opacity .35s ease,
        visibility .35s ease;
}
.product-gallery-popup.active {
    visibility: visible;
    opacity: 1;
}
.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 7, 5, .92);
    backdrop-filter: blur(15px);
}
.popup-gallery {
    position: relative;
    z-index: 2;
    width: min(1100px, 92vw);
    height: min(90vh, 850px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.popup-main-image {
    width: min(850px, 80vw);
    height: min(70vh, 650px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-main-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .55);
    transition:
        opacity .25s ease,
        transform .35s ease;
}
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: .3s;
}
.popup-close:hover {
    background: #c7c080;
    color: #151713;
    transform: rotate(90deg);
}
.popup-prev,
.popup-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    cursor: pointer;
    z-index: 5;
    transition: .3s;
}
.popup-prev {
    left: 0;
}
.popup-next {
    right: 0;
}
.popup-prev:hover,
.popup-next:hover {
    background: #c7c080;
    color: #151713;
    transform:
        translateY(-50%) scale(1.08);
}
.popup-thumbnails {
    display: none !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    max-width: 90vw;
    overflow-x: auto;
    padding: 4px;
}
.popup-thumb {
    flex: 0 0 75px;
    width: 75px;
    height: 60px;
    padding: 3px;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .08);
    cursor: pointer;
    overflow: hidden;
    transition: .3s;
}
.popup-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.popup-thumb.active {
    border-color: #c8c27c;
    box-shadow:
        0 0 15px rgba(200, 194, 124, .25);
}
.popup-thumb:hover {
    border-color: #c8c27c;
}
@media (max-width: 650px) {
    .popup-gallery {
        width: 100vw;
        height: 100vh;
    }
    .popup-main-image {
        width: 88vw;
        height: 65vh;
    }
    .popup-prev,
    .popup-next {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }
    .popup-prev {
        left: 10px;
    }
    .popup-next {
        right: 10px;
    }
    .popup-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    .popup-thumb {
        width: 62px;
        height: 52px;
        flex-basis: 62px;
    }
    .application-icon {
        width: 80px;
        height: 80px;
    }
    .application-icon img {
        width: 80px;
        height: 80px;
        padding: 15px;
    }
    .application-item {
        min-width: 100px;
    }
    .application-item span {
        display: block;
        color: #ddd;
        font-size: 12px;
        line-height: 1.35;
    }
    .spec-row {
        font-size: 15px;
        flex-direction: column;
        gap: 5px;
    }
    .spec-row span {
        font-size: 15px;
        font-weight: 300;
    }
    .product-thumb {
        height: 100px;
    }
    .product-specifications {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}
@media only screen and (min-width: 1201px) and (max-width: 1400px) {
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}
.collection-container {
    margin: auto;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}
.product-card {
    border-radius: 10px;
}
.product-card img {
    border-radius: 10px;
}
.application-icon img {
    width: 60px;
    height: 60px;
}
.application-list {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 15px;
}
.application-item span {
    font-size: 12px;
}
.spec-row strong {
    font-weight: 400;
    font-size: 14px;
}
}
@media only screen and (min-width: 1401px) and (max-width: 1600px) {
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}
.collection-container {
    margin: auto;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}
.product-card {
    border-radius: 10px;
}
.product-card img {
    border-radius: 10px;
}
.application-icon img {
    width: 60px;
    height: 60px;
}
.application-list {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 15px;
}
.application-item span {
    font-size: 14px;
}
.spec-row strong {
    font-weight: 400;
    font-size: 14px;
}
}

.filter-sidebar.scrolled {
    top: 120px;
}

.random-table {
    border-collapse: collapse;
    font-weight: 400;
}
.random-table th,
.random-table td {
    padding: 4px 18px 4px 0;
    text-align: left;
    white-space: nowrap;
}
.random-table th {
    font-weight: 600;
    opacity: .6;
}