/**
 * Artburst Launch Pro - Frontend Styles
 * Font: Heebo
 * Primary Button Color: #bd264d
 * Rollover Button Color: #267e99
 */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700&display=swap');

/* ========================================
   GLOBAL STYLES
======================================== */

.artburst-auth-container,
.artburst-artist-dashboard,
.artburst-show-grid-container,
.artburst-past-shows {
    font-family: 'Heebo', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Tablet sizing - account for Avada sticky header */
@media (max-width: 1024px) and (min-width: 601px) {
    .artburst-artist-dashboard,
    .artburst-auth-container {
        padding-top: 100px;
    }
}

@media (max-width: 800px) {
    .artburst-artist-dashboard,
    .artburst-auth-container {
        padding-top: 120px;
    }
}

/* ========================================
   BUTTONS
======================================== */

.artburst-btn,
.artburst-filter-btn,
.artburst-btn-view {
    background-color: #bd264d;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.artburst-btn:hover,
.artburst-filter-btn:hover,
.artburst-btn-view:hover {
    background-color: #267e99;
    color: #fff;
    text-decoration: none;
}

.artburst-btn-secondary,
.artburst-reset-btn {
    background-color: transparent;
    color: #bd264d;
    padding: 12px 24px;
    border: 2px solid #bd264d;
    border-radius: 4px;
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.artburst-btn-secondary:hover,
.artburst-reset-btn:hover {
    background-color: #267e99;
    border-color: #267e99;
    color: #fff;
}

/* ========================================
   FORMS
======================================== */

.artburst-form-group {
    margin-bottom: 20px;
}

.artburst-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.artburst-form-group input[type="text"],
.artburst-form-group input[type="email"],
.artburst-form-group input[type="password"],
.artburst-form-group input[type="url"],
.artburst-form-group input[type="number"],
.artburst-form-group input[type="tel"],
.artburst-form-group textarea,
.artburst-form-group select,
.artburst-filter-input,
.artburst-filter-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Heebo', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.artburst-form-group input:focus,
.artburst-form-group textarea:focus,
.artburst-form-group select:focus {
    outline: none;
    border-color: #bd264d;
}

.artburst-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.artburst-message {
    padding: 12px;
    margin: 15px 0;
    border-radius: 4px;
    display: none;
}

.artburst-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.artburst-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ========================================
   AUTH CONTAINER (LOGIN/REGISTER)
======================================== */

.artburst-auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.artburst-tab-btn {
    background: none;
    border: none;
    padding: 12px 24px;
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.artburst-tab-btn.active {
    color: #bd264d;
    border-bottom-color: #bd264d;
}

.artburst-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.artburst-tab-content.active {
    display: block;
}

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

/* ========================================
   ARTIST DASHBOARD
======================================== */

.artburst-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
    flex-wrap: wrap;
    gap: 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.artist-headshot {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #bd264d;
    flex-shrink: 0;
}

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

/* Headshot Wrapper with Label */
.artist-headshot-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.headshot-label {
    font-size: 11px;
    color: #888;
    text-align: center;
    max-width: 100px;
    line-height: 1.3;
}

/* Editable Header Headshot */
.artist-headshot-editable {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #bd264d;
    flex-shrink: 0;
    cursor: pointer;
    background: #f0f0f0;
}

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

.artist-headshot-editable .headshot-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e5e5;
}

.artist-headshot-editable .headshot-placeholder .dashicons {
    font-size: 36px;
    width: 36px;
    height: 36px;
    color: #999;
}

.headshot-edit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.artist-headshot-editable:hover .headshot-edit-overlay {
    opacity: 1;
}

.headshot-edit-overlay .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
    color: #fff;
}

.header-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.artburst-dashboard-header h2 {
    margin: 0;
    font-weight: 600;
}

/* Profile Photo Section */
.artburst-profile-photo-section {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.profile-photo-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 4px solid #bd264d;
    background: #f5f5f5;
}

.profile-photo-container img,
.profile-photo-container #profile-photo-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9e9e9;
}

.profile-photo-placeholder .dashicons {
    font-size: 60px;
    width: 60px;
    height: 60px;
    color: #aaa;
}

.profile-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-photo-container:hover .profile-photo-overlay {
    opacity: 1;
}

.profile-photo-overlay .dashicons {
    font-size: 36px;
    width: 36px;
    height: 36px;
    color: #fff;
    margin-bottom: 8px;
}

.profile-photo-overlay .overlay-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.photo-hint {
    color: #888;
    font-size: 13px;
    margin: 0;
}

/* Photo Crop Modal */
.photo-crop-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
}

