#wakenProductGalleryLeft2026 {
    width: 100%;
    margin-top: -20px;
}

.wakenGalleryGrid2026 {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 10px;
    align-items: start;
}

/* thumbnails */

.wakenThumbList2026 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wakenThumbItem2026 {
    width: 80px;
    height: 80px;
    cursor: pointer;
    border: 2px solid transparent;
    overflow: hidden;
    border-radius: 6px;
}

.wakenThumbItem2026 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wakenThumbItem2026.active {
    border-color: #000;
}

/* main image */

.wakenMainImageWrap2026 {
    position: relative;
    background: #f6f6f6;
    border-radius: 8px;
    overflow: hidden;
    width: 110%;
}

.wakenMainImageWrap2026 img {
    width: 100%;
    display: block;
    height: 350px;
}

/* zoom button */



/* responsive */

@media(max-width:768px) {

    .wakenGalleryGrid2026 {
        grid-template-columns: 1fr;
        margin-bottom: 50px;
        margin-top: -50px;
    }

    .wakenThumbList2026 {
        flex-direction: row;
        overflow-x: auto;
    }
    .wakenMainImageWrap2026{
        width: 100%;
    }
    .wakenThumbItem2026 {
        min-width: 70px;
    }

}
















        /* Unique CSS Variables to avoid global conflicts */
        :root {
            --ms-primary-blue: #24ABE3;
            --ms-dark-text: #1a1a1a;
            --ms-muted-text: #383737;
            --ms-border-light: #f0f0f0;
            --ms-bg-hover: #fafafa;
            --ms-card-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
        }

        .ms_main_container {
            display: flex;
            gap: 30px;
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            align-items: flex-start;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Technical Specs Section */
        .ms_specs_section {
            flex: 2; 
            background: #ffffff;
            box-shadow: var(--ms-card-shadow);
            border-radius: 12px;
            overflow: hidden;
        }

        .ms_technical_table {
            width: 100%;
            border-collapse: collapse;
            table-layout: fixed;
        }

        .ms_technical_table thead tr {
            background-color: #f8f9fa;
        }

        .ms_technical_table th {
            text-align: left;
            padding: 15px 20px;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            color: var(--ms-muted-text);
            border-bottom: 2px solid var(--ms-border-light);
        }

        .ms_technical_table td {
            padding: 18px 20px;
            background: #ffffff;
            border-bottom: 1px solid var(--ms-border-light);
            vertical-align: top;
            word-wrap: break-word;
            font-size: 0.95rem;
        }

        .ms_label_cell {
            font-weight: 700;
            color: var(--ms-dark-text);
            position: relative;
            width: 35%;
        }

        /* Decorative indicator */
        .ms_label_cell::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 0;
            background-color: var(--ms-primary-blue);
            transition: height 0.3s ease;
        }

        .ms_technical_table tbody tr:hover td {
            background-color: var(--ms-bg-hover);
        }

        .ms_technical_table tbody tr:hover .ms_label_cell::before {
            height: 60%;
        }

        .ms_value_cell {
            color: var(--ms-muted-text);
            line-height: 1.5;
        }

        /* Inquiry Sidebar */
        .ms_sidebar_form {
            flex: 1; 
            background: #ffffff;
            box-shadow: var(--ms-card-shadow);
            border-radius: 12px;
            padding: 30px;
            position: sticky;
            top: 150px;
            box-sizing: border-box;
        }

        .ms_sidebar_form h3 {
            margin: 0 0 10px 0;
            color: var(--ms-primary-blue);
            font-size: 1.4rem;
        }

        .ms_sidebar_form p {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 25px;
            line-height: 1.4;
        }

        .ms_inquiry_form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .ms_form_input {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 0.95rem;
            box-sizing: border-box;
            outline: none;
            transition: border-color 0.2s;
        }

        .ms_form_input:focus {
            border-color: var(--ms-primary-blue);
        }

        .ms_form_textarea {
            height: 130px;
            resize: vertical;
        }

        .ms_submit_btn {
            background-color: var(--ms-primary-blue);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s, transform 0.1s;
        }

        .ms_submit_btn:hover {
            background-color: #1a8ab8;
        }

        .ms_submit_btn:active {
            transform: scale(0.98);
        }

        /* Responsive Breakpoints */

        /* Tablets */
        @media screen and (max-width: 1100px) {
            .ms_main_container {
                flex-direction: column;
                gap: 40px;
            }

            .ms_specs_section, .ms_sidebar_form {
                width: 100%;
                flex: none;
            }

            .ms_sidebar_form {
                position: static;
            }
        }

        /* Mobile Devices */
        @media screen and (max-width: 768px) {
            .ms_main_container {
                padding: 10px;
                margin: 20px auto;
            }

            .ms_technical_table, 
            .ms_technical_table thead, 
            .ms_technical_table tbody, 
            .ms_technical_table th, 
            .ms_technical_table td, 
            .ms_technical_table tr {
                display: block;
                width: 100%;
            }

            .ms_technical_table thead {
                display: none;
            }

            .ms_technical_table tr {
                margin-bottom: 15px;
                border: 1px solid var(--ms-border-light);
                border-radius: 10px;
                padding: 15px;
                box-sizing: border-box;
            }

            .ms_technical_table td {
                border: none;
                padding: 6px 0;
                font-size: 0.9rem;
            }

            /* Custom Data Labels for Mobile */
            .ms_technical_table td::before {
                display: block;
               
                font-size: 0.65rem;
                font-weight: 800;
                text-transform: uppercase;
                color: var(--ms-primary-blue);
                margin-bottom: 2px;
                letter-spacing: 0.5px;
            }

            .ms_label_cell {
                font-size: 1.1rem;
                padding-bottom: 8px !important;
                border-bottom: 1px dashed var(--ms-border-light) !important;
                margin-bottom: 8px;
            }

            .ms_label_cell::before {
                display: none;
            }
        }



        @media (max-width:768px){
    .skamerk-text,
    .details-text{
        display:block;
        margin-top:20px;  /* ↑ yaha value change kar sakte ho */
    }
}@media (max-width: 768px){
    *{
        word-break: normal !important;
        overflow-wrap: normal !important;
        writing-mode: horizontal-tb !important;
    }
}