@font-face {
  font-family: 'Cabin';
  src: url('/static/fonts/Cabin-VariableFont_wdth\,wght.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

:root{
    --dark-color: #353535;
    --background-color: #ffffff;
    --accent-color: #46989c;
    --detail-color: #2d5e7e;
    --gray-color: #eeeeee;
    --dark-detail-color: #103752f0;
    --dark-color-rgb: 53, 53, 53;
}



*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: var(--background-color);
    max-width: 100vw;
    word-break: break-word;
}

html {
    font-size: 13px;
    scroll-behavior: smooth;
}

body{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
    "header"
    "main"
    "footer";
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    min-height: 100dvh;
    background-color: var(--background-color);
    font-family: 'Cabin', sans-serif;
    overflow-x: hidden;
}

body.login-open {
    overflow: hidden;
}

body.photo-highlighted {
    overflow: hidden;
}

a { 
    text-decoration: none;
    text-align: center;
}

h1 {
    position: relative;
    display: inline-block;
    padding-left: 0.3em;
    margin-bottom: 0.7em;
    font-weight: bold;
    font-size: 3rem;
    color: var(--dark-color);
}

h2 {
    color: var(--dark-color);
}

p {
    color: var(--dark-color);
}

img {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    user-select: none;
    -webkit-user-drag: none;
}

strong {
    font-weight: 900;
    color: var(--dark-color);
}

h1::before {
    content: '';
    position: absolute;
    left: 0em;
    top: 0.5em;
    height: calc(70% + 0.5em);
    width: 0.06em;
    background-color: var(--detail-color);
}

h1::after {
    content: '';
    position: absolute;
    left: -0.4em;
    bottom: -0.2em;
    width: calc(70% + 0.6em);
    height: 0.06em;
    background-color: var(--detail-color);
}

h2.underlined {
    position: relative;
    display: inline-block;
    padding-left: 0.3em;
    margin-bottom: 2rem;
    font-weight: bold;
    font-size: 3rem;
    color: var(--dark-color);
}


h2.underlined::before {
    content: '';
    position: absolute;
    left: 0em;
    top: 0.5em;
    height: calc(70% + 0.5em);
    width: 0.06em;
    background-color: var(--detail-color);
}

h2.underlined::after {
    content: '';
    position: absolute;
    left: -0.4em;
    bottom: -0.2em;
    width: calc(70% + 0.6em);
    height: 0.06em;
    background-color: var(--detail-color);
}


.noselect {
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

iframe {
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    border-radius: 1.3rem;
}

.mobile-only-1100{
        display: none;
    }

.desktop-only-1100{
    display: flex;
}

/*---------------SCROLL TO TOP BUTTON------------------*/

#scrollToTopBtn {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 2.5rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 16px rgba(70,152,156,0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, background 0.2s, top 0.3s ease-in-out;
    z-index: 3000;
}

body:not(.nav-hidden) #scrollToTopBtn {
    top: 7rem;
}

body.nav-hidden #scrollToTopBtn {
    top: 2.5rem;
}

body.photo-highlighted #scrollToTopBtn {
    display: none !important;
}

#scrollToTopBtn svg {
    width: 2.6rem;
    height: 2.6rem;
    display: block;
}

#scrollToTopBtn:hover {
    background: var(--accent-color);
}

#scrollToTopBtn:hover svg path,
#scrollToTopBtn:hover svg circle {
    stroke: var(--accent-color);
}

/*---------------HEADER & NAVBAR------------------*/

header {
    grid-area: header;
    display: flex;
    justify-content: center;
    background: linear-gradient(to bottom, var(--background-color), var(--gray-color));
    background: linear-gradient(to bottom right,var(--background-color), var(--gray-color));
    position: sticky;
    top: 0;
    height: 6rem;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.header-hidden {
    transform: translateY(-100%);
}

header * {
    color: var(--dark-color);
    font-size: 1.2rem;
}

nav#navbar {
    width: 100%;
    max-width: 1780px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

.nav-left {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 4rem;
}

.nav-left .logo {
    height: 5.5rem;
    margin-left: 0.5rem;
    object-fit: contain;
    display: block;
    box-shadow: none;
}

.nav-flags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-flags img {
    height: 1.8rem;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    display: block;
}

.nav-flags img:hover {
    box-shadow: 0 4px 12px rgba(var(--dark-color-rgb), 0.6);
    border-color: rgba(var(--dark-color-rgb), 0.8);
}

.nav-center {
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: -12rem;
}

.nav-center ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav-center ul li {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-center ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 0.75rem;
    font-weight: bold;
    font-size: 1.4rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-center ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 100%;
    height: 4px;
    background-color: var(--accent-color);
    transition: transform 0.3s ease;
}

.nav-center ul li a:hover,
.nav-center ul li a.selected {
    color: var(--accent-color);
}

.nav-center ul li a:hover::after,
.nav-center ul li a.selected::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-right .login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: inherit;
    font-weight: bold;
    font-size: 1.4rem;
    margin-right: 0.5rem;
    background: none;
    border: none;
    color: var(--dark-color);
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0;
}

.nav-right .login-btn:hover {
    color: var(--accent-color);
}

.nav-right .login-btn img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    user-select: none;
    border-radius: 50%;
}

.nav-right .user-menu-wrapper {
    position: relative;
    display: inline-block;
}

.nav-right .user-menu-btn {
    background: transparent;
    border: none;
    font: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: bold;
}

.nav-right .user-menu-btn img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    user-select: none;
    border-radius: 50%;
}

.nav-right .user-menu-btn .arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--dark-color);
    transition: transform 0.3s ease;
    margin-right: 0.3rem;
}

.nav-right .user-menu-btn[aria-expanded="true"] .arrow {
    transform: rotate(180deg);
}

.nav-right .user-dropdown {
    position: absolute;
    top: 5rem;
    right: 1rem;
    background: linear-gradient(to bottom, var(--background-color), var(--gray-color));
    background: linear-gradient(to bottom right,var(--background-color), var(--gray-color));
    border-radius: 0.4rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    padding: 0.6rem 1rem;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 0.3s ease; 
    pointer-events: none;
    z-index: 999;
    width: auto;
    height: auto;
    white-space: nowrap;
    min-width: 160px;
}

.nav-right .user-dropdown.show {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
}

.nav-right .user-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-right .user-dropdown li {
    padding: 0.5rem 0.8rem;
}

.nav-right .user-dropdown li:hover {
    background-color: rgb(236, 236, 236);
    border-radius: 0.8rem;
}

.nav-right .user-dropdown li.line {
    padding: 0;
}

.nav-right .user-dropdown li hr {
    width: 105%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 0.7rem 0;
}

.nav-right .user-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.nav-right .user-dropdown a:hover {
    color: var(--accent-color);
}

.nav-right .user-dropdown .logout {
    color: #de4843;
}

.nav-right .user-dropdown .logout:hover {
    color: #d43d3b;
}

.nav-right .user-dropdown a div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: inherit;
}

.nav-right .user-dropdown a div svg {
    width: 100%;
    height: 100%;
    color: inherit;
}

.nav-right .user-dropdown a div svg * {
    color: inherit;
}

button#menu-btn{
    display: none;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: transparent;
    height: 100%;
    aspect-ratio: 1/1;
}

button#menu-btn img{
    height: 45%;
    border-radius: 0px;
    box-shadow: none;
    transition: 0.2s ease;
    opacity: 0.8;
}

