/* ============================================
   ARTWORK DETAIL PAGE - E-COMMERCE LAYOUT
   Premium Art Gallery Detail View
   Modern UI with Lightbox, Related Items & More
   ============================================ */

:root {
    --primary-orange: #d86c06;
    --primary-orange-dark: #b85a05;
    --secondary-blue: #6995b1;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --text-light: #999999;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --info-color: #3498db;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: all 0.2s ease;
}

/* ============================================
   BREADCRUMBS
   ============================================ */

.artwork-breadcrumb {
    background: var(--bg-white);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.artwork-breadcrumb .breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition-fast);
}

.artwork-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-orange);
}

.artwork-breadcrumb .breadcrumb-item.active {
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
}

.artwork-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--text-light);
}

/* ============================================
   MAIN CONTAINER LAYOUT
   ============================================ */

.artwork-detail-container {
    background: var(--bg-light);
    padding: 20px 0 40px;
    min-height: 100vh;
}

.artwork-detail-container > .container {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    padding: 0;
}

.artwork-detail-container > .container > .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

/* ============================================
   IMAGE GALLERY SECTION (Left Column)
   ============================================ */

.artwork-detail-container .col-lg-6:first-child {
    background: #fafafa;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.gallery-wrapper {
    position: sticky;
    top: 20px;
}

.main-image-container {
    position: relative;
    margin-bottom: 24px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.artwork-main-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background: white;
    display: block;
    cursor: zoom-in;
    transition: var(--transition);
}

/* Image Controls */
.image-controls {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
    z-index: 10;
    opacity: 0;
    transition: var(--transition-fast);
}

.main-image-container:hover .image-controls {
    opacity: 1;
}

.img-control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.img-control-btn:hover {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1);
}

/* Gallery Navigation */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 10;
    opacity: 0;
}

.main-image-container:hover .gallery-nav {
    opacity: 1;
}

.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }

.gallery-nav:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

/* Stock Overlay */
.stock-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.stock-overlay.sold-out {
    background: var(--danger-color);
    color: white;
}

.stock-overlay.limited {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Thumbnail Gallery */
.thumbnail-container {
    margin-top: 20px;
    width: 100%;
}

.thumbnail-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-orange) transparent;
}

.thumbnail-scroll::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.thumbnail-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 3px;
}

.thumbnail-item {
    flex: 0 0 auto;
}

.artwork-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    background: white;
    padding: 2px;
    box-sizing: border-box;
    display: block;
}

.artwork-thumbnail:hover {
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.artwork-thumbnail.active {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(216, 108, 6, 0.2);
}

/* ============================================
   DETAILS SECTION (Right Column)
   ============================================ */

.artwork-detail-container .col-lg-6:last-child {
    padding: 40px;
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
}

/* Status Badges */
.status-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.in-stock {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success-color);
}

.status-badge.out-of-stock {
    background: rgba(231, 76, 60, 0.1);
    color: var(--danger-color);
}

.status-badge.featured {
    background: linear-gradient(135deg, #fff6e6, #fff0d4);
    color: #e67e00;
}

/* Product Title */
.artwork-order-title {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Playfair Display', 'Georgia', serif;
    color: var(--text-dark);
    margin: 8px 0 16px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Artist Card */
.artist-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.artist-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange), #e67d1a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.artist-info {
    flex: 1;
    min-width: 0;
}

.artist-label {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.artist-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

.artist-name:hover {
    color: var(--primary-orange);
}

.btn-view-artist {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-view-artist:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

/* Price Section */
.price-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-orange);
    font-family: 'Inter', sans-serif;
    display: inline-block;
}

.low-stock-warning {
    display: block;
    margin-top: 8px;
    color: var(--danger-color);
    font-size: 13px;
    font-weight: 600;
}

/* Quick Details Pills */
.quick-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.quick-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.quick-pill i {
    color: var(--primary-orange);
}

