/* Item Header */
.item-header {
    padding: 20px 0;
    text-align: center;
    background-color: #252525;
}

.item-header h1 {
    font-size: 28px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 10px;
}

.item-header .price {
    font-size: 24px;
    color: #4da8ff;
}

/* Main container */
.container {
    width: 90%;
    margin: 20px auto;
    max-width: 1200px;
}

/* Item Images */
.item-images {
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 4px;
    /*display: block;*/
    margin: 0 auto;
}

.thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.thumbnail:hover {
    opacity: 0.8;
}

/* Item Description */
.item-description {
    background-color: #2d2d2d;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.item-description h2 {
    font-size: 22px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 10px;
}

.item-description p {
    font-size: 14px;
    color: #e0e0e0;
}

/* Item Attributes */
.item-attributes {
    background-color: #2d2d2d;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.item-attributes h2 {
    font-size: 22px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 10px;
}

.attribute-block h3 {
    font-size: 18px;
    color: #4da8ff;
    margin-bottom: 10px;
}

.item-attributes dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 20px;
}

.item-attributes dt {
    font-size: 14px;
    color: #e0e0e0;
    font-weight: 500;
}

.item-attributes dd {
    font-size: 14px;
    color: #a0a0a0;
}

/* Item Price History */
.item-price-history {
    background-color: #2d2d2d;
    padding: 15px;
    border-radius: 4px;
}

.item-price-history h2 {
    font-size: 22px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 10px;
}

.price-history-table {
    width: 100%;
    border-collapse: collapse;
}

.price-history-table th,
.price-history-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #444444;
    font-size: 14px;
}

.price-history-table th {
    background-color: #383838;
    color: #ffffff;
}

.price-history-table td {
    color: #e0e0e0;
}

.price-history-table tr:last-child td {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-image img {
        max-width: 100%;
    }

    .thumbnails {
        gap: 8px;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }

    .item-attributes dl {
        grid-template-columns: 1fr;
    }

    .item-header h1 {
        font-size: 24px;
    }

    .item-header .price {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .thumbnail {
        width: 50px;
        height: 50px;
    }

    .item-description h2,
    .item-attributes h2,
    .item-price-history h2 {
        font-size: 18px;
    }

    .price-history-table th,
    .price-history-table td {
        font-size: 12px;
        padding: 8px;
    }
}