button#menu-btn img:hover{
    cursor: pointer;
}

nav#column-nav{
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    min-height: 100dvh;
    max-height: 100dvh;
    width: 300px;
    z-index: 10000;
    background-color: var(--gray-color);
    box-shadow: -8px 0 24px rgba(0,0,0,0.18);
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.25s;
    pointer-events: none;
    visibility: none;
}

nav#column-nav *{
    color: var(--dark-color);
}

nav#column-nav.active {
    transform: translateX(0%);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

nav#column-nav .nav-column-start {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

nav#column-nav .nav-column-start button#close-menu-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    border: 0;
    background-color: transparent;
}

button#close-menu-btn:hover{
    cursor: pointer;
}


nav#column-nav .nav-column-start button#close-menu-btn img{
    width: 100%;
    height: 100%;
    box-shadow: 0 0 0 0;
}

nav#column-nav .nav-column-start .nav-flags{
    padding-right: 3rem;
}


nav#column-nav .nav-column-start button.login-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-weight: bold;
    font-size: 1.2rem;
    gap: 0.3rem;
    background: none;
    border: none;
    color: var(--dark-color);
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0;
    height: 2.5rem;
}

nav#column-nav .nav-column-start button.login-btn:hover{
    color: var(--accent-color);
}

nav#column-nav .nav-column-start button.login-btn img{
    height: 100%;
    border: none;
    background-color: transparent;
    box-shadow: none;
}

nav#column-nav .nav-column-start .user-info{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-weight: bold;
    font-size: 1.2rem;
    gap: 0.3rem;
    background: none;
    border: none;
    color: var(--dark-color);
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0;
    height: 2.5rem;
}

nav#column-nav .nav-column-start .user-info:hover{
    color: var(--accent-color);
}

nav#column-nav .nav-column-start .user-info img{
    height: 100%;
    border: none;
    background-color: transparent;
    box-shadow: none;
}

nav#column-nav .nav-column-center { 
    display: flex;
    width: 100%;
}

nav#column-nav .nav-column-end {
    display: flex;
    width: 100%;
}


nav#column-nav .nav-column-center ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 1rem 2rem;
    list-style: none;
    gap: 1rem;
}

nav#column-nav .nav-column-center ul li{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 3rem;
    background-color: var(--background-color);
    transition: 0.2s ease-in;
    border-radius: 0.7rem;
    margin-bottom: 0.5rem;
    background: #fff;
    box-shadow: 0 2px 8px rgba(70,152,156,0.08);
    transition: background 0.2s, box-shadow 0.2s;
}

nav#column-nav .nav-column-center ul li a{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    width: 100%;
    height: 100%;
    padding: 0;

    color: var(--detail-color);
    font-size: 1.3rem;
    font-weight: bold;
    transition: color 0.2s;
}

nav#column-nav .nav-column-center ul li a:hover,
nav#column-nav .nav-column-center ul li a:focus {
    color: var(--accent-color);
    background: #e6f7fa;
    font-weight: bold;
    box-shadow: 0 6px 18px rgba(70,152,156,0.12);
    border-radius: 0.7rem;
    outline: none;
    transition:
        color 0.2s,
        background 0.2s,
        box-shadow 0.3s,
        border-radius 0.2s;
}

nav#column-nav .nav-column-start {
    padding: 1.5rem 1rem 0.5rem 1rem;
    border-bottom: 1px solid #e0e0e0;
}

nav#column-nav .nav-flags img {
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

nav#column-nav .nav-flags img:hover {
    box-shadow: 0 4px 12px rgba(var(--dark-color-rgb), 0.6);
    border-color: rgba(var(--dark-color-rgb), 0.8);
}

button#close-menu-btn {
    margin-right: 1rem;
    max-height: 2.4rem;
    background: none;
    border: none;
    color: var(--detail-color);
    transition: color 0.2s, transform 0.3s;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.25);
    z-index: 1999;
    transition: opacity 0.3s;
    opacity: 0;
}
#menu-overlay.active {
    display: block;
    opacity: 1;
}

.hide{
    display: flex;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: flex;
}

.invisible-noninteractive {
    visibility: hidden;
    pointer-events: none;
}

/*--------------------MAIN---------------------*/

main {
    grid-area: main;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*gap: 1rem;*/
}

main section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
/*    min-height: 100px; */
    padding: 2rem;
}

main section:nth-of-type(2n+2) {
    background-color: var(--gray-color);
}

.section {
    opacity: 0;
    transform: translate(0, 0);
    transition: all 0.7s ease-out;
    will-change: opacity, transform;
}

.slide-left {
    transform: translateX(-40px);
}
.slide-right {
    transform: translateX(40px);
}
.fade-up {
    transform: translateY(40px);
}
.fade-down{
    transform: translateY(-40px);
}

@media (max-width: 480px) {
    .slide-right {
        transform: translateX(-40px);
    }
}

.section.show {
    opacity: 1;
    transform: translate(0, 0);
}

/*--------------------BREADCRUMBS SECTION----------------------*/

.breadcrumbs-section {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 0;
    overflow: hidden;
}

.breadcrumbs-section::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background-image: url('/static/assets/bck2_croped.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(4px) brightness(0.8);
    z-index: 0;
}

.breadcrumbs-section * {
    color: var(--background-color);
    z-index: 5;
}

.breadcrumbs-section .breadcrumbs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    flex-direction: row;
    max-width: 1400px;
    width: 100%;
    margin: 0;
    padding: 0 2rem;
    gap: 0.5rem;
    color: var(--gray-color);
}

.breadcrumbs-section .breadcrumbs a {
    color: var(--gray-color);
    text-decoration: none;
    font-size: 1.1rem;
    opacity: 0.85;
    transition: 0.3s;
}

.breadcrumbs-section .breadcrumbs a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.breadcrumbs-section .breadcrumbs span {
    color: var(--gray-color);
    text-decoration: none;
    font-size: 1.1rem;
    opacity: 0.85;
}

.breadcrumbs-section .section-header {
    max-width: 1400px;
    width: 100%;
    margin: 1.5rem 0;
    padding: 0 2rem;
    text-align: left;
}

.breadcrumbs-section .section-header h1 {
    margin-bottom: 2.5rem;
}

.breadcrumbs-section .section-header h2 {
    max-width: 50%;
}

@media (max-width: 1100px) {
    .breadcrumbs-section {
        padding: 1.5rem 1rem;
    }

    .breadcrumbs-section .section-header {
        max-width: 100%;
        width: 100%;
        margin: 1.5rem 0;
        padding: 0 2rem;
        text-align: center;
    }

    .breadcrumbs-section .section-header h2 {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .breadcrumbs-section {
        padding: 1rem 0.5rem;
    }

    .breadcrumbs-section .section-header {
        margin: 0.8rem 0;
    }

    .breadcrumbs-section .breadcrumbs {
        padding: 0 1rem;
    }

    .breadcrumbs-section .section-header h1 {
        margin-bottom: 2rem !important;
        font-size: 2rem !important;
    }

    .breadcrumbs-section .section-header h2 {
        font-size: 1.2rem !important;
    }

    .breadcrumbs-section .breadcrumbs a {
        font-size: 0.9rem !important;
    }

    .breadcrumbs-section .breadcrumbs span {
        font-size: 0.9rem !important;   
    }

}

@media (max-width: 400px) {

    .breadcrumbs-section .section-header h1 {
        font-size: 1.7rem !important;
    }

    .breadcrumbs-section .section-header h2 {
        font-size: 1rem !important;
    }

}

@media (max-width: 370px) {

    .breadcrumbs-section .section-header h1 {
        font-size: 1.5rem !important;
    }

    .breadcrumbs-section .section-header h2 {
        font-size: 0.9rem !important;
    }

}

/*--------------------PRODUCT OVERVIEW SECTION----------------------*/

section#products-overview-section {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    padding: 1rem 0.5rem;
    margin-top: 2rem;
    border-radius: 1.2rem;
    width: 94%;
}

