
.item-and-description {
    display: flex;
    align-items: center; /* vertically center columns */
    justify-content: auto;
    padding: 100px 0;
    background : linear-gradient(to bottom,#99ccff , white);
}

.item-image, .item-description {
    flex: 1;
}

.item-image {
    display: flex;
    justify-content: center;
}

.item-description{
    line-height: 35px;
    padding: 0 25px;
}

.item-and-description ul {
    padding: 20px;
}

h1 {
    font-weight: 800;
    font-family: var(--plus-jakarta-sans);
    font-size: 35px;
    margin-bottom: 15px;
}

.boxx {
    display: flex;
    flex-direction: column;
    background-color: #c2c2d6;
    max-width: max-content;
    padding: 25px ;
    align-items: flex-start;
}

.Download {
    display: block;
    margin-left: 25%;
    margin-top: 15px;
    background-color: var(--primary-color);
    border: 0.5px solid black;
    padding: 10px 60px;
    border-radius: 5px;
}

button:hover {
    background-color: var(--secondary-color);
    color: white;
    cursor: pointer;
}


.container-specs-and-dimension {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 50px;
    padding: 80px 60px;
}

/* Product table styles are centralized in sections/product-tables.css */
/* This file contains product-specific page layout and visuals. */

/* No desktop-only sticky header behavior */

/* Sticky headers intentionally disabled for better mobile/tablet compatibility */

th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.container-specs-and-dimension > div {
    overflow-x: auto;
}

@media (max-width: 992px) {
    .container-specs-and-dimension {
        padding: 40px 20px;
    }

    .container-specs-and-dimension table {
        min-width: 960px;
    }
}

@media (max-width: 768px) {
    .container-specs-and-dimension table {
        font-size: 0.92rem;
    }
}

.downloads img, .downloads button {
    width: 40px;
    background: white;
    border: none;
    outline: none;
    background: transparent;
}

.downloads table th {
    text-align: center;
}