* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

nav {
    background-color: #cd6f0b;
    padding: 20px 0;
    position: relative;
    transition: background 0.3s ease-in-out;
}

nav:hover {
    background-color: #b45b09;
}

.nav-left .logo {
    position: absolute;
    left: 20px;
    top: 2px;
    width: 180px;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
}

nav ul li {
    display: inline-block;
    font-size: 22px;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}

nav ul li:hover {
    transform: scale(1.1);
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    transition: background 0.4s ease-in-out, border-radius 0.5s ease-in-out;
}

nav ul li a:hover {
    background: #e07c10;
    border-radius: 25px;
}

.product-container {
    display: flex;
    padding: 40px 5%;
    gap: 5%;
    align-items: flex-start;
}

.product-gallery {
    flex: 1;
    max-width: 600px;
}

.main-foto img {
    width: 600px;
    height: 600px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.main-foto img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-color: #cd6f0b;
}

.thumbnails {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.thumbnails img {
    width: 300px;
    height: 150px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnails img:hover {
    transform: scale(1.1);
    border-color: #cd6f0b;
}

.product-details {
    flex: 1;
    color: #cd6f0b;
    max-width: 600px;
    height: 1200px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 25px;
}

.product-meta {
    margin-bottom: 15px;
    color: #666;
}

.rating {
    color: #ffc107;
    margin-bottom: 8px;
}

.reviews {
    color: #666;
    font-size: 0.9rem;
    margin-left: 5px;
}

.description-text {
    color: #444;
    line-height: 1.7;
    margin: 25px 0;
    font-size: 1.05rem;
    padding: 25px;
    background: #fff9f5;
    border-left: 4px solid #cd6f0b;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: justify;
    letter-spacing: 0.3px;
}
.description-text:hover {
    border-left-color: #b45b09;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.input-veld {
    margin: 25px 0;
}

.input-veld label {
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.input-veld input {
    width: 100px;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #cd6f0b;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.input-veld input:focus {
    outline: none;
    border-color: #b45b09;
    box-shadow: 0 0 8px rgba(205, 111, 11, 0.2);
}

.quantity-note {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}
.buy-button {
    background: linear-gradient(135deg, #cd6f0b 0%, #b45b09 100%);
    border: none;
    border-radius: 12px;
    color: white;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(205, 111, 11, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none; 
}


.buy-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(205, 111, 11, 0.4);
    background: linear-gradient(135deg, #b45b09 0%, #9d4a07 100%);
}

.product-info {
    margin: 25px 0;
    list-style: none;
}

.product-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.product-info img {
    width: 25px;
    height: 25px;
    margin-right: 15px;
}

.specs-list {
    color: #444;
    margin: 25px 0;
}

.specs-list p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.specs-list strong {
    color: #666;
}

.specs-list ul {
    list-style: none;
    margin-left: 20px;
}

.specs-list li::before {
    content: "•";
    color: #cd6f0b;
    margin-right: 5px;
}

.description {
    margin-top: 75px; 
    padding: 28px;      
    background: linear-gradient(to bottom right, #fff9f5, #fff3eb);
    border-radius: 12px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 18px rgba(205, 111, 11, 0.06); 
    max-width: 100%;
}

.description:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(205, 111, 11, 0.12);
}

.description h2 {
    color: #cd6f0b;
    font-size: 2.0rem;  
    margin-bottom: 22px;
    padding-bottom: 12px; 
    letter-spacing: -0.4px;
}

.description h2::after {
    width: 57px;        
    height: 2.5px;     
}
.description p {
    line-height: 1.7;   
    font-size: 1.04rem; 
}

.description p::before {
    font-size: 1.3rem;  
    line-height: 1.7rem; 
}

.description p:last-child {
    margin-bottom: 0;
}

.description-image {
    padding: 5px;
    margin: 0 auto 250px; 
    position: relative;
    width: 100%;
    text-align: center; 
}

.description-image img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto; 
    display: block; 
    position: relative;
    top: 350px; 
    right: -50px;
}
.discount {
    color: #4CAF50;
    font-size: 1.2rem;
    margin-left: 10px;
}

.chairvideo {
    width: 600px;
    height: 600px;
    margin: 0 auto;
}

.chairvideo video {
    width: 100%;
    height: auto;
    display: block;
}
.deskvideo {
    width: 600px;
    height: 600px;
    margin: 0 auto;
    background: #f0f0f0; 
}
#mainDisplay {
    width: 100%;
    height: 100%;
}

#mainVideo {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
}

.deskvideo video {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
}
.img-description-wrapper{
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.img-description img {
    width: 500px;
    height: auto;
    margin-left: 150px;
}
@media (max-width: 1200px) {
    .product-container {
        gap: 3%;
        padding: 30px 3%;
    }
    
    .main-foto img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    nav ul {
        flex-wrap: wrap;
        gap: 15px;
        padding: 10px 0;
    }

    nav ul li {
        font-size: 18px;
    }

    .nav-left .logo {
        width: 120px;
        top: 10px;
    }

    /* Stack Product Sections */
    .product-container {
        flex-direction: column;
        padding: 20px;
    }

    .product-gallery,
    .product-details {
        max-width: 100%;
        width: 100%;
    }

    .thumbnails img {
        width: 30%;
        height: auto;
    }

    /* Adjust Product Details */
    h1 {
        font-size: 2rem;
    }

    .price {
        font-size: 1.5rem;
    }

    .description-text {
        padding: 15px;
        font-size: 1rem;
    }

    .buy-button {
        width: 100%;
        text-align: center;
    }

    .description-image img {
        top: 0;
        right: 0;
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    /* Mobile Optimization */
    nav ul {
        justify-content: space-around;
        gap: 10px;
    }

    nav ul li a {
        padding: 8px 12px;
        font-size: 14px;
    }

    .thumbnails {
        flex-wrap: wrap;
    }

    .thumbnails img {
        width: 48%;
        margin-bottom: 10px;
    }

    .product-info li {
        font-size: 14px;
    }

    .input-veld input {
        width: 80px;
        padding: 8px;
    }

    .description {
        margin-top: 30px;
        padding: 15px;
    }

    .description h2 {
        font-size: 1.5rem;
    }
}