section#products-overview-section h2 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

section#products-overview-section p {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    padding: 0 0.5rem;
    text-align: center;
}

section#products-overview-section * {
    color: var(--dark-color);
}

section#products-overview-section .pdf-cards-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {
    section#products-overview-section .nav-button {
        display: none;
    }

    section#products-overview-section:hover .nav-button {
        opacity: 1;
    }
}

section#products-overview-section .pdf-cards-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1.5rem;
    padding: 1rem 0.5rem;
    scroll-behavior: smooth;
    flex-wrap: nowrap;
    width: 94%;
    scrollbar-width: auto;
    transition: width 0.4s ease;
}

section#products-overview-section .pdf-cards-container::-webkit-scrollbar {
    height: 8px;
}

section#products-overview-section .pdf-cards-container::-webkit-scrollbar-thumb {
    background-color: rgba(28, 28, 28, 0.4); 
    border-radius: 4px;
}

section#products-overview-section .pdf-cards-container::-webkit-scrollbar-thumb:hover{
    background-color: rgba(75, 75, 75, 0.4); 
}

section#products-overview-section .pdf-cards-container::-webkit-scrollbar-track {
    background: transparent;
}

section#products-overview-section .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: var(--detail-color);
    border: none;
    font-size: 4rem;
    cursor: pointer;
    z-index: 1;
    width: 3rem;
    border-radius: 0.6rem;
    transition: color 0.3s ease;
}

section#products-overview-section .nav-button:hover {
    color: var(--accent-color);
}

section#products-overview-section .nav-button.left {
    left: -3px;
}

section#products-overview-section .nav-button.right {
    right: -3px;
}

section#products-overview-section .pdf-card {
    height: 26rem;
    min-width: 22rem;
    max-width: 22rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--background-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section#products-overview-section .pdf-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.24);
    transform: translate(0, -4px);
}

section#products-overview-section .pdf-card img {
    width: 100%;
    min-width: 100%;
    max-height: 16rem;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

section#products-overview-section .pdf-card .info {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
    overflow: hidden;
}

section#products-overview-section .pdf-card .info h3 {
    font-size: 1.4rem;
    margin: 0;
}

section#products-overview-section .pdf-card .info p {
    font-size: 1.15rem;
    margin: 0;
}

section#products-overview-section .pdf-card a {
    width: 90%;
    background-color: var(--detail-color);
    color: white;
    padding: 6px 12px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease;
    margin-bottom: 1rem;
}

section#products-overview-section .pdf-card a:hover {
    background-color: var(--accent-color);
}

@media (max-width: 480px){

    section#products-overview-section {
        padding: 0.5rem;
        border-radius: 0;
        width: 100%;
    }

    section#products-overview-section .pdf-card {
        flex-shrink: 1;
        width: 100%;
        max-width: 100% !important;
        min-width: 100% !important;
    }

    section#products-overview-section .pdf-card img{
        flex-shrink: 0;
        min-height: 55% !important;
        max-height: 55% !important;
    }

    section#products-overview-section h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    section#products-overview-section p {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    section#products-overview-section .pdf-cards-container {
        min-width: none;
    }

}

/*-------------HOME-HELP-CTA-FORM------------*/

section#help-catalog-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    background-color: var(--gray-color);
    padding: 0;
    text-align: center;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
}

section#help-catalog-section .help-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
    height: 100%;
    width: 40%;
    min-width: 40%;
}

section#help-catalog-section .help-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

section#help-catalog-section .help-content p {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

section#help-catalog-section .help-content div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

section#help-catalog-section .help-content button {
    flex: 1 1 0;
    padding: 1.1rem 1.5rem;
    font-size: 1.6rem;
    font-family: inherit;
    font-weight: bold;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

section#help-catalog-section .help-content button svg {
    width: 1.5rem;
    flex-shrink: 0;
    margin-right: 0.6rem;
}
section#help-catalog-section .help-content .primary-button {
    background-color: var(--detail-color);
    color: white;
}

section#help-catalog-section .help-content .primary-button:hover {
    cursor: pointer;
    background-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translate(0, -1px);
}

section#help-catalog-section .help-content .secondary-button {
    background-color: var(--background-color);
    color: var(--dark-color);
}

section#help-catalog-section .help-content .secondary-button * {
    color: inherit;
}

section#help-catalog-section .help-content .secondary-button:hover {
    cursor: pointer;
    background-color: rgb(165, 165, 165);
    color: var(--background-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translate(0, -1px);
}

section#help-catalog-section .img-wrapper{
    display: flex;
    width: 100%;
    height: 100%;
    max-height: 600px;
    flex: 1;
}

section#help-catalog-section .img-wrapper img{
    max-width: 100%;
    object-fit: cover;
    border-radius: 0;
}

@media (max-width: 780px){
     /*-------------HOME-HELP-CTA-FORM------------*/

    section#help-catalog-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    section#help-catalog-section .help-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        gap: 2rem;
        height: 100%;
        width: 100%;
        min-width: 100%;
    }


    section#help-catalog-section .help-content h2 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    section#help-catalog-section .help-content p {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    section#help-catalog-section .help-content div {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }

    section#help-catalog-section .help-content button {
        flex: 1 1 0;
        padding: 1.1rem 1.5rem;
        font-size: 1.6rem;
        font-family: inherit;
        font-weight: bold;
        text-decoration: none;
        border-radius: 0.5rem;
        transition: box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
        border: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    section#help-catalog-section .help-content button svg {
        width: 1.5rem;
        flex-shrink: 0;
        margin-right: 0.6rem;
    }

    /*------MEDIA 450px-------*/
    @media(max-width: 450px){
        section#help-catalog-section .help-content h2 {
            font-size: 2.5rem;
        }

        section#help-catalog-section .help-content p {
            font-size: 1.3rem;
        }

        section#help-catalog-section .help-content button {
            font-size: 1.3rem;
        }
    }
}

/*--------------------PRODUCT GRID SECTION----------------------*/

section#products-grid-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    padding: 2.5rem 2rem;
    background-color: var(--background-color);
}

section#products-grid-section h2 {
    font-size: 3.7rem;
    color: var(--dark-color);
}

section#products-grid-section h1 {
    font-size: 3.7rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    text-align: center;
}

section#products-grid-section .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    justify-items: center;
    justify-content: space-between;
    margin: 0 auto;
    justify-content: center;
}

section#products-grid-section .product {
    position: relative;
    --x: 0.5;
    --y: 0.5;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background-color: transparent;
    border-radius: 12px;
    max-height: 500px;
    max-width: 500px;
    opacity: 0;
    transform: translateY(70px);
    transition: 
        opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
        transform 1s ease-out,
        box-shadow 0.3s ease;
}

section#products-grid-section .product.show {
    opacity: 1;
    transform: translateY(0);
}

.product.in-view .product-inner{
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.6);
    transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
}

section#products-grid-section .product-inner {
    overflow: hidden;
    border-radius: 12px;
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

