     .breadcrumb a {
            color: #007bff;
            text-decoration: none;
            margin-inline:5px;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .product-container {
            position: relative;
            display: flex;
            gap: 15px;
            padding: 25px;
            margin-top: 10px;
        }

        .image-section {
            display: flex;
            gap: 15px;
            width: 65%;
        }

        .thumbnail-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: sticky;
            top: 88px;
            max-height: 90vh;
        }

        .thumb-arrow {
            background-color: transparent;
            border: none;
            cursor: pointer;
            margin: 5px 0;
            transition: background 0.3s ease;
            display: none;
        }

        .thumb-arrow.down {
            position: sticky;
            bottom: 0;
            background-color: transparent;
        }

        .thumb-arrow:hover {
            background: #007bff;
            color: #fff;
        }

        .thumbnail-images {
            display: flex;
            flex-direction: column;
            gap: 15px;
            overflow-y: auto;
            scrollbar-width: none;
            padding: 5px 0;
        }

        .thumbnail {
            width: 60px;
            height: 60px;
            cursor: pointer;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .thumbnail:hover,
        .thumbnail.active {
            border: 2px solid black;
        }

        #upArrow {
            display: none;
        }

        .main-image-container {
            flex: 1;
            position: sticky;
            top: 90px;
            /* overflow: hidden; */
            height: fit-content;
            align-self: flex-start;
            
                border: 1px solid #ddd;
        }

        .main-image-wrapper {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
            cursor: pointer;
        }

        .main-image {
            width: 100%;
            height: 100%;
            object-fit: fill;
            transition: transform 0.3s ease;
            position: absolute;
            top: 0;
            left: 0;
        }

        .slide-left {
            animation: slideLeft 0.5s forwards;
        }

        .slide-right {
            animation: slideRight 0.5s forwards;
        }

        @keyframes slideLeft {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideRight {
            from {
                transform: translateX(-100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* Fullscreen Lightbox Styles */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 30px;
            cursor: pointer;
            z-index: 1001;
            background: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
            box-sizing: border-box;
        }

        .lightbox-prev,
        .lightbox-next {
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .details-section {
            width: 35%;
            position: sticky;
            align-self: flex-start;
            top: 20px;
            padding: 20px;
            border-radius: 10px;
        }

        .product-title {
            font-size: 28px;
            margin-bottom: 15px;
            color: #212529;
        }

        .product-price {
            font-size: 24px;
            font-weight: bold;
            color: #28a745;
            margin-bottom: 20px;
        }

        .product-description {
            margin-bottom: 25px;
            color: #495057;
            line-height: 1.8;
        }

        .product-features {
            margin-bottom: 25px;
        }

        .feature-list {
            list-style-type: none;
        }

        .feature-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .feature-list i {
            color: #007bff;
            margin-right: 10px;
        }

        .add-to-cart {
            background: #007bff;
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: background 0.3s ease;
            margin-bottom: 15px;
        }

        .add-to-cart:hover {
            background: #0069d9;
        }

        .product-meta {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid #dee2e6;
            padding-top: 15px;
            font-size: 14px;
            color: #6c757d;
        }
        
        /* New styles for product specifications table */
        .specifications {
            margin: 25px 0;
            width: 100%;
        }
        
        .specifications h3 {
            margin-bottom: 15px;
            font-size: 20px;
            color: #212529;
        }
        
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
            border: 1px solid #ddd;
        }
        
        .spec-table th,
        .spec-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .spec-table th {
            background-color: #f8f9fa;
            font-weight: 600;
            width: 40%;
        }
        
        .spec-table tr:hover {
            background-color: #f5f5f5;
        }
        
        .additional-images {
            display: flex;
            gap: 15px;
            margin: 25px 0;
            flex-wrap: wrap;
        }
        
        .additional-image {
            width: calc(50% - 8px);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .additional-image img {
            width: 100%;
            height: auto;
            display: block;
            cursor: pointer;
        }
        
        .detail-content {
            margin-top: 25px;
        }
        
        .detail-content h3 {
            margin: 20px 0 10px;
            color: #212529;
        }
        
        .detail-content p {
            margin-bottom: 15px;
            line-height: 1.7;
        }

        @media (max-width: 992px) {
            .product-container {
                flex-direction: column;
            }

            .image-section,
            .details-section {
                width: 100%;
            }

            .details-section {
                position: relative;
            }

            .main-image-container {
                position: relative;
            }
            
            .additional-image {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .image-section {
                flex-direction: column-reverse;
            }

            .thumbnail-images {
                flex-direction: row;
                overflow-x: auto;
                padding-bottom: 10px;
                margin-top: 10px;
            }

            .thumbnail {
                width: 60px;
                height: 60px;
            }
            
            .product-meta {
                flex-direction: column;
                gap: 10px;
            }
            
            .spec-table th,
            .spec-table td {
                padding: 8px 10px;
                font-size: 14px;
            }

            .lightbox-prev,
            .lightbox-next {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .lightbox-close {
                width: 40px;
                height: 40px;
                font-size: 20px;
                top: 10px;
                right: 10px;
            }
        }

        /* Request Query Modal Styles */

        /* Request Query Button */
#requestQueryBtn {
    background-color: #2457AA;  /* Button color, change if needed */
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

#requestQueryBtn:hover {
    background-color: #1e57b4;  /* Slightly darker on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#queryModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

#queryModal .modal-content {
    background: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    animation: slideDown 0.4s ease;
}

#queryModal .modal-content h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    text-align: center;
}

#queryModal .modal-content label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

#queryModal .modal-content input,
#queryModal .modal-content textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
}

#queryModal .modal-content textarea {
    min-height: 80px;
    resize: vertical;
}

#queryModal .modal-content button {
    display: inline-block;
    padding: 10px 25px;
    background-color: #007bff;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#queryModal .modal-content button:hover {
    background-color: #0056b3;
}

#queryModal .modal-content #closeQueryModal {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 22px;
    color: #333;
    transition: color 0.3s ease;
}

