/* Artist styles */
.artist-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(66, 153, 225, 0.1);
}

.artist-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(66, 153, 225, 0.05)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.artist-header-content {
    position: relative;
    z-index: 1;
}

.artist-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding-top: 40px;
    background: #fff;
    overflow: hidden;
}

.artist-image:hover {
    transform: scale(1.02) translateY(-5px);
}

.artist-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
    background: linear-gradient(45deg, #1a1a1a, #4a4a4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.artist-bio {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid #4299e1;
}

.artist-social {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: #fff;
    border-radius: 50px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.social-link i {
    font-size: 1.3rem;
}

.social-link span {
    font-size: 1rem;
}

/* Events section redesign */
.events-section {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 3.5rem;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4299e1, #667eea);
    border-radius: 2px;
}

.events-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.events-table th {
    background: #f8f9fa;
    padding: 1.25rem;
    font-weight: 600;
    color: #4a4a4a;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.events-table td {
    padding: 1.25rem;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

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

.event-date {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.event-time {
    color: #666;
    font-size: 0.95rem;
}

.event-title {
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.event-title:hover {
    color: #2b6cb0;
}

.event-location {
    color: #666;
    font-size: 0.95rem;
}

.btn-ticket {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #4299e1;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.2);
}

.btn-ticket:hover {
    background: #2b6cb0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 153, 225, 0.3);
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .artist-header {
        padding: 3rem 0;
        margin-bottom: 3rem;
    }

    .artist-title {
        font-size: 2.5rem;
        margin-top: 1.5rem;
    }

    .artist-bio {
        font-size: 1.2rem;
    }

    .events-section,
    .booking-section {
        padding: 2.5rem;
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .events-table th,
    .events-table td {
        padding: 1rem;
    }

    .social-link {
        padding: 0.6rem 1.2rem;
    }

    .gallery-grid {
        gap: 1.5rem;
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    .artist-title {
        font-size: 2rem;
    }

    .artist-bio {
        font-size: 1.1rem;
    }

    .events-section,
    .booking-section {
        padding: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .gallery-grid {
        gap: 1rem;
        margin: 1.5rem 0;
    }
}

/* Events styles */
.events-header {
    background-color: #f8f9fa;
    margin-bottom: 2rem;
}

#calendar {
    min-height: 600px;
}

.fc-toolbar-title {
    font-size: 1.5rem !important;
    font-weight: 500;
}

.fc-button-primary {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
}

.fc-button-primary:hover {
    background-color: #0b5ed7 !important;
    border-color: #0a58ca !important;
}

.fc-event {
    cursor: pointer;
    transition: all 0.2s ease;
}

.fc-event:hover {
    transform: scale(1.02);
}

.fc-event-title {
    font-weight: 500;
}

.fc-event-time {
    font-size: 0.9em;
}

.table th {
    font-weight: 500;
}

.badge {
    font-weight: 500;
}

/* Responsive styles */
@media (max-width: 768px) {
    .artist-header {
        text-align: center;
    }
    
    .artist-header img {
        margin-bottom: 2rem;
    }
    
    .fc-toolbar {
        flex-direction: column;
    }
    
    .fc-toolbar-chunk {
        margin-bottom: 1rem;
    }
    
    .fc-header-toolbar {
        margin-bottom: 1.5rem !important;
    }
}

/* Tooltip styles */
.tippy-box {
    background-color: #343a40;
    color: white;
    border-radius: 4px;
    font-size: 0.9rem;
}

.tippy-arrow {
    color: #343a40;
}

/* Animation styles */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

/* Reset i osnovni stilovi */
.scardona-wrap {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

/* Geometrijski elementi u pozadini */
.scardona-wrap::before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    background: 
        radial-gradient(circle at 5% 10%, rgba(66, 153, 225, 0.02) 0%, transparent 15%),
        radial-gradient(circle at 95% 20%, rgba(66, 153, 225, 0.02) 0%, transparent 15%),
        radial-gradient(circle at 15% 50%, rgba(66, 153, 225, 0.02) 0%, transparent 15%),
        radial-gradient(circle at 85% 80%, rgba(66, 153, 225, 0.02) 0%, transparent 15%);
}

.geometric-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.geometric-element {
    position: absolute;
    opacity: 0.03;
}

.circle {
    width: 300px;
    height: 300px;
    border: 1px solid rgba(66, 153, 225, 0.2);
    border-radius: 50%;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid rgba(66, 153, 225, 0.1);
}

.line {
    width: 400px;
    height: 1px;
    background: rgba(66, 153, 225, 0.1);
    transform: rotate(45deg);
}

/* Pozicije geometrijskih elemenata */
.geometric-element:nth-child(1) { top: 5%; left: 5%; }
.geometric-element:nth-child(2) { top: 30%; right: 10%; }
.geometric-element:nth-child(3) { bottom: 20%; left: 15%; }
.geometric-element:nth-child(4) { bottom: 10%; right: 20%; }

/* Animacije */
@keyframes float {
    0% { transform: translate(0, 0) rotate(0); }
    25% { transform: translate(10px, 10px) rotate(5deg); }
    50% { transform: translate(0, 20px) rotate(0); }
    75% { transform: translate(-10px, 10px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0); }
}

@keyframes moveBackground {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 1000px; }
}

/* Header stilovi */
.page-header {
    background: #f8f9fa;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
}

.page-description {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Filteri */
.events-filters {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.filter-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

.filter-select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    margin-bottom: 1rem;
}

/* Tablica događanja */
.events-table {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
}

.events-table th {
    background: #f8f9fa;
    padding: 1rem;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #dee2e6;
}

.events-table td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #dee2e6;
}

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

.event-date {
    font-weight: 600;
    color: #1a1a1a;
}

.event-time {
    color: #666;
    font-size: 0.9rem;
}

.event-title {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
}

.event-title:hover {
    color: #003d82;
    text-decoration: underline;
}

.event-location {
    color: #666;
}

/* Gumb za kupnju ulaznica */
.btn-ticket {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #0056b3;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-ticket:hover {
    background: #003d82;
    color: #fff;
    text-decoration: none;
}

/* Status ulaznica */
.ticket-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-available {
    background: #e3f2fd;
    color: #0056b3;
}

.status-limited {
    background: #fff3cd;
    color: #856404;
}

.status-sold-out {
    background: #f8d7da;
    color: #721c24;
}

.status-free {
    background: #d4edda;
    color: #155724;
}

/* Stranica izvođača */
.artist-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    opacity: 0.3;
    z-index: 0;
}

.artist-header-content {
    position: relative;
    z-index: 1;
}

.artist-image {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding-top: 40px;
}

.artist-image:hover {
    transform: scale(1.02);
}

.artist-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.artist-social {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-link[aria-label="Facebook"]:hover {
    background: #1877f2;
    color: #fff;
}

.social-link[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.social-link[aria-label="TikTok"]:hover {
    background: #000;
    color: #fff;
}

.social-link[aria-label="X"]:hover {
    background: #000;
    color: #fff;
}

.social-link[aria-label="Web"]:hover {
    background: #0056b3;
    color: #fff;
}

/* Sekcija događanja */
.events-section {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 2rem;
    padding: 2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4299e1, transparent);
    border-radius: 3px;
}

.events-table-wrap {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.events-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.events-table th {
    background: #f8f9fa;
    padding: 1rem;
    font-weight: 600;
    text-align: left;
    color: #4a4a4a;
    border-bottom: 2px solid #dee2e6;
}

.events-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

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

.event-date {
    font-weight: 600;
    color: #1a1a1a;
    display: block;
}

.event-time {
    font-size: 0.9rem;
    color: #666;
}

.event-title {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.event-title:hover {
    color: #0056b3;
}

.event-location {
    color: #666;
    font-size: 0.95rem;
}

.btn-ticket {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-ticket:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
    color: #fff;
}

.ticket-status {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-available {
    background: #e3f2fd;
    color: #1565c0;
}

.status-limited {
    background: #fff3e0;
    color: #e65100;
}

.status-sold-out {
    background: #ffebee;
    color: #c62828;
}

.status-free {
    background: #e8f5e9;
    color: #2e7d32;
}

/* Animacije */
.fade-in {
    animation: fadeIn 0.6s ease-in-out forwards;
    opacity: 0;
}

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

/* Responzivni dizajn */
@media (max-width: 768px) {
    .artist-header {
        padding: 2rem 0;
    }

    .artist-title {
        font-size: 2rem;
        margin-top: 1.5rem;
    }

    .artist-bio {
        font-size: 1rem;
    }

    .events-table-wrap {
        margin: 0 -15px;
        border-radius: 0;
    }

    .events-table th,
    .events-table td {
        padding: 0.75rem;
    }

    .event-date {
        font-size: 0.9rem;
    }

    .btn-ticket {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* Kalendar stilovi */
.calendar-wrap {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 1rem;
    margin-bottom: 2rem;
}

.fc-toolbar-title {
    font-size: 1.5rem !important;
    font-weight: 600;
    color: #1a1a1a;
}

.fc-button-primary {
    background-color: #007bff !important;
    border-color: #007bff !important;
}

.fc-button-primary:hover {
    background-color: #0056b3 !important;
    border-color: #0056b3 !important;
}

.fc-event {
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    padding: 2px 4px;
    font-size: 0.85rem;
}

.fc-event:hover {
    background-color: #0056b3;
}

.fc-day-today {
    background-color: #f8f9fa !important;
}

.fc-popover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none !important;
}

/* Filter stilovi */
.filter-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.filter-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #4a4a4a;
}

.filter-select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    background: #fff;
    color: #333;
}

.filter-select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* Tooltip stilovi */
.tippy-box {
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    font-size: 0.9rem;
}

.tippy-arrow {
    color: #333;
}

/* Loading indikator */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Spotify embed stilovi */
.artist-spotify-embed {
    background: rgba(0, 0, 0, 0.05);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.artist-spotify-embed iframe {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border: none;
}

/* Artist Links */
.artist-links {
    margin-top: 2rem;
}

/* Streaming servisi */
.artist-streaming {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.streaming-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.streaming-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
    background: #1db954;
}

.streaming-link i {
    font-size: 1.2rem;
}

/* Booking sekcija */
.booking-section {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 4rem;
    padding: 3.5rem;
}

.booking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.booking-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #e3f2fd;
    color: #1565c0;
    border-radius: 4px;
    font-weight: 500;
}

.booking-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.booking-contact i {
    color: #666;
}

.booking-contact a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.booking-contact a:hover {
    color: #007bff;
}

.rider-downloads {
    display: flex;
    gap: 1rem;
}

.rider-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rider-link:hover {
    background: #e9ecef;
    color: #007bff;
}

/* Proizvodi */
.artist-products {
    margin-top: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

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

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

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-meta {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.product-category,
.product-genre {
    display: inline-block;
    background: #f5f5f5;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    margin: 0.25rem;
}

.product-category a {
    color: #666;
    text-decoration: none;
}

.product-category a:hover {
    color: #000;
}

.product-title {
    font-size: 1.25rem;
    margin: 0.5rem 0;
    line-height: 1.4;
}

.product-title a {
    color: #333;
    text-decoration: none;
}

.product-title a:hover {
    color: #000;
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin: 0.5rem 0 1rem;
}

.add-to-cart-button {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s;
    margin-top: auto;
}

.add-to-cart-button:hover {
    background: #0056b3;
    color: #fff;
}

.onsale {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff4444;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    z-index: 1;
}

/* Responsive prilagodbe */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Artist Products in Header */
.artist-products {
    margin-top: 2rem;
}

.artist-products .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

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

.product-info {
    padding: 1rem;
}

.product-title {
    font-size: 1rem;
    margin: 0 0 0.5rem;
}

.product-title a {
    color: #333;
    text-decoration: none;
}

.product-price {
    font-weight: 600;
    color: #e91e63;
    margin-bottom: 1rem;
}

.add-to-cart-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.add-to-cart-button:hover {
    background: #000;
    color: #fff;
}

/* Booking Contact Form */
.booking-contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.booking-contact-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.booking-contact-form .wpcf7-form {
    display: grid;
    gap: 1rem;
}

.booking-contact-form input[type="text"],
.booking-contact-form input[type="email"],
.booking-contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.booking-contact-form input[type="text"]:focus,
.booking-contact-form input[type="email"]:focus,
.booking-contact-form textarea:focus {
    border-color: #333;
    outline: none;
}

.booking-contact-form input[type="submit"] {
    background: #333;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.booking-contact-form input[type="submit"]:hover {
    background: #000;
}

/* Events Section */
.events-subtitle {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.events-table.past-events {
    opacity: 0.8;
}

.events-table.past-events tr {
    background: #f8f9fa;
}

.ticket-status.status-past {
    background: #6c757d;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    display: inline-block;
}

@media (max-width: 768px) {
    .artist-products .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .booking-contact-form {
        margin-top: 2rem;
    }
}

/* Artist Products Section */
.artist-products-section {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 2rem 0;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-meta {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-category,
.product-genre {
    display: inline-block;
    background: #f5f5f5;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
    transition: all 0.3s;
}

.product-category:hover,
.product-genre:hover {
    background: #e9ecef;
    color: #333;
}

.product-category a {
    color: inherit;
    text-decoration: none;
}

.product-title {
    font-size: 1.4rem;
    margin: 0.75rem 0;
    line-height: 1.4;
}

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

.product-title a:hover {
    color: #007bff;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin: 1rem 0 1.5rem;
}

.add-to-cart-button {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    margin-top: auto;
    font-size: 1.1rem;
}

.add-to-cart-button:hover {
    background: #0056b3;
    color: #fff;
    transform: translateY(-2px);
}

.onsale {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #ff4444;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    z-index: 1;
}

/* Responsive prilagodbe */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .product-title {
        font-size: 1.2rem;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    .add-to-cart-button {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Artist Gallery Section */
.artist-gallery-section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-link {
    display: block;
    height: 100%;
    width: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

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

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Responsive prilagodbe za galeriju */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
} 