section#products-grid-section .product:hover .product-inner {
  transform: 
    translateY(-5px)
    translate(
      calc((var(--x) - 0.5) * 15px),
      calc((var(--y) - 0.5) * 15px)
    );
  box-shadow:
    calc((var(--x) - 0.5) * 25px)
    calc((var(--y) - 0.5) * 25px)
    40px rgba(0, 0, 0, 0.3);
}

section#products-grid-section .unavailable{
    filter: brightness(70%);
    pointer-events: none;
    opacity: 0.5;
}

section#products-grid-section .unavailable:hover{
    transform: translateY(0px);
}

section#products-grid-section .unavailable:hover * {
    color: var(--dark-color);
}

section#products-grid-section .product p {
    color: var(--background-color);
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
}

section#products-grid-section .product h2 {
    color: var(--background-color);
    font-size: 2.1rem;
}

section#products-grid-section .product-image {
    flex: 1;
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.8);
    z-index: 0;
    transform: 
      scale(1.06)
      translate(
        calc((var(--x) - 0.5) * 15px),
        calc((var(--y) - 0.5) * 15px)
      );
    transition: scale 0.3s ease, transform 0.3s ease;
    border-radius: inherit;
}

section#products-grid-section .product-info {
    position: relative;
    z-index: 1;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
}

section#products-grid-section .product-info h2{
    margin-bottom: 0;
}

section#products-grid-section .product-info p{
    margin-bottom: 0;
}

section#products-grid-section .product:hover .product-image {
    transform: scale(1.03);
}

@media (max-width: 1550px){
    html {
        font-size: 12px;
    }
}

@media (max-width: 1300px) and (min-width: 1100px){


    section#products-grid-section h1{
        font-size: 3.4rem;
    }

    section#products-grid-section .product p {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    section#products-grid-section .product h2 {
        font-size: 1.9rem;
    }

    section.products-catalog h2{
        font-size: 3.4rem !important;
    }

    section.products-catalog .product p {
        font-size: 1.5rem !important;
        margin-bottom: 0.3rem;
    }

    section.products-catalog .product h2 {
        font-size: 1.9rem !important;
    }
}

@media (max-width: 1200px) {
    section#products-grid-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    section#products-grid-section .products-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        justify-content: center; 
    }

    section#products-grid-section .product p {
        color: var(--background-color);
        font-size: 1.5rem !important;
        margin-bottom: 0.4rem !important;
    }

    section#products-grid-section .product h2 {
        color: var(--background-color);
        font-size: 1.8rem !important;
    }
}



@media (max-width: 480px) {
    section#products-grid-section.wfilters {
        padding: 2.5rem 1rem;
        padding-top: 1.2rem;
        gap: 1.2rem;
    }

    section#products-grid-section h1 {
        font-size: 2.5rem !important;
    }

    section#products-grid-section h2 {
        font-size: 2.5rem;
    }

    section#products-grid-section .product p {
        color: var(--background-color);
        font-size: 1rem !important;
        margin-bottom: 0.3rem !important;
    }

    section#products-grid-section .product h2 {
        color: var(--background-color);
        font-size: 1.3rem !important;
    }

    section#products-grid-section .product-info {
        padding: 0.6rem 1.5rem;
    }
}

@media (max-width: 400px){
    section#products-grid-section h1{
        font-size: 2.1rem !important;
    }

    section#products-grid-section .product p {
        font-size: 0.95rem !important;
    }

    section#products-grid-section .product h2 {
        font-size: 1.1rem !important;
    }

    section.products-catalog h2{
        font-size: 2.1rem !important;
    }
}

/*-------------HOME-HELP-CTA-FORM------------*/

section#products-grid-section .help-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: var(--gray-color);
    padding: 3rem 1.5rem;
    text-align: center;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 1000px;
    width: 100%;
}

section#products-grid-section .help-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

section#products-grid-section .help-cta p {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

section#products-grid-section .help-cta div {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

section#products-grid-section .help-cta button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex: 1 1 0;
    padding: 0.9rem 1.2rem;
    font-size: 1.5rem;
    font-family: inherit;
    font-weight: bold;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    gap: 0.6rem;
}

section#products-grid-section .help-cta button p{
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: inherit;
}


section#products-grid-section .help-cta button svg {
    width: 1.5rem;
    flex-shrink: 0;
}

section#products-grid-section .help-cta .primary-button {
    background-color: var(--detail-color);
    color: white;
}

section#products-grid-section .help-cta .primary-button:hover {
    cursor: pointer;
    background-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translate(0, -1px);
}

section#products-grid-section .help-cta .secondary-button {
    background-color: var(--background-color);
    color: var(--dark-color);
}

section#products-grid-section .help-cta .secondary-button * {
    color: inherit;
}

section#products-grid-section .help-cta .secondary-button:hover {
    cursor: pointer;
    background-color: rgb(165, 165, 165);
    color: var(--background-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translate(0, -1px);
}


/*-------------PRIVACY-POLICY SECTIONS------------*/

section#first-privacy-policy-section{
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: 100%;
    padding: 1.5rem;
}

section#first-privacy-policy-section h1 {
    margin-top: 2rem;
    margin-bottom: 5rem;
    
}

section#first-privacy-policy-section * {
    color: var(--dark-color);
}


section#first-privacy-policy-section article{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 900px;
    margin: 0 0 1.5rem 0;
}

section#first-privacy-policy-section:first-child article p {
    margin-left: 0;
}

section#first-privacy-policy-section h2{
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

section#first-privacy-policy-section p{
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-left: 1.5rem;
}

section#first-privacy-policy-section ul{
    margin-left: 2.5rem;
    accent-color: var(--dark-color);
}

section#first-privacy-policy-section li{
    font-size: 1.1rem;
    margin-bottom: 0.4rem;

}


/*-------------DISTRIBUTORS SECTION------------*/

section#first-distributors-section p {
    max-width: 60vw;
    margin-top: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

section#second-distributors-section {
    display: flex;
    justify-content: center;
}

section#second-distributors-section * {
    color: var(--dark-color);
    font-size: 1.2rem;
}

section#second-distributors-section table {
    border-collapse: collapse;
}

section#second-distributors-section td {
    padding: 20px 12px;
    vertical-align: middle;
}

section#second-distributors-section td:first-child {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

section#second-distributors-section td:last-child {
    padding-left: 18vw;
}

section#second-distributors-section td a {
    text-decoration: none;
    color: var(--accent-color);
}

section#second-distributors-section td a:hover {
    text-decoration: underline;
}

section#second-distributors-section td img {
    max-width: 1.5rem;
    box-shadow: none;
    opacity: 0.6;
}

/*--------------------PRODUCTS CATALOG SECTION----------------------*/

section.products-catalog h1 {
    margin-bottom: 1.2rem !important;
}

section.products-catalog h2 {
    margin-bottom: 0.2rem !important;
    font-size: 1.7rem;
}

/*--------------------PRODUCTS FILTERS SECTION----------------------*/

.filter-wrapper {
    display: flex;
    justify-content: end;
    position: relative;
    width: 100%;
    max-width: 1400px;
}

.filter-wrapper .buttons-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.filter-wrapper .buttons-wrapper .overview-btn{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.6rem 1rem;
    font-size: 1.9rem;
    font-family: inherit;
    border-radius: 0.3rem;
    border: 2px solid transparent;
    transition: background-color 0.2s ease;
    gap: 0.5rem;
}

