.path_container {
    height: auto;
}
.product-header {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(211, 206, 210, 0.8); /* Félig átlátszó keret */
    padding: 0px !important;    
}
.product-header h1 {
    padding: 10px !important;    
    margin: 0px !important;    
}
.product-header p {
    padding: 10px !important;    
    margin: 0px !important;    
}
.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0px 0px;
    flex-wrap: wrap;
}
.price-info {
    flex: 1 1 auto;
    min-width: 0;
}
.discount-badge-container {
    flex: 0 0 auto;
    display: flex;
    padding-right: 12px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    gap: 12px;
}
.discount-label {
    font-size: 14px;
    white-space: nowrap;
}
.discount-badge {
    width: 70px;
    height: 51px;
    object-fit: contain;
}
.product_title {
    display: block;
}
.path {
    margin-top: 0;
}
.image-container {
    position: relative;
    max-width: 100%;
    height: auto;
    
}
.main-image {
    width: 340px;
    height: 220px;
    object-fit: contain;
    display: block;
    cursor: pointer;
}
.main-image:not(.clickable) {
    cursor: default;
}
.zoom-box {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid #000;
    background: rgba(255, 255, 255, 0.3);
    display: none;
    pointer-events: none;
}
.zoom-result {
    width: 200px;
    height: 200px;
    overflow: hidden;
    display: none;
    
}
.zoom-result img {
    position: relative;
    width: 1000px;
    height: 1000px;
    background-color: #f0fbfe;
}
.container {
    width: 100%;
    margin-top:0;
    padding: 0px;
    background: white;
    border: 1px solid #d3ced2;
    background-color: rgba(255, 255, 255, 0.6);
    margin-bottom: 75px;
}

.tabs {
    display: inline;
    
    padding:0px;
    gap:0;
    box-shadow: none;
    background-color: #ffffff;
    z-index:0;
}

.tab {
    background: none;
    border: 1px solid #d3ced2;
    border-bottom: 0;
    
    white-space: nowrap;
    cursor: pointer;
    font-size: 16px;
    padding:10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: #ebe9eb;
}

.tab.active {
    background-color: #fff;
    
}
.tab-content > section {
/* keep sections always renderable */
overflow: hidden;
max-height:   0;               /* collapse it */
margin:       0;               /* start margin */
opacity:      0; 
transition:
max-height 0.5s ease,
margin     0.9s ease-in-out,
opacity    0.3s ease 0.2s;
}

.tab-content > section.active {
max-height: 100%;            /* big enough for your tallest panel */
margin:     20px;              /* your desired final margin */
opacity:    1;                 /* fade it in */
}




.content {
    margin: 0px;
    
}

.content.active {
    margin: 0px;
    
}


.thumbnails {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}
.thumbnail {
    width:70%;
    height:70%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease-in-out;
}
.thumb.selected {
    opacity: 1.0;
    outline: 1px solid black;
    outline-offset: -1px;
}

.thumb:hover {
    opacity: 1.0;
    transition: all 0.3s ease-in-out;
}

.thumb {
    cursor: pointer;
    opacity: 0.5;
    width:100px;height:100px;display:flex;justify-content:center;align-items:center;
}

.image-viewer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-image-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 20px 0;
}


@media (max-width: 1024px) {
    
    .container {
        background-color: rgba(255, 255, 255, 0); /* Félig átlátszó fehér háttér */
        border: none;
        width: 95%;
        margin: 10px auto;
    }

    /* Tab navigáció elrejtése mobil nézetben */
    .tabs {
        display: none;
    }

    .tab-content {
        width: 100%;
    }

    /* Section címek hozzáadása mobil nézetben */
    .tab-content > section::before {
        content: "";
        display: block;
        font-size: 22px;
        font-weight: bold;
        color: #00386e;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #00386e;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .tab-content > section#desc::before {
        content: "📋 LEÍRÁS";
    }

    .tab-content > section#params::before {
        content: "⚙️ TOVÁBBI INFORMÁCIÓK";
    }

    .tab-content > section#downloads::before {
        content: "📥 LETÖLTÉSEK";
    }

    /* Minden section egyszerre látható legyen */
    .tab-content > section, .product-header, .image-viewer {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box;
        margin: 20px 0;
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.0);
        border: 1px solid rgba(211, 206, 210, 0.8); /* Félig átlátszó keret */
        border-radius: 8px;
        opacity: 1 !important;
        max-height: none !important;
        overflow: visible;
        
        /* Eltávolítjuk az animációkat */
        transition: none;
        
        /* Opcionális: árnyék a jobb láthatóságért */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    .image-viewer {
        display: flex !important;
        align-items: center;
        justify-content:center;
    }
    
    .image-viewer img {
        max-width: calc(100% - 20px);
        height: auto;
        margin: 0px auto; /* Ez osztja szét a 20px-t jobbra és balra */
    }
    
    /* Az active class nem szükséges - minden section ugyanolyan legyen */
    .tab-content > section.active {
        /* Ugyanazok a stílusok mint fent - felülírjuk */
        width: 100% !important;
        margin: 20px 0;
        padding: 20px;
        background-color: rgba(255, 255, 255, 0);
    }

    /* Section címek formázása */
    .tab-content > section h3 {
        font-size: 20px;
        margin-bottom: 15px;
        line-height: 1.4;
        color: #00386e;
        border-bottom: 2px solid #00386e;
        padding-bottom: 10px;
    }

    /* Section tartalom elemek formázása */
    .tab-content > section ul {
        padding-left: 20px;
        margin: 15px;
    }

    .tab-content > section li {
        padding-left: 20px;
        margin-bottom: 10px;
        line-height: 1.6;
    }

    .tab-content > section p {
        line-height: 1.6;
        margin-bottom: 15px;
        text-align: justify;
    }

    /* Section-ök közötti térköz */
    .tab-content > section:not(:last-child) {
        margin-bottom: 30px;
    }
        
}



















.btn_disabled {
    font-family: Arial,Geneva,Verdana,Helvetica,sans-serif;
    font-size: 11px;
    color: #fff;
    background-color: #ccc;
    padding-left: 2px;
    padding-right: 2px
}

.dark_col {
    background-color: #ddd
}

.msr_technical_data tr+tr>td {
    padding-top: 10px
}

.msr_technical_data td+td {
    padding-left: 15px
}

.btn_small {
    font-family: Arial,Geneva,Verdana,Helvetica,sans-serif;
    font-size: 11px;
    color: #03c;
    background-color: #ccc;
    padding-left: 2px;
    padding-right: 2px
}

.data_td_odd {
    background-color: #eee;
    border-color: #666;
    border-width: 1px;
    border-style: none solid solid none
}

.data_td_even {
    border-color: #666;
    border-width: 1px;
    border-style: none solid solid none
}

img.msrlogo {
    float: right;
    margin-left: 10px
}
.data_table {
    border-color: #666;
    border-width: 1px;
    border-style: solid none none solid
}
.tech-descr-table select {
    margin-top: 1px;
    font-size: 11px
}

.tech-descr-table td {
    font-size: 11px;
    vertical-align: top
}

.tech-descr-table li {
    font-family: Arial,Geneva,Verdana,Helvetica,sans-serif;
    font-size: 11px
}

.tech-descr-table select {
    width: 150px
}
.data_th {
    font-family: Arial,Geneva,Verdana,Helvetica,sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    color: #fff;
    background-color: #666;
    border-color: #666;
    border-width: 1px;
    border-style: none solid solid none
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    cursor: pointer;
}