.photo-crop-modal.active {
    display: flex;
}

.crop-modal-content {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.crop-modal-content h3 {
    margin: 0 0 20px;
    font-size: 20px;
}

.crop-preview-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid #ddd;
}

.crop-preview-container img {
    max-width: none;
}

.crop-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.crop-buttons button {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.crop-save-btn {
    background: #bd264d;
    color: #fff;
}

.crop-save-btn:hover {
    background: #a01d40;
}

.crop-cancel-btn {
    background: #e5e5e5;
    color: #333;
}

.crop-cancel-btn:hover {
    background: #d5d5d5;
}

.artburst-dashboard-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.artburst-dashboard-tab {
    background-color: #f5f5f5;
    border: none;
    padding: 12px 24px;
    font-family: 'Heebo', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.artburst-dashboard-tab.active {
    background-color: #bd264d;
    color: #fff;
}

.artburst-dashboard-content {
    display: none;
}

.artburst-dashboard-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.current-headshot {
    margin-top: 10px;
}

.current-headshot img {
    max-width: 150px;
    border-radius: 4px;
}

/* Image Previews */
.image-preview,
.images-preview {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.image-preview img,
.images-preview img {
    max-width: 150px;
    max-height: 150px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid #ddd;
}

/* Drag & Drop Upload Zones */
.upload-dropzone {
    border: 3px dashed #bd264d;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.upload-dropzone:hover {
    border-color: #267e99;
    background: #f0f6fc;
}

.upload-dropzone.dragover {
    border-color: #267e99;
    background: #e3f2fd;
    border-style: solid;
}

.upload-dropzone .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    color: #bd264d;
    display: block;
    margin: 0 auto 15px auto;
}

.upload-dropzone p {
    margin: 10px 0 0 0;
    color: #666;
    font-size: 14px;
}

.upload-dropzone strong {
    color: #333;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

/* Image Thumbnails with Remove Button */
.image-thumb {
    position: relative;
    display: inline-block;
    margin: 5px;
}

.image-thumb img {
    max-width: 150px;
    max-height: 150px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid #ddd;
    display: block;
}

.image-thumb.primary-thumb img {
    max-width: 200px;
    max-height: 200px;
    border-color: #bd264d;
}

.image-thumb .remove-image {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: #fff !important;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.image-thumb .remove-image:hover {
    background: #c82333;
    transform: scale(1.1);
}

.image-thumb .remove-image .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #fff !important;
}

/* Lightbox Gallery */
.artburst-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
}

.artburst-lightbox.active {
    display: block;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container {
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.lightbox-close .dashicons {
    font-size: 30px;
    width: 30px;
    height: 30px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(189, 38, 77, 0.8);
}

.lightbox-prev .dashicons,
.lightbox-next .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
}

.lightbox-caption {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    max-width: 80%;
    text-align: center;
}

.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.lightbox-zoom-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.lightbox-zoom-controls button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-zoom-controls button:hover {
    background: rgba(189, 38, 77, 0.8);
}

.lightbox-zoom-controls .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

body.lightbox-open {
    overflow: hidden;
}

/* Countdown Timer */
.artburst-countdown {
    margin: 30px 0;
}

.countdown-container {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.countdown-title {
    margin: 0 0 20px 0;
    font-size: 24px;
    color: #333;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-value {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #bd264d;
    line-height: 1;
    font-family: 'Courier New', monospace;
}

.countdown-label {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    text-transform: uppercase;
    color: #666;
    font-weight: 600;
}

.countdown-expired,
.countdown-closed {
    padding: 40px;
    text-align: center;
    font-size: 18px;
    color: #666;
}

/* Announcement Bar */
.artburst-announcement-bar {
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
    position: relative;
    z-index: 100;
}

.announcement-content {
    max-width: 1200px;
    margin: 0 auto;
}

.announcement-text {
    display: inline-block;
}

/* Show Status Badges */
.artburst-show-status {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #bd264d;
}

.show-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #bd264d;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.show-status-badge .status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.show-status-active .show-status-badge {
    background: #28a745;
}

.show-status-upcoming .show-status-badge {
    background: #267e99;
}

.show-status-closed .show-status-badge {
    background: #6c757d;
}

.show-title {
    margin: 5px 0 0 0;
    font-size: 16px;
}

/* Artworks Grid in Dashboard */
.artworks-show-group {
    margin-bottom: 40px;
}

.show-group-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.show-group-title {
    font-family: 'Heebo', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.show-group-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #666;
}

.show-group-meta .show-dates {
    display: flex;
    align-items: center;
    gap: 6px;
}

.show-group-meta .show-dates .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #999;
}

.show-group-meta .show-status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
}