.filter-wrapper .buttons-wrapper .overview-btn:hover{
    cursor: pointer;
}

#overview-btn{
    background-color: var(--detail-color);
}

#overview-btn:hover{
    background-color: var(--accent-color);
}

#accessories-btn{
    background-color: var(--gray-color);
    border: 2px solid var(--detail-color);
    color: var(--detail-color);
}

#accessories-btn *{
    color: inherit;
}

#accessories-btn:hover{
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: var(--gray-color);
}

.buttons-wrapper .disabled{
    display: none !important;
    user-select: none;
}

.overview-btn .icon-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    aspect-ratio: 1/1;
}

.overview-btn .icon-wrapper svg{
    width: 2rem;
    box-shadow: none;
    border: none;
}


#filter-toggle-btn {
    position: relative;
    cursor: pointer;
    font-family: inherit;
    background-color: var(--detail-color);
    color: var(--background-color);
    border: none;
    padding: 0.6rem 1rem;
    font-size: 1.9rem;
    border-radius: 0.3rem;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

/*----------HELP-CTA MEDIA 750px---------*/
@media (max-width: 750px) {

    section#products-grid-section .help-cta div {
        display: flex;
        flex-direction: column;
        max-width: 500px;
    }

    section#products-grid-section .help-cta button {
        width: auto !important;
        font-size: 1.5rem;
    }


    section#products-grid-section .help-cta button svg {
        width: 1.5rem;
    }
}



/*----------HELP-CTA MEDIA 480px---------*/

@media (max-width: 480px) {
    section#second-distributors-section * {
        font-size: 0.9rem !important;
    }

    #filter-toggle-btn {
        padding: 0.4rem 0.7rem;
        font-size: 1.3rem;
        gap: 0.7rem;
    }

    section#products-grid-section .help-cta {
        padding: 2rem 1rem;
        border-radius: 1rem;
    }

    section#products-grid-section .help-cta h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    section#products-grid-section .help-cta p {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    section#products-grid-section .help-cta button {
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.6rem;
        gap: 0.5rem;
    }

    section#products-grid-section .help-cta button p{
        font-size: 1em;
    }


    section#products-grid-section .help-cta button svg {
        width: 1.2rem;
    }

}



#filter-toggle-btn:hover {
    background-color: var(--accent-color);
}

#filter-toggle-btn .arrow {
    display: inline-block;
    width: 0; 
    height: 0; 
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--background-color);
    transition: transform 0.3s ease;
}

#filter-toggle-btn[aria-expanded="true"] .arrow {
    transform: rotate(180deg);
}

.filter-panel {
    position: absolute;
    right: 0;
    top: 4rem;
    min-width: 420px;
    /*background-color: var(--dark-detail-color);*/
    background-color: #3f3f3ff1;
    /*border: 2px solid var(--detail-color);*/
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    padding: 0 1rem;
    z-index: 100;
    opacity: 0;
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    pointer-events: none;
    max-height: 0; 
    overflow: hidden;
    font-size: 1rem;
}

@media (max-width: 540px) {
     .filter-wrapper {
        flex-direction: row;
        gap: 1rem;
    }
    .filter-wrapper .buttons-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-wrapper .buttons-wrapper .overview-btn{
        font-size: 1.3rem;
        padding: 0.4rem 0.7rem;
        width: 100%;
    }
}

@media (max-width: 480px) {


    .filter-panel {
        width: 100%;
        min-width: 100px;
        max-width: 100%;
        max-height: none !important;
        top: 3rem;
        padding: 0.5rem !important;
        margin: none !important;
    }

    .filter-panel legend {
        font-size: 1.2em !important;
        padding: 0 0.3rem;
    }

    .filters-grid {
        display: flex !important;
        flex-direction: column;
        gap: 0.4rem;
        font-size: 1.1em !important;
        margin: 0.4rem;
    }

    .filter-option {
        font-size: 1rem !important;
        width: 100%;
    }


    .filter-checkbox {
        min-width: 0.9rem !important;
        width: 0.9rem !important;
        max-width: 0.9rem !important;
    }

    .filter-name{
        font-size: 1.1em !important;
    }

    .filter-count{
        font-size: 1.1em !important;
    }

    .filter-actions {
        margin-top: 0.6rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 0.6rem;
    }

    .filter-actions button {
        padding: 0.2rem 0.4rem;
        font-size: 1.1em !important;
    }
}

.filter-panel.show {
    opacity: 1;
    transform: scaleY(1);
    padding: 1rem;
    pointer-events: auto;
    max-height: 500px;
}

.filter-panel fieldset {
    border-radius: 5px;
}

.filter-panel legend {
    font-size: 1.5em;
    padding: 0 0.4rem;
    text-align: center;
}

.filters-grid {
    display: grid;
    grid-template-columns: 2;
    max-width: 480px;
    max-height: 380px;
    gap: 0.6rem;
    overflow-y: auto;
    font-size: 1rem;
    margin: 0.5rem;
    margin-right: 0.4rem;
    padding-right: 0.4rem;
}

.filters-grid::-webkit-scrollbar,
.filter-group::-webkit-scrollbar {
    width: 8px;
}

.filters-grid::-webkit-scrollbar-thumb,
.filter-group::-webkit-scrollbar-thumb {
    background: var(--gray-color);
    border-radius: 4px;
}

.filters-grid::-webkit-scrollbar-thumb:hover,
.filter-group::-webkit-scrollbar-thumb:hover{
    background-color: var(--accent-color);
}

.filter-group {
    display: flex;
    flex-direction: column;
    align-items: start;
    flex-wrap: nowrap;
    gap: 0.4rem;
    padding: 0.6rem;
}

.filter-group strong {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
    color: var(--background-color);
}

.filter-option {
    display: flex;
    align-items: center;
    justify-content: start;
    text-align: start;
    flex-wrap: nowrap;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
    font-size: 1rem;
}

.filter-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 1.15rem;
    min-width: 1.15rem;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 2px solid transparent;
    background-color: white;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.filter-checkbox:checked {
    background-color: var(--accent-color);
    border-color: var(--background-color);
}

.filter-checkbox:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.filter-name{
    font-size: 1.5em;
}

.filter-count{
    font-size: 1em;
}

.no-filters {
    text-align: center;
    color: var(--background-color);
    font-size: 1.3rem;
    margin: 1rem;
}

.filter-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
}

.filter-actions button {
    cursor: pointer;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 600;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

#apply-filters {
    background-color: var(--accent-color);
    color: var(--background-color);
    border: 2px solid transparent;
}

#apply-filters:hover {
    cursor: pointer;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    background-color: var(--background-color);
}

#clear-filters {
    background-color: var(--gray-color);
    color: var(--dark-color);
    border: 2px solid transparent;
}

#clear-filters:hover {
    cursor: pointer;
    background-color: #9d9d9d;
    color: var(--background-color);
}

/*--------------------CUSTOM PRODUCT PAGE--------------------*/

section#first-custom-product-page-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto 3rem auto;
    padding: 3rem 2rem;
    background: var(--background-color);
}

section#first-custom-product-page-section * {
    color: var(--dark-color);
}

section#first-custom-product-page-section h1 {
    margin-bottom: 4rem;
    color: var(--dark-color);
    font-size: 3rem;
    text-align: center;
    font-weight: 700;
}

.custom-description-details {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    justify-content: center;
}

.custom-description-details img {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 1.2rem;
    box-shadow: 0 8px 32px rgba(70,152,156,0.13);
}