#queryModal .modal-content #closeQueryModal:hover {
    color: #007bff;
}

/* Slide down animation */
@keyframes slideDown {
    0% { transform: translateY(-50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* ---------- Responsive Design ---------- */

/* Tablet (≤992px) */
@media (max-width: 992px) {
  .product-container {
    flex-direction: column;
  }

  .image-section,
  .details-section {
    width: 100%;
  }

  .main-image-wrapper {
    height: 420px;
  }

  .details-section {
    position: relative;
    top: 0;
    padding: 15px;
    border: none;
  }

  .specifications {
    margin-top: 20px;
  }

  .spec-table th,
  .spec-table td {
    padding: 10px;
    font-size: 15px;
  }

  #queryModal .modal-content {
    max-width: 420px;
  }
}

/* Mobile (≤576px) */
@media (max-width: 576px) {
    
  .product-container {
    flex-direction: column;
    padding: 2px;
  }

  /* ✅ Main image on top, thumbnails below */
  .image-section {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .main-image-container {
    width: 100%;
    order: 1;
    top: 20px;
  }

  .thumbnail-wrapper {
    order: 2;
    flex-direction: row;
    justify-content: center;
    position: relative;
    top: 0;
    max-height: none;
    width: 100%;
  }

  .thumbnail-images {
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 5px;
    scrollbar-width: none;
  }

  .thumbnail {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    object-fit: cover;
  }

  .thumb-arrow {
    display: none !important;
  }

  .main-image-wrapper {
    height: 320px;
  }

  .details-section {
    padding: 15px 10px;
  }

  .product-title {
    font-size: 22px !important;
    line-height: 1.3;
  }

  .product-price {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .product-description {
    font-size: 15px;
    line-height: 1.6;
  }

  .specifications h3 {
    font-size: 18px;
  }

  .spec-table th,
  .spec-table td {
    padding: 8px;
    font-size: 13.5px;
  }

  #requestQueryBtn {
    width: 100%;
    font-size: 15px;
    padding: 12px;
  }

  /* Modal fix for small screens */
  #queryModal .modal-content {
    width: 90%;
    max-width: 350px;
    padding: 20px;
  }

  #queryModal .modal-content h2 {
    font-size: 20px;
  }

  #queryModal .modal-content input,
  #queryModal .modal-content textarea {
    font-size: 14px;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}
