  .product-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: flex-start;
            padding: 20px;
            background: #0e0e0e;
            max-width: 1320px;
            margin: auto;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }

        /* Left Section */
        .image-section {
            flex: 1 1 50%;
            min-width: 300px;
            padding: 10px;
        }

        .main-slider {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
            border-radius: 10px;
        }

        .main-slider img {
            width: 100%;
            height: 100%;
            border-color: black;
            object-fit: cover;
            display: none;
        }

        .main-slider img.active {
            display: block;
        }

        .thumbnail-container {
            margin-top: 10px;
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .thumbnail-container img {
            width: 90px;
            height: 70px;
            object-fit: cover;
            border: 2px solid transparent;
            cursor: pointer;
            border-radius: 6px;
            transition: 0.3s;
        }

        .thumbnail-container img.active,
        .thumbnail-container img:hover {
            border-color: #333;
            transform: scale(1.05);
        }

        /* Right Section */
        .details-section {
            flex: 1 1 50%;
            min-width: 300px;
            padding: 10px 20px;
        }

        .details-section h2 {
            font-size: 26px;
            margin-bottom: 10px;
        }

        .details-section p {
            font-size: 16px;
            line-height: 1.6;
            color: #ffffff;
            margin-bottom: 15px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .main-slider {
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .product-container {
                flex-direction: column;
                padding: 15px;
            }

            .image-section,
            .details-section {
                flex: 1 1 100%;
                min-width: 100%;
                padding: 10px 0;
            }

            .main-slider {
                height: 250px;
            }

            .thumbnail-container img {
                width: 70px;
                height: 55px;
            }

            .details-section h2 {
                font-size: 22px;
            }

            .details-section p {
                font-size: 16px;
            }

            h3 {
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .main-slider {
                height: 200px;
            }

            .thumbnail-container img {
                width: 60px;
                height: 45px;
            }

            .details-section h2 {
                font-size: 20px;
            }

            .details-section p {
                font-size: 16px;
            }

            h3 {
                font-size: 20px;
            }
        }

         .tabs {
            display: flex;
            background: #002b45;
            color: white;
            justify-content: center;
            flex-wrap: wrap;
        }

        .tab {
            padding: 15px 30px;
            cursor: pointer;
            transition: 0.3s;
            text-align: center;
            flex: 1;
        }

        .tab:hover {
            background: #0a5b8d;
        }

        .tab.active {
            background: #15a021ee;
        }

        .tab-content {
            display: none;
            padding: 20px;
            animation: fadeIn 0.4s;
        }

        .tab-content.active {
            display: block;
        }

        .tooltip-text {
    position: relative;
    cursor: pointer;
}

/* Tooltip Default Hidden */
.tooltip-text::after {
    content: "Click this"; /* Change your message */
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
    pointer-events: none;
}

/* Arrow */
.tooltip-text::before {
    content: "";
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
}

/* Show on Hover */
.tooltip-text:hover::after,
.tooltip-text:hover::before {
    opacity: 1;
    visibility: visible;
}


        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* Table wrapper for scrolling */
        .table-container {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            /* smooth scrolling on mobile */
        }

        /* Table Style */
        table {
            border-collapse: collapse;
            min-width: 800px;
            /* ensures scrolling on small screens */
            width: 100%;
        }

        table th,
        table td {
            border: 1px solid #ddd;
            padding: 10px;
            text-align: center;
            white-space: nowrap;
            color: rgb(255, 255, 255);
            /* keep text in one line */
        }

        table th {
            background: rgb(0, 0, 0);
            color: white;
        }

        table tr:nth-child(even) {
            background: #00000000;
        }

        table tr:nth-child(odd) {
            background: #00000000;
        }

        /* Responsive tabs */
        @media (max-width: 768px) {
            .tab {
                flex: 100%;
            }
        }

        .wrap {
            max-width: 1320px;
            margin: auto;
            padding: 16px;
        }

        .app-container {
            display: grid;
            grid-template-columns: 370px 1fr;
            gap: 20px;
        }

        /* Left Tab List */
        .app-tabs {
            background: #0e0e0e;
            border: 1px solid var(--muted);
            border-radius: var(--radius);
            padding: 8px;
        }

        .app-tab {
            width: 100%;
            margin: 6px 0;
            padding: 12px;
            border: 1px solid var(--muted);
            border-radius: 8px;
            background: #000000;
            cursor: pointer;
            font-size: 16px;
            text-align: left;
            transition: background .2s, color .2s;
        }

        .app-tab[aria-selected="true"] {
            background: #009346;
            color: #fff;
            border-color: var(--brand);
        }

        /* Right Panels */
        .app-panel {
            display: none;
        }

        .app-panel[aria-hidden="false"] {
            display: block;
        }

        .app-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .app-grid img {
            /* width: 100%; */
            border: 1px solid var(--muted);
            border-radius: 8px;
            object-fit: cover;
            aspect-ratio: 4/3;
        }

        /* Responsive */
        @media (max-width: 600px) {
            .app-container {
                grid-template-columns: 1fr;
            }

            .app-grid {
                grid-template-columns: 1fr;
            }
        }