/* Product Details Styling */

.page-hero-details {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%), url('../assets/images/products-bg.jpg');
}

.product-details-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}

.details-image {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.details-image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.thumbnails-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    background: #fff;
    padding: 5px;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-gold);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.details-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.details-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.8;
}

.specs-box {
    background: var(--bg-cream);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
    margin-bottom: 30px;
}

.specs-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.specs-box ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    color: var(--text-dark);
}

.specs-box ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

@media (max-width: 900px) {
    .product-details-container {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}