.product-description {
        height: 400px;
        overflow-y: scroll;    /* Only vertical scroll */
        overflow-x: hidden;    /* Hide horizontal scroll */
    }
    
    /* Scrollbar styling for WebKit browsers (Chrome, Edge, Safari) */
    .product-description::-webkit-scrollbar {
        width: 5px;  /* Vertical scrollbar width */
    }
    
    .product-description::-webkit-scrollbar-track {
        background: #f1f1f1;  /* Scrollbar track color */
        border-radius: 5px;
    }
    
    .product-description::-webkit-scrollbar-thumb {
        background: #888;  /* Scrollbar handle color */
        border-radius: 5px;
    }
    
    .product-description::-webkit-scrollbar-thumb:hover {
        background: #555;  /* Handle hover color */
    }
    
    /* For Firefox (modern browsers) */
    .product-description {
        scrollbar-width: thin;        /* Makes scrollbar thin */
        scrollbar-color: #888 #f1f1f1; /* Thumb color | Track color */
    }
    
    
    .product-specification {
        height: 400px;
        overflow-y: scroll;    /* Only vertical scroll */
        overflow-x: hidden;    /* Hide horizontal scroll */
    }
    
    /* Scrollbar styling for WebKit browsers (Chrome, Edge, Safari) */
    .product-specification::-webkit-scrollbar {
        width: 5px;  /* Vertical scrollbar width */
    }
    
    .product-specification::-webkit-scrollbar-track {
        background: #f1f1f1;  /* Scrollbar track color */
        border-radius: 5px;
    }
    
    .product-specification::-webkit-scrollbar-thumb {
        background: #888;  /* Scrollbar handle color */
        border-radius: 5px;
    }
    
    .product-specification::-webkit-scrollbar-thumb:hover {
        background: #555;  /* Handle hover color */
    }
    
    /* For Firefox (modern browsers) */
    .product-specification {
        scrollbar-width: thin;        /* Makes scrollbar thin */
        scrollbar-color: #888 #f1f1f1; /* Thumb color | Track color */
    }
