body {
    padding-top: calc(76px + var(--header-top-height));
}

.page-header {
    background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 86, 179, 0.9)), url('../images/250d850907460d1bfb4b9b5a11694cb53c9f50c4.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0 40px;
}

.product-gallery {
    position: relative;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* .main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
} */

.main-image {
    width: 100%;
    /* max-width: 500px; */
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}
.thumbnail-images {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-blue);
}

.product-info {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.product-features {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--success-green);
    margin-right: 10px;
}

.nav-tabs .nav-link {
    color: var(--dark-gray);
    border: none;
    border-bottom: 2px solid transparent;
    margin-right: 10px;
}

.nav-tabs .nav-link.active {
    color: var(--primary-blue);
    background-color: transparent;
    border-bottom-color: var(--primary-blue);
}

.specs-table {
    font-size: 0.9rem;
}

.specs-table th {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    font-weight: 600;
}

.related-products {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.inquiry-form {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 25px;
}
