/* Single Product Page - Strictly Saatchi Art */
.artwork-single {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.artwork-single-image-container {
    flex: 1;
    display: flex;
    gap: 20px;
}

.artwork-gallery-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 60px;
    flex-shrink: 0;
}

.gallery-thumb {
    width: 60px;
    height: 60px;
    border: 1px solid #eee;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s;
}

.gallery-thumb.active {
    border-color: #333;
}

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

.artwork-main-image {
    flex: 1;
    background: #f8f8f8;
}

.artwork-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Details Column */
.artwork-single-details {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.action-box-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.action-box-tabs .tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    background: #e0e0e0;
    color: #666;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
}

.action-box-tabs .tab.active {
    background: #fff;
    color: #333;
    border: 1px solid #e0e0e0;
    border-bottom: none;
}

.artwork-header h1 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 5px;
    color: #333;
}

.artist-attribution {
    margin-bottom: 15px;
}

.artist-name-link {
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #ff5a00;
}

.artist-location {
    font-size: 0.875rem;
    color: #666;
    margin-top: 2px;
}

.artwork-meta-sidebar {
    font-size: 0.875rem;
    color: #333;
    line-height: 1.8;
    margin-top: 15px;
}

.info-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    line-height: 14px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 50%;
    font-size: 0.625rem;
    margin-left: 5px;
}

/* Dark Action Box */
.artwork-action-box-dark {
    background: #333;
    color: #fff;
    padding: 20px;
}

.artwork-action-box-dark .price-display {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.artwork-action-box-dark .currency {
    font-size: 1.125rem;
    margin-right: 2px;
}

.action-buttons-row {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.add-to-cart-btn {
    background: #ff5a00 !important;
    border: none !important;
    color: #fff !important;
    padding: 12px !important;
    font-weight: 700 !important;
    text-align: center;
    text-decoration: none;
}

.btn-make-offer {
    background: transparent;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.875rem;
    cursor: pointer;
    margin-top: 10px;
}

/* Trust Box */
.artwork-trust-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.viewing-now {
    background: #f4f4f4;
    padding: 10px 15px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.trust-indicators {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 5px;
}

.trustpilot .stars {
    color: #00b67a;
    letter-spacing: 2px;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #666;
    padding: 5px 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.recognition-box {
    border: 1px solid #eee;
    padding: 15px;
}

.recog-title {
    font-weight: 700;
    font-size: 0.8125rem;
    margin-bottom: 10px;
}

.recog-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
}

.btn-see-more {
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.875rem;
    cursor: pointer;
}

/* Content Tabs */
.artwork-content-tabs {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-bottom: 40px;
}

.tabs-header {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    padding: 0;
}

.tab-btn.active {
    color: #333;
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
}

.artwork-description-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    max-height: 200px; /* For Read More functionality */
    overflow: hidden;
    position: relative;
}

.tab-content-wrapper {
    position: relative;
    min-height: 200px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.shipping-returns-content {
    font-size: 0.875rem;
    line-height: 1.8;
    color: #444;
}

.shipping-returns-content p {
    margin-bottom: 15px;
}

.read-more {
    background: none;
    border: none;
    font-weight: 700;
    font-size: 0.75rem;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    margin-top: 10px;
}

.artwork-spec-meta table {
    width: auto;
    font-size: 0.875rem;
}

.artwork-spec-meta th {
    text-align: left;
    width: 120px;
    padding: 2px 0;
    font-weight: 700;
}

.artwork-spec-meta td {
    color: #333;
}

.need-more {
    font-size: 0.8125rem;
    margin-top: 15px;
}

.need-more a {
    text-decoration: underline;
    color: #333;
}

/* FAQ Section */
.artwork-faq-section {
    background: #fcfcfc;
    padding: 20px;
    margin-bottom: 40px;
}

.faq-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.faq-tags button {
    background: #fff;
    border: 1px solid #eee;
    padding: 8px 15px;
    font-size: 0.75rem;
    border-radius: 4px;
    cursor: pointer;
}

.faq-input {
    border: 1px solid #eee;
    padding: 10px 15px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-input input {
    border: none;
    font-size: 0.875rem;
    width: 80%;
    outline: none;
}

.powered-by {
    font-size: 0.6875rem;
    color: #999;
}


/* Responsive */
@media (max-width: 992px) {
    .artwork-single {
        flex-direction: column;
    }
    
    .artwork-single-image-container {
        flex-direction: column-reverse;
    }
    
    .artwork-gallery-vertical {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
    }
    
    .btn-view-profile {
        margin-left: 0;
        margin-top: 10px;
    }
}