.show-group-meta .show-status-indicator .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #999;
}

.show-group-meta .show-status-indicator.status-upcoming .status-dot {
    background: #2e7d32;
}

.show-group-meta .show-status-indicator.status-live .status-dot {
    background: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
    animation: pulse 2s infinite;
}

.show-group-meta .show-status-indicator.status-ended .status-dot {
    background: #6c757d;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.show-type-badge,
.show-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 4px;
    font-family: 'Heebo', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.show-type-badge.boutique {
    background-color: #e3f2fd;
    color: #1976d2;
}

.show-type-badge.main {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.show-type-badge.popup {
    background-color: #fff3e0;
    color: #f57c00;
}

.show-status-badge.upcoming {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.show-status-badge.active,
.show-status-badge.live {
    background-color: #e1f5fe;
    color: #0277bd;
}

.show-status-badge.closed {
    background-color: #fafafa;
    color: #616161;
}

.draft-badge,
.pending-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff9800;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    z-index: 5;
}

.pending-badge {
    background-color: #2196f3;
}

.no-artwork-message {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
    font-family: 'Heebo', sans-serif;
}

.artburst-artworks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

/* ========================================
   ARTWORK CARD - RESTYLED
======================================== */
.artburst-artwork-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Heebo', sans-serif !important;
}

.artburst-artwork-card * {
    font-family: 'Heebo', sans-serif !important;
}

.artburst-artwork-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.artburst-artwork-card.needs-changes {
    border: 2px solid #2196f3;
}

.artwork-thumbnail {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
}

.artwork-thumbnail .thumbnail-edit-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 5;
}

.artwork-thumbnail .thumbnail-edit-link:hover {
    opacity: 0.9;
}

.artwork-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artwork-info {
    padding: 20px;
}

/* Header row with title and badge */
.artwork-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.artwork-info .artwork-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    flex: 1;
}

/* Badge styles */
.artwork-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.artwork-badge.badge-sold {
    background: #1a1a1a;
    color: #fff;
}

.artwork-badge.badge-changes {
    background: #ffc107;
    color: #856404;
    border: 1px solid #ffc107;
}

.artwork-badge.badge-changes .dashicons {
    font-family: dashicons;
    font-size: 14px;
    width: 14px;
    height: 14px;
    line-height: 1;
    margin-right: 4px;
    vertical-align: middle;
}

.artwork-badge.badge-changes .dashicons:before {
    font-family: dashicons;
}