/* ============================================
   ACTION BUTTONS SECTION
   ============================================ */

.action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.action-buttons form,
.action-buttons > a,
.action-buttons > button {
    flex: 1;
    min-width: 140px;
}

.action-buttons .btn {
    width: 100%;
    padding: 14px 24px !important;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px !important;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Add to Cart Button */
.action-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #e67d1a 100%);
    color: white !important;
    box-shadow: var(--shadow-md);
}

.action-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.action-buttons .btn-primary:active {
    transform: translateY(0);
}

.action-buttons .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Buy Now Button */
.btn-buy-now {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%) !important;
    color: white !important;
    box-shadow: var(--shadow-md);
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Sold Out Button */
.btn-sold-out {
    background: #e0e0e0 !important;
    color: var(--text-muted) !important;
    cursor: not-allowed !important;
}

/* Wishlist Button */
.wishlist-btn {
    background: white !important;
    color: var(--primary-orange) !important;
    border: 2px solid var(--border-color) !important;
    border-radius: 8px !important;
    padding: 14px !important;
    min-width: 50px;
    flex: 0 1 auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-btn:hover {
    border-color: var(--primary-orange) !important;
    background: rgba(216, 108, 6, 0.05) !important;
    color: var(--primary-orange) !important;
}

.wishlist-btn i {
    font-size: 20px;
}

.wishlist-btn .fa-heart {
    color: var(--danger-color);
}

/* Loading spinner */
.action-buttons .spinner-border {
    width: 16px;
    height: 16px;
    border-width: 2px;
}

/* ============================================
   TRUST BADGES
   ============================================ */

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 24px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.trust-item i {
    font-size: 20px;
    color: var(--primary-orange);
}

.trust-item span {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.2;
}

/* ============================================
   TABS SECTION
   ============================================ */

.detail-tabs {
    margin-bottom: 24px;
}

.detail-tabs .nav-tabs {
    border-bottom: 2px solid var(--border-color);
    gap: 8px;
}

.detail-tabs .nav-link {
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 8px 8px 0 0;
    transition: var(--transition-fast);
}

.detail-tabs .nav-link:hover {
    color: var(--primary-orange);
    background: rgba(216, 108, 6, 0.05);
}

.detail-tabs .nav-link.active {
    color: var(--primary-orange);
    background: transparent;
    border-bottom: 2px solid var(--primary-orange);
    margin-bottom: -2px;
}

.tab-card {
    padding: 20px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Details Grid */
.details-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.detail-label i {
    color: var(--primary-orange);
}

.detail-value {
    font-weight: 600;
    color: var(--text-dark);
}

/* Shipping Info */
.shipping-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.shipping-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.shipping-row i {
    font-size: 20px;
    width: 24px;
    text-align: center;
    margin-top: 2px;
}

.shipping-row strong {
    display: block;
    color: var(--text-dark);
    font-size: 14px;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */

.categories-section {
    margin-bottom: 24px;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), #e67d1a);
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.category-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white !important;
}

/* ============================================
   SHARE SECTION
   ============================================ */

.share-section {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
}

.share-btn.facebook { background: #1877f2; color: white; }
.share-btn.twitter { background: #1da1f2; color: white; }
.share-btn.pinterest { background: #e60023; color: white; }
.share-btn.whatsapp { background: #25d366; color: white; }
.share-btn.copy-link { background: #333; color: white; }

/* ============================================
   RELATED ARTWORKS SECTION
   ============================================ */

.related-section {
    padding: 40px;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Playfair Display', 'Georgia', serif;
    margin: 0;
}

.view-all-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-fast);
}

.view-all-link:hover {
    color: var(--primary-orange-dark);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.related-image-link {
    display: block;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.related-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.related-card:hover .related-image {
    transform: scale(1.05);
}

.related-image-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 32px;
}

.related-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.related-badge.sold-out {
    background: var(--danger-color);
    color: white;
}

.related-info {
    padding: 16px;
}

.related-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    margin-bottom: 4px;
    transition: var(--transition-fast);
    line-height: 1.3;
}

.related-title:hover {
    color: var(--primary-orange);
}

.related-artist {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.related-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-orange);
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition-fast);
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ============================================
   MOBILE STICKY CART
   ============================================ */

.mobile-sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}

.mobile-sticky-cart.visible {
    transform: translateY(0);
}

.mobile-cart-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-orange);
    white-space: nowrap;
}

.mobile-cart-form {
    flex: 1;
}

.btn-mobile-cart {
    width: 100%;
    padding: 12px 20px !important;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #e67d1a 100%);
    color: white !important;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
}

.btn-mobile-cart:disabled {
    background: #e0e0e0;
    color: var(--text-muted) !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .artwork-detail-container > .container {
        border-radius: 0;
    }

    .artwork-detail-container .col-lg-6:first-child {
        padding: 30px 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .artwork-detail-container .col-lg-6:last-child {
        padding: 30px 20px;
    }

    .gallery-wrapper {
        position: static;
    }

    .artwork-main-image {
        height: 400px;
    }

    .artwork-order-title {
        font-size: 24px;
    }

    .price-tag {
        font-size: 28px;
    }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-section {
        padding: 30px 20px;
    }

    .mobile-sticky-cart {
        display: block;
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

@media (max-width: 768px) {
    .artwork-detail-container {
        padding: 12px 0 80px;
    }

    .artwork-breadcrumb {
        display: none;
    }

    .artwork-detail-container .col-lg-6:first-child,
    .artwork-detail-container .col-lg-6:last-child {
        padding: 20px !important;
    }

    .artwork-main-image {
        height: 300px;
    }

    .artwork-order-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .artist-card {
        flex-wrap: wrap;
        padding: 12px;
    }

    .btn-view-artist {
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }

    .price-tag {
        font-size: 24px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .action-buttons form,
    .action-buttons > a,
    .action-buttons > button {
        min-width: 100%;
    }

    .wishlist-btn {
        width: 100% !important;
        flex: 1 1 auto !important;
    }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        padding: 16px;
    }

    .detail-tabs .nav-link {
        padding: 10px 12px;
        font-size: 13px;
    }

    .detail-tabs .nav-link i {
        display: none;
    }

    .share-buttons {
        justify-content: center;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .thumbnail-item .artwork-thumbnail {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .artwork-detail-container {
        padding: 0 0 80px;
    }

    .artwork-order-title {
        font-size: 18px;
    }

    .quick-details {
        gap: 6px;
    }

    .quick-pill {
        padding: 6px 10px;
        font-size: 11px;
    }

    .action-buttons .btn {
        padding: 12px 16px !important;
        font-size: 14px;
    }

    .trust-badges {
        gap: 8px;
    }

    .trust-item i {
        font-size: 16px;
    }

    .trust-item span {
        font-size: 10px;
    }

    .related-info {
        padding: 12px;
    }

    .related-title {
        font-size: 13px;
    }

    .related-artist {
        font-size: 11px;
    }

    .related-price {
        font-size: 14px;
    }

    .section-title {
        font-size: 18px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .category-badge {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* ============================================
   ACCESSIBILITY & ENHANCEMENTS
   ============================================ */

.artwork-thumbnail:focus,
.action-buttons .btn:focus,
.artist-name:focus,
.share-btn:focus,
.gallery-nav:focus,
.lightbox-nav:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Print styles */
@media print {
    .action-buttons,
    .share-section,
    .mobile-sticky-cart,
    .lightbox-overlay,
    .image-controls,
    .gallery-nav {
        display: none !important;
    }

    .artwork-detail-container {
        box-shadow: none;
        padding: 0;
    }

    .artwork-detail-container > .container {
        box-shadow: none;
    }
}
