/* Work (Product Detail) Page Styles */
.work-section { padding: 40px 0 100px; }

.work-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
}

/* Gallery */
.gallery-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 3/4;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--secondary);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.work-info { position: sticky; top: 100px; height: fit-content; }

.work-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.work-title {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.work-price {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 30px;
}

.work-price .original {
    font-size: 18px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 15px;
}

.work-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.work-description h4 {
    font-size: 16px;
    margin: 20px 0 10px;
    color: var(--primary);
}

.work-description ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.work-description li {
    margin-bottom: 5px;
}

/* Add to Cart */
.add-to-cart {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.work-meta {
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.meta-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.meta-label { color: var(--text-light); }
.meta-value { font-weight: 500; }

/* Related Products */
.related-section { margin-top: 100px; }

.related-title {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
}

@media (max-width: 1024px) {
    .work-grid { grid-template-columns: 1fr; }
    .work-info { position: static; }
}

@media (max-width: 768px) {
    .work-title { font-size: 26px; }
    .add-to-cart { flex-direction: column; }
}