.artwork-badge.badge-pending {
    background: #ff9800;
    color: #fff;
}

.artwork-badge.badge-published {
    background: #28a745;
    color: #fff;
}

.artwork-badge.badge-rejected {
    background: #6c757d;
    color: #fff;
}

.artwork-badge.badge-draft {
    background: #6c757d;
    color: #fff;
}

.artwork-badge.badge-draft .dashicons {
    font-size: 12px;
    width: 12px;
    height: 12px;
    margin-right: 4px;
}

.artwork-badge.badge-expired {
    background: #78909c;
    color: #fff;
}

/* Draft artwork card styling */
.artburst-artwork-card.is-draft {
    border: 2px dashed #6c757d;
}

/* Delete button */
.artwork-btn.btn-delete {
    background: #dc3545;
    color: #fff;
}

.artwork-btn.btn-delete:hover {
    background: #c82333;
}

/* Rejected artwork card styling */
.artburst-artwork-card.is-rejected {
    opacity: 0.8;
}

.artburst-artwork-card.is-rejected .artwork-thumbnail {
    filter: grayscale(50%);
}

/* Rejected feedback styling */
.curator-feedback-section.rejected-feedback {
    background: #f8f9fa;
    border-left-color: #6c757d;
}

.curator-feedback-section.rejected-feedback .curator-feedback-label {
    color: #6c757d;
}

/* Price */
.artwork-info .artwork-price {
    color: #bd264d;
    font-weight: 600;
    font-size: 20px;
    margin: 0 0 15px 0;
}

/* Curator Feedback Section */
.curator-feedback-section {
    background: #fff8e1;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #ffc107;
}

.curator-feedback-label {
    font-size: 14px;
    font-weight: 600;
    color: #856404;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.curator-feedback-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.curator-feedback-note .dashicons {
    font-family: dashicons;
    font-size: 18px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    color: #ffc107;
    flex-shrink: 0;
    margin-top: 2px;
    display: inline-block;
    speak: never;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.curator-feedback-note .dashicons:before {
    font-family: dashicons;
}

.curator-feedback-note .note-text {
    font-size: 13px;
    color: #333;
    line-height: 1.5;
}

/* Action buttons */
.artwork-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
}

.artwork-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.artwork-btn .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    display: inline-block;
    vertical-align: middle;
}

/* Ensure dashicons font is loaded for buttons */
.artwork-btn .dashicons:before {
    font-family: dashicons;
    font-size: 16px;
    line-height: 16px;
}

.artwork-btn.btn-view {
    background: #f5f5f5;
    color: #333;
    border-color: #ddd;
}

.artwork-btn.btn-view:hover {
    background: #e8e8e8;
}

.artwork-btn.btn-edit {
    background: #fff;
    color: #bd264d;
    border-color: #bd264d;
}

.artwork-btn.btn-edit:hover {
    background: #bd264d;
    color: #fff;
}

.artwork-btn.btn-action-needed {
    background: #2196f3;
    color: #fff;
    border-color: #1976d2;
}

.artwork-btn.btn-action-needed:hover {
    background: #1976d2;
}

.artwork-btn.btn-locked {
    background: #f5f5f5;
    color: #999;
    border-color: #ddd;
    cursor: not-allowed;
}

.artwork-btn.btn-resubmit {
    background: #2196f3;
    color: #fff;
    border-color: #1976d2;
}

.artwork-btn.btn-resubmit:hover {
    background: #1976d2;
}

/* Upload dropzone dragover state */
.upload-dropzone.dragover {
    border-color: #bd264d;
    background: rgba(189, 38, 77, 0.05);
}

/* ========================================
   SHOW GRID
======================================== */

.artburst-show-header {
    text-align: center;
    margin-bottom: 40px;
}

.artburst-show-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.show-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Filters */
.artburst-filters-wrapper {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.artburst-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    align-items: end;
}