.custom-description-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 650px;
    gap: 2rem;
    color: var(--dark-color);
}

.custom-description-text h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.custom-description-text p {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.custom-description-text ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
    margin: 2rem 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.custom-description-text ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.5;
}

.custom-description-text ul li span {
    font-size: 1.5rem;
}

.custom-description-text ul li .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    min-width: 3.2rem;
    min-height: 3.2rem;
    /* Usuń wszelkie marginy wewnątrz .icon */
}

.custom-description-text ul li .icon svg {
    width: 3.2rem;
    height: 3.2rem;
    display: block;
    margin: 0 auto;
}

.custom-description-text ul li .icon svg * {
    stroke: var(--accent-color);
}

.custom-description-text a {
    margin-top: 2rem;
    display: inline-block;
    background: var(--detail-color);
    color: var(--background-color) !important;
    padding: 1rem 2.5rem;
    border-radius: 0.7rem;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 4px 16px rgba(70,152,156,0.10);
    letter-spacing: 0.01em;
}

.custom-description-text a:hover {
    background: var(--accent-color);
    color: #fff !important;
}

/*--------------------FOOTER---------------------*/

footer{
    grid-area: footer;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom, var(--gray-color), var(--background-color));
    background: linear-gradient(to bottom right,var(--gray-color), var(--background-color));
    padding: 2rem 1rem;
    gap: 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

footer * {
    color: var(--dark-color);
    text-decoration: none;
}

footer .flex-row-footer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1200px;
    font-size: 1rem;
    gap: 1rem;
}

footer .flex-row-footer .logo-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

footer .flex-row-footer .logo-container img{
    display: flex;
    height: 100%;
    max-height: 150px;
    width: auto;
    object-fit: contain;
    box-shadow: none;
}
footer .flex-row-footer .footer-quick-links{
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1.5rem;
    margin-right: auto;
    margin-left: auto;
}

footer .flex-row-footer .footer-quick-links h2{
    font-size: 1.5em;
}

footer .footer-quick-links ul{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    padding-left: 1rem;
}

footer .footer-quick-links ul li a {
    font-size: 1.3em;
}

footer .footer-quick-links ul li:hover a{
    text-decoration: underline;
}

footer .flex-row-footer .flex-column-footer{
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1.5rem;
}

footer .flex-row-footer .flex-column-footer h2{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}


footer .flex-row-footer .flex-column-footer .flex-row-photo{
    display: flex;
    align-items: center;
    gap: 0.5rem;

}

footer .flex-row-footer .flex-column-footer .flex-row-photo .img-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--detail-color);
    border-radius: 50%;
    padding: 0.5rem;
}

footer .flex-row-footer .flex-column-footer .flex-row-photo .img-wrapper img{
    max-width: 100%;
    max-height: 100%;
    box-shadow: none;
    filter: invert(1);
    box-shadow: none;
}

footer .flex-row-footer .flex-column-footer .flex-row-photo .flex-column-data{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: start;
    width: auto;
}

footer .flex-row-footer .flex-column-footer .flex-row-photo .flex-column-data p{
    font-size: 1.3em;
    font-weight: normal;
    text-align: start;
}

footer p {
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
}


/*--------------------LOGIN SCREEN---------------------*/

#login-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.5);
    z-index: 10000;
    backdrop-filter: blur(3px);
}

.login-content {
    display: flex;
    flex-direction: column;
    background: var(--background-color);
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 28rem;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
    animation: fadeIn 0.3s ease;
    position: relative;
    gap: 1.2rem;
}

.login-content * {
    font-family: inherit;
}

.login-content h2 {
    display: flex;
    justify-content: center;
    align-items: start;
    margin-bottom: 2rem;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: 1px;
}

.login-content form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
}

.login-content label {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.login-content input {
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--gray-color);
    border-radius: 0.6rem;
    font-size: 1.15rem;
    background: #f7f7f7;
    color: var(--dark-color);
    transition: border-color 0.2s;
    outline: none;
    margin-bottom: 0.3rem;
}

.login-content input:focus {
    border-color: var(--accent-color);
    background: #fff;
}

.login-content button {
    padding: 0.9rem;
    background-color: var(--detail-color);
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 0.6rem;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    font-size: 1.4rem;
    margin-top: 1rem;
    box-shadow: 0 2px 8px rgba(70,152,156,0.08);
    letter-spacing: 0.5px;
}

.login-content button:hover {
    background-color: var(--accent-color);
    box-shadow: 0 4px 16px rgba(70,152,156,0.15);
}

.login-content .close-btn {
    position: absolute;
    top: 1rem;
    right: 1.6rem;
    font-size: 3rem;
    cursor: pointer;
    color: var(--dark-color);
    background: none;
    border: none;
    transition: color 0.2s;
    z-index: 1;
}

.login-content .close-btn:hover {
    color: var(--accent-color);
}

.login-content .error-message {
    color: red;
    font-size: 1.1rem;
    margin-top: -0.8rem;
    margin-bottom: 0rem;
}

.login-content .login-error {
    display: flex;
    justify-content: center;
    align-items: end;
    color: red;
    text-align: center;
    font-size: 1.1rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}


/*--------------------MEDIA QUERIES 1100px---------------------*/

@media (max-width: 1100px){

    body{
        zoom: 100%;
    }

    .hide{
        display: none;
    }

    button#menu-btn{
        display: flex;
    }

    .mobile-only-1100{
        display: flex !important;
    }

    .desktop-only-1100{
        display: none !important;
    }

    /*----------NAVBAR MEDIA----------*/

    nav#navbar {
        justify-content: center;
        padding: 0 0.5rem;
    }
    .nav-left {
        flex: 1;
        justify-content: center;
        gap: 0;
    }
    .nav-left .logo {
        margin-left: 0;
        height: 5.2rem;
    }
    .nav-center,
    .nav-right {
        display: none !important;
    }
    button#menu-btn {
        display: flex;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1101;
    }


    /*----------MAIN SECTIONS MEDIA----------*/

    section#third-main-section .products-grid{
    grid-template-columns: 1fr;
    }


    /*----------CONTACT SECTIONS MEDIA----------*/
    section#second-contact-section .nameDetails{
        display: flex;
        flex-direction: column !important;
    }

    section#second-contact-section .contact-form * textArea{
        min-height: 200px;
    }

    section#third-contact-section .contact-info-wrapper{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 95%;
    }


    /*----------CATALOG SECTIONS MEDIA----------*/

    section#first-catalog-section {
        gap: 1rem;
        padding: 0.5rem !important;
    }
    

    section#first-catalog-section .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        min-width: 250px;
        max-width: 80%;
    }

    section#first-catalog-section p{
        font-size: 1.25rem;
    }

    section#first-catalog-section .product h2{
        font-size: 1.8rem;
    }


    /*----------CATALOG SECTIONS MEDIA----------*/

    section#first-product-section {
        gap: 1rem;
        padding: 5rem !important;
    }


    /*----------MACHINE SECTIONS MEDIA----------*/

    


    section#first-product-page-section{
        flex-direction: column;
        padding: 2rem !important;
    }


    section#first-product-page-section *{
        color: var(--dark-color) !important;
    }

    section#first-product-page-section h1{
        margin-bottom: 0 !important;
        margin-top: 2rem !important;
        text-align: center;
        word-break: break-word;
    }

    section#first-product-page-section .image-slider{
        height: 100%;
    }

    section#first-product-page-section .slider-btn {
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    section#first-product-page-section .image-slider .slider-track{
        display: flex;
        width: 100%;
    }

    section#first-product-page-section .description-details{
        align-items: center;
        height: 35%;
        margin: 0 !important;
    }

    section#first-product-page-section .description-details p{
        max-width: 600px;
        text-align: center;
    }

    section#first-product-page-section .description-details .button-wrapper{
        align-self: center !important;
    }

    section#first-product-page-section .description-details .button-wrapper a{
        color: var(--background-color) !important;
        min-width: 150px;
    }

    .lightbox {
        width: 100vw;
        height: 100vh;
        left: 0;
        top: 0;
        transform: none;
        border-radius: 0;
        padding: 0;
    }
    .lightbox-content {
        max-width: 94vw;
        max-height: 80vh;
        width: auto;
        height: auto;
        margin: 0 auto;
        display: block;
    }
    .lightbox-close {
        top: 0.7rem;
        right: 1.2rem;
        font-size: 2.2rem;
        z-index: 10;
    }

}