.filter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-inputs input {
    flex: 1;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.artburst-results-info {
    margin-bottom: 20px;
    font-weight: 500;
    color: #666;
}

/* Loading */
.artburst-loading {
    text-align: center;
    padding: 40px;
}

.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #bd264d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Artwork Grid */
.artburst-artwork-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.artburst-artwork-grid.columns-2 {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.artburst-artwork-grid.columns-3 {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.artburst-artwork-grid.columns-4 {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.artwork-image-wrapper {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.artwork-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.artwork-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
}

.artwork-placeholder .dashicons {
    font-size: 64px;
    color: #adb5bd;
}

/* Sold Indicator */
.sold-dot {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-color: #dc3545;
    border-radius: 50%;
    border: 3px solid #fff;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.sold-banner,
.reserved-banner {
    position: absolute;
    top: 20px;
    left: -30px;
    background-color: #dc3545;
    color: #fff;
    padding: 5px 40px;
    transform: rotate(-45deg);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    z-index: 9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.reserved-banner {
    background-color: #ffc107;
    color: #000;
}

.artwork-title {
    font-size: 18px;
    font-weight: 600;
    margin: 12px 0 8px 0;
}

.artwork-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.artwork-title a:hover {
    color: #bd264d;
}

.artwork-artist {
    font-size: 15px;
    color: #666;
    margin: 0 0 5px 0;
}

.artwork-artist a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.artwork-artist a:hover {
    color: #267e99;
}

.artwork-dimensions {
    font-size: 14px;
    color: #999;
    margin: 3px 0;
}

.artwork-price {
    font-size: 20px;
    font-weight: 700;
    color: #bd264d;
    margin: 10px 0;
}

.availability-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin: 8px 0;
}

.availability-badge.sold {
    background-color: #dc3545;
    color: #fff;
}

.availability-badge.reserved {
    background-color: #ffc107;
    color: #000;
}

.artburst-btn-view {
    width: 100%;
    margin-top: 10px;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

/* Pagination */
.artburst-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination-links {
    display: flex;
    gap: 8px;
}

.page-link {
    padding: 8px 14px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: #bd264d;
    color: #fff;
}

.page-link.current {
    background-color: #bd264d;
    color: #fff;
    font-weight: 600;
}

/* ========================================
   SINGLE PRODUCT PAGE
======================================== */

.artburst-sold-overlay {
    position: relative;
    margin-bottom: 20px;
}

.artburst-product-details {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.artburst-detail-item {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

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

.detail-label {
    font-weight: 600;
    min-width: 120px;
    color: #333;
}

.detail-value {
    color: #666;
}

.detail-value a {
    color: #bd264d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-value a:hover {
    color: #267e99;
}

.detail-value.sold {
    color: #dc3545;
    font-weight: 600;
}

.detail-value.reserved {
    color: #ffc107;
    font-weight: 600;
}

/* ========================================
   PAST SHOWS
======================================== */

.past-shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.past-show-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.past-show-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.show-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.show-logo {
    padding-top: 60%;
    position: relative;
    background: #f5f5f5;
    overflow: hidden;
}

.show-logo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.show-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
}

.show-placeholder .dashicons {
    font-size: 64px;
    color: #adb5bd;
}

.show-info {
    padding: 20px;
}

.show-title {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.show-subtitle {
    color: #666;
    font-size: 15px;
    margin: 0 0 10px 0;
}

.show-dates {
    color: #999;
    font-size: 14px;
    margin: 0;
}

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

@media (max-width: 768px) {
    .artburst-filters {
        grid-template-columns: 1fr;
    }
    
    .artburst-artwork-grid {
        grid-template-columns: 1fr !important;
    }
    
    .artburst-form-row {
        grid-template-columns: 1fr;
    }
    
    .artburst-dashboard-tabs {
        flex-direction: column;
    }
    
    .past-shows-grid {
        grid-template-columns: 1fr;
    }
    
    .artburst-show-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .artburst-auth-container,
    .artburst-artist-dashboard,
    .artburst-show-grid-container,
    .artburst-past-shows {
        padding: 15px;
    }
    
    .artburst-btn,
    .artburst-filter-btn {
        width: 100%;
    }
}

/* ========================================
   ARTIST PUBLIC PROFILE IMPROVEMENTS
======================================== */

.artburst-artist-profile-public {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.artist-profile-header {
    text-align: center;
    margin-bottom: 60px;
}

.artist-headshot-container {
    margin-bottom: 30px;
}

.artist-headshot-large,
.artist-headshot-container img {
    width: 200px;
    height: 200px;
    border-radius: 50% !important;
    object-fit: cover;
    border: 5px solid #bd264d !important;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.artist-headshot-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50% !important;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #ddd !important;
    margin: 0 auto;
}

.artist-headshot-placeholder .dashicons {
    font-size: 80px;
    color: #ccc;
}

.artist-header-info {
    text-align: center;
}

.artist-name {
    font-size: 36px;
    margin: 20px 0 10px 0;
    color: #333;
    font-weight: 700;
}

.artist-quote {
    font-size: 18px;
    font-style: italic;
    color: #666;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-left: 4px solid #bd264d;
    max-width: 800px;
}

.artist-quote p {
    margin: 0;
}

.artist-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.artist-social-links .social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #bd264d;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.artist-social-links .social-link:hover {
    background: #267e99;
    color: #fff !important;
}

.artist-section {
    margin: 50px 0;
}

.artist-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #333;
    border-bottom: 3px solid #bd264d;
    padding-bottom: 10px;
}

.artist-bio {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

.work-examples-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.work-example-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.work-example-item img,
.work-example-item .artwork-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: block;
}

.work-example-item:hover img,
.work-example-item:hover .artwork-image {
    transform: scale(1.05);
}

.fun-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.fun-fact-item {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border-left: none;
    margin-bottom: 15px;
}

.fun-fact-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
}

.fun-fact-description {
    color: #666;
    margin: 0;
}

.more-about-qa {
    max-width: 800px;
    margin: 0 auto;
}

.qa-item {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.qa-question {
    font-size: 20px;
    font-weight: 600;
    color: #bd264d;
    margin: 0 0 15px 0;
}

.qa-answer {
    color: #666;
    line-height: 1.6;
}

.qa-answer p {
    margin: 0 0 10px 0;
}

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

.artist-artwork-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.artwork-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artwork-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.artwork-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.artwork-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.artwork-card h4 {
    font-size: 18px;
    margin: 15px;
    color: #333;
}

.artwork-card .price {
    font-size: 20px;
    font-weight: 700;
    color: #bd264d;
    margin: 0 15px 15px 15px;
}

/* Responsive adjustments for public profile */
@media (max-width: 768px) {
    .artburst-artist-profile-public {
        padding: 20px 15px;
    }
    
    .artist-name {
        font-size: 28px;
    }
    
    .artist-quote {
        font-size: 16px;
        padding: 15px;
    }
    
    .artist-headshot-large,
    .artist-headshot-container img,
    .artist-headshot-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .work-examples-gallery,
    .artist-artwork-grid {
        grid-template-columns: 1fr;
    }
    
    .artist-social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .artist-social-links .social-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .artist-section h2 {
        font-size: 24px;
    }
}

/* Artwork Actions */
.artwork-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.artburst-btn-small {
    padding: 6px 12px !important;
    font-size: 13px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
}

.artburst-btn-small .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.edit-artwork-btn {
    background: #2271b1 !important;
    color: #fff !important;
    border: none;
    cursor: pointer;
}

.edit-artwork-btn:hover {
    background: #135e96 !important;
}

.edit-artwork-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Show badges in artwork list */
.show-type-badge,
.show-status-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 8px;
}

.show-type-badge.boutique {
    background: #7c3aed;
    color: #fff;
}

.show-type-badge.show {
    background: #0891b2;
    color: #fff;
}

.show-status-badge.active {
    background: #10b981;
    color: #fff;
}

.show-status-badge.upcoming {
    background: #f59e0b;
    color: #fff;
}

.show-status-badge.closed {
    background: #6b7280;
    color: #fff;
}

/* Shipping zones table */
.shipping-zones-info table {
    width: 100%;
    border-collapse: collapse;
}

.shipping-zones-info table th,
.shipping-zones-info table td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}

.shipping-zones-info table th {
    background: #f5f5f5;
    font-weight: 600;
}

.shipping-zones-info h4 {
    margin: 0 0 10px 0;
    color: #333;
}

/* ========================================
   SUBMISSION STATUS NOTICES
======================================== */

/* Submission Status Indicators */
.artburst-submission-status {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0 25px 0;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-open .status-dot {
    background: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

.status-closed .status-dot {
    background: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

.status-warning .status-dot,
.status-dot.warning {
    background: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.status-text strong {
    font-weight: 600;
}

.status-open .status-text strong {
    color: #28a745;
}

.status-closed .status-text strong {
    color: #dc3545;
}

.status-warning .status-text strong {
    color: #856404;
}

/* Curation Alert Link */
.curation-alert-link {
    color: #856404;
    text-decoration: underline;
    font-weight: 500;
    margin-left: 5px;
}

.curation-alert-link:hover {
    color: #533f03;
}

/* Profile Incomplete Warning */
.artburst-profile-incomplete-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 12px 18px;
    margin: 15px 0;
    color: #856404;
    font-size: 14px;
}

.artburst-profile-incomplete-warning .dashicons {
    color: #ffc107;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.artburst-profile-incomplete-warning .complete-profile-link {
    margin-left: auto;
    color: #856404;
    font-weight: 600;
    text-decoration: none;
    background: rgba(255, 193, 7, 0.3);
    padding: 5px 12px;
    border-radius: 4px;
    white-space: nowrap;
}

.artburst-profile-incomplete-warning .complete-profile-link:hover {
    background: rgba(255, 193, 7, 0.5);
}
}

/* Incomplete Field Indicators */
.artburst-form-group.field-incomplete {
    position: relative;
}

.artburst-form-group.field-incomplete > label:first-child::after,
h3.field-incomplete-header::after,
#work-examples-section.field-incomplete #work-examples-dropzone::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #f59e0b;
    border-radius: 50%;
    margin-left: 8px;
    vertical-align: middle;
    cursor: help;
}

.artburst-form-group.field-incomplete > label:first-child:hover::before,
h3.field-incomplete-header:hover::before {
    content: 'Please Complete this Part of Your Profile';
    position: absolute;
    top: -35px;
    left: 0;
    background: #1f2937;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

h3.field-incomplete-header {
    position: relative;
}

/* Profile photo section incomplete */
.profile-photo-section.field-incomplete .profile-header-photo-label::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #f59e0b;
    border-radius: 50%;
    margin-left: 8px;
    vertical-align: middle;
}

/* Boutique Artist Form Styling */
.boutique-artist-section .artburst-input,
.boutique-artist-section input[type="text"],
.boutique-artist-section input[type="url"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.boutique-artist-section .artburst-input:focus,
.boutique-artist-section input[type="text"]:focus,
.boutique-artist-section input[type="url"]:focus {
    border-color: #9333ea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

/* Editing closed badges and notices */
.editing-closed-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #dc3545;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: 'Heebo', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.editing-closed-badge .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    line-height: 14px;
}

.editing-closed-notice {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 13px;
}

/* Disabled artwork card */
.artburst-artwork-card.editing-disabled {
    opacity: 0.8;
}

.edit-disabled-btn,
.artburst-btn-disabled {
    background: #ccc !important;
    color: #666 !important;
    border-color: #ccc !important;
    cursor: not-allowed;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
}

.edit-disabled-btn .dashicons,
.artburst-btn-disabled .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

/* Image Cropper Modal */
.artburst-crop-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 20px;
}

.artburst-crop-modal {
    background: #fff;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.crop-modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.crop-modal-header h3 {
    font-family: 'Heebo', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #1d2327;
}

.crop-modal-header p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.crop-modal-body {
    padding: 25px;
    background: #f5f5f5;
}

.crop-container {
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crop-container img {
    max-width: 100%;
    max-height: 400px;
    display: block;
}

.crop-modal-footer {
    padding: 15px 25px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.crop-modal-footer .button {
    padding: 10px 24px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
}

.crop-modal-footer .button-primary {
    background: #bd264d;
    border-color: #bd264d;
    color: #fff;
}

.crop-modal-footer .button-primary:hover {
    background: #a01d40;
    border-color: #a01d40;
}

/* Drag over state for photo trigger */
.artist-headshot-editable.drag-over {
    border-color: #bd264d !important;
    box-shadow: 0 0 0 3px rgba(189, 38, 77, 0.2);
}

.artist-headshot-editable.drag-over .headshot-edit-overlay {
    opacity: 1;
}

/* Generic Modal Styles */
.artburst-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    animation: fadeIn 0.2s ease;
}

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

.artburst-modal {
    background: #fff;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.artburst-modal .modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.artburst-modal .modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1d2327;
}

.artburst-modal .modal-body {
    padding: 25px;
}

.artburst-modal .modal-body p {
    margin: 0;
    color: #646970;
    font-size: 14px;
    line-height: 1.6;
}

.artburst-modal .modal-footer {
    padding: 15px 25px 25px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.artburst-modal .btn-cancel {
    padding: 10px 20px;
    background: #f0f0f0;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #646970;
    cursor: pointer;
    transition: all 0.2s;
}

.artburst-modal .btn-cancel:hover {
    background: #e0e0e0;
}

.artburst-modal .btn-confirm {
    padding: 10px 20px;
    background: #bd264d;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.artburst-modal .btn-confirm:hover {
    background: #a01d40;
}

.artburst-modal .btn-confirm:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.artburst-modal .btn-confirm .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 5px;
}

.artburst-modal .btn-dashboard {
    display: inline-block;
    padding: 12px 30px;
    background: #bd264d;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.artburst-modal .btn-dashboard:hover {
    background: #a01d40;
    color: #fff;
}

.artburst-modal .btn-close-error {
    padding: 10px 30px;
    background: #f0f0f0;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #1d2327;
    cursor: pointer;
    transition: all 0.2s;
}

.artburst-modal .btn-close-error:hover {
    background: #e0e0e0;
}

/* Spinner animation for modal buttons */
.artburst-modal .dashicons.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Info Tooltip */
.artburst-info-tooltip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    cursor: help;
    position: relative;
}

.artburst-info-tooltip .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #0073aa;
}

.artburst-info-tooltip:hover .dashicons {
    color: #005a87;
}

/* Native tooltip styling enhancement via title attribute */
.artburst-info-tooltip[title] {
    position: relative;
}

/* Checkbox and Radio Groups */
.artburst-checkbox-group,
.artburst-radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.artburst-checkbox-group .checkbox-label,
.artburst-radio-group .radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.artburst-checkbox-group .checkbox-label:hover,
.artburst-radio-group .radio-label:hover {
    background: #f0f0f0;
    border-color: #ccc;
}

.artburst-checkbox-group .checkbox-label input,
.artburst-radio-group .radio-label input {
    margin: 0;
}

.artburst-checkbox-group .checkbox-label input:checked + span,
.artburst-radio-group .radio-label input:checked ~ span {
    font-weight: 500;
}

@media (min-width: 600px) {
    .artburst-checkbox-group,
    .artburst-radio-group {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .artburst-checkbox-group .checkbox-label,
    .artburst-radio-group .radio-label {
        flex: 0 0 auto;
    }
}