/*--------------------MEDIA QUERIES 1000px---------------------*/

@media (max-width: 1000px) {
    section#hero-main-section .progress-bar {
        margin-left: 10rem;
        margin-right: 10rem;
    }
}




/*--------------------MEDIA QUERIES 900px---------------------*/
@media (max-width: 900px) {
    footer{
        padding: 2rem 1rem;
        gap: 2rem;
    }

    footer .flex-row-footer{
        flex-direction: column;
        gap: 1.5rem;
    }

    footer .flex-row-footer .flex-column-footer{
        text-align: start;
    }

    footer .flex-row-footer .logo-container{
        min-height: 100px;
    }
}



/*--------------------MEDIA QUERIES 800px---------------------*/

@media (max-width: 800px) {

    .mobile-only{
        display: flex;
    }
    .desktop-only{
        display: none;
    }

    main section {
        padding: 1rem 0.5rem;
    }


    /*---------MAIN SECTIONS MEDIA---------*/

    section#hero-main-section .nav.prev,
    section#hero-main-section .nav.next {
        left: 0.5rem !important;
        right: 0.5rem !important;
    }

    section#hero-main-section .nav {
        font-size: 1.4rem;
    }

    section#second-main-section .mobile-only{
        display: flex;
    }

    section#second-main-section .desktop-only{
        display: none;
    }

    section#second-main-section {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0.5rem;
    }

    section#second-main-section .text {align-items: center;}

    section#second-main-section .text h1 {width: auto;}

    section#second-main-section .text .image{
        width: 100%;
        max-height: 350px;
        margin: 4rem 0;
    }

    section#second-main-section .text .image img {
        height: auto;
        width: auto;
    }

    section#second-main-section .text a {
        margin: 0.5rem !important;
    }


    /*----------CONTACT SECTIONS MEDIA----------*/

    section#second-contact-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin: 2rem !important;
        padding: 2rem !important;
    }

    section#second-contact-section .contact-form{
        width: 100%;
    }

    section#second-contact-section .contact-form .nameDetails{
        flex-direction: row !important;
    }

    section#second-contact-section .contact-form * textArea{
        min-height: 250px;
    }


    /*----------CATALOG SECTIONS MEDIA----------*/

    section#first-product-section {
        gap: 1rem;
        padding: 5rem !important;
    }

    section#first-product-section .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        min-width: 250px;
        max-width: 80%;
    }

    section#first-product-section .product h2{
        font-size: 1.8rem;
    }


    /*--------------------STENCIL PRINTERS CATALOG GRID MEDIA----------------------*/

    section#first-product-section .stencil-printers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}



/*--------------------MEDIA QUERIES 768px---------------------*/


@media (max-width: 768px) {
    section#hero-main-section .progress-bar {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}



/*--------------------MEDIA QUERIES 600px---------------------*/

@media (max-width: 600px) {
    

    /*--------------------STENCIL PRINTERS CATALOG GRID MEDIA----------------------*/

    section#first-product-section{
        padding: 1.5rem !important;
    }

    section#first-product-section .stencil-printers-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    section#first-product-section .stencil-printers-grid a{
        min-width: 150px;
    }
}



/*--------------------MEDIA QUERIES 480px---------------------*/

@media (max-width: 480px) {

    html {
        font-size: 18px;
    }

    h1{
        font-size: 2.1rem !important;
    }

    #scrollToTopBtn {
        width: 2rem;
        height: 2rem;
    }

    #scrollToTopBtn svg {
        width: 1.5rem;
        height: 1.5rem;
        display: block;
    }

    body:not(.nav-hidden) #scrollToTopBtn {
        top: 5rem;
    }

    body.nav-hidden #scrollToTopBtn {
        top: 1.5rem;
    }

    /*---------HEADER & NAVBAR, COLUMN NAVBAR MEDIA---------*/

    header {
        height: 4.5rem;
        padding: 0 0.5rem;
    }

    nav {
        padding: 0 0.5rem;
    }

    .nav-left .logo {
        height: 3.5rem;
    }

    .nav-center ul li a,
    .nav-right button {
        font-size: 1.3rem;
        padding: 0 1rem;
    }

    button#menu-btn img {
        height: 1.8rem;
        width: 1.8rem;
        margin-right: -2rem;
    }

    nav#column-nav {
        width: 100%;
        min-width: 290px;
        max-width: 290px;
        border-radius: 0;
        box-shadow: -8px 0 24px rgba(0,0,0,0.18);
        padding: 0;
    }

    nav#column-nav .nav-column-center ul {
        padding: 1.5rem 1rem;
    }

    nav#column-nav .nav-column-center ul * {
        font-size: 1rem !important; 
    }

    nav#column-nav .nav-column-center ul li{
        height: 2.7rem;
    }

    nav#column-nav .nav-column-start {
        padding: 0;
        padding-top: 1rem;
        padding-bottom: 1rem;
        padding-right: 0.5rem;
        gap: 0;
        justify-content: center;
    }

    button#close-menu-btn {
        margin-left: 1rem;
        width: 1.8rem !important;
        height: 1.8rem !important;
    }

    nav#column-nav .nav-column-start .nav-flags {
        width: 40%;
        margin-right: auto;
    }

    .nav-flags img {
        height: 1.5rem;
    }


    nav#column-nav .nav-column-start button.login-btn {
        font-size: 1rem !important;
        margin: 0 !important;
    }


    #menu-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.25);
        z-index: 1999;
        transition: opacity 0.3s;
        opacity: 0;
    }

    #menu-overlay.active {
        display: block;
        opacity: 1;
    }


    /*---------MAIN SECTIONS MEDIA---------*/



    section#hero-main-section .slide h1,
    section#hero-main-section .slide h2 {
        width: auto;
        padding: 0;
    }

    section#hero-main-section .slide h1{
        padding-left: 0.3rem;
        font-size: 1rem !important;

    }

    section#hero-main-section .slide h2 {
        font-size: 1.5rem !important;
    }


    section#hero-main-section .slide a{
        font-size: 1rem;
        padding: 0.5rem;
    }

    section#second-main-section{
        justify-content: center;
    }

    section#second-main-section *{
        margin: 0 !important;
    }

    section#second-main-section .text .about-block p{
        margin-left: 1rem !important;
    }

    section#second-main-section .text{
        justify-content: center;
    }

    section#third-main-section{
        align-items: center;
    }

    section#third-main-section{
        justify-content: center;
        width: auto;
    }

    section#third-main-section .product h2 {
        font-size: 1.2rem;
    }

    section#third-main-section .product p {
        font-size: 1rem;
    }


    /*----------CONTACT SECTIONS MEDIA----------*/

    section#first-contact-section a{
        width: auto;
    }

    section#second-contact-section .contact-form .nameDetails{
        flex-direction: column !important;
    }

    section#second-contact-section article{
        font-size: 1rem;
        word-break: normal;
    }



    /*----------MACHINE SECTIONS MEDIA----------*/

    section#first-product-page-section,
    section#first-product-page-section .description-details {
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        gap: 2rem;
        
    }

    section#first-product-page-section {
        flex-direction: column;
        padding: 3rem 1rem !important;
    }


    section#first-product-page-section h1 {
        margin-top: 0 !important;
        font-size: 1.8rem !important;
        margin-bottom: 2.4rem !important;
    }

     section#first-product-page-section .image-slider{
        height: 100%;
        margin: 0 !important;
        margin-top: -3rem !important;
        margin-bottom: -3rem;
    }

    section#first-product-page-section .description-details ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        width: 95vw;
        max-width: 350px;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    section#first-product-page-section .description-details ul li {
        display: flex;
        flex-direction: row;
        align-items: center;
        font-size: 1.1rem;
        font-weight: 500;
        height: auto;
        gap: 0.1rem;
        padding: 0.1rem 0.1rem;
        background: none;
    }

    section#first-product-page-section .description-details ul li .img-wrapper {
        width: 28px;
        height: 28px;
        min-width: 28px;
        min-height: 28px;
        margin-right: 0.3rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    section#first-product-page-section .description-details ul li .img-wrapper img {
        width: 28px;
        height: 28px;
        max-width: 28px;
        max-height: 28px;
        box-shadow: none;
    }

    section#first-product-page-section .description-details ul li p {
        font-size: 1.1rem;
        margin: 0;
        padding: 0;
        line-height: 1.2;
        color: var(--dark-color);
    }

    section#first-product-page-section .description-details .button-wrapper {
        width: 100%;
        max-width: 350px;
        margin: 1.5rem 0 0 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }

    section#first-product-page-section .description-details .button-wrapper a {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        font-size: 1.1rem;
        padding: 0.7rem 0.5rem;
        font-weight: bold;
        text-align: center;
        display: block;
        margin: -3rem 0;
    }


    section#description-product h2{
        font-size: 2.8rem;
    }

    section#specs-product h2{
        font-size: 2rem;
    }

    
    section#support-product h2{
        font-size: 2.5rem;
        margin-top: 1rem;
    }

     section#support-product .question-wrapper article h3{
        font-size: 1.3rem;
     }

     section#support-product .question-wrapper article p{
        font-size: 1.1rem;
     }

    section#support-product .question-wrapper a{
        max-width: 80%;
    }


    /*---------FOOTER MEDIA---------*/

    footer .flex-row-footer{
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    footer .flex-row-footer .flex-column-footer{
        align-items: center;
    }

    footer .flex-row-footer .flex-column-footer .flex-row-photo{
        width: 85%;
    }
}


/*--------------------MEDIA QUERIES 400px---------------------*/

@media (max-width: 400px) {




    /*---------MAIN SECTIONS MEDIA---------*/

    section#hero-main-section .nav {
        top: 70%;
        font-size: 1.2rem;
    }

    section#second-main-section .text .image{
        margin: -2rem !important;
    }

    /*---------MACHINE SECTIONS MEDIA---------*/

    section#description-product h2{
        font-size: 2.5rem;
    }

    section#description-product article h3{
        font-size: 2.1rem;
    }

    section#description-product article p{
        font-size: 1.2rem;
    }

    section#description-product .description-video-wrapper iframe{
        aspect-ratio: 4/3;
    }



    section#specs-product h2{
        font-size: 1.8rem !important;
    }

    section#specs-product #table-container *{
        font-size: 1rem;
    }



}

/*--------------------MEDIA QUERIES 350px---------------------*/

@media (max-width: 350px) {
    footer .flex-row-footer .flex-column-footer .flex-row-photo{
        width: 100%;
    }
}



/*--------------------MEDIA QUERIES 330px---------------------*/

@media (max-width: 330px) {
    section#first-product-page-section h1 {
        font-size: 1.6rem !important;
    }

}


/*--------------------MEDIA QUERIES 300px---------------------*/

@media (max-width: 300px) {
    section#hero-main-section .nav {
        top: 75%;
        font-size: 0.8rem;
    }
}

/*--------------------SLIDERS MEDIA QUERIES START---------------------*/


@media (max-width: 1270px) {
    section#hero-main-section .nav {
        top: 65%;
        opacity: 1;
        font-size: 2rem;
    }
    section#hero-main-section .nav.prev,
    section#hero-main-section .nav.next {
        left: 1.7rem !important;
        right: 1.7rem !important;
        padding: 0.3rem 0.6rem;
    }
    section#hero-main-section .nav.next {
        left: auto !important;
    }
    section#hero-main-section .nav.prev {
        right: auto !important;
    }
}

@media (max-width: 800px) {
    section#hero-main-section .nav {
        font-size: 1.4rem;
    }
}

@media (max-width: 500px) {
    section#hero-main-section .nav {
        top: 70%;
        font-size: 1.3rem;
    }
}

@media (max-width: 400px) {
    section#hero-main-section .nav {
        top: 70%;
        font-size: 1.2rem;
    }
}

@media (max-width: 300px) {
    section#hero-main-section .nav {
        top: 75%;
        font-size: 0.8rem;
    }
    
}


/*--------------------SLIDERS MEDIA QUERIES END---------------------*/

@media (max-width: 1100px) {
    .custom-description-details {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }
    .custom-description-details img {
        max-width: 95vw;
        margin-bottom: 2rem;
    }
    .custom-description-text {
        align-items: center;
        text-align: center;
    }
    .custom-description-text ul {
        max-width: 400px;
    }
}

@media (max-width: 600px) {
    section#first-custom-product-page-section {
        padding: 1.5rem 0.5rem 2rem 0.5rem;
    }
    section#first-custom-product-page-section h1 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    .custom-description-details img {
        max-width: 98vw;
    }
    .custom-description-text h2 {
        font-size: 1.7rem;
    }
    .custom-description-text p {
        font-size: 1.5rem;
    }
    .custom-description-text ul {
        grid-template-columns: 1fr 1fr;
        gap: 0.7rem 1rem;
        font-size: 0.95rem;
    }
    .custom-description-text ul li {
        font-size: 0.95rem;
        gap: 0.6rem;
    }
    .custom-description-text a {
        width: 100%;
        font-size: 1.5rem;
        padding: 0.7rem 0.5rem;
    }
}

@media (max-width: 480px) {

    section#first-custom-product-page-section {
        padding: 1.5rem 1rem 2rem 1rem;
    }

    .custom-description-text ul {
        grid-template-columns: 1fr;
        gap: 0.7rem 1rem;
        justify-content: center;
        align-items: center;
        font-size: 0.95rem;
    }
}


/*--------------------PRODUCT IMAGE MEDIA QUERIES---------------------*/
@media (max-width: 500px) {
    section#third-main-section .product img,
    section#first-product-section .product img,
    section#first-catalog-section .product img {
        margin-left: 1rem;
        margin-right: 1rem;
        max-width: calc(100% - 2rem);
    }
}