/*
Theme Name: Hit Records
Theme URI: https://hitrecords.hr
Author: Hit Records
Author URI: https://hitrecords.hr
Description: Moderna tema za Hit Records glazbeni dućan
Version: 1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hit-records
*/

:root {
    --primary-color: #FF69B4;
    --secondary-color: #FF1493;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --accent-color: #FF69B4;
    --hover-color: #FF1493;
    --gradient-primary: linear-gradient(135deg, #ff69b4 0%, #FF69B4 50%, #b4ff69 100%);
    --color-white: #ffffff;
    --color-primary: #FF69B4;
    --color-primary-dark: #cc548e;
    --color-text: #333333;
    --color-gray-light: #f0f0f0;
}

/* Osnovna struktura stranice */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Hard reset protiv bilo kakvog gornjeg razmaka */
html, body, #page, #masthead, .site-topbar {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#page {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.site-content {
    /* uklonjen padding-top po zahtjevu */
    flex: 1 0 auto;
    padding-bottom: 4rem;
}

.site-footer {
    flex-shrink: 0;
    margin-top: 0;
    width: 100%;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #ffffff;
    padding-top: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: var(--topbar-height);
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0;
}

/* Admin-bar offset */
body.admin-bar .site-header { top: calc(var(--topbar-height) + 32px); }

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.site-branding {
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.site-branding img {
    height: 90px;
    width: auto;
    position: relative;
    display: block;
    padding: 5px 0;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

/* Glavni meni */
.main-navigation {
    display: flex;
    align-items: center;
    margin-left: auto;
    position: relative;
    z-index: 5;
}

#primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

#primary-menu > li {
    position: relative;
    display: inline-flex;
    align-items: center;
}

#primary-menu > li > a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

#primary-menu > li > a:hover {
    color: var(--primary-color);
    background: var(--light-gray);
}

#primary-menu > li.current-menu-item > a {
    color: white;
    background: var(--primary-color);
}

/* Košarica */
.header-cart {
    margin-left: 1rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--light-gray);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-color);
}

.cart-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.cart-count {
    background: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    min-width: 1.5rem;
    text-align: center;
}

.cart-total {
    font-weight: 600;
    color: var(--primary-color);
}

.cart-link:hover .cart-count {
    background: white;
    color: var(--primary-color);
}

.cart-link:hover .cart-total {
    color: white;
}

/* Mobilna navigacija */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }

    #primary-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        display: none;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    #primary-menu.active {
        display: flex;
    }

    #primary-menu > li {
        width: 100%;
    }

    #primary-menu > li > a {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 8px;
    }

    #primary-menu > li > a:hover {
        background: var(--light-gray);
        transform: translateX(5px);
    }

    .header-cart {
        margin-left: 0;
        margin-right: 1rem;
    }

    .site-header .container {
        flex-wrap: wrap;
        padding: 1rem;
    }

    .site-title {
        font-size: 1.2rem;
    }

    .site-content {
        padding-top: 0; /* uklonjen top padding zbog topbara */
    }
}

@media (max-width: 768px) {
    .site-header .container {
        padding: 0 1rem;
    }

    .site-title {
        font-size: 1.2rem;
    }
}

/* Animacije */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.site-header.scrolled-up {
    animation: slideDown 0.3s ease forwards;
}

.site-header.scrolled-down {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

/* Scroll efekti */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .primary-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .primary-menu.active {
        display: flex;
    }
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem 0 1rem;
    margin-top: 4rem;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-widget h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
}

.footer-menu a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-contact li i {
    width: 16px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 0 1rem;
    }

    .footer-widgets {
        gap: 1.5rem;
    }

    .footer-widget {
        text-align: center;
    }

    .footer-widget h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
    }
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    color: white;
}

.footer-social-link.facebook:hover { background: #1877f2; }
.footer-social-link.instagram:hover { background: #e4405f; }
.footer-social-link.youtube:hover { background: #ff0000; }
.footer-social-link.twitter:hover { background: #000000; }

/* Newsletter sekcija */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-1.343 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
    animation: heroPattern 60s linear infinite;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.newsletter-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    padding: 0 2rem;
    background: white;
    border: none;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--light-gray);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
    }
    
    .newsletter-form button {
        position: static;
        width: 100%;
        margin-top: 1rem;
        padding: 1rem;
    }
}

/* Glavni sadržaj */
.site-content {
    min-height: calc(100vh - 80px - 400px);
}

/* Hero Section - zajednički stilovi */
.hero-section,
.shop-hero-section,
.artist-hero-section,
.category-hero {
    background: var(--gradient-primary);
    padding: 4rem 0;
    position: relative;
    margin-bottom: 3rem;
}

.hero-section::before,
.shop-hero-section::before,
.artist-hero-section::before,
.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/pattern.png');
    opacity: 0.1;
    pointer-events: none;
}

.hero-content,
.shop-hero-content,
.artist-hero-content,
.category-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.hero-text,
.shop-hero-text,
.artist-hero-text,
.category-hero .hero-text {
    text-align: center;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.hero-text h1,
.shop-hero-text h1,
.artist-hero-text h1,
.category-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-text p,
.shop-hero-text p,
.artist-hero-text p,
.category-hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Category Hero specifični stilovi */
.category-hero {
    background: var(--gradient-primary);
    padding: 4rem 0;
    position: relative;
    margin-bottom: 3rem;
}

.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/pattern.png');
    opacity: 0.1;
    pointer-events: none;
}

.category-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.category-hero .hero-text {
    text-align: center;
    color: var(--color-white);
}

.category-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Zajednički stilovi za pretraživanje */
.search-filters-container {
    max-width: 800px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

/* Zajednički stilovi za pretraživanje */
.search-filters-container2 {
    max-width: 740px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}


.filter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.search-group {
    flex: 1;
    min-width: 670px;
    position: relative;
}

.search-group input[type="search"] {
    width: 100%;
    padding: 0.8rem 1rem;
    padding-right: 3rem;
    border: none;
    border-radius: 4px;
    background: var(--color-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-group input[type="search"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-primary);
}

.search-submit {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 3rem;
    border: none;
    background: transparent;
    color: var(--color-primary);
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    color: var(--color-primary-dark);
}

.filter-group {
    flex: 0 0 auto;
    min-width: 180px;
}

.filter-group select {
    width: 100%;
    padding: 0.8rem 2rem 0.8rem 1rem;
    border: none;
    border-radius: 4px;
    background: var(--color-white);
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-6-6h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
}

/* Responzivni dizajn */
@media (max-width: 768px) {
    .hero-text h1,
    .shop-hero-text h1,
    .artist-hero-text h1,
    .category-hero h1 {
        font-size: 2rem;
    }
    
    .hero-text p,
    .shop-hero-text p,
    .artist-hero-text p,
    .category-hero .hero-description {
        font-size: 1rem;
    }
    
    .search-filters-container {
        padding: 1rem;
    }
    
    .filter-form {
        flex-direction: column;
    }
    
    .search-group,
    .filter-group {
        min-width: 100%;
    }
    
    .search-group input[type="search"],
    .filter-group select {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form button {
        width: 100%;
    }

    .products {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
}

/* Uklanjamo stare stilove za products-grid */
.products-grid {
    display: none;
}

/* Dodajemo margine za sekcije proizvoda */
.featured-products,
.new-arrivals {
    margin: 4rem 0;
}

.featured-products h2,
.new-arrivals h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.featured-products h2::after,
.new-arrivals h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Osiguravamo da WooCommerce proizvodi koriste grid prikaz */
.featured-products .products,
.new-arrivals .products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

.products::before,
.products::after {
    display: none !important;
}

@media (max-width: 1200px) {
    .featured-products .products,
    .new-arrivals .products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 992px) {
    .featured-products .products,
    .new-arrivals .products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .featured-products .products,
    .new-arrivals .products {
        grid-template-columns: 1fr !important;
    }
    
    .featured-products h2,
    .new-arrivals h2 {
        font-size: 1.8rem;
    }
}

/* Streaming linkovi */
.streaming-links {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
    padding: 0 1rem 1rem;
}

.streaming-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    color: #666;
    transition: all 0.3s ease;
}

.streaming-link:hover {
    transform: translateY(-2px);
}

.streaming-link.spotify:hover { background: #1DB954; color: #fff; }
.streaming-link.youtube:hover { background: #FF0000; color: #fff; }
.streaming-link.deezer:hover { background: #00C7F2; color: #fff; }
.streaming-link.apple-music:hover { background: #FA243C; color: #fff; }
.streaming-link.tidal:hover { background: #000000; color: #fff; }

/* Proizvodi na naslovnici */
.featured-products,
.new-arrivals {
    padding: 4rem 0;
}

.featured-products h2,
.new-arrivals h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.featured-products h2::after,
.new-arrivals h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e74c3c;
    border-radius: 3px;
}

.hero-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 1rem;
    height: 100%;
}

.mosaic-main {
    grid-column: 1 / -1;
    grid-row: 1 / 3;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.mosaic-link {
    display: block;
    height: 100%;
    position: relative;
}

.mosaic-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mosaic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.mosaic-overlay h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
}

.mosaic-artist {
    font-size: 0.9rem;
    opacity: 0.8;
}

.mosaic-link:hover img {
    transform: scale(1.05);
}

.mosaic-link:hover .mosaic-overlay {
    transform: translateY(-5px);
}

/* Grid proizvoda */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

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

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
}

/* Stilovi za prikaz proizvoda */
.product-artists {
    margin: 0.25rem 0 1rem;
    font-size: 1rem;
    text-align: center;
}

.product-artist-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.product-artist-link:hover {
    color: var(--secondary-color);
}

/* Streaming linkovi */
.streaming-links {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    background: rgba(28, 44, 92, 0.05);
    padding: 1rem;
    border-radius: 8px;
}

.streaming-link {
    color: #666;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    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);
}

.streaming-link.spotify:hover {
    color: #1DB954;
    background: rgba(29, 185, 84, 0.1);
}

.streaming-link.youtube:hover {
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
}

.streaming-link.apple-music:hover {
    color: #FA57C1;
    background: rgba(250, 87, 193, 0.1);
}

.streaming-link.deezer:hover {
    color: #00C7F2;
    background: rgba(0, 199, 242, 0.1);
}

.streaming-link.tidal:hover {
    color: #000000;
    background: rgba(0, 0, 0, 0.1);
}

/* Sekcije proizvoda */
.featured-products,
.new-arrivals {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* WooCommerce proizvodi */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100% !important;
}

.woocommerce ul.products li.product {
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    min-width: 250px !important;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex !important;
    flex-direction: column;
    position: relative;
}

.woocommerce ul.products li.product::after {
    display: none !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title::after {
    display: none !important;
}

/* Uklanjamo sve potencijalne dekorativne elemente s kartica */
.woocommerce ul.products li.product *::after {
    display: none !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.2rem !important;
    padding: 1.25rem 1.25rem 0.5rem !important;
    margin: 0 !important;
    color: var(--text-color);
    font-weight: 600;
    text-align: center;
    min-height: 3em;
    line-height: 1.4;
    border: none !important;
}

.woocommerce ul.products li.product a img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    margin: 0 !important;
    transition: transform 0.3s ease;
}

.woocommerce ul.products li.product:hover a img {
    transform: scale(1.05);
}

.woocommerce ul.products li.product .artist {
    padding: 0 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.woocommerce ul.products li.product .price {
    padding: 0.5rem 1.25rem !important;
    margin-bottom: 1rem !important;
    color: var(--primary-color) !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    display: block !important;
}

.woocommerce ul.products li.product .price del {
    color: #666 !important;
    opacity: 0.5;
    font-size: 1.1rem !important;
    font-weight: 400 !important;
    margin-right: 0.5rem;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none !important;
    font-weight: 700 !important;
}

.woocommerce ul.products li.product {
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
    padding-bottom: 1rem !important;
}

.woocommerce ul.products li.product .button {
    margin: 0 1.25rem 1.25rem !important;
    padding: 0.8em 1.5em !important;
    background: var(--primary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    font-weight: 500 !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    font-size: 1rem !important;
    width: calc(100% - 2.5rem) !important;
    display: block !important;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
}

.woocommerce ul.products li.product .button:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
}

@media (max-width: 1400px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, minmax(250px, 1fr)) !important;
    }
}

@media (max-width: 992px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(250px, 1fr)) !important;
    }
}

@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(200px, 1fr)) !important;
    }
    
    .woocommerce ul.products li.product {
        min-width: 200px !important;
    }
    
    .woocommerce ul.products li.product a img {
        height: 200px !important;
    }
}

@media (max-width: 576px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }
    
    .woocommerce ul.products li.product {
        min-width: 100% !important;
    }
}

/* Kategorije */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
    text-decoration: none;
    color: white;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    margin: 0;
    font-size: 1.2rem;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.category-card:hover h3 {
    transform: translateY(-5px);
}

/* Responzivnost */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form button {
        width: 100%;
    }

    .products {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}

/* Single Product */
.single-product .product-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.single-product .product-gallery {
    position: sticky;
    top: 100px;
    width: 100%;
}

.single-product .product_title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.single-product .product-artists {
    text-align: left;
    margin: 0.25rem 0 1.5rem;
}

.single-product .product-artist-link {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.single-product .product-artist-link:hover {
    color: var(--secondary-color);
}

.single-product .price {
    font-size: 2rem !important;
    color: var(--primary-color) !important;
    margin: 1.5rem 0 !important;
}

.single-product .stock-status {
    margin-bottom: 1.5rem;
}

.single-product .stock-status .in-stock {
    color: #28a745;
    font-weight: 500;
}

.single-product .stock-status .out-of-stock {
    color: #dc3545;
    font-weight: 500;
}

.single-product .cart-section {
    margin: 1rem 0 2rem;
}

.single-product .cart {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.single-product .quantity {
    position: relative;
    width: 120px !important;
}

.single-product .quantity input {
    width: 100% !important;
    height: 48px !important;
    padding: 0.5rem 2rem !important;
    text-align: center;
    border: 1px solid var(--border-color) !important;
    border-radius: 4px !important;
    font-size: 1.1rem;
    -moz-appearance: textfield;
}

.single-product .quantity input::-webkit-outer-spin-button,
.single-product .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.single-product .quantity::before,
.single-product .quantity::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
    z-index: 1;
}

.single-product .quantity::before {
    content: '\f068';
    left: 8px;
}

.single-product .quantity::after {
    content: '\f067';
    right: 8px;
}

.single-product .single_add_to_cart_button {
    flex: 1;
    height: 48px !important;
    background: var(--primary-color) !important;
    color: white !important;
    padding: 0 2rem !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    min-width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.single-product .single_add_to_cart_button:hover {
    background: var(--secondary-color) !important;
}

.single-product .wishlist-button {
    text-align: center;
}

.single-product .wishlist-button a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    height: 48px !important;
    padding: 0 !important;
    background: white !important;
    color: var(--primary-color) !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border: none !important;
    min-width: fit-content;
    display: inline-flex;
}

.single-product .wishlist-button a:hover {
    background: var(--light-gray) !important;
    color: var(--primary-color) !important;
}

.single-product .wishlist-button i {
    font-size: 1.4rem !important;
}

.single-product .product-details {
    margin: 2rem 0;
    text-align: left;
}

.single-product .details-table {
    width: 100%;
    border-collapse: collapse;
}

.single-product .details-table th,
.single-product .details-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.single-product .details-table th {
    width: 30%;
    text-align: left;
    color: #666;
}

.single-product .product-description {
    margin: 2rem 0;
    text-align: left;
}

.single-product .product-streaming {
    margin: 2rem 0;
    text-align: left;
}

.single-product .streaming-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.single-product .streaming-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 1.2rem;
    min-width: fit-content;
    display: inline-flex;
}

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

.single-product .product-spotify-player {
    margin: 2rem 0;
    text-align: left;
}

.single-product .spotify-embed {
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: #282828;
}

.single-product .spotify-embed iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: none;
}

.single-product .related-products {
    margin: 4rem 0;
}

.single-product .related-products h2 {
    text-align: center;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .single-product .product-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .single-product .product-gallery {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .single-product .product_title {
        font-size: 2rem;
    }
    
    .single-product .price {
        font-size: 1.75rem !important;
    }
    
    .single-product .cart {
        padding: 1rem;
    }
    
    .single-product .streaming-links {
        gap: 0.75rem;
    }
    
    .single-product .streaming-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .single-product .spotify-embed iframe {
        height: 300px;
    }
}

/* Popis pjesama */
.product-tracklist {
    margin: 3rem 0;
    width: 100%;
    text-align: left;
}

.product-tracklist h2 {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.disc-section {
    width: 100%;
    margin-bottom: 2rem;
}

.disc-section:last-child {
    margin-bottom: 0;
}

.disc-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: left;
}

.tracklist-table {
    width: 100%;
    border-collapse: collapse;
}

.tracklist-table tr {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.tracklist-table td {
    padding: 0.75rem 0;
}

.track-number {
    width: 30px;
    color: var(--primary-color);
    font-weight: 500;
    text-align: left;
}

.track-title {
    font-weight: 400;
    padding-left: 1rem !important;
    text-align: left;
}

.track-duration {
    width: 60px;
    text-align: right;
    color: #666;
    font-weight: 400;
}

/* Galerija proizvoda */
.woocommerce-product-gallery {
    position: relative;
    width: 100%;
}

.woocommerce-product-gallery > div {
    width: 100% !important;
}

.woocommerce-product-gallery__wrapper {
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
}

.woocommerce-product-gallery__wrapper > div {
    width: 100% !important;
    flex: 0 0 100% !important;
}

.woocommerce-product-gallery .flex-viewport {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 556px !important;
    overflow: hidden !important;
}

.woocommerce-product-gallery__image {
    width: 100% !important;
    height: 556px !important;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    flex: 0 0 100% !important;
}

.woocommerce-product-gallery__image a {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.woocommerce-product-gallery__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    background: var(--light-gray);
}

.woocommerce-product-gallery .flex-control-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem !important;
    padding: 0 !important;
    width: 100%;
}

.woocommerce-product-gallery .flex-control-thumbs li {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 8px;
    overflow: hidden;
}

.woocommerce-product-gallery .flex-control-thumbs img {
    width: 100%;
    height: auto;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.woocommerce-product-gallery .flex-control-thumbs img.flex-active,
.woocommerce-product-gallery .flex-control-thumbs img:hover {
    opacity: 1;
}

/* Lista želja */
.wishlist-button {
    margin-left: 1rem;
}

.yith-wcwl-add-button a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    background: white !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    min-width: fit-content;
    display: inline-flex;
}

.yith-wcwl-add-button a:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px);
}

.yith-wcwl-add-button i {
    font-size: 1.4rem !important;
}

/* Admin stilovi za popis pjesama */
.tracklist-container {
    padding: 1rem;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 1rem 0;
}

.disc-section {
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border: 1px solid #eee;
    border-radius: 4px;
}

.tracks-table {
    margin: 1rem 0;
}

.tracks-table input[type="text"] {
    width: 100%;
}

.tracks-table td {
    padding: 0.5rem;
}

.button.add-track,
.button.add-disc {
    margin: 0.5rem 0;
}

.button.remove-track,
.button.remove-disc {
    color: #dc3545;
}

.woocommerce-product-gallery.images {
    width: 100% !important;
    max-width: none !important;
}

.woocommerce div.product div.images {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
}

/* Breadcrumb */
.woocommerce-breadcrumb {
    margin: 2rem 0 !important;
    padding: 1rem !important;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 0.9rem !important;
    color: #666 !important;
    text-align: left;
}

.woocommerce-breadcrumb a {
    color: var(--primary-color) !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.woocommerce-breadcrumb a:hover {
    color: var(--secondary-color) !important;
    text-decoration: underline !important;
}

.woocommerce-breadcrumb .breadcrumb-separator {
    margin: 0 0.5rem;
    color: #999;
}

/* Cart Page */
.cart-wrapper {
    margin: 3rem 0;
}

.woocommerce-cart-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 2rem;
}

.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 !important;
    border: none !important;
}

.shop_table thead {
    background: var(--light-gray);
}

.shop_table th {
    padding: 1.5rem 1rem !important;
    font-weight: 600;
    text-align: left;
    border: none !important;
}

.shop_table td {
    padding: 1.5rem 1rem !important;
    border-bottom: 1px solid var(--border-color) !important;
    border-top: none !important;
}

.shop_table tr:last-child td {
    border-bottom: none !important;
}

.product-remove a {
    color: #dc3545 !important;
    font-size: 1.5rem;
    text-decoration: none;
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.product-remove a:hover {
    background: #dc3545 !important;
    color: white !important;
}

.product-thumbnail {
    width: 100px;
}

.product-thumbnail img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    border-radius: 8px;
}

.product-name a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-name a:hover {
    color: var(--primary-color);
}

.product-price,
.product-subtotal {
    font-weight: 600;
    color: var(--primary-color);
}

.quantity input {
    width: 80px !important;
    height: 40px !important;
    padding: 0.5rem !important;
    text-align: center;
    border: 1px solid var(--border-color) !important;
    border-radius: 4px !important;
    -moz-appearance: textfield;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.actions {
    background: var(--light-gray);
    padding: 1.5rem !important;
}

.coupon {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    justify-content: flex-start;
}

.coupon label {
    font-weight: 500;
}

.coupon input {
    height: 48px !important;
    padding: 0 1rem !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 4px !important;
    flex: 1;
}

.button {
    height: 48px !important;
    padding: 0 2rem !important;
    background: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    min-width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.button:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.cart-collaterals {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 2rem;
}

.cart_totals {
    width: 100% !important;
}

.cart_totals h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: left;
}

.cart_totals table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.cart_totals th {
    width: 30%;
    padding: 1rem 0;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cart_totals td {
    padding: 1rem 0;
    text-align: right;
    border-bottom: 1px solid var(--border-color);
}

.cart_totals tr:last-child th,
.cart_totals tr:last-child td {
    border-bottom: none;
}

.wc-proceed-to-checkout .button {
    width: 100%;
    text-align: center;
    font-size: 1.1rem !important;
}

@media (max-width: 768px) {
    .shop_table_responsive thead {
        display: none;
    }

    .shop_table_responsive tr td {
        display: block;
        text-align: right;
        padding: 1rem !important;
    }

    .shop_table_responsive tr td::before {
        content: attr(data-title);
        float: left;
        font-weight: 600;
    }

    .product-thumbnail {
        display: none !important;
    }

    .coupon {
        flex-direction: column;
    }

    .coupon input {
        width: 100% !important;
    }

    .coupon .button {
        width: 100%;
    }
}

.cart-empty-message {
    text-align: center;
    padding: 4rem 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin: 2rem 0;
}

.cart-empty-message p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.cart-empty-message .button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cart-empty-message .button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Mini košarica */
.header-cart {
    position: relative;
}

.mini-cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 380px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.header-cart:hover .mini-cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mini-cart-content {
    padding: 1.5rem;
}

.mini-cart-products {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
}

.mini-cart-item {
    display: grid;
    grid-template-columns: 60px 1fr 24px;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.mini-cart-item:last-child {
    border-bottom: none;
}

.item-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.item-details h4 {
    font-size: 0.9rem;
    margin: 0 0 0.5rem;
    color: var(--text-color);
}

.item-price {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin: 0;
}

.mini-cart-item .remove {
    color: #dc3545;
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.mini-cart-item .remove:hover {
    color: #bd2130;
    transform: scale(1.1);
}

.mini-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
}

.mini-cart-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.mini-cart-buttons .button {
    width: 100%;
    text-align: center;
    padding: 0.75rem 0.5rem !important;
    font-size: 0.85rem !important;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.mini-cart-buttons .view-cart {
    background: var(--light-gray) !important;
    color: var(--text-color) !important;
}

.mini-cart-buttons .checkout {
    background: var(--primary-color) !important;
    color: white !important;
}

.mini-cart-empty {
    text-align: center;
    padding: 2rem 0;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .mini-cart-dropdown {
        width: 320px;
        right: -1rem;
    }
    
    .mini-cart-buttons .button {
        font-size: 0.8rem !important;
        padding: 0.75rem 0.25rem !important;
    }
}

/* Toolbar za kategorije proizvoda */
.woocommerce-products-header {
    margin-bottom: 2rem;
}

.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.view-switcher {
    display: flex;
    gap: 10px;
    margin-right: 20px;
}

.view-switcher button {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #999; /* Svjetlija siva za neaktivne ikone */
    font-size: 20px; /* Veće ikone */
    transition: all 0.3s ease;
    width: 40px; /* Fiksna širina */
    height: 40px; /* Fiksna visina */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.view-switcher button:hover {
    color: #333;
    background-color: #f5f5f5;
}

.view-switcher button.active {
    color: #2c2c2c;
    background-color: #f0f0f0;
}

.woocommerce-ordering {
    margin: 0 !important;
}

.woocommerce-ordering select {
    padding: 0.6rem 2.5rem 0.6rem 1rem !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 6px !important;
    background-color: white !important;
    font-size: 0.9rem !important;
    color: var(--text-color) !important;
    cursor: pointer !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.7rem center !important;
    background-size: 1em !important;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.products-search {
    position: relative;
    min-width: 250px;
}

.products-search input[type="search"] {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
}

.products-search button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1rem;
}

/* List view stilovi */
.products.list-view {
    display: block;
    margin: 0;
    padding: 0;
}

ul.products.list-view {
    display: block;
    margin: 0;
    padding: 0;
}

ul.products.list-view li.product {
    width: 100%;
    display: grid;
    grid-template-columns: 60px minmax(200px, 1fr) auto auto;
    gap: 20px;
    align-items: center;
    padding: 12px;
    margin: 0;
    border-bottom: 1px solid #eee;
    background: #fff;
}

ul.products.list-view li.product:hover {
    background: #f9f9f9;
}

ul.products.list-view li.product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 0;
}

ul.products.list-view li.product .product-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

ul.products.list-view li.product .woocommerce-loop-product__title {
    font-size: 15px;
    margin: 0;
    padding: 0;
}

ul.products.list-view li.product .artist {
    font-size: 13px;
    color: #666;
    margin: 0;
}

ul.products.list-view li.product .price {
    font-size: 15px;
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
}

ul.products.list-view li.product .streaming-links {
    display: flex;
    gap: 8px;
    margin: 0;
}

ul.products.list-view li.product .streaming-link {
    width: 24px;
    height: 24px;
    font-size: 14px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.2s;
}

ul.products.list-view li.product .streaming-link:hover {
    color: #333;
}

@media (max-width: 992px) {
    ul.products.list-view li.product {
        grid-template-columns: 50px minmax(150px, 1fr) auto auto;
        gap: 15px;
    }
    
    ul.products.list-view li.product img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    ul.products.list-view li.product {
        grid-template-columns: 40px 1fr auto;
        gap: 10px;
        padding: 8px;
    }
    
    ul.products.list-view li.product img {
        width: 40px;
        height: 40px;
    }
    
    ul.products.list-view li.product .streaming-links {
        display: none;
    }
}

@media (max-width: 576px) {
    ul.products.list-view li.product {
        grid-template-columns: 40px 1fr auto;
    }
    
    ul.products.list-view li.product .button {
        display: none;
    }
}

/* View Switcher Styles */
.view-switcher {
    display: flex;
    gap: 10px;
    margin-right: 20px;
}

.view-switcher button {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.view-switcher button:hover,
.view-switcher button.active {
    color: #e91e63;
}

@media (max-width: 992px) {
    .products.list-view li.product {
        grid-template-columns: 200px 1fr !important;
    }
    
    .products.list-view li.product .button {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 768px) {
    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .toolbar-left,
    .toolbar-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .products-search {
        min-width: 100%;
    }
    
    .products.list-view li.product {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
    
    .products.list-view li.product .product-content {
        text-align: center !important;
    }
    
    .products.list-view .streaming-links {
        justify-content: center !important;
    }
}

/* Header Search */
.header-search {
    position: relative;
    margin-left: 20px;
}

.search-toggle {
    background: none;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.search-toggle:hover {
    background-color: rgba(0,0,0,0.05);
}

.search-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 10px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-search-form {
    display: flex;
    width: 100%;
}

/* Dodajemo ponovno pravila za nonce input polje */
#search_nonce {
    display: none;
}

/* Stilovi za live search rezultate */
.live-search-results {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.live-search-results.has-results {
    max-height: 400px;
    overflow-y: auto;
    opacity: 1;
    margin-top: 10px;
    padding-right: 5px;
}

.searching {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    color: #777;
    text-align: center;
}

.searching span {
    position: relative;
    padding-left: 25px;
}

.searching span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-top: 2px solid var(--main-color, #e83e8c);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.search-section {
    margin-bottom: 15px;
}

.search-section-title {
    font-size: 14px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}

.search-results-grid {
    display: grid;
    gap: 8px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.search-result-image {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #999;
    font-size: 16px;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-content {
    flex: 1;
}

.search-result-content h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 2px;
    color: #333;
    line-height: 1.3;
}

.search-result-content .artist,
.search-result-content .count,
.search-result-content .date {
    font-size: 12px;
    color: #777;
    display: block;
    line-height: 1.3;
}

.search-result-content .price {
    font-size: 13px;
    color: var(--main-color, #e83e8c);
    font-weight: 500;
    display: block;
    margin-top: 2px;
}

.view-all-results {
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 5px;
}

.view-all-results a {
    color: var(--main-color, #e83e8c);
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}

.view-all-results a:hover {
    text-decoration: underline;
}

.no-results {
    padding: 20px 0;
    text-align: center;
    color: #777;
    font-size: 14px;
}

.error {
    padding: 20px 0;
    text-align: center;
    color: #e74c3c;
    font-size: 14px;
}

@media (max-width: 576px) {
    .search-dropdown {
        width: 280px;
        right: -70px;
    }
    
    .search-dropdown:before {
        right: 80px;
    }
}

/* Stranica izvođača */
.artist-single {
    margin: 3rem 0;
}

.artist-header {
    position: relative;
    margin-bottom: 3rem;
}

.artist-cover {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--light-gray);
}

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

.artist-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.artist-title {
    font-size: 3rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.artist-genre {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.artist-sidebar {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.artist-main {
    flex: 1;
}

.artist-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 3rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.artist-social-links,
.artist-streaming {
    margin-top: 3rem;
    text-align: left;
}

.artist-social-links h3,
.artist-streaming h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.social-links,
.streaming-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.social-link,
.streaming-link {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    font-size: 0.9rem;
    min-width: fit-content;
}

.social-link:hover,
.streaming-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.social-link i,
.streaming-link i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Društvene mreže hover boje */
.social-link.facebook:hover { background: #1877f2; border-color: #1877f2; }
.social-link.instagram:hover { background: #e4405f; border-color: #e4405f; }
.social-link.website:hover { background: #2ecc71; border-color: #2ecc71; }
.social-link.tiktok:hover { background: #000000; border-color: #000000; }
.social-link.twitter:hover { background: #000000; border-color: #000000; }

/* Streaming servisi hover boje */
.streaming-link.spotify:hover { background: #1DB954; border-color: #1DB954; }
.streaming-link.youtube:hover { background: #FF0000; border-color: #FF0000; }
.streaming-link.deezer:hover { background: #00C7F2; border-color: #00C7F2; }
.streaming-link.apple-music:hover { background: #FA243C; border-color: #FA243C; }
.streaming-link.tidal:hover { background: #000000; border-color: #000000; }

@media (max-width: 768px) {
    .social-links,
    .streaming-links {
        gap: 0.75rem;
    }

    .social-link,
    .streaming-link {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .social-link i,
    .streaming-link i {
        margin-right: 0.5rem;
        font-size: 1rem;
    }

    .artist-social-links h3,
    .artist-streaming h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

.artist-products {
    margin: 3rem 0;
}

.artist-products h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #fff;
    text-align: left;
}

.artist-products .woocommerce ul.products {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.artist-products .woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    transition: all 0.3s ease;
}

.artist-products .woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.artist-products .woocommerce ul.products li.product img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin: 0;
    transition: transform 0.3s ease;
}

.artist-products .woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}

.artist-products .woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 1rem;
    margin: 0;
    font-size: 1rem;
    color: #fff;
    text-align: center;
}

.artist-products .woocommerce ul.products li.product .price {
    padding: 0 1rem;
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    text-align: center;
}

.artist-products .woocommerce ul.products li.product .price del {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.artist-products .woocommerce ul.products li.product .price ins {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

.artist-products .woocommerce ul.products li.product .button {
    display: block;
    width: 100%;
    margin: 1rem 0 0 0;
    padding: 0.8rem;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.artist-products .woocommerce ul.products li.product .button:hover {
    background: var(--primary-color-hover);
}

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

@media (max-width: 768px) {
    .artist-products .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .artist-products .woocommerce ul.products li.product img {
        height: 200px;
    }

    .artist-products h3 {
        font-size: 1.5rem;
    }
}

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

    .artist-products .woocommerce ul.products li.product a img {
        height: 180px;
    }
}

.artist-gallery {
    margin: 3rem 0;
}

.artist-gallery h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: transform 0.3s ease;
}

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

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

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

.artist-spotify-player {
    margin: 3rem 0;
}

.artist-spotify-player h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.artist-spotify-player .spotify-embed {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #282828;
}

.artist-spotify-player .spotify-embed iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: none;
}

@media (max-width: 768px) {
    .artist-spotify-player .spotify-embed iframe {
        height: 300px;
    }
}

/* Archive Artists Page */
.archive-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.archive-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM57 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-1.343 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
    animation: heroPattern 60s linear infinite;
    z-index: 1;
}

.archive-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.archive-filters {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.genre-filter select {
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.genre-filter select:hover,
.genre-filter select:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    outline: none;
}

.artist-search input[type="search"] {
    width: 100%;
    padding: 1rem 3rem 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.artist-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.artist-search input[type="search"]:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    outline: none;
}

.artist-search button {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.artist-search button:hover {
    transform: translateY(-50%) scale(1.1);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.artist-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 350px;
}

.artist-card:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.artist-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.artist-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        transparent 100%
    );
    color: #fff;
}

.artist-card-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.artist-card-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.artist-card-info {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.artist-card-genre {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.875rem;
    backdrop-filter: blur(5px);
}

.artist-card-releases {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Uklanjamo stare stilove za linkove */
.artist-card-links,
.artist-card-social,
.artist-card-streaming {
    display: none;
}

/* Responzivni dizajn */
@media (max-width: 1200px) {
    .artists-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .artist-card {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .artist-card {
        height: 350px;
    }
}

/* Novosti sekcija */
.news-section {
    padding: 4rem 0;
    background: #fff;
}

.news-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--text-color);
}

.news-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-color);
}

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

.news-card-image {
    position: relative;
    width: 100%;
    padding-top: 66%;
    overflow: hidden;
    display: block;
}

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

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

.news-card .no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #999;
}

.news-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.news-meta {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-date i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.news-title {
    font-size: 1.2rem;
    margin: 0 0 1rem;
    line-height: 1.4;
}

.news-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.news-title a:hover {
    color: var(--primary-color);
}

.news-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    margin-top: auto;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more:hover i {
    transform: translateX(3px);
}

.no-news {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    color: #666;
}

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

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-section h2 {
        font-size: 1.8rem;
    }
    
    .news-card {
        margin-bottom: 0;
    }
}

/* Single Post */
.single-post { margin: 2rem 0 4rem; }

.post-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.post-header {
    margin-bottom: 2rem;
}

.post-thumbnail {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--light-gray);
    font-size: 0.95rem;
    color: #666;
}

.post-date,
.post-categories {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-date i,
.post-categories i {
    color: var(--primary-color);
}

.post-categories a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-categories a:hover {
    color: var(--primary-color);
}

.post-title {
    font-size: 2.5rem;
    margin: 0;
    padding: 2rem 2rem 0;
    color: var(--text-color);
    line-height: 1.3;
}

.post-body {
    padding: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.post-body h2,
.post-body h3,
.post-body h4 {
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.post-body ul,
.post-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.post-body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-color);
    background: var(--light-gray);
    font-style: italic;
    color: #666;
}

.post-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    background: var(--light-gray);
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.post-tags i {
    color: var(--primary-color);
}

.post-tags a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-tags a:hover {
    color: var(--primary-color);
}

.post-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.prev-post,
.next-post {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.prev-post:hover,
.next-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    color: var(--primary-color);
}

.prev-post i,
.next-post i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.prev-post span,
.next-post span {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.prev-post small,
.next-post small {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-post {
    text-align: right;
}

.next-post span {
    align-items: flex-end;
}

@media (max-width: 992px) {
    .post-title {
        font-size: 2rem;
        padding: 1.5rem 1.5rem 0;
    }

    .post-meta,
    .post-body,
    .post-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .single-post {
        margin: 2rem 0;
    }

    .post-thumbnail {
        height: 300px;
    }

    .post-title {
        font-size: 1.8rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .post-body {
        font-size: 1rem;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .next-post {
        text-align: left;
    }

    .next-post span {
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .post-thumbnail {
        height: 200px;
    }

    .post-title {
        font-size: 1.5rem;
    }
}

/* Post Share Buttons */
.post-share {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.post-share h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-button i {
    font-size: 1rem;
}

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

.share-button.facebook {
    background: #1877f2;
}

.share-button.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.share-button.twitter {
    background: #000000;
}

.share-button.linkedin {
    background: #0077b5;
}

.share-button.whatsapp {
    background: #25d366;
}

.share-button.email {
    background: #666666;
}

.share-button.copy {
    background: var(--primary-color);
}

@media (max-width: 576px) {
    .share-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .share-button {
        width: 100%;
        justify-content: center;
    }
}

/* Tooltip za kopiranje linka */
.copy-tooltip {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.copy-tooltip.show {
    opacity: 1;
    visibility: visible;
}

/* Archive News Page */
.archive-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem 0;
    margin-bottom: 3rem;
    color: white;
    text-align: center;
}

.archive-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.archive-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
    opacity: 0.9;
}

.archive-filters {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.filter-form {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.filter-group {
    position: relative;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    appearance: none;
}

.filter-group select {
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 1em;
}

.filter-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.filter-group .search-submit {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}

.view-switcher {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.view-switcher button {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-switcher button:hover,
.view-switcher button.active {
    background: white;
    color: var(--primary-color);
}

/* Grid View */
.news-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-archive-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.news-archive-image {
    position: relative;
    padding-top: 66%;
    overflow: hidden;
}

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

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

.news-archive-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* List View */
.news-archive-grid.list-view {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.news-archive-grid.list-view .news-archive-card {
    flex-direction: row;
    align-items: stretch;
}

.news-archive-grid.list-view .news-archive-image {
    width: 300px;
    padding-top: 0;
    flex-shrink: 0;
}

.news-archive-grid.list-view .news-archive-content {
    padding: 2rem;
}

.news-archive-grid.list-view .news-title {
    font-size: 1.5rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 6px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pagination .page-numbers.current {
    background: var(--primary-color);
    color: white;
}

.pagination .page-numbers:hover:not(.current) {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 1200px) {
    .news-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .filter-form {
        grid-template-columns: 1fr;
    }

    .news-archive-grid.list-view .news-archive-card {
        flex-direction: column;
    }

    .news-archive-grid.list-view .news-archive-image {
        width: 100%;
        padding-top: 66%;
    }
}

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

    .news-archive-grid {
        grid-template-columns: 1fr;
    }

    .archive-filters {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .archive-title {
        font-size: 1.8rem;
    }

    .pagination .page-numbers {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem;
    background: var(--light-gray);
    border-radius: 12px;
    margin: 2rem 0;
}

.no-results p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Stranice */
.single-page {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 4rem 0;
}

.page-header {
    position: relative;
    margin-bottom: 2rem;
}

.page-thumbnail {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.page-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-title {
    font-size: 2.5rem;
    margin: 0;
    padding: 2rem 2rem 0;
    color: var(--text-color);
    line-height: 1.3;
}

.page-body {
    padding: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.page-body p {
    margin-bottom: 1.5rem;
}

.page-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.page-body h2,
.page-body h3,
.page-body h4 {
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.page-body ul,
.page-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-body li {
    margin-bottom: 0.5rem;
}

.page-body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-color);
    background: var(--light-gray);
    font-style: italic;
    color: #666;
}

/* Responzivnost za stranice */
@media (max-width: 992px) {
    .page-title {
        font-size: 2rem;
        padding: 1.5rem 1.5rem 0;
    }

    .page-body {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .single-page {
        margin: 2rem 0;
    }

    .page-thumbnail {
        height: 300px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-body {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-thumbnail {
        height: 200px;
    }

    .page-title {
        font-size: 1.5rem;
    }
}

/* WooCommerce stranice padding */
.woocommerce-cart .page-content,
.woocommerce-checkout .page-content,
.woocommerce-account .page-content {
    padding-top: 4rem;
}

/* Responzivnost za WooCommerce stranice */
@media (max-width: 768px) {
    .woocommerce-cart .page-content,
    .woocommerce-checkout .page-content,
    .woocommerce-account .page-content {
        padding-top: 2rem;
    }
}

/* Sakrij poruku o uštedi u košarici */
.woocommerce-cart .woocommerce-cart-form .product-price .savings,
.woocommerce-cart .woocommerce-cart-form .product-subtotal .savings {
    display: none !important;
}

/* Sakrij sve poruke o uštedi */
.wc-block-components-product-badge.wc-block-components-sale-badge,
.wc-block-components-sale-badge,
.woocommerce-cart .woocommerce-cart-form .product-price .savings,
.woocommerce-cart .woocommerce-cart-form .product-subtotal .savings {
    display: none !important;
}

/* Progress bar za besplatnu dostavu */
.free-shipping-progress {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.progress-message {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Artist Archive Hero Section */
.artist-hero-section {
    background: linear-gradient(135deg, #ff69b4 0%, #FF69B4 50%, #b4ff69 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.artist-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
    pointer-events: none;
}

.artist-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.artist-hero-text {
    margin-bottom: 40px;
}

.artist-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.artist-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.artist-search-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.artist-search-container .genre-filter {
    flex: 1;
    min-width: 200px;
}

.artist-search-container .genre-filter select {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.artist-search-container .genre-filter select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.artist-search-container .genre-filter select option {
    background: #fff;
    color: #333;
}

.artist-search-container .artist-search {
    flex: 2;
    min-width: 300px;
    position: relative;
}

.artist-search-container .artist-search input[type="search"] {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.artist-search-container .artist-search input[type="search"]:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.artist-search-container .artist-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.artist-search-container .artist-search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.artist-search-container .artist-search button:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .artist-hero-section {
        padding: 60px 0;
        margin-bottom: 40px;
    }
    
    .artist-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .artist-hero-text p {
        font-size: 1rem;
    }

    .artist-search-container {
        flex-direction: column;
    }

    .artist-search-container .genre-filter,
    .artist-search-container .artist-search {
        width: 100%;
    }
}

/* Shop Hero Section */
.shop-hero-section {
    background: linear-gradient(135deg, #ff69b4 0%, #FF69B4 50%, #b4ff69 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.shop-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
    pointer-events: none;
}

.shop-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.shop-hero-text {
    margin-bottom: 40px;
}

.shop-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.shop-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.shop-search-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.shop-search {
    flex: 2;
    min-width: 300px;
    position: relative;
}

.shop-search input[type="search"] {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.shop-search input[type="search"]:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.shop-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.shop-search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.shop-search button:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .shop-hero-section {
        padding: 60px 0;
        margin-bottom: 40px;
    }
    
    .shop-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .shop-hero-text p {
        font-size: 1rem;
    }

    .shop-search-container {
        flex-direction: column;
    }

    .shop-search {
        width: 100%;
    }
}

/* Shop Header Styles */
.shop-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

.shop-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.shop-header .site-branding {
    flex: 0 0 auto;
}

.shop-header .main-navigation {
    flex: 1;
    margin: 0 2rem;
}

.shop-header .nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-header .nav-menu li {
    margin: 0 1rem;
}

.shop-header .nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.shop-header .nav-menu a:hover {
    color: #e91e63;
}

.shop-header .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shop-header .search-toggle button,
.shop-header .cart-toggle a {
    background: none;
    border: none;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.shop-header .search-toggle button:hover,
.shop-header .cart-toggle a:hover {
    color: #e91e63;
}

.shop-header .cart-count {
    background: #e91e63;
    color: #fff;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.search-overlay .search-form {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.search-overlay .search-field {
    width: 100%;
    padding: 1rem;
    font-size: 1.5rem;
    border: none;
    border-bottom: 2px solid #e91e63;
    background: none;
    outline: none;
}

.search-overlay .search-form button {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #e91e63;
    font-size: 1.2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .shop-header .main-navigation {
        display: none;
    }
    
    .shop-header .header-content {
        padding: 0.5rem 0;
    }
}

/* WooCommerce List View */
ul.products.list-view {
    display: block !important;
    margin: 0 !important;
}

ul.products.list-view li.product {
    width: 100% !important;
    float: none !important;
    display: grid !important;
    grid-template-columns: 120px 2fr 1fr auto !important;
    gap: 20px;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px !important;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

ul.products.list-view li.product:hover {
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* Slika proizvoda */
ul.products.list-view li.product img {
    width: 120px !important;
    height: 120px !important;
    object-fit: cover;
    margin: 0 !important;
    border-radius: 4px;
}

/* Glavni sadržaj (naslov i izvođač) */
ul.products.list-view li.product .product-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

ul.products.list-view li.product .woocommerce-loop-product__title {
    font-size: 1.2em !important;
    margin: 0 !important;
    color: #2c2c2c;
}

ul.products.list-view li.product .artist {
    font-size: 0.95em;
    color: #666;
    margin: 0;
}

/* Cijena */
ul.products.list-view li.product .price {
    font-size: 1.1em !important;
    margin: 0 !important;
    color: #2c2c2c;
    font-weight: 600;
}

ul.products.list-view li.product .price del {
    font-size: 0.85em;
    color: #999;
    margin-right: 5px;
}

ul.products.list-view li.product .price ins {
    text-decoration: none;
    color: #e53935;
}

/* Streaming servisi i gumb */
ul.products.list-view li.product .product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

ul.products.list-view li.product .streaming-links {
    display: flex;
    gap: 8px;
}

ul.products.list-view li.product .streaming-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 4px;
    color: #666;
    transition: all 0.3s ease;
}

ul.products.list-view li.product .streaming-link:hover {
    color: #fff;
}

ul.products.list-view li.product .button {
    margin: 0 !important;
    padding: 8px 16px !important;
}

/* Responzivni dizajn */
@media (max-width: 992px) {
    ul.products.list-view li.product {
        grid-template-columns: 100px 2fr 1fr !important;
    }
    
    ul.products.list-view li.product img {
        width: 100px !important;
        height: 100px !important;
    }
    
    ul.products.list-view li.product .product-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    ul.products.list-view li.product {
        grid-template-columns: 80px 1fr !important;
        gap: 15px;
    }
    
    ul.products.list-view li.product img {
        width: 80px !important;
        height: 80px !important;
    }
    
    ul.products.list-view li.product .price {
        grid-column: 2;
        text-align: left;
    }
    
    ul.products.list-view li.product .product-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    ul.products.list-view li.product .streaming-links {
        order: 2;
    }
    
    ul.products.list-view li.product .button {
        order: 1;
        width: 100%;
    }
}

/* Početna stranica - card view */
.home ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Trgovina - tablični prikaz */
.woocommerce-shop ul.products.list-view {
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product {
    display: table-row;
    width: 100%;
    background: #fff;
}

.woocommerce-shop ul.products.list-view li.product > * {
    display: table-cell;
    vertical-align: middle;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.woocommerce-shop ul.products.list-view li.product .product-image {
    width: 60px;
    padding: 8px;
}

.woocommerce-shop ul.products.list-view li.product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .product-title {
    width: 30%;
}

.woocommerce-shop ul.products.list-view li.product .woocommerce-loop-product__title {
    font-size: 15px;
    margin: 0;
    padding: 0;
    color: #333;
}

.woocommerce-shop ul.products.list-view li.product .artist {
    width: 20%;
    font-size: 14px;
    color: #666;
}

.woocommerce-shop ul.products.list-view li.product .price {
    width: 15%;
    font-size: 15px;
    font-weight: bold;
    white-space: nowrap;
    color: #333;
}

.woocommerce-shop ul.products.list-view li.product .streaming-links {
    width: 20%;
    display: flex;
    gap: 8px;
    justify-content: flex-start;
}

.woocommerce-shop ul.products.list-view li.product .streaming-link {
    width: 24px;
    height: 24px;
    font-size: 14px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.2s;
}

.woocommerce-shop ul.products.list-view li.product .button {
    width: 15%;
    text-align: right;
    padding: 8px 16px;
    font-size: 14px;
    background: #333;
    color: #fff;
    border-radius: 4px;
}

/* Zaglavlje tablice */
.woocommerce-shop ul.products.list-view:before {
    content: "";
    display: table-row;
    background: #f5f5f5;
}

.woocommerce-shop ul.products.list-view:before > * {
    display: table-cell;
    padding: 12px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    font-size: 13px;
}

@media (max-width: 992px) {
    .woocommerce-shop ul.products.list-view li.product .streaming-links {
        display: none;
    }
    
    .woocommerce-shop ul.products.list-view li.product .product-title {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .woocommerce-shop ul.products.list-view li.product {
        display: grid;
        grid-template-columns: 60px 1fr auto;
        gap: 12px;
        padding: 8px;
    }
    
    .woocommerce-shop ul.products.list-view li.product > * {
        display: block;
        width: auto;
        border: none;
    }
    
    .woocommerce-shop ul.products.list-view li.product .artist {
        font-size: 13px;
    }
    
    .woocommerce-shop ul.products.list-view:before {
        display: none;
    }
}

/* Zaglavlje tablice */
.woocommerce-shop .products-header.list-view-header {
    display: none;
    width: 100%;
    background: #f5f5f5;
    margin-bottom: 1px;
}

.woocommerce-shop .products-header.list-view-header.active {
    display: table;
}

.woocommerce-shop .products-header .header-row {
    display: table-row;
}

.woocommerce-shop .products-header .header-cell {
    display: table-cell;
    padding: 12px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    font-size: 13px;
    vertical-align: middle;
}

.woocommerce-shop .products-header .header-cell:nth-child(1) { width: 60px; }
.woocommerce-shop .products-header .header-cell:nth-child(2) { width: 30%; }
.woocommerce-shop .products-header .header-cell:nth-child(3) { width: 20%; }
.woocommerce-shop .products-header .header-cell:nth-child(4) { width: 15%; }
.woocommerce-shop .products-header .header-cell:nth-child(5) { width: 20%; }
.woocommerce-shop .products-header .header-cell:nth-child(6) { width: 15%; text-align: right; }

@media (max-width: 992px) {
    .woocommerce-shop .products-header .header-cell:nth-child(5) { display: none; }
    .woocommerce-shop .products-header .header-cell:nth-child(2) { width: 40%; }
}

@media (max-width: 768px) {
    .woocommerce-shop .products-header.list-view-header {
        display: none !important;
    }
}

/* Početna stranica - grid prikaz */
.home ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Shop stranica - tablični prikaz */
.woocommerce-shop ul.products.list-view {
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.woocommerce-shop .products-header.list-view-header {
    display: none;
    background: #f8f9fa;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.woocommerce-shop .products-header.list-view-header.active {
    display: block;
}

.woocommerce-shop .products-header .header-row {
    display: grid;
    grid-template-columns: 80px 3fr 2fr 1fr 2fr 1fr;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    font-weight: 600;
}

.woocommerce-shop ul.products.list-view li.product {
    display: grid;
    grid-template-columns: 80px 3fr 2fr 1fr 2fr 1fr;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0.5rem;
    margin: 0;
    border-bottom: 1px solid #eee;
}

.woocommerce-shop ul.products.list-view li.product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .woocommerce-loop-product__title {
    font-size: 1rem;
    margin: 0;
    padding: 0;
}

.woocommerce-shop ul.products.list-view li.product .artist {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .price {
    font-size: 1rem;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .streaming-links {
    display: flex;
    gap: 0.5rem;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .streaming-link {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    color: #666;
    transition: all 0.2s;
}

.woocommerce-shop ul.products.list-view li.product .button {
    margin: 0;
    padding: 0.5rem 1rem;
    text-align: center;
    background: #f8f9fa;
    border: none;
    border-radius: 4px;
    color: #333;
    transition: all 0.2s;
}

@media (max-width: 992px) {
    .woocommerce-shop ul.products.list-view li.product {
        grid-template-columns: 80px 3fr 2fr 1fr 1fr;
    }
    
    .woocommerce-shop .products-header .header-row {
        grid-template-columns: 80px 3fr 2fr 1fr 1fr;
    }
    
    .woocommerce-shop ul.products.list-view li.product .streaming-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .woocommerce-shop ul.products.list-view li.product {
        grid-template-columns: 60px 2fr 1fr;
        gap: 0.5rem;
    }
    
    .woocommerce-shop .products-header .header-row {
        grid-template-columns: 60px 2fr 1fr;
    }
    
    .woocommerce-shop ul.products.list-view li.product .artist {
        display: block;
        grid-column: 2;
    }
    
    .woocommerce-shop ul.products.list-view li.product .button {
        display: none;
    }
}

/* Stilovi za live search rezultate */
.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 70vh;
    overflow-y: auto;
    display: none;
    margin-top: 5px;
    padding: 0;
    min-width: 300px;
}

.live-search-results.has-results {
    display: block;
}

.hero-section .live-search-results,
.shop-search-container .live-search-results {
    width: 100%;
    max-width: 600px;
    min-height: 200px;
    z-index: 1010;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    border-radius: 4px;
    border: 1px solid #e1e1e1;
}

.search-form {
    position: relative;
}

.search-form form {
    display: flex;
    width: 100%;
}

.search-form input[type="search"] {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.search-form button[type="submit"] {
    background: var(--main-color, #e83e8c);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-form button[type="submit"]:hover {
    background: var(--main-hover-color, #c82071);
}

.search-section {
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.search-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.search-section-title {
    font-size: 14px;
    margin: 0 0 10px 0;
    padding: 8px 10px;
    background: #f5f5f5;
    border-left: 3px solid var(--main-color, #e83e8c);
}

.search-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 10px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
    border-radius: 4px;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}

.search-result-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-content {
    flex-grow: 1;
    overflow: hidden;
}

.search-result-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-content .artist,
.search-result-content .genre,
.search-result-content .date {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.search-result-content .price {
    font-weight: bold;
    color: #222;
    font-size: 13px;
}

.view-all-results {
    padding: 12px;
    text-align: center;
    border-top: 1px solid #e1e1e1;
    background: #f9f9f9;
}

.view-all-results a {
    color: var(--main-color, #e83e8c);
    text-decoration: none;
    font-weight: 500;
    display: block;
    transition: color 0.2s;
}

.view-all-results a:hover {
    color: var(--main-hover-color, #c82071);
    text-decoration: underline;
}

.searching,
.no-results,
.error {
    padding: 20px 15px;
    text-align: center;
    color: #666;
}

.searching {
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzgiIGhlaWdodD0iMzgiIHZpZXdCb3g9IjAgMCAzOCAzOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiNlODNlOGMiPiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMSAxKSIgc3Ryb2tlLXdpZHRoPSIyIj4gICAgICAgICAgICA8Y2lyY2xlIHN0cm9rZS1vcGFjaXR5PSIuNSIgY3g9IjE4IiBjeT0iMTgiIHI9IjE4Ii8+ICAgICAgICAgICAgPHBhdGggZD0iTTM2IDE4YzAtOS45NC04LjA2LTE4LTE4LTE4Ij4gICAgICAgICAgICAgICAgPGFuaW1hdGVUcmFuc2Zvcm0gICAgICAgICAgICAgICAgICAgIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgICAgICAgICAgICAgICAgICAgIHR5cGU9InJvdGF0ZSIgICAgICAgICAgICAgICAgICAgIGZyb209IjAgMTggMTgiICAgICAgICAgICAgICAgICAgICB0bz0iMzYwIDE4IDE4IiAgICAgICAgICAgICAgICAgICAgZHVyPSIxcyIgICAgICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIi8+ICAgICAgICAgICAgPC9wYXRoPiAgICAgICAgPC9nPiAgICA8L2c+PC9zdmc+') center center no-repeat;
    background-size: 30px;
    height: 80px;
}

/* Dodatni stil za tražilicu na početnoj stranici */
.hero-section .search-form {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Dodatni stilovi za bolju vidljivost rezultata na početnoj stranici */
.hero-section .live-search-results {
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    border-radius: 4px;
    border: 1px solid #e1e1e1;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1010;
}

/* Stilovi za shop tražilicu */
.shop-search-container .live-search-results {
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1010;
}

/* Ispravak za mobilne uređaje */
@media (max-width: 768px) {
    .hero-section .live-search-results,
    .shop-search-container .live-search-results {
        position: absolute;
        width: 100%;
        max-height: 400px;
        max-width: 100%;
    }
    
    .search-result-image {
        width: 50px;
        height: 50px;
    }
    
    .search-result-content h4 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .search-result-image {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .search-result-content .artist,
    .search-result-content .genre,
    .search-result-content .date {
        font-size: 11px;
    }
}

/* Stilovi za stranicu rezultata pretraživanja */
.search-results-page {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.search-results-page .container {
    max-width: 1200px;
    margin: 0 auto;
}

.search-results-page .page-header {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.search-results-page .page-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.search-results-page .page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--main-color, #e83e8c);
}

.search-results-page .page-title span {
    color: var(--main-color, #e83e8c);
}

.search-results-page .search-form-container {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 0 15px;
}

.search-results-container {
    margin-top: 40px;
}

.search-section {
    margin-bottom: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-section:last-child {
    margin-bottom: 0;
}

.search-section-title {
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    color: #333;
    position: relative;
}

.search-section-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--main-color, #e83e8c);
}

/* Stilovi za sekciju proizvoda */
.search-results-page .products-section .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.search-results-page .products-section .product {
    margin-bottom: 0 !important;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.search-results-page .products-section .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Stilovi za sekciju izvođača */
.search-results-page .artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.search-results-page .artist-card {
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}

.search-results-page .artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.search-results-page .artist-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.search-results-page .artist-image {
    height: 220px;
    overflow: hidden;
}

.search-results-page .artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.search-results-page .artist-card:hover .artist-image img {
    transform: scale(1.05);
}

.search-results-page .artist-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #ccc;
    font-size: 4rem;
}

.search-results-page .artist-info {
    padding: 15px;
    text-align: center;
}

.search-results-page .artist-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.search-results-page .artist-genre {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 5px;
    font-style: italic;
}

.search-results-page .artist-count {
    font-size: 14px;
    color: #777;
    display: block;
}

/* Stilovi za sekciju članaka */
.search-results-page .posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.search-results-page .post-card {
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}

.search-results-page .post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.search-results-page .post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.search-results-page .post-thumbnail {
    height: 200px;
    overflow: hidden;
}

.search-results-page .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.search-results-page .post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.search-results-page .post-content {
    padding: 20px;
}

.search-results-page .post-title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.search-results-page .post-meta {
    margin-bottom: 10px;
    font-size: 14px;
    color: #888;
}

.search-results-page .post-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.search-results-page .post-excerpt p {
    margin: 0;
}

/* Stil za poruku kad nema rezultata */
.search-results-page .no-results {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-results-page .no-results p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Responzivni stilovi */
@media (max-width: 1200px) {
    .search-results-page .products-section .products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .search-results-page .products-section .products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .search-results-page .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .search-results-page {
        padding: 40px 0;
    }
    
    .search-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .search-results-page .page-title {
        font-size: 24px;
    }
    
    .search-results-page .products-section .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .search-results-page .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .search-results-page .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .search-results-page .artist-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .search-results-page .products-section .products {
        grid-template-columns: 1fr;
    }
    
    .search-results-page .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .search-results-page .page-title {
        font-size: 22px;
    }
    
    .search-section-title {
        font-size: 20px;
    }
}

/* Dodatni stilovi za stranicu rezultata pretraživanja */
.search-results-page .results-count {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
    font-style: italic;
}

.search-results-page .post-thumbnail.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #ccc;
    font-size: 3rem;
    height: 200px;
}

.search-results-page .no-results .btn-primary {
    display: inline-block;
    background-color: var(--main-color, #e83e8c);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.search-results-page .no-results .btn-primary:hover {
    background-color: var(--main-hover-color, #c82071);
}

.search-results-page .post-date i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .search-results-page .results-count {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .search-results-page .post-thumbnail.no-image {
        height: 160px;
        font-size: 2.5rem;
    }
}

/* Stilovi za izvođače u pretragama */
.search-result-item .artist {
    color: var(--main-color, #e83e8c);
    font-weight: 500;
}

.search-result-item:hover .artist {
    color: #c62b71;
}

/* Poboljšani stilovi za live search rezultate */
.live-search-results {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
}

.live-search-results.has-results {
    max-height: 500px;
    overflow-y: auto;
    opacity: 1;
    margin-top: 10px;
    padding: 10px;
    background: #fff;
    border: 1px solid #eee;
}

/* Treba biti ispred drugih elemenata */
.header-search .live-search-results.has-results {
    z-index: 9999;
}

/* Prikazivanje vrste rezultata za izvođače */
.search-result-item .count {
    display: inline-flex;
    align-items: center;
    color: #777;
    font-size: 12px;
}

.search-result-item .count::before {
    content: '\f001';
    font-family: 'Font Awesome 5 Free';
    margin-right: 5px;
    font-size: 10px;
    color: var(--main-color, #e83e8c);
}

/* Isticanje poklapanja u rezultatima */
.search-result-item .highlight {
    background-color: rgba(232, 62, 140, 0.1);
    color: var(--main-color, #e83e8c);
    font-weight: 500;
    padding: 0 2px;
    border-radius: 2px;
}

/* Stilovi za polje unosa u header search */
.header-search-form .search-field {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    padding: 8px 15px;
    font-size: 14px;
    outline: none;
}

.header-search-form .search-field:focus {
    border-color: var(--main-color, #e83e8c);
    box-shadow: 0 0 0 2px rgba(232, 62, 140, 0.1);
}

.header-search-form .search-submit {
    background: var(--main-color, #e83e8c);
    border: none;
    color: white;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    margin-left: -1px;
}

.search-input-wrapper {
    width: 100%;
    position: relative;
}

/* Live search rezultati - pozicioniranje iznad drugih elemenata */
.search-form,
.header-search-form {
    position: relative;
}

.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    max-height: 80vh;
    overflow-y: auto;
    margin-top: 5px;
    display: none;
}

.live-search-results.has-results {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
    border-bottom: 1px solid #eee;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}

.search-result-image {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-image i {
    font-size: 24px;
    color: #999;
}

.search-result-content {
    flex: 1;
}

.search-result-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
}

.search-result-content .artist {
    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
}

.search-result-content .price {
    font-weight: 600;
    color: #e83e8c;
}

.search-result-content .date {
    font-size: 12px;
    color: #666;
}

.search-section {
    margin-bottom: 20px;
}

.search-section-title {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.search-results-grid {
    display: flex;
    flex-direction: column;
}

.view-all-results {
    padding: 10px;
    text-align: center;
    border-top: 1px solid #eee;
}

.view-all-results a {
    color: #e83e8c;
    text-decoration: none;
    font-weight: 600;
}

.view-all-results a:hover {
    text-decoration: underline;
}

.searching {
    padding: 15px;
    text-align: center;
    color: #666;
}

.no-results, .error {
    padding: 15px;
    text-align: center;
    color: #666;
}

.highlight {
    background-color: #ffe0f0;
    font-weight: bold;
    color: #e83e8c;
    padding: 0 2px;
}

/* Poboljšano pozicioniranje rezultata pretrage - iznad svih elemenata */
.search-form,
.header-search-form {
    position: relative;
}

/* Izrazito povećan z-index i poboljšano pozicioniranje */
.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 9999; /* Mnogo veći z-index od ostalih elemenata */
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    max-height: 80vh;
    overflow-y: auto;
    margin-top: 5px;
    display: none;
}

.live-search-results.has-results {
    display: block;
}

/* Specifično ciljamo hero sekciju da bi nadjačali njena pravila */
.hero-section .live-search-results,
.artist-hero-section .live-search-results,
.shop-hero-section .live-search-results {
    position: absolute;
    top: 100%;
    z-index: 9999;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

/* Standardizirane boje teksta za sve rezultate pretrage */
.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333 !important; /* Forsiraj boju teksta */
    transition: background-color 0.2s;
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}

.search-result-image {
    width: 50px;
    height: 50px;
    min-width: 50px; /* Osiguraj minimalnu širinu */
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

.search-result-content {
    flex: 1;
}

.search-result-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
    color: #333 !important; /* Forsiraj boju teksta */
}

.search-result-content .artist {
    color: #666 !important; /* Forsiraj boju teksta */
    font-size: 12px;
    margin-bottom: 5px;
}

.search-result-content .price {
    font-weight: 600;
    color: #e83e8c !important; /* Forsiraj boju teksta */
}

.search-result-content .date {
    font-size: 12px;
    color: #666 !important; /* Forsiraj boju teksta */
}

.search-section-title {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
    color: #333 !important; /* Forsiraj boju teksta */
}

.searching {
    padding: 15px;
    text-align: center;
    color: #666 !important; /* Forsiraj boju teksta */
    background-color: #fff;
}

.no-results, .error {
    padding: 15px;
    text-align: center;
    color: #666 !important; /* Forsiraj boju teksta */
    background-color: #fff;
}

.highlight {
    background-color: #ffe0f0;
    font-weight: bold;
    color: #e83e8c !important; /* Forsiraj boju teksta */
    padding: 0 2px;
}

/* Dodatno poboljšanje za rezultate pretrage - iznad svih elemenata */
.search-form,
.header-search-form {
    position: relative;
    z-index: 99999; /* Ekstremno visok z-index za kontejner */
}

/* Izrazito povećan z-index i potpuno apsolutno pozicioniranje */
.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 99999; /* Ekstremno visok z-index */
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); /* Jača sjenka za bolju vidljivost */
    max-height: 80vh;
    overflow-y: auto;
    margin-top: 5px;
    display: none;
}

.live-search-results.has-results {
    display: block;
}

/* Specifično ciljanje rezultata pretrage na početnoj stranici */
.hero-section .search-form {
    position: relative;
    z-index: 99999; /* Ekstremno visok z-index */
}

.hero-section .live-search-results,
.artist-hero-section .live-search-results,
.shop-hero-section .live-search-results {
    position: absolute !important; /* Forsiraj apsolutno pozicioniranje */
    top: 100% !important;
    z-index: 99999 !important; /* Forsiraj visok z-index */
    width: 100% !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
}

/* Osigurajmo da su rezultati pretrage iznad sekcije new-arrivals i drugih elemenata */
.hero-section .container {
    position: relative;
    z-index: auto; /* Smanjimo z-index kako bi rezultati pretrage mogli biti iznad */
}

/* Standardizirane boje teksta za sve rezultate pretrage */
.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333 !important; /* Forsiraj boju teksta */
    transition: background-color 0.2s;
    border-bottom: 1px solid #eee;
    background-color: #fff !important; /* Forsiraj bijelu pozadinu */
}

.search-result-item:hover {
    background-color: #f9f9f9 !important;
}

.search-result-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
    color: #333 !important; /* Forsiraj boju teksta */
}

.search-result-content .artist {
    color: #666 !important; /* Forsiraj boju teksta */
    font-size: 12px;
    margin-bottom: 5px;
}

.search-result-content .price {
    font-weight: 600;
    color: #e83e8c !important; /* Forsiraj boju teksta */
}

.search-section-title {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f5f5f5 !important;
    border-radius: 4px;
    color: #333 !important; /* Forsiraj boju teksta */
}

.searching,
.no-results,
.error {
    padding: 15px;
    text-align: center;
    color: #666 !important; /* Forsiraj boju teksta */
    background-color: #fff !important;
}

/* Osigurajmo da elementi pretrage nemaju overflow hidden koji bi mogao sakriti rezultate */
.hero-section,
.artist-hero-section,
.shop-hero-section,
.search-form-container,
.search-form {
    overflow: visible !important;
}

/* Search bar stilovi na shop stranici */
.shop-hero-section .shop-search-container {
    margin-top: 30px;
    width: 100%;
    max-width: 600px;
    position: relative;
}

.shop-search {
    display: flex;
    position: relative;
}

.shop-search input[type="search"] {
    flex: 1;
    border: none;
    border-radius: 30px;
    padding: 15px 25px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.shop-search input[type="search"]:focus {
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    outline: none;
}

.shop-search input[type="search"]::placeholder {
    color: #888;
}

.shop-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--main-color, #e83e8c);
    border: none;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 16px;
}

.shop-search button:hover {
    background-color: var(--main-hover-color, #c82071);
    transform: translateY(-50%) scale(1.05);
}

/* Novi stil za shop search - kopiran iz style.css za search formu s početne */
.shop-hero-section .search-form {
    position: relative;
    z-index: 99999; /* Ekstremno visok z-index za kontejner */
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
}

.shop-hero-section .search-form form {
    display: flex;
    position: relative;
}

.shop-hero-section .search-form input[type="search"] {
    flex: 1;
    border: none;
    border-radius: 30px;
    padding: 15px 25px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.shop-hero-section .search-form button[type="submit"] {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--main-color, #e83e8c);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.shop-hero-section .search-form button[type="submit"]:hover {
    background-color: var(--main-hover-color, #d72d7b);
}

/* Ujednačavanje live search rezultata */
.shop-hero-section .live-search-results {
    position: absolute !important;
    top: 100% !important;
    z-index: 99999 !important;
    width: 100% !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
}

/* Poboljšani stilovi za search form na stranici trgovine (shop page) */
.shop-hero-section .search-form {
    width: 100%;
    max-width: 600px;
    position: relative;
    margin: 25px auto 0;
}

.shop-hero-section .search-form form {
    display: flex;
    width: 100%;
}

.shop-hero-section .search-form input[type="search"] {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: #fff;
    outline: none;
}

.shop-hero-section .search-form input[type="search"]:focus {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--main-color, #e83e8c);
}

.shop-hero-section .search-form button[type="submit"] {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--main-color, #e83e8c);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.shop-hero-section .search-form button[type="submit"]:hover {
    background-color: var(--main-hover-color, #c82071);
    transform: scale(1.05);
}

.shop-hero-section .live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.shop-hero-section .live-search-results.has-results {
    padding: 15px;
    display: block;
}

/* Osigurajmo da se rezultati pretrage prikazuju iznad svih drugih elemenata */
.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.live-search-results.has-results {
    display: block;
    padding: 15px;
}

/* Poboljšanje za mobile verziju */
@media (max-width: 768px) {
    .shop-hero-section .search-form {
        max-width: 100%;
    }
    
    .shop-hero-section .search-form input[type="search"] {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .shop-hero-section .search-form button[type="submit"] {
        padding: 8px 12px;
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* Poboljšanje izgleda tražilice na stranici trgovine da izgleda kao na početnoj stranici */
.shop-search-container .search-form input[type="search"] {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 30px;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    outline: none;
}

.shop-search-container .search-form input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.shop-search-container .search-form input[type="search"]:focus {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-color: #ffffff;
}

.shop-search-container .search-form button[type="submit"] {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--main-color, #e83e8c);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.shop-search-container .search-form button[type="submit"]:hover {
    background-color: var(--main-hover-color, #c82071);
    transform: scale(1.05);
}

.shop-search-container .search-form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

/* Stilovi za tražilicu na stranici trgovine - usklađeni s početnom stranicom */
.shop-search-container .search-form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.shop-search-container .search-form input[type="search"] {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    border-radius: 30px;
    font-size: 16px;
    background-color: transparent !important;
    color: #ffffff !important;
    outline: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.shop-search-container .search-form input[type="search"]:focus {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-color: #ffffff !important;
}

.shop-search-container .search-form input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Usklađivanje tražilice na stranici trgovine s početnom stranicom */
.shop-search-container .search-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.shop-search-container .search-form form {
    display: flex;
    width: 100%;
}

.shop-search-container .search-form input[type="search"] {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid #e1e1e1;
    border-right: none;
    background: #fff;
    color: #333;
}

.shop-search-container .search-form input[type="search"]::placeholder {
    color: #999;
}

.shop-search-container .search-form input[type="search"]:focus {
    outline: none;
    border-color: var(--main-color, #e83e8c);
}

.shop-search-container .search-form button {
    background: var(--main-color, #e83e8c);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-search-container .search-form button:hover {
    background: var(--main-hover-color, #c82071);
}

.shop-search-container .live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-radius: 4px;
    margin-top: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.shop-search-container .live-search-results.has-results {
    display: block;
    padding: 15px;
}

.shop-search-container .search-form button {
    background-color: var(--main-color, #e83e8c);
    color: #fff;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    border-radius: 0 4px 4px 0;
}

.shop-search-container .search-form button i {
    font-size: 16px;
}

.shop-search-container .search-form button:hover {
    background-color: var(--main-hover-color, #c82071);
}

.shop-search-container .search-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.shop-search-container .search-form form {
    display: flex;
    width: 100%;
}

.shop-search-container .search-form input[type="search"] {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-right: none;
    background: #fff;
    color: #333;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
}

/* Category Hero Section */
.category-hero {
    background: var(--gradient-primary);
    padding: 4rem 0;
    position: relative;
    margin-bottom: 3rem;
}

.category-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.category-hero .hero-text {
    text-align: center;
    color: var(--color-white);
}

.category-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.search-filters-container {
    max-width: 900px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

.category-hero .filter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.category-hero .search-group {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.category-hero .search-group input[type="search"] {
    width: 100%;
    padding: 0.8rem 1rem;
    padding-right: 3rem;
    border: none;
    border-radius: 4px;
    background: var(--color-white);
    font-size: 1rem;
}

.category-hero .search-submit {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 3rem;
    border: none;
    background: transparent;
    color: var(--color-primary);
    cursor: pointer;
}

.category-hero .filter-group select {
    padding: 0.8rem 2rem 0.8rem 1rem;
    border: none;
    border-radius: 4px;
    background: var(--color-white);
    font-size: 1rem;
    min-width: 180px;
}

.category-hero .view-switcher {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
    align-self: center;
}

.category-hero .view-switcher button {
    background: var(--color-white);
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 4px;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-hero .view-switcher button.active {
    background: var(--color-primary);
    color: var(--color-white);
}

@media (max-width: 768px) {
    .category-hero {
        padding: 3rem 0;
    }
    
    .category-hero .filter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .category-hero .search-group,
    .category-hero .filter-group {
        width: 100%;
    }
    
    .search-filters-container {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Specifični stilovi za poravnanje view-switchera */
.category-hero .view-switcher {
    display: flex;
    gap: 0.5rem;
    height: 42px;
    align-self: center;
    margin: 1rem auto 0;
}

/* Poboljšanje vidljivosti teksta u select elementu */
.category-hero .filter-group select {
    color: var(--text-color);
    background-color: var(--color-white);
    font-weight: 500;
}

.woocommerce-shop ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0;
    padding: 2rem 0;
}

.woocommerce-shop ul.products li.product {
    width: 100%;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce-shop ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/*
Theme Name: Hit Records
Theme URI: https://hitrecords.hr
Author: Hit Records
Author URI: https://hitrecords.hr
Description: Moderna tema za Hit Records glazbeni dućan
Version: 1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hit-records
*/

:root {
    --primary-color: #FF69B4;
    --secondary-color: #FF1493;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --accent-color: #FF69B4;
    --hover-color: #FF1493;
    --gradient-primary: linear-gradient(135deg, #ff69b4 0%, #FF69B4 50%, #b4ff69 100%);
    --color-white: #ffffff;
    --color-primary: #FF69B4;
    --color-primary-dark: #cc548e;
    --color-text: #333333;
    --color-gray-light: #f0f0f0;
}

/* Osnovna struktura stranice */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#page {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.site-content {
    padding-top: 0; /* uklonjen zbog topbara */
    flex: 1 0 auto;
    padding-bottom: 4rem;
}

.site-footer {
    flex-shrink: 0;
    margin-top: 0;
    width: 100%;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #ffffff;
    padding-top: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: var(--topbar-height);
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0;
}
body.admin-bar .site-header { top: calc(var(--topbar-height) + 32px); }

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.site-branding {
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.site-branding img {
    height: 90px;
    width: auto;
    position: relative;
    display: block;
    padding: 5px 0;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

/* Glavni meni */
.main-navigation {
    display: flex;
    align-items: center;
    margin-left: auto;
    position: relative;
    z-index: 5;
}

#primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

#primary-menu > li {
    position: relative;
    display: inline-flex;
    align-items: center;
}

#primary-menu > li > a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

#primary-menu > li > a:hover {
    color: var(--primary-color);
    background: var(--light-gray);
}

#primary-menu > li.current-menu-item > a {
    color: white;
    background: var(--primary-color);
}

/* Košarica */
.header-cart {
    margin-left: 1rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--light-gray);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-color);
}

.cart-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.cart-count {
    background: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    min-width: 1.5rem;
    text-align: center;
}

.cart-total {
    font-weight: 600;
    color: var(--primary-color);
}

.cart-link:hover .cart-count {
    background: white;
    color: var(--primary-color);
}

.cart-link:hover .cart-total {
    color: white;
}

/* Mobilna navigacija */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }

    #primary-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        display: none;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    #primary-menu.active {
        display: flex;
    }

    #primary-menu > li {
        width: 100%;
    }

    #primary-menu > li > a {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 8px;
    }

    #primary-menu > li > a:hover {
        background: var(--light-gray);
        transform: translateX(5px);
    }

    .header-cart {
        margin-left: 0;
        margin-right: 1rem;
    }

    .site-header .container {
        flex-wrap: wrap;
        padding: 1rem;
    }

    .site-title {
        font-size: 1.2rem;
    }

    .site-content {
        padding-top: 80px;
    }
}

@media (max-width: 768px) {
    .site-header .container {
        padding: 0 1rem;
    }

    .site-title {
        font-size: 1.2rem;
    }
}

/* Animacije */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.site-header.scrolled-up {
    animation: slideDown 0.3s ease forwards;
}

.site-header.scrolled-down {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

/* Scroll efekti */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .primary-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .primary-menu.active {
        display: flex;
    }
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem 0 1rem;
    margin-top: 4rem;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-widget h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
}

.footer-menu a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-contact li i {
    width: 16px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 0 1rem;
    }

    .footer-widgets {
        gap: 1.5rem;
    }

    .footer-widget {
        text-align: center;
    }

    .footer-widget h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
    }
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    color: white;
}

.footer-social-link.facebook:hover { background: #1877f2; }
.footer-social-link.instagram:hover { background: #e4405f; }
.footer-social-link.youtube:hover { background: #ff0000; }
.footer-social-link.twitter:hover { background: #000000; }

/* Newsletter sekcija */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-1.343 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
    animation: heroPattern 60s linear infinite;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.newsletter-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    padding: 0 2rem;
    background: white;
    border: none;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--light-gray);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
    }
    
    .newsletter-form button {
        position: static;
        width: 100%;
        margin-top: 1rem;
        padding: 1rem;
    }
}

/* Glavni sadržaj */
.site-content {
    min-height: calc(100vh - 80px - 400px);
}

/* Hero Section - zajednički stilovi */
.hero-section,
.shop-hero-section,
.artist-hero-section,
.category-hero {
    background: var(--gradient-primary);
    padding: 4rem 0;
    position: relative;
    margin-bottom: 3rem;
}

.hero-section::before,
.shop-hero-section::before,
.artist-hero-section::before,
.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/pattern.png');
    opacity: 0.1;
    pointer-events: none;
}

.hero-content,
.shop-hero-content,
.artist-hero-content,
.category-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.hero-text,
.shop-hero-text,
.artist-hero-text,
.category-hero .hero-text {
    text-align: center;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.hero-text h1,
.shop-hero-text h1,
.artist-hero-text h1,
.category-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-text p,
.shop-hero-text p,
.artist-hero-text p,
.category-hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Category Hero specifični stilovi */
.category-hero {
    background: var(--gradient-primary);
    padding: 4rem 0;
    position: relative;
    margin-bottom: 3rem;
}

.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/pattern.png');
    opacity: 0.1;
    pointer-events: none;
}

.category-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.category-hero .hero-text {
    text-align: center;
    color: var(--color-white);
}

.category-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Zajednički stilovi za pretraživanje */
.search-filters-container {
    max-width: 800px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

/* Zajednički stilovi za pretraživanje */
.search-filters-container2 {
    max-width: 740px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}


.filter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.search-group {
    flex: 1;
    min-width: 670px;
    position: relative;
}

.search-group input[type="search"] {
    width: 100%;
    padding: 0.8rem 1rem;
    padding-right: 3rem;
    border: none;
    border-radius: 4px;
    background: var(--color-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-group input[type="search"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-primary);
}

.search-submit {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 3rem;
    border: none;
    background: transparent;
    color: var(--color-primary);
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    color: var(--color-primary-dark);
}

.filter-group {
    flex: 0 0 auto;
    min-width: 180px;
}

.filter-group select {
    width: 100%;
    padding: 0.8rem 2rem 0.8rem 1rem;
    border: none;
    border-radius: 4px;
    background: var(--color-white);
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-6-6h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
}

/* Responzivni dizajn */
@media (max-width: 768px) {
    .hero-text h1,
    .shop-hero-text h1,
    .artist-hero-text h1,
    .category-hero h1 {
        font-size: 2rem;
    }
    
    .hero-text p,
    .shop-hero-text p,
    .artist-hero-text p,
    .category-hero .hero-description {
        font-size: 1rem;
    }
    
    .search-filters-container {
        padding: 1rem;
    }
    
    .filter-form {
        flex-direction: column;
    }
    
    .search-group,
    .filter-group {
        min-width: 100%;
    }
    
    .search-group input[type="search"],
    .filter-group select {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form button {
        width: 100%;
    }

    .products {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
}

/* Uklanjamo stare stilove za products-grid */
.products-grid {
    display: none;
}

/* Dodajemo margine za sekcije proizvoda */
.featured-products,
.new-arrivals {
    margin: 4rem 0;
}

.featured-products h2,
.new-arrivals h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.featured-products h2::after,
.new-arrivals h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Osiguravamo da WooCommerce proizvodi koriste grid prikaz */
.featured-products .products,
.new-arrivals .products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

.products::before,
.products::after {
    display: none !important;
}

@media (max-width: 1200px) {
    .featured-products .products,
    .new-arrivals .products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 992px) {
    .featured-products .products,
    .new-arrivals .products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .featured-products .products,
    .new-arrivals .products {
        grid-template-columns: 1fr !important;
    }
    
    .featured-products h2,
    .new-arrivals h2 {
        font-size: 1.8rem;
    }
}

/* Streaming linkovi */
.streaming-links {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
    padding: 0 1rem 1rem;
}

.streaming-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    color: #666;
    transition: all 0.3s ease;
}

.streaming-link:hover {
    transform: translateY(-2px);
}

.streaming-link.spotify:hover { background: #1DB954; color: #fff; }
.streaming-link.youtube:hover { background: #FF0000; color: #fff; }
.streaming-link.deezer:hover { background: #00C7F2; color: #fff; }
.streaming-link.apple-music:hover { background: #FA243C; color: #fff; }
.streaming-link.tidal:hover { background: #000000; color: #fff; }

/* Proizvodi na naslovnici */
.featured-products,
.new-arrivals {
    padding: 4rem 0;
}

.featured-products h2,
.new-arrivals h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.featured-products h2::after,
.new-arrivals h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e74c3c;
    border-radius: 3px;
}

.hero-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 1rem;
    height: 100%;
}

.mosaic-main {
    grid-column: 1 / -1;
    grid-row: 1 / 3;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.mosaic-link {
    display: block;
    height: 100%;
    position: relative;
}

.mosaic-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mosaic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.mosaic-overlay h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
}

.mosaic-artist {
    font-size: 0.9rem;
    opacity: 0.8;
}

.mosaic-link:hover img {
    transform: scale(1.05);
}

.mosaic-link:hover .mosaic-overlay {
    transform: translateY(-5px);
}

/* Grid proizvoda */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

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

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
}

/* Stilovi za prikaz proizvoda */
.product-artists {
    margin: 0.25rem 0 1rem;
    font-size: 1rem;
    text-align: center;
}

.product-artist-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.product-artist-link:hover {
    color: var(--secondary-color);
}

/* Streaming linkovi */
.streaming-links {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    background: rgba(28, 44, 92, 0.05);
    padding: 1rem;
    border-radius: 8px;
}

.streaming-link {
    color: #666;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    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);
}

.streaming-link.spotify:hover {
    color: #1DB954;
    background: rgba(29, 185, 84, 0.1);
}

.streaming-link.youtube:hover {
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
}

.streaming-link.apple-music:hover {
    color: #FA57C1;
    background: rgba(250, 87, 193, 0.1);
}

.streaming-link.deezer:hover {
    color: #00C7F2;
    background: rgba(0, 199, 242, 0.1);
}

.streaming-link.tidal:hover {
    color: #000000;
    background: rgba(0, 0, 0, 0.1);
}

/* Sekcije proizvoda */
.featured-products,
.new-arrivals {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* WooCommerce proizvodi */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100% !important;
}

.woocommerce ul.products li.product {
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    min-width: 250px !important;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex !important;
    flex-direction: column;
    position: relative;
}

.woocommerce ul.products li.product::after {
    display: none !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title::after {
    display: none !important;
}

/* Uklanjamo sve potencijalne dekorativne elemente s kartica */
.woocommerce ul.products li.product *::after {
    display: none !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.2rem !important;
    padding: 1.25rem 1.25rem 0.5rem !important;
    margin: 0 !important;
    color: var(--text-color);
    font-weight: 600;
    text-align: center;
    min-height: 3em;
    line-height: 1.4;
    border: none !important;
}

.woocommerce ul.products li.product a img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    margin: 0 !important;
    transition: transform 0.3s ease;
}

.woocommerce ul.products li.product:hover a img {
    transform: scale(1.05);
}

.woocommerce ul.products li.product .artist {
    padding: 0 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.woocommerce ul.products li.product .price {
    padding: 0.5rem 1.25rem !important;
    margin-bottom: 1rem !important;
    color: var(--primary-color) !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    display: block !important;
}

.woocommerce ul.products li.product .price del {
    color: #666 !important;
    opacity: 0.5;
    font-size: 1.1rem !important;
    font-weight: 400 !important;
    margin-right: 0.5rem;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none !important;
    font-weight: 700 !important;
}

.woocommerce ul.products li.product {
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
    padding-bottom: 1rem !important;
}

.woocommerce ul.products li.product .button {
    margin: 0 1.25rem 1.25rem !important;
    padding: 0.8em 1.5em !important;
    background: var(--primary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    font-weight: 500 !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    font-size: 1rem !important;
    width: calc(100% - 2.5rem) !important;
    display: block !important;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
}

.woocommerce ul.products li.product .button:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
}

@media (max-width: 1400px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, minmax(250px, 1fr)) !important;
    }
}

@media (max-width: 992px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(250px, 1fr)) !important;
    }
}

@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(200px, 1fr)) !important;
    }
    
    .woocommerce ul.products li.product {
        min-width: 200px !important;
    }
    
    .woocommerce ul.products li.product a img {
        height: 200px !important;
    }
}

@media (max-width: 576px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }
    
    .woocommerce ul.products li.product {
        min-width: 100% !important;
    }
}

/* Kategorije */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
    text-decoration: none;
    color: white;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    margin: 0;
    font-size: 1.2rem;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.category-card:hover h3 {
    transform: translateY(-5px);
}

/* Responzivnost */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form button {
        width: 100%;
    }

    .products {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}

/* Single Product */
.single-product .product-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.single-product .product-gallery {
    position: sticky;
    top: 100px;
    width: 100%;
}

.single-product .product_title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.single-product .product-artists {
    text-align: left;
    margin: 0.25rem 0 1.5rem;
}

.single-product .product-artist-link {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.single-product .product-artist-link:hover {
    color: var(--secondary-color);
}

.single-product .price {
    font-size: 2rem !important;
    color: var(--primary-color) !important;
    margin: 1.5rem 0 !important;
}

.single-product .stock-status {
    margin-bottom: 1.5rem;
}

.single-product .stock-status .in-stock {
    color: #28a745;
    font-weight: 500;
}

.single-product .stock-status .out-of-stock {
    color: #dc3545;
    font-weight: 500;
}

.single-product .cart-section {
    margin: 1rem 0 2rem;
}

.single-product .cart {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.single-product .quantity {
    position: relative;
    width: 120px !important;
}

.single-product .quantity input {
    width: 100% !important;
    height: 48px !important;
    padding: 0.5rem 2rem !important;
    text-align: center;
    border: 1px solid var(--border-color) !important;
    border-radius: 4px !important;
    font-size: 1.1rem;
    -moz-appearance: textfield;
}

.single-product .quantity input::-webkit-outer-spin-button,
.single-product .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.single-product .quantity::before,
.single-product .quantity::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
    z-index: 1;
}

.single-product .quantity::before {
    content: '\f068';
    left: 8px;
}

.single-product .quantity::after {
    content: '\f067';
    right: 8px;
}

.single-product .single_add_to_cart_button {
    flex: 1;
    height: 48px !important;
    background: var(--primary-color) !important;
    color: white !important;
    padding: 0 2rem !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
}

.single-product .single_add_to_cart_button:hover {
    background: var(--secondary-color) !important;
}

.single-product .wishlist-button {
    text-align: center;
}

.single-product .wishlist-button a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    height: 48px !important;
    padding: 0 !important;
    background: white !important;
    color: var(--primary-color) !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border: none !important;
}

.single-product .wishlist-button a:hover {
    background: var(--light-gray) !important;
    color: var(--primary-color) !important;
}

.single-product .wishlist-button i {
    font-size: 1.4rem !important;
}

.single-product .product-details {
    margin: 2rem 0;
}

.single-product .details-table {
    width: 100%;
    border-collapse: collapse;
}

.single-product .details-table th,
.single-product .details-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.single-product .details-table th {
    width: 30%;
    text-align: left;
    color: #666;
}

.single-product .product-description {
    margin: 2rem 0;
}

.single-product .product-streaming {
    margin: 2rem 0;
}

.single-product .streaming-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.single-product .streaming-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 1.2rem;
}

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

.single-product .product-spotify-player {
    margin: 2rem 0;
}

.single-product .spotify-embed {
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: #282828;
}

.single-product .spotify-embed iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: none;
}

.single-product .related-products {
    margin: 4rem 0;
}

.single-product .related-products h2 {
    text-align: center;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .single-product .product-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .single-product .product-gallery {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .single-product .product_title {
        font-size: 2rem;
    }
    
    .single-product .price {
        font-size: 1.75rem !important;
    }
    
    .single-product .cart {
        padding: 1rem;
    }
    
    .single-product .streaming-links {
        gap: 0.75rem;
    }
    
    .single-product .streaming-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .single-product .spotify-embed iframe {
        height: 300px;
    }
}

/* Popis pjesama */
.product-tracklist {
    margin: 3rem 0;
    width: 100%;
}

.product-tracklist h2 {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.disc-section {
    width: 100%;
    margin-bottom: 2rem;
}

.disc-section:last-child {
    margin-bottom: 0;
}

.disc-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tracklist-table {
    width: 100%;
    border-collapse: collapse;
}

.tracklist-table tr {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.tracklist-table td {
    padding: 0.75rem 0;
}

.track-number {
    width: 30px;
    color: var(--primary-color);
    font-weight: 500;
}

.track-title {
    font-weight: 400;
    padding-left: 1rem !important;
}

.track-duration {
    width: 60px;
    text-align: right;
    color: #666;
    font-weight: 400;
}

/* Galerija proizvoda */
.woocommerce-product-gallery {
    position: relative;
    width: 100%;
}

.woocommerce-product-gallery > div {
    width: 100% !important;
}

.woocommerce-product-gallery__wrapper {
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
}

.woocommerce-product-gallery__wrapper > div {
    width: 100% !important;
    flex: 0 0 100% !important;
}

.woocommerce-product-gallery .flex-viewport {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 556px !important;
    overflow: hidden !important;
}

.woocommerce-product-gallery__image {
    width: 100% !important;
    height: 556px !important;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    flex: 0 0 100% !important;
}

.woocommerce-product-gallery__image a {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.woocommerce-product-gallery__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    background: var(--light-gray);
}

.woocommerce-product-gallery .flex-control-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem !important;
    padding: 0 !important;
    width: 100%;
}

.woocommerce-product-gallery .flex-control-thumbs li {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 8px;
    overflow: hidden;
}

.woocommerce-product-gallery .flex-control-thumbs img {
    width: 100%;
    height: auto;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.woocommerce-product-gallery .flex-control-thumbs img.flex-active,
.woocommerce-product-gallery .flex-control-thumbs img:hover {
    opacity: 1;
}

/* Lista želja */
.wishlist-button {
    margin-left: 1rem;
}

.yith-wcwl-add-button a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    background: white !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

.yith-wcwl-add-button a:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px);
}

.yith-wcwl-add-button i {
    font-size: 1.4rem !important;
}

/* Admin stilovi za popis pjesama */
.tracklist-container {
    padding: 1rem;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 1rem 0;
}

.disc-section {
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border: 1px solid #eee;
    border-radius: 4px;
}

.tracks-table {
    margin: 1rem 0;
}

.tracks-table input[type="text"] {
    width: 100%;
}

.tracks-table td {
    padding: 0.5rem;
}

.button.add-track,
.button.add-disc {
    margin: 0.5rem 0;
}

.button.remove-track,
.button.remove-disc {
    color: #dc3545;
}

.woocommerce-product-gallery.images {
    width: 100% !important;
    max-width: none !important;
}

.woocommerce div.product div.images {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
}

/* Breadcrumb */
.woocommerce-breadcrumb {
    margin: 2rem 0 !important;
    padding: 1rem !important;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 0.9rem !important;
    color: #666 !important;
}

.woocommerce-breadcrumb a {
    color: var(--primary-color) !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.woocommerce-breadcrumb a:hover {
    color: var(--secondary-color) !important;
    text-decoration: underline !important;
}

.woocommerce-breadcrumb .breadcrumb-separator {
    margin: 0 0.5rem;
    color: #999;
}

/* Cart Page */
.cart-wrapper {
    margin: 3rem 0;
}

.woocommerce-cart-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 2rem;
}

.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 !important;
    border: none !important;
}

.shop_table thead {
    background: var(--light-gray);
}

.shop_table th {
    padding: 1.5rem 1rem !important;
    font-weight: 600;
    text-align: left;
    border: none !important;
}

.shop_table td {
    padding: 1.5rem 1rem !important;
    border-bottom: 1px solid var(--border-color) !important;
    border-top: none !important;
}

.shop_table tr:last-child td {
    border-bottom: none !important;
}

.product-remove a {
    color: #dc3545 !important;
    font-size: 1.5rem;
    text-decoration: none;
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.product-remove a:hover {
    background: #dc3545 !important;
    color: white !important;
}

.product-thumbnail {
    width: 100px;
}

.product-thumbnail img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    border-radius: 8px;
}

.product-name a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-name a:hover {
    color: var(--primary-color);
}

.product-price,
.product-subtotal {
    font-weight: 600;
    color: var(--primary-color);
}

.quantity input {
    width: 80px !important;
    height: 40px !important;
    padding: 0.5rem !important;
    text-align: center;
    border: 1px solid var(--border-color) !important;
    border-radius: 4px !important;
    -moz-appearance: textfield;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.actions {
    background: var(--light-gray);
    padding: 1.5rem !important;
}

.coupon {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.coupon label {
    font-weight: 500;
}

.coupon input {
    height: 48px !important;
    padding: 0 1rem !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 4px !important;
    flex: 1;
}

.button {
    height: 48px !important;
    padding: 0 2rem !important;
    background: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
}

.button:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.cart-collaterals {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 2rem;
}

.cart_totals {
    width: 100% !important;
}

.cart_totals h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.cart_totals table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.cart_totals th {
    width: 30%;
    padding: 1rem 0;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cart_totals td {
    padding: 1rem 0;
    text-align: right;
    border-bottom: 1px solid var(--border-color);
}

.cart_totals tr:last-child th,
.cart_totals tr:last-child td {
    border-bottom: none;
}

.wc-proceed-to-checkout .button {
    width: 100%;
    text-align: center;
    font-size: 1.1rem !important;
}

@media (max-width: 768px) {
    .shop_table_responsive thead {
        display: none;
    }

    .shop_table_responsive tr td {
        display: block;
        text-align: right;
        padding: 1rem !important;
    }

    .shop_table_responsive tr td::before {
        content: attr(data-title);
        float: left;
        font-weight: 600;
    }

    .product-thumbnail {
        display: none !important;
    }

    .coupon {
        flex-direction: column;
    }

    .coupon input {
        width: 100% !important;
    }

    .coupon .button {
        width: 100%;
    }
}

.cart-empty-message {
    text-align: center;
    padding: 4rem 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin: 2rem 0;
}

.cart-empty-message p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.cart-empty-message .button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cart-empty-message .button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Mini košarica */
.header-cart {
    position: relative;
}

.mini-cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 380px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.header-cart:hover .mini-cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mini-cart-content {
    padding: 1.5rem;
}

.mini-cart-products {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
}

.mini-cart-item {
    display: grid;
    grid-template-columns: 60px 1fr 24px;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.mini-cart-item:last-child {
    border-bottom: none;
}

.item-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.item-details h4 {
    font-size: 0.9rem;
    margin: 0 0 0.5rem;
    color: var(--text-color);
}

.item-price {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin: 0;
}

.mini-cart-item .remove {
    color: #dc3545;
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.mini-cart-item .remove:hover {
    color: #bd2130;
    transform: scale(1.1);
}

.mini-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
}

.mini-cart-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.mini-cart-buttons .button {
    width: 100%;
    text-align: center;
    padding: 0.75rem 0.5rem !important;
    font-size: 0.85rem !important;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-cart-buttons .view-cart {
    background: var(--light-gray) !important;
    color: var(--text-color) !important;
}

.mini-cart-buttons .checkout {
    background: var(--primary-color) !important;
    color: white !important;
}

.mini-cart-empty {
    text-align: center;
    padding: 2rem 0;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .mini-cart-dropdown {
        width: 320px;
        right: -1rem;
    }
    
    .mini-cart-buttons .button {
        font-size: 0.8rem !important;
        padding: 0.75rem 0.25rem !important;
    }
}

/* Toolbar za kategorije proizvoda */
.woocommerce-products-header {
    margin-bottom: 2rem;
}

.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.view-switcher {
    display: flex;
    gap: 10px;
    margin-right: 20px;
}

.view-switcher button {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #999; /* Svjetlija siva za neaktivne ikone */
    font-size: 20px; /* Veće ikone */
    transition: all 0.3s ease;
    width: 40px; /* Fiksna širina */
    height: 40px; /* Fiksna visina */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.view-switcher button:hover {
    color: #333;
    background-color: #f5f5f5;
}

.view-switcher button.active {
    color: #2c2c2c;
    background-color: #f0f0f0;
}

.woocommerce-ordering {
    margin: 0 !important;
}

.woocommerce-ordering select {
    padding: 0.6rem 2.5rem 0.6rem 1rem !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 6px !important;
    background-color: white !important;
    font-size: 0.9rem !important;
    color: var(--text-color) !important;
    cursor: pointer !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.7rem center !important;
    background-size: 1em !important;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.products-search {
    position: relative;
    min-width: 250px;
}

.products-search input[type="search"] {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
}

.products-search button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1rem;
}

/* List view stilovi */
.products.list-view {
    display: block;
    margin: 0;
    padding: 0;
}

ul.products.list-view {
    display: block;
    margin: 0;
    padding: 0;
}

ul.products.list-view li.product {
    width: 100%;
    display: grid;
    grid-template-columns: 60px minmax(200px, 1fr) auto auto;
    gap: 20px;
    align-items: center;
    padding: 12px;
    margin: 0;
    border-bottom: 1px solid #eee;
    background: #fff;
}

ul.products.list-view li.product:hover {
    background: #f9f9f9;
}

ul.products.list-view li.product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 0;
}

ul.products.list-view li.product .product-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

ul.products.list-view li.product .woocommerce-loop-product__title {
    font-size: 15px;
    margin: 0;
    padding: 0;
}

ul.products.list-view li.product .artist {
    font-size: 13px;
    color: #666;
    margin: 0;
}

ul.products.list-view li.product .price {
    font-size: 15px;
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
}

ul.products.list-view li.product .streaming-links {
    display: flex;
    gap: 8px;
    margin: 0;
}

ul.products.list-view li.product .streaming-link {
    width: 24px;
    height: 24px;
    font-size: 14px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.2s;
}

ul.products.list-view li.product .streaming-link:hover {
    color: #333;
}

@media (max-width: 992px) {
    ul.products.list-view li.product {
        grid-template-columns: 50px minmax(150px, 1fr) auto auto;
        gap: 15px;
    }
    
    ul.products.list-view li.product img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    ul.products.list-view li.product {
        grid-template-columns: 40px 1fr auto;
        gap: 10px;
        padding: 8px;
    }
    
    ul.products.list-view li.product img {
        width: 40px;
        height: 40px;
    }
    
    ul.products.list-view li.product .streaming-links {
        display: none;
    }
}

@media (max-width: 576px) {
    ul.products.list-view li.product {
        grid-template-columns: 40px 1fr auto;
    }
    
    ul.products.list-view li.product .button {
        display: none;
    }
}

/* View Switcher Styles */
.view-switcher {
    display: flex;
    gap: 10px;
    margin-right: 20px;
}

.view-switcher button {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.view-switcher button:hover,
.view-switcher button.active {
    color: #e91e63;
}

@media (max-width: 992px) {
    .products.list-view li.product {
        grid-template-columns: 200px 1fr !important;
    }
    
    .products.list-view li.product .button {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 768px) {
    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .toolbar-left,
    .toolbar-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .products-search {
        min-width: 100%;
    }
    
    .products.list-view li.product {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
    
    .products.list-view li.product .product-content {
        text-align: center !important;
    }
    
    .products.list-view .streaming-links {
        justify-content: center !important;
    }
}

/* Header Search */
.header-search {
    position: relative;
    margin-left: 20px;
}

.search-toggle {
    background: none;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.search-toggle:hover {
    background-color: rgba(0,0,0,0.05);
}

.search-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 10px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-search-form {
    display: flex;
    width: 100%;
}

/* Dodajemo ponovno pravila za nonce input polje */
#search_nonce {
    display: none;
}

/* Stilovi za live search rezultate */
.live-search-results {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.live-search-results.has-results {
    max-height: 400px;
    overflow-y: auto;
    opacity: 1;
    margin-top: 10px;
    padding-right: 5px;
}

.searching {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    color: #777;
    text-align: center;
}

.searching span {
    position: relative;
    padding-left: 25px;
}

.searching span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-top: 2px solid var(--main-color, #e83e8c);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.search-section {
    margin-bottom: 15px;
}

.search-section-title {
    font-size: 14px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}

.search-results-grid {
    display: grid;
    gap: 8px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.search-result-image {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #999;
    font-size: 16px;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-content {
    flex: 1;
}

.search-result-content h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 2px;
    color: #333;
    line-height: 1.3;
}

.search-result-content .artist,
.search-result-content .count,
.search-result-content .date {
    font-size: 12px;
    color: #777;
    display: block;
    line-height: 1.3;
}

.search-result-content .price {
    font-size: 13px;
    color: var(--main-color, #e83e8c);
    font-weight: 500;
    display: block;
    margin-top: 2px;
}

.view-all-results {
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 5px;
}

.view-all-results a {
    color: var(--main-color, #e83e8c);
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}

.view-all-results a:hover {
    text-decoration: underline;
}

.no-results {
    padding: 20px 0;
    text-align: center;
    color: #777;
    font-size: 14px;
}

.error {
    padding: 20px 0;
    text-align: center;
    color: #e74c3c;
    font-size: 14px;
}

@media (max-width: 576px) {
    .search-dropdown {
        width: 280px;
        right: -70px;
    }
    
    .search-dropdown:before {
        right: 80px;
    }
}

/* Stranica izvođača */
.artist-single {
    margin: 3rem 0;
}

.artist-header {
    position: relative;
    margin-bottom: 3rem;
}

.artist-cover {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--light-gray);
}

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

.artist-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.artist-title {
    font-size: 3rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.artist-genre {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.artist-sidebar {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.artist-main {
    flex: 1;
}

.artist-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 3rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.artist-social-links,
.artist-streaming {
    margin-top: 3rem;
    text-align: left;
}

.artist-social-links h3,
.artist-streaming h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.social-links,
.streaming-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.social-link,
.streaming-link {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    font-size: 0.9rem;
    min-width: fit-content;
}

.social-link:hover,
.streaming-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.social-link i,
.streaming-link i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Društvene mreže hover boje */
.social-link.facebook:hover { background: #1877f2; border-color: #1877f2; }
.social-link.instagram:hover { background: #e4405f; border-color: #e4405f; }
.social-link.website:hover { background: #2ecc71; border-color: #2ecc71; }
.social-link.tiktok:hover { background: #000000; border-color: #000000; }
.social-link.twitter:hover { background: #000000; border-color: #000000; }

/* Streaming servisi hover boje */
.streaming-link.spotify:hover { background: #1DB954; border-color: #1DB954; }
.streaming-link.youtube:hover { background: #FF0000; border-color: #FF0000; }
.streaming-link.deezer:hover { background: #00C7F2; border-color: #00C7F2; }
.streaming-link.apple-music:hover { background: #FA243C; border-color: #FA243C; }
.streaming-link.tidal:hover { background: #000000; border-color: #000000; }

@media (max-width: 768px) {
    .social-links,
    .streaming-links {
        gap: 0.75rem;
    }

    .social-link,
    .streaming-link {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .social-link i,
    .streaming-link i {
        margin-right: 0.5rem;
        font-size: 1rem;
    }

    .artist-social-links h3,
    .artist-streaming h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

.artist-products {
    margin: 3rem 0;
}

.artist-products h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #fff;
    text-align: left;
}

.artist-products .woocommerce ul.products {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.artist-products .woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    transition: all 0.3s ease;
}

.artist-products .woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.artist-products .woocommerce ul.products li.product img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin: 0;
    transition: transform 0.3s ease;
}

.artist-products .woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}

.artist-products .woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 1rem;
    margin: 0;
    font-size: 1rem;
    color: #fff;
    text-align: center;
}

.artist-products .woocommerce ul.products li.product .price {
    padding: 0 1rem;
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    text-align: center;
}

.artist-products .woocommerce ul.products li.product .price del {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.artist-products .woocommerce ul.products li.product .price ins {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

.artist-products .woocommerce ul.products li.product .button {
    display: block;
    width: 100%;
    margin: 1rem 0 0 0;
    padding: 0.8rem;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.artist-products .woocommerce ul.products li.product .button:hover {
    background: var(--primary-color-hover);
}

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

@media (max-width: 768px) {
    .artist-products .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .artist-products .woocommerce ul.products li.product img {
        height: 200px;
    }

    .artist-products h3 {
        font-size: 1.5rem;
    }
}

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

    .artist-products .woocommerce ul.products li.product a img {
        height: 180px;
    }
}

.artist-gallery {
    margin: 3rem 0;
}

.artist-gallery h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: transform 0.3s ease;
}

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

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

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

.artist-spotify-player {
    margin: 3rem 0;
}

.artist-spotify-player h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.artist-spotify-player .spotify-embed {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #282828;
}

.artist-spotify-player .spotify-embed iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: none;
}

@media (max-width: 768px) {
    .artist-spotify-player .spotify-embed iframe {
        height: 300px;
    }
}

/* Archive Artists Page */
.archive-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.archive-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM57 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-1.343 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
    animation: heroPattern 60s linear infinite;
    z-index: 1;
}

.archive-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.archive-filters {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.genre-filter select {
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.genre-filter select:hover,
.genre-filter select:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    outline: none;
}

.artist-search input[type="search"] {
    width: 100%;
    padding: 1rem 3rem 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.artist-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.artist-search input[type="search"]:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    outline: none;
}

.artist-search button {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.artist-search button:hover {
    transform: translateY(-50%) scale(1.1);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.artist-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 350px;
}

.artist-card:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.artist-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.artist-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        transparent 100%
    );
    color: #fff;
}

.artist-card-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.artist-card-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.artist-card-info {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.artist-card-genre {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.875rem;
    backdrop-filter: blur(5px);
}

.artist-card-releases {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Uklanjamo stare stilove za linkove */
.artist-card-links,
.artist-card-social,
.artist-card-streaming {
    display: none;
}

/* Responzivni dizajn */
@media (max-width: 1200px) {
    .artists-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .artist-card {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .artist-card {
        height: 350px;
    }
}

/* Novosti sekcija */
.news-section {
    padding: 4rem 0;
    background: #fff;
}

.news-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--text-color);
}

.news-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-color);
}

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

.news-card-image {
    position: relative;
    width: 100%;
    padding-top: 66%;
    overflow: hidden;
    display: block;
}

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

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

.news-card .no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #999;
}

.news-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.news-meta {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-date i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.news-title {
    font-size: 1.2rem;
    margin: 0 0 1rem;
    line-height: 1.4;
}

.news-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.news-title a:hover {
    color: var(--primary-color);
}

.news-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    margin-top: auto;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more:hover i {
    transform: translateX(3px);
}

.no-news {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    color: #666;
}

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

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-section h2 {
        font-size: 1.8rem;
    }
    
    .news-card {
        margin-bottom: 0;
    }
}

/* Single Post */
.single-post {
    margin: 4rem 0;
}

.post-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.post-header {
    margin-bottom: 2rem;
}

.post-thumbnail {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--light-gray);
    font-size: 0.95rem;
    color: #666;
}

.post-date,
.post-categories {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-date i,
.post-categories i {
    color: var(--primary-color);
}

.post-categories a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-categories a:hover {
    color: var(--primary-color);
}

.post-title {
    font-size: 2.5rem;
    margin: 0;
    padding: 2rem 2rem 0;
    color: var(--text-color);
    line-height: 1.3;
}

.post-body {
    padding: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.post-body h2,
.post-body h3,
.post-body h4 {
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.post-body ul,
.post-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.post-body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-color);
    background: var(--light-gray);
    font-style: italic;
    color: #666;
}

.post-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    background: var(--light-gray);
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.post-tags i {
    color: var(--primary-color);
}

.post-tags a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-tags a:hover {
    color: var(--primary-color);
}

.post-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.prev-post,
.next-post {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.prev-post:hover,
.next-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    color: var(--primary-color);
}

.prev-post i,
.next-post i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.prev-post span,
.next-post span {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.prev-post small,
.next-post small {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-post {
    text-align: right;
}

.next-post span {
    align-items: flex-end;
}

@media (max-width: 992px) {
    .post-title {
        font-size: 2rem;
        padding: 1.5rem 1.5rem 0;
    }

    .post-meta,
    .post-body,
    .post-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .single-post {
        margin: 2rem 0;
    }

    .post-thumbnail {
        height: 300px;
    }

    .post-title {
        font-size: 1.8rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .post-body {
        font-size: 1rem;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .next-post {
        text-align: left;
    }

    .next-post span {
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .post-thumbnail {
        height: 200px;
    }

    .post-title {
        font-size: 1.5rem;
    }
}

/* Post Share Buttons */
.post-share {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.post-share h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-button i {
    font-size: 1rem;
}

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

.share-button.facebook {
    background: #1877f2;
}

.share-button.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.share-button.twitter {
    background: #000000;
}

.share-button.linkedin {
    background: #0077b5;
}

.share-button.whatsapp {
    background: #25d366;
}

.share-button.email {
    background: #666666;
}

.share-button.copy {
    background: var(--primary-color);
}

@media (max-width: 576px) {
    .share-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .share-button {
        width: 100%;
        justify-content: center;
    }
}

/* Tooltip za kopiranje linka */
.copy-tooltip {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.copy-tooltip.show {
    opacity: 1;
    visibility: visible;
}

/* Archive News Page */
.archive-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem 0;
    margin-bottom: 3rem;
    color: white;
    text-align: center;
}

.archive-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.archive-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
    opacity: 0.9;
}

.archive-filters {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.filter-form {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.filter-group {
    position: relative;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    appearance: none;
}

.filter-group select {
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 1em;
}

.filter-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.filter-group .search-submit {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}

.view-switcher {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.view-switcher button {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-switcher button:hover,
.view-switcher button.active {
    background: white;
    color: var(--primary-color);
}

/* Grid View */
.news-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-archive-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.news-archive-image {
    position: relative;
    padding-top: 66%;
    overflow: hidden;
}

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

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

.news-archive-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* List View */
.news-archive-grid.list-view {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.news-archive-grid.list-view .news-archive-card {
    flex-direction: row;
    align-items: stretch;
}

.news-archive-grid.list-view .news-archive-image {
    width: 300px;
    padding-top: 0;
    flex-shrink: 0;
}

.news-archive-grid.list-view .news-archive-content {
    padding: 2rem;
}

.news-archive-grid.list-view .news-title {
    font-size: 1.5rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 6px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pagination .page-numbers.current {
    background: var(--primary-color);
    color: white;
}

.pagination .page-numbers:hover:not(.current) {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 1200px) {
    .news-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .filter-form {
        grid-template-columns: 1fr;
    }

    .news-archive-grid.list-view .news-archive-card {
        flex-direction: column;
    }

    .news-archive-grid.list-view .news-archive-image {
        width: 100%;
        padding-top: 66%;
    }
}

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

    .news-archive-grid {
        grid-template-columns: 1fr;
    }

    .archive-filters {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .archive-title {
        font-size: 1.8rem;
    }

    .pagination .page-numbers {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem;
    background: var(--light-gray);
    border-radius: 12px;
    margin: 2rem 0;
}

.no-results p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Stranice */
.single-page {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 4rem 0;
}

.page-header {
    position: relative;
    margin-bottom: 2rem;
}

.page-thumbnail {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.page-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-title {
    font-size: 2.5rem;
    margin: 0;
    padding: 2rem 2rem 0;
    color: var(--text-color);
    line-height: 1.3;
}

.page-body {
    padding: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.page-body p {
    margin-bottom: 1.5rem;
}

.page-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.page-body h2,
.page-body h3,
.page-body h4 {
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.page-body ul,
.page-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-body li {
    margin-bottom: 0.5rem;
}

.page-body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-color);
    background: var(--light-gray);
    font-style: italic;
    color: #666;
}

/* Responzivnost za stranice */
@media (max-width: 992px) {
    .page-title {
        font-size: 2rem;
        padding: 1.5rem 1.5rem 0;
    }

    .page-body {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .single-page {
        margin: 2rem 0;
    }

    .page-thumbnail {
        height: 300px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-body {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-thumbnail {
        height: 200px;
    }

    .page-title {
        font-size: 1.5rem;
    }
}

/* WooCommerce stranice padding */
.woocommerce-cart .page-content,
.woocommerce-checkout .page-content,
.woocommerce-account .page-content {
    padding-top: 4rem;
}

/* Responzivnost za WooCommerce stranice */
@media (max-width: 768px) {
    .woocommerce-cart .page-content,
    .woocommerce-checkout .page-content,
    .woocommerce-account .page-content {
        padding-top: 2rem;
    }
}

/* Sakrij poruku o uštedi u košarici */
.woocommerce-cart .woocommerce-cart-form .product-price .savings,
.woocommerce-cart .woocommerce-cart-form .product-subtotal .savings {
    display: none !important;
}

/* Sakrij sve poruke o uštedi */
.wc-block-components-product-badge.wc-block-components-sale-badge,
.wc-block-components-sale-badge,
.woocommerce-cart .woocommerce-cart-form .product-price .savings,
.woocommerce-cart .woocommerce-cart-form .product-subtotal .savings {
    display: none !important;
}

/* Progress bar za besplatnu dostavu */
.free-shipping-progress {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.progress-message {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Artist Archive Hero Section */
.artist-hero-section {
    background: linear-gradient(135deg, #ff69b4 0%, #FF69B4 50%, #b4ff69 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.artist-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
    pointer-events: none;
}

.artist-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.artist-hero-text {
    margin-bottom: 40px;
}

.artist-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.artist-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.artist-search-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.artist-search-container .genre-filter {
    flex: 1;
    min-width: 200px;
}

.artist-search-container .genre-filter select {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.artist-search-container .genre-filter select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.artist-search-container .genre-filter select option {
    background: #fff;
    color: #333;
}

.artist-search-container .artist-search {
    flex: 2;
    min-width: 300px;
    position: relative;
}

.artist-search-container .artist-search input[type="search"] {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.artist-search-container .artist-search input[type="search"]:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.artist-search-container .artist-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.artist-search-container .artist-search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.artist-search-container .artist-search button:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .artist-hero-section {
        padding: 60px 0;
        margin-bottom: 40px;
    }
    
    .artist-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .artist-hero-text p {
        font-size: 1rem;
    }

    .artist-search-container {
        flex-direction: column;
    }

    .artist-search-container .genre-filter,
    .artist-search-container .artist-search {
        width: 100%;
    }
}

/* Shop Hero Section */
.shop-hero-section {
    background: linear-gradient(135deg, #ff69b4 0%, #FF69B4 50%, #b4ff69 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.shop-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
    pointer-events: none;
}

.shop-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.shop-hero-text {
    margin-bottom: 40px;
}

.shop-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.shop-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.shop-search-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.shop-search {
    flex: 2;
    min-width: 300px;
    position: relative;
}

.shop-search input[type="search"] {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.shop-search input[type="search"]:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.shop-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.shop-search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.shop-search button:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .shop-hero-section {
        padding: 60px 0;
        margin-bottom: 40px;
    }
    
    .shop-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .shop-hero-text p {
        font-size: 1rem;
    }

    .shop-search-container {
        flex-direction: column;
    }

    .shop-search {
        width: 100%;
    }
}

/* Shop Header Styles */
.shop-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

.shop-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.shop-header .site-branding {
    flex: 0 0 auto;
}

.shop-header .main-navigation {
    flex: 1;
    margin: 0 2rem;
}

.shop-header .nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-header .nav-menu li {
    margin: 0 1rem;
}

.shop-header .nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.shop-header .nav-menu a:hover {
    color: #e91e63;
}

.shop-header .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shop-header .search-toggle button,
.shop-header .cart-toggle a {
    background: none;
    border: none;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.shop-header .search-toggle button:hover,
.shop-header .cart-toggle a:hover {
    color: #e91e63;
}

.shop-header .cart-count {
    background: #e91e63;
    color: #fff;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.search-overlay .search-form {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.search-overlay .search-field {
    width: 100%;
    padding: 1rem;
    font-size: 1.5rem;
    border: none;
    border-bottom: 2px solid #e91e63;
    background: none;
    outline: none;
}

.search-overlay .search-form button {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #e91e63;
    font-size: 1.2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .shop-header .main-navigation {
        display: none;
    }
    
    .shop-header .header-content {
        padding: 0.5rem 0;
    }
}

/* WooCommerce List View */
ul.products.list-view {
    display: block !important;
    margin: 0 !important;
}

ul.products.list-view li.product {
    width: 100% !important;
    float: none !important;
    display: grid !important;
    grid-template-columns: 120px 2fr 1fr auto !important;
    gap: 20px;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px !important;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

ul.products.list-view li.product:hover {
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* Slika proizvoda */
ul.products.list-view li.product img {
    width: 120px !important;
    height: 120px !important;
    object-fit: cover;
    margin: 0 !important;
    border-radius: 4px;
}

/* Glavni sadržaj (naslov i izvođač) */
ul.products.list-view li.product .product-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

ul.products.list-view li.product .woocommerce-loop-product__title {
    font-size: 1.2em !important;
    margin: 0 !important;
    color: #2c2c2c;
}

ul.products.list-view li.product .artist {
    font-size: 0.95em;
    color: #666;
    margin: 0;
}

/* Cijena */
ul.products.list-view li.product .price {
    font-size: 1.1em !important;
    margin: 0 !important;
    color: #2c2c2c;
    font-weight: 600;
}

ul.products.list-view li.product .price del {
    font-size: 0.85em;
    color: #999;
    margin-right: 5px;
}

ul.products.list-view li.product .price ins {
    text-decoration: none;
    color: #e53935;
}

/* Streaming servisi i gumb */
ul.products.list-view li.product .product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

ul.products.list-view li.product .streaming-links {
    display: flex;
    gap: 8px;
}

ul.products.list-view li.product .streaming-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 4px;
    color: #666;
    transition: all 0.3s ease;
}

ul.products.list-view li.product .streaming-link:hover {
    color: #fff;
}

ul.products.list-view li.product .button {
    margin: 0 !important;
    padding: 8px 16px !important;
}

/* Responzivni dizajn */
@media (max-width: 992px) {
    ul.products.list-view li.product {
        grid-template-columns: 100px 2fr 1fr !important;
    }
    
    ul.products.list-view li.product img {
        width: 100px !important;
        height: 100px !important;
    }
    
    ul.products.list-view li.product .product-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    ul.products.list-view li.product {
        grid-template-columns: 80px 1fr !important;
        gap: 15px;
    }
    
    ul.products.list-view li.product img {
        width: 80px !important;
        height: 80px !important;
    }
    
    ul.products.list-view li.product .price {
        grid-column: 2;
        text-align: left;
    }
    
    ul.products.list-view li.product .product-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    ul.products.list-view li.product .streaming-links {
        order: 2;
    }
    
    ul.products.list-view li.product .button {
        order: 1;
        width: 100%;
    }
}

/* Početna stranica - card view */
.home ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Trgovina - tablični prikaz */
.woocommerce-shop ul.products.list-view {
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product {
    display: table-row;
    width: 100%;
    background: #fff;
}

.woocommerce-shop ul.products.list-view li.product > * {
    display: table-cell;
    vertical-align: middle;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.woocommerce-shop ul.products.list-view li.product .product-image {
    width: 60px;
    padding: 8px;
}

.woocommerce-shop ul.products.list-view li.product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .product-title {
    width: 30%;
}

.woocommerce-shop ul.products.list-view li.product .woocommerce-loop-product__title {
    font-size: 15px;
    margin: 0;
    padding: 0;
    color: #333;
}

.woocommerce-shop ul.products.list-view li.product .artist {
    width: 20%;
    font-size: 14px;
    color: #666;
}

.woocommerce-shop ul.products.list-view li.product .price {
    width: 15%;
    font-size: 15px;
    font-weight: bold;
    white-space: nowrap;
    color: #333;
}

.woocommerce-shop ul.products.list-view li.product .streaming-links {
    width: 20%;
    display: flex;
    gap: 8px;
    justify-content: flex-start;
}

.woocommerce-shop ul.products.list-view li.product .streaming-link {
    width: 24px;
    height: 24px;
    font-size: 14px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.2s;
}

.woocommerce-shop ul.products.list-view li.product .button {
    width: 15%;
    text-align: right;
    padding: 8px 16px;
    font-size: 14px;
    background: #333;
    color: #fff;
    border-radius: 4px;
}

/* Zaglavlje tablice */
.woocommerce-shop ul.products.list-view:before {
    content: "";
    display: table-row;
    background: #f5f5f5;
}

.woocommerce-shop ul.products.list-view:before > * {
    display: table-cell;
    padding: 12px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    font-size: 13px;
}

@media (max-width: 992px) {
    .woocommerce-shop ul.products.list-view li.product .streaming-links {
        display: none;
    }
    
    .woocommerce-shop ul.products.list-view li.product .product-title {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .woocommerce-shop ul.products.list-view li.product {
        display: grid;
        grid-template-columns: 60px 1fr auto;
        gap: 12px;
        padding: 8px;
    }
    
    .woocommerce-shop ul.products.list-view li.product > * {
        display: block;
        width: auto;
        border: none;
    }
    
    .woocommerce-shop ul.products.list-view li.product .artist {
        font-size: 13px;
    }
    
    .woocommerce-shop ul.products.list-view:before {
        display: none;
    }
}

/* Zaglavlje tablice */
.woocommerce-shop .products-header.list-view-header {
    display: none;
    width: 100%;
    background: #f5f5f5;
    margin-bottom: 1px;
}

.woocommerce-shop .products-header.list-view-header.active {
    display: table;
}

.woocommerce-shop .products-header .header-row {
    display: table-row;
}

.woocommerce-shop .products-header .header-cell {
    display: table-cell;
    padding: 12px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    font-size: 13px;
    vertical-align: middle;
}

.woocommerce-shop .products-header .header-cell:nth-child(1) { width: 60px; }
.woocommerce-shop .products-header .header-cell:nth-child(2) { width: 30%; }
.woocommerce-shop .products-header .header-cell:nth-child(3) { width: 20%; }
.woocommerce-shop .products-header .header-cell:nth-child(4) { width: 15%; }
.woocommerce-shop .products-header .header-cell:nth-child(5) { width: 20%; }
.woocommerce-shop .products-header .header-cell:nth-child(6) { width: 15%; text-align: right; }

@media (max-width: 992px) {
    .woocommerce-shop .products-header .header-cell:nth-child(5) { display: none; }
    .woocommerce-shop .products-header .header-cell:nth-child(2) { width: 40%; }
}

@media (max-width: 768px) {
    .woocommerce-shop .products-header.list-view-header {
        display: none !important;
    }
}

/* Početna stranica - grid prikaz */
.home ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Shop stranica - tablični prikaz */
.woocommerce-shop ul.products.list-view {
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.woocommerce-shop .products-header.list-view-header {
    display: none;
    background: #f8f9fa;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.woocommerce-shop .products-header.list-view-header.active {
    display: block;
}

.woocommerce-shop .products-header .header-row {
    display: grid;
    grid-template-columns: 80px 3fr 2fr 1fr 2fr 1fr;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    font-weight: 600;
}

.woocommerce-shop ul.products.list-view li.product {
    display: grid;
    grid-template-columns: 80px 3fr 2fr 1fr 2fr 1fr;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0.5rem;
    margin: 0;
    border-bottom: 1px solid #eee;
}

.woocommerce-shop ul.products.list-view li.product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .woocommerce-loop-product__title {
    font-size: 1rem;
    margin: 0;
    padding: 0;
}

.woocommerce-shop ul.products.list-view li.product .artist {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .price {
    font-size: 1rem;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .streaming-links {
    display: flex;
    gap: 0.5rem;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .streaming-link {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    color: #666;
    transition: all 0.2s;
}

.woocommerce-shop ul.products.list-view li.product .button {
    margin: 0;
    padding: 0.5rem 1rem;
    text-align: center;
    background: #f8f9fa;
    border: none;
    border-radius: 4px;
    color: #333;
    transition: all 0.2s;
}

@media (max-width: 992px) {
    .woocommerce-shop ul.products.list-view li.product {
        grid-template-columns: 80px 3fr 2fr 1fr 1fr;
    }
    
    .woocommerce-shop .products-header .header-row {
        grid-template-columns: 80px 3fr 2fr 1fr 1fr;
    }
    
    .woocommerce-shop ul.products.list-view li.product .streaming-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .woocommerce-shop ul.products.list-view li.product {
        grid-template-columns: 60px 2fr 1fr;
        gap: 0.5rem;
    }
    
    .woocommerce-shop .products-header .header-row {
        grid-template-columns: 60px 2fr 1fr;
    }
    
    .woocommerce-shop ul.products.list-view li.product .artist {
        display: block;
        grid-column: 2;
    }
    
    .woocommerce-shop ul.products.list-view li.product .button {
        display: none;
    }
}

/* Stilovi za live search rezultate */
.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 70vh;
    overflow-y: auto;
    display: none;
    margin-top: 5px;
    padding: 0;
    min-width: 300px;
}

.live-search-results.has-results {
    display: block;
}

.hero-section .live-search-results,
.shop-search-container .live-search-results {
    width: 100%;
    max-width: 600px;
    min-height: 200px;
    z-index: 1010;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    border-radius: 4px;
    border: 1px solid #e1e1e1;
}

.search-form {
    position: relative;
}

.search-form form {
    display: flex;
    width: 100%;
}

.search-form input[type="search"] {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.search-form button[type="submit"] {
    background: var(--main-color, #e83e8c);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-form button[type="submit"]:hover {
    background: var(--main-hover-color, #c82071);
}

.search-section {
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.search-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.search-section-title {
    font-size: 14px;
    margin: 0 0 10px 0;
    padding: 8px 10px;
    background: #f5f5f5;
    border-left: 3px solid var(--main-color, #e83e8c);
}

.search-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 10px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
    border-radius: 4px;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}

.search-result-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-content {
    flex-grow: 1;
    overflow: hidden;
}

.search-result-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-content .artist,
.search-result-content .genre,
.search-result-content .date {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.search-result-content .price {
    font-weight: bold;
    color: #222;
    font-size: 13px;
}

.view-all-results {
    padding: 12px;
    text-align: center;
    border-top: 1px solid #e1e1e1;
    background: #f9f9f9;
}

.view-all-results a {
    color: var(--main-color, #e83e8c);
    text-decoration: none;
    font-weight: 500;
    display: block;
    transition: color 0.2s;
}

.view-all-results a:hover {
    color: var(--main-hover-color, #c82071);
    text-decoration: underline;
}

.searching,
.no-results,
.error {
    padding: 20px 15px;
    text-align: center;
    color: #666;
}

.searching {
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzgiIGhlaWdodD0iMzgiIHZpZXdCb3g9IjAgMCAzOCAzOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiNlODNlOGMiPiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMSAxKSIgc3Ryb2tlLXdpZHRoPSIyIj4gICAgICAgICAgICA8Y2lyY2xlIHN0cm9rZS1vcGFjaXR5PSIuNSIgY3g9IjE4IiBjeT0iMTgiIHI9IjE4Ii8+ICAgICAgICAgICAgPHBhdGggZD0iTTM2IDE4YzAtOS45NC04LjA2LTE4LTE4LTE4Ij4gICAgICAgICAgICAgICAgPGFuaW1hdGVUcmFuc2Zvcm0gICAgICAgICAgICAgICAgICAgIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgICAgICAgICAgICAgICAgICAgIHR5cGU9InJvdGF0ZSIgICAgICAgICAgICAgICAgICAgIGZyb209IjAgMTggMTgiICAgICAgICAgICAgICAgICAgICB0bz0iMzYwIDE4IDE4IiAgICAgICAgICAgICAgICAgICAgZHVyPSIxcyIgICAgICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIi8+ICAgICAgICAgICAgPC9wYXRoPiAgICAgICAgPC9nPiAgICA8L2c+PC9zdmc+') center center no-repeat;
    background-size: 30px;
    height: 80px;
}

/* Dodatni stil za tražilicu na početnoj stranici */
.hero-section .search-form {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Dodatni stilovi za bolju vidljivost rezultata na početnoj stranici */
.hero-section .live-search-results {
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    border-radius: 4px;
    border: 1px solid #e1e1e1;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1010;
}

/* Stilovi za shop tražilicu */
.shop-search-container .live-search-results {
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1010;
}

/* Ispravak za mobilne uređaje */
@media (max-width: 768px) {
    .hero-section .live-search-results,
    .shop-search-container .live-search-results {
        position: absolute;
        width: 100%;
        max-height: 400px;
        max-width: 100%;
    }
    
    .search-result-image {
        width: 50px;
        height: 50px;
    }
    
    .search-result-content h4 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .search-result-image {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .search-result-content .artist,
    .search-result-content .genre,
    .search-result-content .date {
        font-size: 11px;
    }
}

/* Stilovi za stranicu rezultata pretraživanja */
.search-results-page {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.search-results-page .container {
    max-width: 1200px;
    margin: 0 auto;
}

.search-results-page .page-header {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.search-results-page .page-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.search-results-page .page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--main-color, #e83e8c);
}

.search-results-page .page-title span {
    color: var(--main-color, #e83e8c);
}

.search-results-page .search-form-container {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 0 15px;
}

.search-results-container {
    margin-top: 40px;
}

.search-section {
    margin-bottom: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-section:last-child {
    margin-bottom: 0;
}

.search-section-title {
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    color: #333;
    position: relative;
}

.search-section-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--main-color, #e83e8c);
}

/* Stilovi za sekciju proizvoda */
.search-results-page .products-section .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.search-results-page .products-section .product {
    margin-bottom: 0 !important;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.search-results-page .products-section .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Stilovi za sekciju izvođača */
.search-results-page .artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.search-results-page .artist-card {
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}

.search-results-page .artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.search-results-page .artist-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.search-results-page .artist-image {
    height: 220px;
    overflow: hidden;
}

.search-results-page .artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.search-results-page .artist-card:hover .artist-image img {
    transform: scale(1.05);
}

.search-results-page .artist-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #ccc;
    font-size: 4rem;
}

.search-results-page .artist-info {
    padding: 15px;
    text-align: center;
}

.search-results-page .artist-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.search-results-page .artist-genre {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 5px;
    font-style: italic;
}

.search-results-page .artist-count {
    font-size: 14px;
    color: #777;
    display: block;
}

/* Stilovi za sekciju članaka */
.search-results-page .posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.search-results-page .post-card {
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}

.search-results-page .post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.search-results-page .post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.search-results-page .post-thumbnail {
    height: 200px;
    overflow: hidden;
}

.search-results-page .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.search-results-page .post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.search-results-page .post-content {
    padding: 20px;
}

.search-results-page .post-title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.search-results-page .post-meta {
    margin-bottom: 10px;
    font-size: 14px;
    color: #888;
}

.search-results-page .post-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.search-results-page .post-excerpt p {
    margin: 0;
}

/* Stil za poruku kad nema rezultata */
.search-results-page .no-results {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-results-page .no-results p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Responzivni stilovi */
@media (max-width: 1200px) {
    .search-results-page .products-section .products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .search-results-page .products-section .products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .search-results-page .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .search-results-page {
        padding: 40px 0;
    }
    
    .search-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .search-results-page .page-title {
        font-size: 24px;
    }
    
    .search-results-page .products-section .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .search-results-page .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .search-results-page .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .search-results-page .artist-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .search-results-page .products-section .products {
        grid-template-columns: 1fr;
    }
    
    .search-results-page .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .search-results-page .page-title {
        font-size: 22px;
    }
    
    .search-section-title {
        font-size: 20px;
    }
}

/* Dodatni stilovi za stranicu rezultata pretraživanja */
.search-results-page .results-count {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
    font-style: italic;
}

.search-results-page .post-thumbnail.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #ccc;
    font-size: 3rem;
    height: 200px;
}

.search-results-page .no-results .btn-primary {
    display: inline-block;
    background-color: var(--main-color, #e83e8c);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.search-results-page .no-results .btn-primary:hover {
    background-color: var(--main-hover-color, #c82071);
}

.search-results-page .post-date i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .search-results-page .results-count {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .search-results-page .post-thumbnail.no-image {
        height: 160px;
        font-size: 2.5rem;
    }
}

/* Stilovi za izvođače u pretragama */
.search-result-item .artist {
    color: var(--main-color, #e83e8c);
    font-weight: 500;
}

.search-result-item:hover .artist {
    color: #c62b71;
}

/* Poboljšani stilovi za live search rezultate */
.live-search-results {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
}

.live-search-results.has-results {
    max-height: 500px;
    overflow-y: auto;
    opacity: 1;
    margin-top: 10px;
    padding: 10px;
    background: #fff;
    border: 1px solid #eee;
}

/* Treba biti ispred drugih elemenata */
.header-search .live-search-results.has-results {
    z-index: 9999;
}

/* Prikazivanje vrste rezultata za izvođače */
.search-result-item .count {
    display: inline-flex;
    align-items: center;
    color: #777;
    font-size: 12px;
}

.search-result-item .count::before {
    content: '\f001';
    font-family: 'Font Awesome 5 Free';
    margin-right: 5px;
    font-size: 10px;
    color: var(--main-color, #e83e8c);
}

/* Isticanje poklapanja u rezultatima */
.search-result-item .highlight {
    background-color: rgba(232, 62, 140, 0.1);
    color: var(--main-color, #e83e8c);
    font-weight: 500;
    padding: 0 2px;
    border-radius: 2px;
}

/* Stilovi za polje unosa u header search */
.header-search-form .search-field {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    padding: 8px 15px;
    font-size: 14px;
    outline: none;
}

.header-search-form .search-field:focus {
    border-color: var(--main-color, #e83e8c);
    box-shadow: 0 0 0 2px rgba(232, 62, 140, 0.1);
}

.header-search-form .search-submit {
    background: var(--main-color, #e83e8c);
    border: none;
    color: white;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    margin-left: -1px;
}

.search-input-wrapper {
    width: 100%;
    position: relative;
}

/* Live search rezultati - pozicioniranje iznad drugih elemenata */
.search-form,
.header-search-form {
    position: relative;
}

.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    max-height: 80vh;
    overflow-y: auto;
    margin-top: 5px;
    display: none;
}

.live-search-results.has-results {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
    border-bottom: 1px solid #eee;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}

.search-result-image {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-image i {
    font-size: 24px;
    color: #999;
}

.search-result-content {
    flex: 1;
}

.search-result-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
}

.search-result-content .artist {
    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
}

.search-result-content .price {
    font-weight: 600;
    color: #e83e8c;
}

.search-result-content .date {
    font-size: 12px;
    color: #666;
}

.search-section {
    margin-bottom: 20px;
}

.search-section-title {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.search-results-grid {
    display: flex;
    flex-direction: column;
}

.view-all-results {
    padding: 10px;
    text-align: center;
    border-top: 1px solid #eee;
}

.view-all-results a {
    color: #e83e8c;
    text-decoration: none;
    font-weight: 600;
}

.view-all-results a:hover {
    text-decoration: underline;
}

.searching {
    padding: 15px;
    text-align: center;
    color: #666;
}

.no-results, .error {
    padding: 15px;
    text-align: center;
    color: #666;
}

.highlight {
    background-color: #ffe0f0;
    font-weight: bold;
    color: #e83e8c;
    padding: 0 2px;
}

/* Poboljšano pozicioniranje rezultata pretrage - iznad svih elemenata */
.search-form,
.header-search-form {
    position: relative;
}

/* Izrazito povećan z-index i poboljšano pozicioniranje */
.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 9999; /* Mnogo veći z-index od ostalih elemenata */
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    max-height: 80vh;
    overflow-y: auto;
    margin-top: 5px;
    display: none;
}

.live-search-results.has-results {
    display: block;
}

/* Specifično ciljamo hero sekciju da bi nadjačali njena pravila */
.hero-section .live-search-results,
.artist-hero-section .live-search-results,
.shop-hero-section .live-search-results {
    position: absolute;
    top: 100%;
    z-index: 9999;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

/*
Theme Name: Hit Records
Theme URI: https://hitrecords.hr
Author: Hit Records
Author URI: https://hitrecords.hr
Description: Moderna tema za Hit Records glazbeni dućan
Version: 1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hit-records
*/

:root {
    --primary-color: #FF69B4;
    --secondary-color: #FF1493;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --accent-color: #FF69B4;
    --hover-color: #FF1493;
    --gradient-primary: linear-gradient(135deg, #ff69b4 0%, #FF69B4 50%, #b4ff69 100%);
    --color-white: #ffffff;
    --color-primary: #FF69B4;
    --color-primary-dark: #cc548e;
    --color-text: #333333;
    --color-gray-light: #f0f0f0;
}

/* Osnovna struktura stranice */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#page {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.site-content {
    padding-top: 0; /* uklonjen zbog topbara */
    flex: 1 0 auto;
    padding-bottom: 4rem;
}

.site-footer {
    flex-shrink: 0;
    margin-top: 0;
    width: 100%;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #ffffff;
    padding-top: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: var(--topbar-height);
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.site-branding {
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.site-branding img {
    height: 90px;
    width: auto;
    position: relative;
    display: block;
    padding: 5px 0;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

/* Glavni meni */
.main-navigation {
    display: flex;
    align-items: center;
    margin-left: auto;
    position: relative;
    z-index: 5;
}

#primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

#primary-menu > li {
    position: relative;
    display: inline-flex;
    align-items: center;
}

#primary-menu > li > a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

#primary-menu > li > a:hover {
    color: var(--primary-color);
    background: var(--light-gray);
}

#primary-menu > li.current-menu-item > a {
    color: white;
    background: var(--primary-color);
}

/* Košarica */
.header-cart {
    margin-left: 1rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--light-gray);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-color);
}

.cart-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.cart-count {
    background: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    min-width: 1.5rem;
    text-align: center;
}

.cart-total {
    font-weight: 600;
    color: var(--primary-color);
}

.cart-link:hover .cart-count {
    background: white;
    color: var(--primary-color);
}

.cart-link:hover .cart-total {
    color: white;
}

/* Mobilna navigacija */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }

    #primary-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        display: none;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    #primary-menu.active {
        display: flex;
    }

    #primary-menu > li {
        width: 100%;
    }

    #primary-menu > li > a {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 8px;
    }

    #primary-menu > li > a:hover {
        background: var(--light-gray);
        transform: translateX(5px);
    }

    .header-cart {
        margin-left: 0;
        margin-right: 1rem;
    }

    .site-header .container {
        flex-wrap: wrap;
        padding: 1rem;
    }

    .site-title {
        font-size: 1.2rem;
    }

    .site-content {
        padding-top: 80px;
    }
}

@media (max-width: 768px) {
    .site-header .container {
        padding: 0 1rem;
    }

    .site-title {
        font-size: 1.2rem;
    }
}

/* Animacije */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.site-header.scrolled-up {
    animation: slideDown 0.3s ease forwards;
}

.site-header.scrolled-down {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

/* Scroll efekti */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .primary-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .primary-menu.active {
        display: flex;
    }
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem 0 1rem;
    margin-top: 4rem;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-widget h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
}

.footer-menu a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-contact li i {
    width: 16px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 0 1rem;
    }

    .footer-widgets {
        gap: 1.5rem;
    }

    .footer-widget {
        text-align: center;
    }

    .footer-widget h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
    }
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    color: white;
}

.footer-social-link.facebook:hover { background: #1877f2; }
.footer-social-link.instagram:hover { background: #e4405f; }
.footer-social-link.youtube:hover { background: #ff0000; }
.footer-social-link.twitter:hover { background: #000000; }

/* Newsletter sekcija */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-1.343 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
    animation: heroPattern 60s linear infinite;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.newsletter-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    padding: 0 2rem;
    background: white;
    border: none;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--light-gray);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
    }
    
    .newsletter-form button {
        position: static;
        width: 100%;
        margin-top: 1rem;
        padding: 1rem;
    }
}

/* Glavni sadržaj */
.site-content {
    min-height: calc(100vh - 80px - 400px);
}

/* Hero Section - zajednički stilovi */
.hero-section,
.shop-hero-section,
.artist-hero-section,
.category-hero {
    background: var(--gradient-primary);
    padding: 4rem 0;
    position: relative;
    margin-bottom: 3rem;
}

.hero-section::before,
.shop-hero-section::before,
.artist-hero-section::before,
.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/pattern.png');
    opacity: 0.1;
    pointer-events: none;
}

.hero-content,
.shop-hero-content,
.artist-hero-content,
.category-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.hero-text,
.shop-hero-text,
.artist-hero-text,
.category-hero .hero-text {
    text-align: center;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.hero-text h1,
.shop-hero-text h1,
.artist-hero-text h1,
.category-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-text p,
.shop-hero-text p,
.artist-hero-text p,
.category-hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Category Hero specifični stilovi */
.category-hero {
    background: var(--gradient-primary);
    padding: 4rem 0;
    position: relative;
    margin-bottom: 3rem;
}

.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/pattern.png');
    opacity: 0.1;
    pointer-events: none;
}

.category-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.category-hero .hero-text {
    text-align: center;
    color: var(--color-white);
}

.category-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Zajednički stilovi za pretraživanje */
.search-filters-container {
    max-width: 800px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

/* Zajednički stilovi za pretraživanje */
.search-filters-container2 {
    max-width: 740px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}


.filter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.search-group {
    flex: 1;
    min-width: 670px;
    position: relative;
}

.search-group input[type="search"] {
    width: 100%;
    padding: 0.8rem 1rem;
    padding-right: 3rem;
    border: none;
    border-radius: 4px;
    background: var(--color-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-group input[type="search"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-primary);
}

.search-submit {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 3rem;
    border: none;
    background: transparent;
    color: var(--color-primary);
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    color: var(--color-primary-dark);
}

.filter-group {
    flex: 0 0 auto;
    min-width: 180px;
}

.filter-group select {
    width: 100%;
    padding: 0.8rem 2rem 0.8rem 1rem;
    border: none;
    border-radius: 4px;
    background: var(--color-white);
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-6-6h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
}

/* Responzivni dizajn */
@media (max-width: 768px) {
    .hero-text h1,
    .shop-hero-text h1,
    .artist-hero-text h1,
    .category-hero h1 {
        font-size: 2rem;
    }
    
    .hero-text p,
    .shop-hero-text p,
    .artist-hero-text p,
    .category-hero .hero-description {
        font-size: 1rem;
    }
    
    .search-filters-container {
        padding: 1rem;
    }
    
    .filter-form {
        flex-direction: column;
    }
    
    .search-group,
    .filter-group {
        min-width: 100%;
    }
    
    .search-group input[type="search"],
    .filter-group select {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form button {
        width: 100%;
    }

    .products {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
}

/* Uklanjamo stare stilove za products-grid */
.products-grid {
    display: none;
}

/* Dodajemo margine za sekcije proizvoda */
.featured-products,
.new-arrivals {
    margin: 4rem 0;
}

.featured-products h2,
.new-arrivals h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.featured-products h2::after,
.new-arrivals h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Osiguravamo da WooCommerce proizvodi koriste grid prikaz */
.featured-products .products,
.new-arrivals .products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

.products::before,
.products::after {
    display: none !important;
}

@media (max-width: 1200px) {
    .featured-products .products,
    .new-arrivals .products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 992px) {
    .featured-products .products,
    .new-arrivals .products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .featured-products .products,
    .new-arrivals .products {
        grid-template-columns: 1fr !important;
    }
    
    .featured-products h2,
    .new-arrivals h2 {
        font-size: 1.8rem;
    }
}

/* Streaming linkovi */
.streaming-links {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
    padding: 0 1rem 1rem;
}

.streaming-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    color: #666;
    transition: all 0.3s ease;
}

.streaming-link:hover {
    transform: translateY(-2px);
}

.streaming-link.spotify:hover { background: #1DB954; color: #fff; }
.streaming-link.youtube:hover { background: #FF0000; color: #fff; }
.streaming-link.deezer:hover { background: #00C7F2; color: #fff; }
.streaming-link.apple-music:hover { background: #FA243C; color: #fff; }
.streaming-link.tidal:hover { background: #000000; color: #fff; }

/* Proizvodi na naslovnici */
.featured-products,
.new-arrivals {
    padding: 4rem 0;
}

.featured-products h2,
.new-arrivals h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.featured-products h2::after,
.new-arrivals h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e74c3c;
    border-radius: 3px;
}

.hero-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 1rem;
    height: 100%;
}

.mosaic-main {
    grid-column: 1 / -1;
    grid-row: 1 / 3;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.mosaic-link {
    display: block;
    height: 100%;
    position: relative;
}

.mosaic-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mosaic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.mosaic-overlay h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
}

.mosaic-artist {
    font-size: 0.9rem;
    opacity: 0.8;
}

.mosaic-link:hover img {
    transform: scale(1.05);
}

.mosaic-link:hover .mosaic-overlay {
    transform: translateY(-5px);
}

/* Grid proizvoda */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

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

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
}

/* Stilovi za prikaz proizvoda */
.product-artists {
    margin: 0.25rem 0 1rem;
    font-size: 1rem;
    text-align: center;
}

.product-artist-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.product-artist-link:hover {
    color: var(--secondary-color);
}

/* Streaming linkovi */
.streaming-links {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    background: rgba(28, 44, 92, 0.05);
    padding: 1rem;
    border-radius: 8px;
}

.streaming-link {
    color: #666;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    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);
}

.streaming-link.spotify:hover {
    color: #1DB954;
    background: rgba(29, 185, 84, 0.1);
}

.streaming-link.youtube:hover {
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
}

.streaming-link.apple-music:hover {
    color: #FA57C1;
    background: rgba(250, 87, 193, 0.1);
}

.streaming-link.deezer:hover {
    color: #00C7F2;
    background: rgba(0, 199, 242, 0.1);
}

.streaming-link.tidal:hover {
    color: #000000;
    background: rgba(0, 0, 0, 0.1);
}

/* Sekcije proizvoda */
.featured-products,
.new-arrivals {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* WooCommerce proizvodi */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100% !important;
}

.woocommerce ul.products li.product {
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    min-width: 250px !important;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex !important;
    flex-direction: column;
    position: relative;
}

.woocommerce ul.products li.product::after {
    display: none !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title::after {
    display: none !important;
}

/* Uklanjamo sve potencijalne dekorativne elemente s kartica */
.woocommerce ul.products li.product *::after {
    display: none !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.2rem !important;
    padding: 1.25rem 1.25rem 0.5rem !important;
    margin: 0 !important;
    color: var(--text-color);
    font-weight: 600;
    text-align: center;
    min-height: 3em;
    line-height: 1.4;
    border: none !important;
}

.woocommerce ul.products li.product a img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    margin: 0 !important;
    transition: transform 0.3s ease;
}

.woocommerce ul.products li.product:hover a img {
    transform: scale(1.05);
}

.woocommerce ul.products li.product .artist {
    padding: 0 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.woocommerce ul.products li.product .price {
    padding: 0.5rem 1.25rem !important;
    margin-bottom: 1rem !important;
    color: var(--primary-color) !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    display: block !important;
}

.woocommerce ul.products li.product .price del {
    color: #666 !important;
    opacity: 0.5;
    font-size: 1.1rem !important;
    font-weight: 400 !important;
    margin-right: 0.5rem;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none !important;
    font-weight: 700 !important;
}

.woocommerce ul.products li.product {
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
    padding-bottom: 1rem !important;
}

.woocommerce ul.products li.product .button {
    margin: 0 1.25rem 1.25rem !important;
    padding: 0.8em 1.5em !important;
    background: var(--primary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    font-weight: 500 !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    font-size: 1rem !important;
    width: calc(100% - 2.5rem) !important;
    display: block !important;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
}

.woocommerce ul.products li.product .button:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
}

@media (max-width: 1400px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, minmax(250px, 1fr)) !important;
    }
}

@media (max-width: 992px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(250px, 1fr)) !important;
    }
}

@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(200px, 1fr)) !important;
    }
    
    .woocommerce ul.products li.product {
        min-width: 200px !important;
    }
    
    .woocommerce ul.products li.product a img {
        height: 200px !important;
    }
}

@media (max-width: 576px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }
    
    .woocommerce ul.products li.product {
        min-width: 100% !important;
    }
}

/* Kategorije */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
    text-decoration: none;
    color: white;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    margin: 0;
    font-size: 1.2rem;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.category-card:hover h3 {
    transform: translateY(-5px);
}

/* Responzivnost */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form button {
        width: 100%;
    }

    .products {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}

/* Single Product */
.single-product .product-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.single-product .product-gallery {
    position: sticky;
    top: 100px;
    width: 100%;
}

.single-product .product_title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.single-product .product-artists {
    text-align: left;
    margin: 0.25rem 0 1.5rem;
}

.single-product .product-artist-link {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.single-product .product-artist-link:hover {
    color: var(--secondary-color);
}

.single-product .price {
    font-size: 2rem !important;
    color: var(--primary-color) !important;
    margin: 1.5rem 0 !important;
}

.single-product .stock-status {
    margin-bottom: 1.5rem;
}

.single-product .stock-status .in-stock {
    color: #28a745;
    font-weight: 500;
}

.single-product .stock-status .out-of-stock {
    color: #dc3545;
    font-weight: 500;
}

.single-product .cart-section {
    margin: 1rem 0 2rem;
}

.single-product .cart {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.single-product .quantity {
    position: relative;
    width: 120px !important;
}

.single-product .quantity input {
    width: 100% !important;
    height: 48px !important;
    padding: 0.5rem 2rem !important;
    text-align: center;
    border: 1px solid var(--border-color) !important;
    border-radius: 4px !important;
    font-size: 1.1rem;
    -moz-appearance: textfield;
}

.single-product .quantity input::-webkit-outer-spin-button,
.single-product .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.single-product .quantity::before,
.single-product .quantity::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
    z-index: 1;
}

.single-product .quantity::before {
    content: '\f068';
    left: 8px;
}

.single-product .quantity::after {
    content: '\f067';
    right: 8px;
}

.single-product .single_add_to_cart_button {
    flex: 1;
    height: 48px !important;
    background: var(--primary-color) !important;
    color: white !important;
    padding: 0 2rem !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    min-width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.single-product .single_add_to_cart_button:hover {
    background: var(--secondary-color) !important;
}

.single-product .wishlist-button {
    text-align: center;
}

.single-product .wishlist-button a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    height: 48px !important;
    padding: 0 !important;
    background: white !important;
    color: var(--primary-color) !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border: none !important;
    min-width: fit-content;
    display: inline-flex;
}

.single-product .wishlist-button a:hover {
    background: var(--light-gray) !important;
    color: var(--primary-color) !important;
}

.single-product .wishlist-button i {
    font-size: 1.4rem !important;
}

.single-product .product-details {
    margin: 2rem 0;
    text-align: left;
}

.single-product .details-table {
    width: 100%;
    border-collapse: collapse;
}

.single-product .details-table th,
.single-product .details-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.single-product .details-table th {
    width: 30%;
    text-align: left;
    color: #666;
}

.single-product .product-description {
    margin: 2rem 0;
    text-align: left;
}

.single-product .product-streaming {
    margin: 2rem 0;
    text-align: left;
}

.single-product .streaming-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.single-product .streaming-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 1.2rem;
    min-width: fit-content;
    display: inline-flex;
}

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

.single-product .product-spotify-player {
    margin: 2rem 0;
    text-align: left;
}

.single-product .spotify-embed {
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: #282828;
}

.single-product .spotify-embed iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: none;
}

.single-product .related-products {
    margin: 4rem 0;
}

.single-product .related-products h2 {
    text-align: center;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .single-product .product-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .single-product .product-gallery {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .single-product .product_title {
        font-size: 2rem;
    }
    
    .single-product .price {
        font-size: 1.75rem !important;
    }
    
    .single-product .cart {
        padding: 1rem;
    }
    
    .single-product .streaming-links {
        gap: 0.75rem;
    }
    
    .single-product .streaming-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .single-product .spotify-embed iframe {
        height: 300px;
    }
}

/* Popis pjesama */
.product-tracklist {
    margin: 3rem 0;
    width: 100%;
    text-align: left;
}

.product-tracklist h2 {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.disc-section {
    width: 100%;
    margin-bottom: 2rem;
}

.disc-section:last-child {
    margin-bottom: 0;
}

.disc-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: left;
}

.tracklist-table {
    width: 100%;
    border-collapse: collapse;
}

.tracklist-table tr {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.tracklist-table td {
    padding: 0.75rem 0;
}

.track-number {
    width: 30px;
    color: var(--primary-color);
    font-weight: 500;
    text-align: left;
}

.track-title {
    font-weight: 400;
    padding-left: 1rem !important;
    text-align: left;
}

.track-duration {
    width: 60px;
    text-align: right;
    color: #666;
    font-weight: 400;
}

/* Galerija proizvoda */
.woocommerce-product-gallery {
    position: relative;
    width: 100%;
}

.woocommerce-product-gallery > div {
    width: 100% !important;
}

.woocommerce-product-gallery__wrapper {
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
}

.woocommerce-product-gallery__wrapper > div {
    width: 100% !important;
    flex: 0 0 100% !important;
}

.woocommerce-product-gallery .flex-viewport {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 556px !important;
    overflow: hidden !important;
}

.woocommerce-product-gallery__image {
    width: 100% !important;
    height: 556px !important;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    flex: 0 0 100% !important;
}

.woocommerce-product-gallery__image a {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.woocommerce-product-gallery__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    background: var(--light-gray);
}

.woocommerce-product-gallery .flex-control-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem !important;
    padding: 0 !important;
    width: 100%;
}

.woocommerce-product-gallery .flex-control-thumbs li {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 8px;
    overflow: hidden;
}

.woocommerce-product-gallery .flex-control-thumbs img {
    width: 100%;
    height: auto;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.woocommerce-product-gallery .flex-control-thumbs img.flex-active,
.woocommerce-product-gallery .flex-control-thumbs img:hover {
    opacity: 1;
}

/* Lista želja */
.wishlist-button {
    margin-left: 1rem;
}

.yith-wcwl-add-button a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    background: white !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    min-width: fit-content;
    display: inline-flex;
}

.yith-wcwl-add-button a:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px);
}

.yith-wcwl-add-button i {
    font-size: 1.4rem !important;
}

/* Admin stilovi za popis pjesama */
.tracklist-container {
    padding: 1rem;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 1rem 0;
}

.disc-section {
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border: 1px solid #eee;
    border-radius: 4px;
}

.tracks-table {
    margin: 1rem 0;
}

.tracks-table input[type="text"] {
    width: 100%;
}

.tracks-table td {
    padding: 0.5rem;
}

.button.add-track,
.button.add-disc {
    margin: 0.5rem 0;
}

.button.remove-track,
.button.remove-disc {
    color: #dc3545;
}

.woocommerce-product-gallery.images {
    width: 100% !important;
    max-width: none !important;
}

.woocommerce div.product div.images {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
}

/* Breadcrumb */
.woocommerce-breadcrumb {
    margin: 2rem 0 !important;
    padding: 1rem !important;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 0.9rem !important;
    color: #666 !important;
    text-align: left;
}

.woocommerce-breadcrumb a {
    color: var(--primary-color) !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.woocommerce-breadcrumb a:hover {
    color: var(--secondary-color) !important;
    text-decoration: underline !important;
}

.woocommerce-breadcrumb .breadcrumb-separator {
    margin: 0 0.5rem;
    color: #999;
}

/* Cart Page */
.cart-wrapper {
    margin: 3rem 0;
}

.woocommerce-cart-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 2rem;
}

.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 !important;
    border: none !important;
}

.shop_table thead {
    background: var(--light-gray);
}

.shop_table th {
    padding: 1.5rem 1rem !important;
    font-weight: 600;
    text-align: left;
    border: none !important;
}

.shop_table td {
    padding: 1.5rem 1rem !important;
    border-bottom: 1px solid var(--border-color) !important;
    border-top: none !important;
}

.shop_table tr:last-child td {
    border-bottom: none !important;
}

.product-remove a {
    color: #dc3545 !important;
    font-size: 1.5rem;
    text-decoration: none;
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.product-remove a:hover {
    background: #dc3545 !important;
    color: white !important;
}

.product-thumbnail {
    width: 100px;
}

.product-thumbnail img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    border-radius: 8px;
}

.product-name a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-name a:hover {
    color: var(--primary-color);
}

.product-price,
.product-subtotal {
    font-weight: 600;
    color: var(--primary-color);
}

.quantity input {
    width: 80px !important;
    height: 40px !important;
    padding: 0.5rem !important;
    text-align: center;
    border: 1px solid var(--border-color) !important;
    border-radius: 4px !important;
    -moz-appearance: textfield;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.actions {
    background: var(--light-gray);
    padding: 1.5rem !important;
}

.coupon {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    justify-content: flex-start;
}

.coupon label {
    font-weight: 500;
}

.coupon input {
    height: 48px !important;
    padding: 0 1rem !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 4px !important;
    flex: 1;
}

.button {
    height: 48px !important;
    padding: 0 2rem !important;
    background: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    min-width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.button:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.cart-collaterals {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 2rem;
}

.cart_totals {
    width: 100% !important;
}

.cart_totals h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: left;
}

.cart_totals table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.cart_totals th {
    width: 30%;
    padding: 1rem 0;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cart_totals td {
    padding: 1rem 0;
    text-align: right;
    border-bottom: 1px solid var(--border-color);
}

.cart_totals tr:last-child th,
.cart_totals tr:last-child td {
    border-bottom: none;
}

.wc-proceed-to-checkout .button {
    width: 100%;
    text-align: center;
    font-size: 1.1rem !important;
}

@media (max-width: 768px) {
    .shop_table_responsive thead {
        display: none;
    }

    .shop_table_responsive tr td {
        display: block;
        text-align: right;
        padding: 1rem !important;
    }

    .shop_table_responsive tr td::before {
        content: attr(data-title);
        float: left;
        font-weight: 600;
    }

    .product-thumbnail {
        display: none !important;
    }

    .coupon {
        flex-direction: column;
    }

    .coupon input {
        width: 100% !important;
    }

    .coupon .button {
        width: 100%;
    }
}

.cart-empty-message {
    text-align: center;
    padding: 4rem 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin: 2rem 0;
}

.cart-empty-message p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.cart-empty-message .button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cart-empty-message .button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Mini košarica */
.header-cart {
    position: relative;
}

.mini-cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 380px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.header-cart:hover .mini-cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mini-cart-content {
    padding: 1.5rem;
}

.mini-cart-products {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
}

.mini-cart-item {
    display: grid;
    grid-template-columns: 60px 1fr 24px;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.mini-cart-item:last-child {
    border-bottom: none;
}

.item-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.item-details h4 {
    font-size: 0.9rem;
    margin: 0 0 0.5rem;
    color: var(--text-color);
}

.item-price {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin: 0;
}

.mini-cart-item .remove {
    color: #dc3545;
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.mini-cart-item .remove:hover {
    color: #bd2130;
    transform: scale(1.1);
}

.mini-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
}

.mini-cart-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.mini-cart-buttons .button {
    width: 100%;
    text-align: center;
    padding: 0.75rem 0.5rem !important;
    font-size: 0.85rem !important;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.mini-cart-buttons .view-cart {
    background: var(--light-gray) !important;
    color: var(--text-color) !important;
}

.mini-cart-buttons .checkout {
    background: var(--primary-color) !important;
    color: white !important;
}

.mini-cart-empty {
    text-align: center;
    padding: 2rem 0;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .mini-cart-dropdown {
        width: 320px;
        right: -1rem;
    }
    
    .mini-cart-buttons .button {
        font-size: 0.8rem !important;
        padding: 0.75rem 0.25rem !important;
    }
}

/* Toolbar za kategorije proizvoda */
.woocommerce-products-header {
    margin-bottom: 2rem;
}

.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.view-switcher {
    display: flex;
    gap: 10px;
    margin-right: 20px;
}

.view-switcher button {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #999; /* Svjetlija siva za neaktivne ikone */
    font-size: 20px; /* Veće ikone */
    transition: all 0.3s ease;
    width: 40px; /* Fiksna širina */
    height: 40px; /* Fiksna visina */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.view-switcher button:hover {
    color: #333;
    background-color: #f5f5f5;
}

.view-switcher button.active {
    color: #2c2c2c;
    background-color: #f0f0f0;
}

.woocommerce-ordering {
    margin: 0 !important;
}

.woocommerce-ordering select {
    padding: 0.6rem 2.5rem 0.6rem 1rem !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 6px !important;
    background-color: white !important;
    font-size: 0.9rem !important;
    color: var(--text-color) !important;
    cursor: pointer !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.7rem center !important;
    background-size: 1em !important;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.products-search {
    position: relative;
    min-width: 250px;
}

.products-search input[type="search"] {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
}

.products-search button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1rem;
}

/* List view stilovi */
.products.list-view {
    display: block;
    margin: 0;
    padding: 0;
}

ul.products.list-view {
    display: block;
    margin: 0;
    padding: 0;
}

ul.products.list-view li.product {
    width: 100%;
    display: grid;
    grid-template-columns: 60px minmax(200px, 1fr) auto auto;
    gap: 20px;
    align-items: center;
    padding: 12px;
    margin: 0;
    border-bottom: 1px solid #eee;
    background: #fff;
}

ul.products.list-view li.product:hover {
    background: #f9f9f9;
}

ul.products.list-view li.product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 0;
}

ul.products.list-view li.product .product-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

ul.products.list-view li.product .woocommerce-loop-product__title {
    font-size: 15px;
    margin: 0;
    padding: 0;
}

ul.products.list-view li.product .artist {
    font-size: 13px;
    color: #666;
    margin: 0;
}

ul.products.list-view li.product .price {
    font-size: 15px;
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
}

ul.products.list-view li.product .streaming-links {
    display: flex;
    gap: 8px;
    margin: 0;
}

ul.products.list-view li.product .streaming-link {
    width: 24px;
    height: 24px;
    font-size: 14px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.2s;
}

ul.products.list-view li.product .streaming-link:hover {
    color: #333;
}

@media (max-width: 992px) {
    ul.products.list-view li.product {
        grid-template-columns: 50px minmax(150px, 1fr) auto auto;
        gap: 15px;
    }
    
    ul.products.list-view li.product img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    ul.products.list-view li.product {
        grid-template-columns: 40px 1fr auto;
        gap: 10px;
        padding: 8px;
    }
    
    ul.products.list-view li.product img {
        width: 40px;
        height: 40px;
    }
    
    ul.products.list-view li.product .streaming-links {
        display: none;
    }
}

@media (max-width: 576px) {
    ul.products.list-view li.product {
        grid-template-columns: 40px 1fr auto;
    }
    
    ul.products.list-view li.product .button {
        display: none;
    }
}

/* View Switcher Styles */
.view-switcher {
    display: flex;
    gap: 10px;
    margin-right: 20px;
}

.view-switcher button {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.view-switcher button:hover,
.view-switcher button.active {
    color: #e91e63;
}

@media (max-width: 992px) {
    .products.list-view li.product {
        grid-template-columns: 200px 1fr !important;
    }
    
    .products.list-view li.product .button {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 768px) {
    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .toolbar-left,
    .toolbar-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .products-search {
        min-width: 100%;
    }
    
    .products.list-view li.product {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
    
    .products.list-view li.product .product-content {
        text-align: center !important;
    }
    
    .products.list-view .streaming-links {
        justify-content: center !important;
    }
}

/* Header Search */
.header-search {
    position: relative;
    margin-left: 20px;
}

.search-toggle {
    background: none;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.search-toggle:hover {
    background-color: rgba(0,0,0,0.05);
}

.search-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 10px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-search-form {
    display: flex;
    width: 100%;
}

/* Dodajemo ponovno pravila za nonce input polje */
#search_nonce {
    display: none;
}

/* Stilovi za live search rezultate */
.live-search-results {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.live-search-results.has-results {
    max-height: 400px;
    overflow-y: auto;
    opacity: 1;
    margin-top: 10px;
    padding-right: 5px;
}

.searching {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    color: #777;
    text-align: center;
}

.searching span {
    position: relative;
    padding-left: 25px;
}

.searching span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-top: 2px solid var(--main-color, #e83e8c);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.search-section {
    margin-bottom: 15px;
}

.search-section-title {
    font-size: 14px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}

.search-results-grid {
    display: grid;
    gap: 8px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.search-result-image {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #999;
    font-size: 16px;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-content {
    flex: 1;
}

.search-result-content h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 2px;
    color: #333;
    line-height: 1.3;
}

.search-result-content .artist,
.search-result-content .count,
.search-result-content .date {
    font-size: 12px;
    color: #777;
    display: block;
    line-height: 1.3;
}

.search-result-content .price {
    font-size: 13px;
    color: var(--main-color, #e83e8c);
    font-weight: 500;
    display: block;
    margin-top: 2px;
}

.view-all-results {
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 5px;
}

.view-all-results a {
    color: var(--main-color, #e83e8c);
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}

.view-all-results a:hover {
    text-decoration: underline;
}

.no-results {
    padding: 20px 0;
    text-align: center;
    color: #777;
    font-size: 14px;
}

.error {
    padding: 20px 0;
    text-align: center;
    color: #e74c3c;
    font-size: 14px;
}

@media (max-width: 576px) {
    .search-dropdown {
        width: 280px;
        right: -70px;
    }
    
    .search-dropdown:before {
        right: 80px;
    }
}

/* Stranica izvođača */
.artist-single {
    margin: 3rem 0;
}

.artist-header {
    position: relative;
    margin-bottom: 3rem;
}

.artist-cover {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--light-gray);
}

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

.artist-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.artist-title {
    font-size: 3rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.artist-genre {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.artist-sidebar {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.artist-main {
    flex: 1;
}

.artist-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 3rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.artist-social-links,
.artist-streaming {
    margin-top: 3rem;
    text-align: center;
}

.artist-social-links h3,
.artist-streaming h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.social-links,
.streaming-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link,
.streaming-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.social-link:hover,
.streaming-link:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* Društvene mreže hover boje */
.social-link.facebook:hover { background: #1877f2; border-color: #1877f2; }
.social-link.instagram:hover { background: #e4405f; border-color: #e4405f; }
.social-link.website:hover { background: #2ecc71; border-color: #2ecc71; }
.social-link.tiktok:hover { background: #000000; border-color: #000000; }
.social-link.twitter:hover { background: #000000; border-color: #000000; }

/* Streaming servisi hover boje */
.streaming-link.spotify:hover { background: #1DB954; border-color: #1DB954; }
.streaming-link.youtube:hover { background: #FF0000; border-color: #FF0000; }
.streaming-link.deezer:hover { background: #00C7F2; border-color: #00C7F2; }
.streaming-link.apple-music:hover { background: #FA243C; border-color: #FA243C; }
.streaming-link.tidal:hover { background: #000000; border-color: #000000; }

@media (max-width: 768px) {
    .social-links,
    .streaming-links {
        gap: 0.75rem;
    }

    .social-link,
    .streaming-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .artist-social-links h3,
    .artist-streaming h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

.artist-products {
    margin: 3rem 0;
}

.artist-products h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #fff;
    text-align: left;
}

.artist-products .woocommerce ul.products {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.artist-products .woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    transition: all 0.3s ease;
}

.artist-products .woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.artist-products .woocommerce ul.products li.product img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin: 0;
    transition: transform 0.3s ease;
}

.artist-products .woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}

.artist-products .woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 1rem;
    margin: 0;
    font-size: 1rem;
    color: #fff;
    text-align: center;
}

.artist-products .woocommerce ul.products li.product .price {
    padding: 0 1rem;
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    text-align: center;
}

.artist-products .woocommerce ul.products li.product .price del {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.artist-products .woocommerce ul.products li.product .price ins {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

.artist-products .woocommerce ul.products li.product .button {
    display: block;
    width: 100%;
    margin: 1rem 0 0 0;
    padding: 0.8rem;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.artist-products .woocommerce ul.products li.product .button:hover {
    background: var(--primary-color-hover);
}

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

@media (max-width: 768px) {
    .artist-products .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .artist-products .woocommerce ul.products li.product img {
        height: 200px;
    }

    .artist-products h3 {
        font-size: 1.5rem;
    }
}

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

    .artist-products .woocommerce ul.products li.product a img {
        height: 180px;
    }
}

.artist-gallery {
    margin: 3rem 0;
}

.artist-gallery h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: transform 0.3s ease;
}

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

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

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

.artist-spotify-player {
    margin: 3rem 0;
}

.artist-spotify-player h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.artist-spotify-player .spotify-embed {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #282828;
}

.artist-spotify-player .spotify-embed iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: none;
}

@media (max-width: 768px) {
    .artist-spotify-player .spotify-embed iframe {
        height: 300px;
    }
}

/* Archive Artists Page */
.archive-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.archive-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM57 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-1.343 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
    animation: heroPattern 60s linear infinite;
    z-index: 1;
}

.archive-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.archive-filters {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.genre-filter select {
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.genre-filter select:hover,
.genre-filter select:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    outline: none;
}

.artist-search input[type="search"] {
    width: 100%;
    padding: 1rem 3rem 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.artist-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.artist-search input[type="search"]:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    outline: none;
}

.artist-search button {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.artist-search button:hover {
    transform: translateY(-50%) scale(1.1);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.artist-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 350px;
}

.artist-card:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.artist-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.artist-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        transparent 100%
    );
    color: #fff;
}

.artist-card-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.artist-card-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.artist-card-info {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.artist-card-genre {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.875rem;
    backdrop-filter: blur(5px);
}

.artist-card-releases {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Uklanjamo stare stilove za linkove */
.artist-card-links,
.artist-card-social,
.artist-card-streaming {
    display: none;
}

/* Responzivni dizajn */
@media (max-width: 1200px) {
    .artists-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .artist-card {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .artist-card {
        height: 350px;
    }
}

/* Novosti sekcija */
.news-section {
    padding: 4rem 0;
    background: #fff;
}

.news-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--text-color);
}

.news-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-color);
}

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

.news-card-image {
    position: relative;
    width: 100%;
    padding-top: 66%;
    overflow: hidden;
    display: block;
}

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

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

.news-card .no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #999;
}

.news-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.news-meta {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-date i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.news-title {
    font-size: 1.2rem;
    margin: 0 0 1rem;
    line-height: 1.4;
}

.news-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.news-title a:hover {
    color: var(--primary-color);
}

.news-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    margin-top: auto;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more:hover i {
    transform: translateX(3px);
}

.no-news {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    color: #666;
}

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

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-section h2 {
        font-size: 1.8rem;
    }
    
    .news-card {
        margin-bottom: 0;
    }
}

/* Single Post */
.single-post {
    margin: 4rem 0;
}

.post-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.post-header {
    margin-bottom: 2rem;
}

.post-thumbnail {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--light-gray);
    font-size: 0.95rem;
    color: #666;
}

.post-date,
.post-categories {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-date i,
.post-categories i {
    color: var(--primary-color);
}

.post-categories a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-categories a:hover {
    color: var(--primary-color);
}

.post-title {
    font-size: 2.5rem;
    margin: 0;
    padding: 2rem 2rem 0;
    color: var(--text-color);
    line-height: 1.3;
}

.post-body {
    padding: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.post-body h2,
.post-body h3,
.post-body h4 {
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.post-body ul,
.post-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.post-body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-color);
    background: var(--light-gray);
    font-style: italic;
    color: #666;
}

.post-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    background: var(--light-gray);
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.post-tags i {
    color: var(--primary-color);
}

.post-tags a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-tags a:hover {
    color: var(--primary-color);
}

.post-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.prev-post,
.next-post {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.prev-post:hover,
.next-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    color: var(--primary-color);
}

.prev-post i,
.next-post i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.prev-post span,
.next-post span {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.prev-post small,
.next-post small {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-post {
    text-align: right;
}

.next-post span {
    align-items: flex-end;
}

@media (max-width: 992px) {
    .post-title {
        font-size: 2rem;
        padding: 1.5rem 1.5rem 0;
    }

    .post-meta,
    .post-body,
    .post-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .single-post {
        margin: 2rem 0;
    }

    .post-thumbnail {
        height: 300px;
    }

    .post-title {
        font-size: 1.8rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .post-body {
        font-size: 1rem;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .next-post {
        text-align: left;
    }

    .next-post span {
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .post-thumbnail {
        height: 200px;
    }

    .post-title {
        font-size: 1.5rem;
    }
}

/* Post Share Buttons */
.post-share {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.post-share h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-button i {
    font-size: 1rem;
}

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

.share-button.facebook {
    background: #1877f2;
}

.share-button.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.share-button.twitter {
    background: #000000;
}

.share-button.linkedin {
    background: #0077b5;
}

.share-button.whatsapp {
    background: #25d366;
}

.share-button.email {
    background: #666666;
}

.share-button.copy {
    background: var(--primary-color);
}

@media (max-width: 576px) {
    .share-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .share-button {
        width: 100%;
        justify-content: center;
    }
}

/* Tooltip za kopiranje linka */
.copy-tooltip {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.copy-tooltip.show {
    opacity: 1;
    visibility: visible;
}

/* Archive News Page */
.archive-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem 0;
    margin-bottom: 3rem;
    color: white;
    text-align: center;
}

.archive-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.archive-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
    opacity: 0.9;
}

.archive-filters {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.filter-form {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.filter-group {
    position: relative;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    appearance: none;
}

.filter-group select {
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 1em;
}

.filter-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.filter-group .search-submit {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}

.view-switcher {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.view-switcher button {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-switcher button:hover,
.view-switcher button.active {
    background: white;
    color: var(--primary-color);
}

/* Grid View */
.news-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-archive-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.news-archive-image {
    position: relative;
    padding-top: 66%;
    overflow: hidden;
}

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

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

.news-archive-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* List View */
.news-archive-grid.list-view {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.news-archive-grid.list-view .news-archive-card {
    flex-direction: row;
    align-items: stretch;
}

.news-archive-grid.list-view .news-archive-image {
    width: 300px;
    padding-top: 0;
    flex-shrink: 0;
}

.news-archive-grid.list-view .news-archive-content {
    padding: 2rem;
}

.news-archive-grid.list-view .news-title {
    font-size: 1.5rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 6px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pagination .page-numbers.current {
    background: var(--primary-color);
    color: white;
}

.pagination .page-numbers:hover:not(.current) {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 1200px) {
    .news-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .filter-form {
        grid-template-columns: 1fr;
    }

    .news-archive-grid.list-view .news-archive-card {
        flex-direction: column;
    }

    .news-archive-grid.list-view .news-archive-image {
        width: 100%;
        padding-top: 66%;
    }
}

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

    .news-archive-grid {
        grid-template-columns: 1fr;
    }

    .archive-filters {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .archive-title {
        font-size: 1.8rem;
    }

    .pagination .page-numbers {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem;
    background: var(--light-gray);
    border-radius: 12px;
    margin: 2rem 0;
}

.no-results p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Stranice */
.single-page {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 4rem 0;
}

.page-header {
    position: relative;
    margin-bottom: 2rem;
}

.page-thumbnail {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.page-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-title {
    font-size: 2.5rem;
    margin: 0;
    padding: 2rem 2rem 0;
    color: var(--text-color);
    line-height: 1.3;
}

.page-body {
    padding: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.page-body p {
    margin-bottom: 1.5rem;
}

.page-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.page-body h2,
.page-body h3,
.page-body h4 {
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.page-body ul,
.page-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-body li {
    margin-bottom: 0.5rem;
}

.page-body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-color);
    background: var(--light-gray);
    font-style: italic;
    color: #666;
}

/* Responzivnost za stranice */
@media (max-width: 992px) {
    .page-title {
        font-size: 2rem;
        padding: 1.5rem 1.5rem 0;
    }

    .page-body {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .single-page {
        margin: 2rem 0;
    }

    .page-thumbnail {
        height: 300px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-body {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-thumbnail {
        height: 200px;
    }

    .page-title {
        font-size: 1.5rem;
    }
}

/* WooCommerce stranice padding */
.woocommerce-cart .page-content,
.woocommerce-checkout .page-content,
.woocommerce-account .page-content {
    padding-top: 4rem;
}

/* Responzivnost za WooCommerce stranice */
@media (max-width: 768px) {
    .woocommerce-cart .page-content,
    .woocommerce-checkout .page-content,
    .woocommerce-account .page-content {
        padding-top: 2rem;
    }
}

/* Sakrij poruku o uštedi u košarici */
.woocommerce-cart .woocommerce-cart-form .product-price .savings,
.woocommerce-cart .woocommerce-cart-form .product-subtotal .savings {
    display: none !important;
}

/* Sakrij sve poruke o uštedi */
.wc-block-components-product-badge.wc-block-components-sale-badge,
.wc-block-components-sale-badge,
.woocommerce-cart .woocommerce-cart-form .product-price .savings,
.woocommerce-cart .woocommerce-cart-form .product-subtotal .savings {
    display: none !important;
}

/* Progress bar za besplatnu dostavu */
.free-shipping-progress {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.progress-message {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Artist Archive Hero Section */
.artist-hero-section {
    background: linear-gradient(135deg, #ff69b4 0%, #FF69B4 50%, #b4ff69 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.artist-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
    pointer-events: none;
}

.artist-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.artist-hero-text {
    margin-bottom: 40px;
}

.artist-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.artist-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.artist-search-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.artist-search-container .genre-filter {
    flex: 1;
    min-width: 200px;
}

.artist-search-container .genre-filter select {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.artist-search-container .genre-filter select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.artist-search-container .genre-filter select option {
    background: #fff;
    color: #333;
}

.artist-search-container .artist-search {
    flex: 2;
    min-width: 300px;
    position: relative;
}

.artist-search-container .artist-search input[type="search"] {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.artist-search-container .artist-search input[type="search"]:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.artist-search-container .artist-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.artist-search-container .artist-search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.artist-search-container .artist-search button:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .artist-hero-section {
        padding: 60px 0;
        margin-bottom: 40px;
    }
    
    .artist-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .artist-hero-text p {
        font-size: 1rem;
    }

    .artist-search-container {
        flex-direction: column;
    }

    .artist-search-container .genre-filter,
    .artist-search-container .artist-search {
        width: 100%;
    }
}

/* Shop Hero Section */
.shop-hero-section {
    background: linear-gradient(135deg, #ff69b4 0%, #FF69B4 50%, #b4ff69 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.shop-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
    pointer-events: none;
}

.shop-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.shop-hero-text {
    margin-bottom: 40px;
}

.shop-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.shop-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.shop-search-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.shop-search {
    flex: 2;
    min-width: 300px;
    position: relative;
}

.shop-search input[type="search"] {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.shop-search input[type="search"]:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.shop-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.shop-search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.shop-search button:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .shop-hero-section {
        padding: 60px 0;
        margin-bottom: 40px;
    }
    
    .shop-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .shop-hero-text p {
        font-size: 1rem;
    }

    .shop-search-container {
        flex-direction: column;
    }

    .shop-search {
        width: 100%;
    }
}

/* Shop Header Styles */
.shop-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

.shop-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.shop-header .site-branding {
    flex: 0 0 auto;
}

.shop-header .main-navigation {
    flex: 1;
    margin: 0 2rem;
}

.shop-header .nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-header .nav-menu li {
    margin: 0 1rem;
}

.shop-header .nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.shop-header .nav-menu a:hover {
    color: #e91e63;
}

.shop-header .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shop-header .search-toggle button,
.shop-header .cart-toggle a {
    background: none;
    border: none;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.shop-header .search-toggle button:hover,
.shop-header .cart-toggle a:hover {
    color: #e91e63;
}

.shop-header .cart-count {
    background: #e91e63;
    color: #fff;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.search-overlay .search-form {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.search-overlay .search-field {
    width: 100%;
    padding: 1rem;
    font-size: 1.5rem;
    border: none;
    border-bottom: 2px solid #e91e63;
    background: none;
    outline: none;
}

.search-overlay .search-form button {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #e91e63;
    font-size: 1.2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .shop-header .main-navigation {
        display: none;
    }
    
    .shop-header .header-content {
        padding: 0.5rem 0;
    }
}

/* WooCommerce List View */
ul.products.list-view {
    display: block !important;
    margin: 0 !important;
}

ul.products.list-view li.product {
    width: 100% !important;
    float: none !important;
    display: grid !important;
    grid-template-columns: 120px 2fr 1fr auto !important;
    gap: 20px;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px !important;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

ul.products.list-view li.product:hover {
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* Slika proizvoda */
ul.products.list-view li.product img {
    width: 120px !important;
    height: 120px !important;
    object-fit: cover;
    margin: 0 !important;
    border-radius: 4px;
}

/* Glavni sadržaj (naslov i izvođač) */
ul.products.list-view li.product .product-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

ul.products.list-view li.product .woocommerce-loop-product__title {
    font-size: 1.2em !important;
    margin: 0 !important;
    color: #2c2c2c;
}

ul.products.list-view li.product .artist {
    font-size: 0.95em;
    color: #666;
    margin: 0;
}

/* Cijena */
ul.products.list-view li.product .price {
    font-size: 1.1em !important;
    margin: 0 !important;
    color: #2c2c2c;
    font-weight: 600;
}

ul.products.list-view li.product .price del {
    font-size: 0.85em;
    color: #999;
    margin-right: 5px;
}

ul.products.list-view li.product .price ins {
    text-decoration: none;
    color: #e53935;
}

/* Streaming servisi i gumb */
ul.products.list-view li.product .product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

ul.products.list-view li.product .streaming-links {
    display: flex;
    gap: 8px;
}

ul.products.list-view li.product .streaming-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 4px;
    color: #666;
    transition: all 0.3s ease;
}

ul.products.list-view li.product .streaming-link:hover {
    color: #fff;
}

ul.products.list-view li.product .button {
    margin: 0 !important;
    padding: 8px 16px !important;
}

/* Responzivni dizajn */
@media (max-width: 992px) {
    ul.products.list-view li.product {
        grid-template-columns: 100px 2fr 1fr !important;
    }
    
    ul.products.list-view li.product img {
        width: 100px !important;
        height: 100px !important;
    }
    
    ul.products.list-view li.product .product-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    ul.products.list-view li.product {
        grid-template-columns: 80px 1fr !important;
        gap: 15px;
    }
    
    ul.products.list-view li.product img {
        width: 80px !important;
        height: 80px !important;
    }
    
    ul.products.list-view li.product .price {
        grid-column: 2;
        text-align: left;
    }
    
    ul.products.list-view li.product .product-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    ul.products.list-view li.product .streaming-links {
        order: 2;
    }
    
    ul.products.list-view li.product .button {
        order: 1;
        width: 100%;
    }
}

/* Početna stranica - card view */
.home ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Trgovina - tablični prikaz */
.woocommerce-shop ul.products.list-view {
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product {
    display: table-row;
    width: 100%;
    background: #fff;
}

.woocommerce-shop ul.products.list-view li.product > * {
    display: table-cell;
    vertical-align: middle;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.woocommerce-shop ul.products.list-view li.product .product-image {
    width: 60px;
    padding: 8px;
}

.woocommerce-shop ul.products.list-view li.product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .product-title {
    width: 30%;
}

.woocommerce-shop ul.products.list-view li.product .woocommerce-loop-product__title {
    font-size: 15px;
    margin: 0;
    padding: 0;
    color: #333;
}

.woocommerce-shop ul.products.list-view li.product .artist {
    width: 20%;
    font-size: 14px;
    color: #666;
}

.woocommerce-shop ul.products.list-view li.product .price {
    width: 15%;
    font-size: 15px;
    font-weight: bold;
    white-space: nowrap;
    color: #333;
}

.woocommerce-shop ul.products.list-view li.product .streaming-links {
    width: 20%;
    display: flex;
    gap: 8px;
    justify-content: flex-start;
}

.woocommerce-shop ul.products.list-view li.product .streaming-link {
    width: 24px;
    height: 24px;
    font-size: 14px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.2s;
}

.woocommerce-shop ul.products.list-view li.product .button {
    width: 15%;
    text-align: right;
    padding: 8px 16px;
    font-size: 14px;
    background: #333;
    color: #fff;
    border-radius: 4px;
}

/* Zaglavlje tablice */
.woocommerce-shop ul.products.list-view:before {
    content: "";
    display: table-row;
    background: #f5f5f5;
}

.woocommerce-shop ul.products.list-view:before > * {
    display: table-cell;
    padding: 12px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    font-size: 13px;
}

@media (max-width: 992px) {
    .woocommerce-shop ul.products.list-view li.product .streaming-links {
        display: none;
    }
    
    .woocommerce-shop ul.products.list-view li.product .product-title {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .woocommerce-shop ul.products.list-view li.product {
        display: grid;
        grid-template-columns: 60px 1fr auto;
        gap: 12px;
        padding: 8px;
    }
    
    .woocommerce-shop ul.products.list-view li.product > * {
        display: block;
        width: auto;
        border: none;
    }
    
    .woocommerce-shop ul.products.list-view li.product .artist {
        font-size: 13px;
    }
    
    .woocommerce-shop ul.products.list-view:before {
        display: none;
    }
}

/* Zaglavlje tablice */
.woocommerce-shop .products-header.list-view-header {
    display: none;
    width: 100%;
    background: #f5f5f5;
    margin-bottom: 1px;
}

.woocommerce-shop .products-header.list-view-header.active {
    display: table;
}

.woocommerce-shop .products-header .header-row {
    display: table-row;
}

.woocommerce-shop .products-header .header-cell {
    display: table-cell;
    padding: 12px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    font-size: 13px;
    vertical-align: middle;
}

.woocommerce-shop .products-header .header-cell:nth-child(1) { width: 60px; }
.woocommerce-shop .products-header .header-cell:nth-child(2) { width: 30%; }
.woocommerce-shop .products-header .header-cell:nth-child(3) { width: 20%; }
.woocommerce-shop .products-header .header-cell:nth-child(4) { width: 15%; }
.woocommerce-shop .products-header .header-cell:nth-child(5) { width: 20%; }
.woocommerce-shop .products-header .header-cell:nth-child(6) { width: 15%; text-align: right; }

@media (max-width: 992px) {
    .woocommerce-shop .products-header .header-cell:nth-child(5) { display: none; }
    .woocommerce-shop .products-header .header-cell:nth-child(2) { width: 40%; }
}

@media (max-width: 768px) {
    .woocommerce-shop .products-header.list-view-header {
        display: none !important;
    }
}

/* Početna stranica - grid prikaz */
.home ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Shop stranica - tablični prikaz */
.woocommerce-shop ul.products.list-view {
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.woocommerce-shop .products-header.list-view-header {
    display: none;
    background: #f8f9fa;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.woocommerce-shop .products-header.list-view-header.active {
    display: block;
}

.woocommerce-shop .products-header .header-row {
    display: grid;
    grid-template-columns: 80px 3fr 2fr 1fr 2fr 1fr;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    font-weight: 600;
}

.woocommerce-shop ul.products.list-view li.product {
    display: grid;
    grid-template-columns: 80px 3fr 2fr 1fr 2fr 1fr;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0.5rem;
    margin: 0;
    border-bottom: 1px solid #eee;
}

.woocommerce-shop ul.products.list-view li.product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .woocommerce-loop-product__title {
    font-size: 1rem;
    margin: 0;
    padding: 0;
}

.woocommerce-shop ul.products.list-view li.product .artist {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .price {
    font-size: 1rem;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .streaming-links {
    display: flex;
    gap: 0.5rem;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .streaming-link {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    color: #666;
    transition: all 0.2s;
}

.woocommerce-shop ul.products.list-view li.product .button {
    margin: 0;
    padding: 0.5rem 1rem;
    text-align: center;
    background: #f8f9fa;
    border: none;
    border-radius: 4px;
    color: #333;
    transition: all 0.2s;
}

@media (max-width: 992px) {
    .woocommerce-shop ul.products.list-view li.product {
        grid-template-columns: 80px 3fr 2fr 1fr 1fr;
    }
    
    .woocommerce-shop .products-header .header-row {
        grid-template-columns: 80px 3fr 2fr 1fr 1fr;
    }
    
    .woocommerce-shop ul.products.list-view li.product .streaming-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .woocommerce-shop ul.products.list-view li.product {
        grid-template-columns: 60px 2fr 1fr;
        gap: 0.5rem;
    }
    
    .woocommerce-shop .products-header .header-row {
        grid-template-columns: 60px 2fr 1fr;
    }
    
    .woocommerce-shop ul.products.list-view li.product .artist {
        display: block;
        grid-column: 2;
    }
    
    .woocommerce-shop ul.products.list-view li.product .button {
        display: none;
    }
}

/* Stilovi za live search rezultate */
.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 70vh;
    overflow-y: auto;
    display: none;
    margin-top: 5px;
    padding: 0;
    min-width: 300px;
}

.live-search-results.has-results {
    display: block;
}

.hero-section .live-search-results,
.shop-search-container .live-search-results {
    width: 100%;
    max-width: 600px;
    min-height: 200px;
    z-index: 1010;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    border-radius: 4px;
    border: 1px solid #e1e1e1;
}

.search-form {
    position: relative;
}

.search-form form {
    display: flex;
    width: 100%;
}

.search-form input[type="search"] {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.search-form button[type="submit"] {
    background: var(--main-color, #e83e8c);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-form button[type="submit"]:hover {
    background: var(--main-hover-color, #c82071);
}

.search-section {
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.search-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.search-section-title {
    font-size: 14px;
    margin: 0 0 10px 0;
    padding: 8px 10px;
    background: #f5f5f5;
    border-left: 3px solid var(--main-color, #e83e8c);
}

.search-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 10px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
    border-radius: 4px;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}

.search-result-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-content {
    flex-grow: 1;
    overflow: hidden;
}

.search-result-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-content .artist,
.search-result-content .genre,
.search-result-content .date {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.search-result-content .price {
    font-weight: bold;
    color: #222;
    font-size: 13px;
}

.view-all-results {
    padding: 12px;
    text-align: center;
    border-top: 1px solid #e1e1e1;
    background: #f9f9f9;
}

.view-all-results a {
    color: var(--main-color, #e83e8c);
    text-decoration: none;
    font-weight: 500;
    display: block;
    transition: color 0.2s;
}

.view-all-results a:hover {
    color: var(--main-hover-color, #c82071);
    text-decoration: underline;
}

.searching,
.no-results,
.error {
    padding: 20px 15px;
    text-align: center;
    color: #666;
}

.searching {
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzgiIGhlaWdodD0iMzgiIHZpZXdCb3g9IjAgMCAzOCAzOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiNlODNlOGMiPiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMSAxKSIgc3Ryb2tlLXdpZHRoPSIyIj4gICAgICAgICAgICA8Y2lyY2xlIHN0cm9rZS1vcGFjaXR5PSIuNSIgY3g9IjE4IiBjeT0iMTgiIHI9IjE4Ii8+ICAgICAgICAgICAgPHBhdGggZD0iTTM2IDE4YzAtOS45NC04LjA2LTE4LTE4LTE4Ij4gICAgICAgICAgICAgICAgPGFuaW1hdGVUcmFuc2Zvcm0gICAgICAgICAgICAgICAgICAgIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgICAgICAgICAgICAgICAgICAgIHR5cGU9InJvdGF0ZSIgICAgICAgICAgICAgICAgICAgIGZyb209IjAgMTggMTgiICAgICAgICAgICAgICAgICAgICB0bz0iMzYwIDE4IDE4IiAgICAgICAgICAgICAgICAgICAgZHVyPSIxcyIgICAgICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIi8+ICAgICAgICAgICAgPC9wYXRoPiAgICAgICAgPC9nPiAgICA8L2c+PC9zdmc+') center center no-repeat;
    background-size: 30px;
    height: 80px;
}

/* Dodatni stil za tražilicu na početnoj stranici */
.hero-section .search-form {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Dodatni stilovi za bolju vidljivost rezultata na početnoj stranici */
.hero-section .live-search-results {
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    border-radius: 4px;
    border: 1px solid #e1e1e1;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1010;
}

/* Stilovi za shop tražilicu */
.shop-search-container .live-search-results {
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1010;
}

/* Ispravak za mobilne uređaje */
@media (max-width: 768px) {
    .hero-section .live-search-results,
    .shop-search-container .live-search-results {
        position: absolute;
        width: 100%;
        max-height: 400px;
        max-width: 100%;
    }
    
    .search-result-image {
        width: 50px;
        height: 50px;
    }
    
    .search-result-content h4 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .search-result-image {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .search-result-content .artist,
    .search-result-content .genre,
    .search-result-content .date {
        font-size: 11px;
    }
}

/* Stilovi za stranicu rezultata pretraživanja */
.search-results-page {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.search-results-page .container {
    max-width: 1200px;
    margin: 0 auto;
}

.search-results-page .page-header {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.search-results-page .page-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.search-results-page .page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--main-color, #e83e8c);
}

.search-results-page .page-title span {
    color: var(--main-color, #e83e8c);
}

.search-results-page .search-form-container {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 0 15px;
}

.search-results-container {
    margin-top: 40px;
}

.search-section {
    margin-bottom: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-section:last-child {
    margin-bottom: 0;
}

.search-section-title {
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    color: #333;
    position: relative;
}

.search-section-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--main-color, #e83e8c);
}

/* Stilovi za sekciju proizvoda */
.search-results-page .products-section .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.search-results-page .products-section .product {
    margin-bottom: 0 !important;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.search-results-page .products-section .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Stilovi za sekciju izvođača */
.search-results-page .artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.search-results-page .artist-card {
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}

.search-results-page .artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.search-results-page .artist-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.search-results-page .artist-image {
    height: 220px;
    overflow: hidden;
}

.search-results-page .artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.search-results-page .artist-card:hover .artist-image img {
    transform: scale(1.05);
}

.search-results-page .artist-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #ccc;
    font-size: 4rem;
}

.search-results-page .artist-info {
    padding: 15px;
    text-align: center;
}

.search-results-page .artist-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.search-results-page .artist-genre {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 5px;
    font-style: italic;
}

.search-results-page .artist-count {
    font-size: 14px;
    color: #777;
    display: block;
}

/* Stilovi za sekciju članaka */
.search-results-page .posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.search-results-page .post-card {
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}

.search-results-page .post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.search-results-page .post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.search-results-page .post-thumbnail {
    height: 200px;
    overflow: hidden;
}

.search-results-page .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.search-results-page .post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.search-results-page .post-content {
    padding: 20px;
}

.search-results-page .post-title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.search-results-page .post-meta {
    margin-bottom: 10px;
    font-size: 14px;
    color: #888;
}

.search-results-page .post-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.search-results-page .post-excerpt p {
    margin: 0;
}

/* Stil za poruku kad nema rezultata */
.search-results-page .no-results {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-results-page .no-results p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Responzivni stilovi */
@media (max-width: 1200px) {
    .search-results-page .products-section .products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .search-results-page .products-section .products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .search-results-page .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .search-results-page {
        padding: 40px 0;
    }
    
    .search-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .search-results-page .page-title {
        font-size: 24px;
    }
    
    .search-results-page .products-section .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .search-results-page .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .search-results-page .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .search-results-page .artist-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .search-results-page .products-section .products {
        grid-template-columns: 1fr;
    }
    
    .search-results-page .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .search-results-page .page-title {
        font-size: 22px;
    }
    
    .search-section-title {
        font-size: 20px;
    }
}

/* Dodatni stilovi za stranicu rezultata pretraživanja */
.search-results-page .results-count {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
    font-style: italic;
}

.search-results-page .post-thumbnail.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #ccc;
    font-size: 3rem;
    height: 200px;
}

.search-results-page .no-results .btn-primary {
    display: inline-block;
    background-color: var(--main-color, #e83e8c);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.search-results-page .no-results .btn-primary:hover {
    background-color: var(--main-hover-color, #c82071);
}

.search-results-page .post-date i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .search-results-page .results-count {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .search-results-page .post-thumbnail.no-image {
        height: 160px;
        font-size: 2.5rem;
    }
}

/* Stilovi za izvođače u pretragama */
.search-result-item .artist {
    color: var(--main-color, #e83e8c);
    font-weight: 500;
}

.search-result-item:hover .artist {
    color: #c62b71;
}

/* Poboljšani stilovi za live search rezultate */
.live-search-results {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
}

.live-search-results.has-results {
    max-height: 500px;
    overflow-y: auto;
    opacity: 1;
    margin-top: 10px;
    padding: 10px;
    background: #fff;
    border: 1px solid #eee;
}

/* Treba biti ispred drugih elemenata */
.header-search .live-search-results.has-results {
    z-index: 9999;
}

/* Prikazivanje vrste rezultata za izvođače */
.search-result-item .count {
    display: inline-flex;
    align-items: center;
    color: #777;
    font-size: 12px;
}

.search-result-item .count::before {
    content: '\f001';
    font-family: 'Font Awesome 5 Free';
    margin-right: 5px;
    font-size: 10px;
    color: var(--main-color, #e83e8c);
}

/* Isticanje poklapanja u rezultatima */
.search-result-item .highlight {
    background-color: rgba(232, 62, 140, 0.1);
    color: var(--main-color, #e83e8c);
    font-weight: 500;
    padding: 0 2px;
    border-radius: 2px;
}

/* Stilovi za polje unosa u header search */
.header-search-form .search-field {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    padding: 8px 15px;
    font-size: 14px;
    outline: none;
}

.header-search-form .search-field:focus {
    border-color: var(--main-color, #e83e8c);
    box-shadow: 0 0 0 2px rgba(232, 62, 140, 0.1);
}

.header-search-form .search-submit {
    background: var(--main-color, #e83e8c);
    border: none;
    color: white;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    margin-left: -1px;
}

.search-input-wrapper {
    width: 100%;
    position: relative;
}

/* Live search rezultati - pozicioniranje iznad drugih elemenata */
.search-form,
.header-search-form {
    position: relative;
}

.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    max-height: 80vh;
    overflow-y: auto;
    margin-top: 5px;
    display: none;
}

.live-search-results.has-results {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
    border-bottom: 1px solid #eee;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}

.search-result-image {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-image i {
    font-size: 24px;
    color: #999;
}

.search-result-content {
    flex: 1;
}

.search-result-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
}

.search-result-content .artist {
    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
}

.search-result-content .price {
    font-weight: 600;
    color: #e83e8c;
}

.search-result-content .date {
    font-size: 12px;
    color: #666;
}

.search-section {
    margin-bottom: 20px;
}

.search-section-title {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.search-results-grid {
    display: flex;
    flex-direction: column;
}

.view-all-results {
    padding: 10px;
    text-align: center;
    border-top: 1px solid #eee;
}

.view-all-results a {
    color: #e83e8c;
    text-decoration: none;
    font-weight: 600;
}

.view-all-results a:hover {
    text-decoration: underline;
}

.searching {
    padding: 15px;
    text-align: center;
    color: #666;
}

.no-results, .error {
    padding: 15px;
    text-align: center;
    color: #666;
}

.highlight {
    background-color: #ffe0f0;
    font-weight: bold;
    color: #e83e8c;
    padding: 0 2px;
}

/* Poboljšano pozicioniranje rezultata pretrage - iznad svih elemenata */
.search-form,
.header-search-form {
    position: relative;
}

/* Izrazito povećan z-index i poboljšano pozicioniranje */
.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 9999; /* Mnogo veći z-index od ostalih elemenata */
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    max-height: 80vh;
    overflow-y: auto;
    margin-top: 5px;
    display: none;
}

.live-search-results.has-results {
    display: block;
}

/* Specifično ciljamo hero sekciju da bi nadjačali njena pravila */
.hero-section .live-search-results,
.artist-hero-section .live-search-results,
.shop-hero-section .live-search-results {
    position: absolute;
    top: 100%;
    z-index: 9999;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

/* Standardizirane boje teksta za sve rezultate pretrage */
.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333 !important; /* Forsiraj boju teksta */
    transition: background-color 0.2s;
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}

.search-result-image {
    width: 50px;
    height: 50px;
    min-width: 50px; /* Osiguraj minimalnu širinu */
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

.search-result-content {
    flex: 1;
}

.search-result-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
    color: #333 !important; /* Forsiraj boju teksta */
}

.search-result-content .artist {
    color: #666 !important; /* Forsiraj boju teksta */
    font-size: 12px;
    margin-bottom: 5px;
}

.search-result-content .price {
    font-weight: 600;
    color: #e83e8c !important; /* Forsiraj boju teksta */
}

.search-result-content .date {
    font-size: 12px;
    color: #666 !important; /* Forsiraj boju teksta */
}

.search-section-title {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
    color: #333 !important; /* Forsiraj boju teksta */
}

.searching {
    padding: 15px;
    text-align: center;
    color: #666 !important; /* Forsiraj boju teksta */
    background-color: #fff;
}

.no-results, .error {
    padding: 15px;
    text-align: center;
    color: #666 !important; /* Forsiraj boju teksta */
    background-color: #fff;
}

.highlight {
    background-color: #ffe0f0;
    font-weight: bold;
    color: #e83e8c !important; /* Forsiraj boju teksta */
    padding: 0 2px;
}

/* Dodatno poboljšanje za rezultate pretrage - iznad svih elemenata */
.search-form,
.header-search-form {
    position: relative;
    z-index: 99999; /* Ekstremno visok z-index za kontejner */
}

/* Izrazito povećan z-index i potpuno apsolutno pozicioniranje */
.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 99999; /* Ekstremno visok z-index */
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); /* Jača sjenka za bolju vidljivost */
    max-height: 80vh;
    overflow-y: auto;
    margin-top: 5px;
    display: none;
}

.live-search-results.has-results {
    display: block;
}

/* Specifično ciljanje rezultata pretrage na početnoj stranici */
.hero-section .search-form {
    position: relative;
    z-index: 99999; /* Ekstremno visok z-index */
}

.hero-section .live-search-results,
.artist-hero-section .live-search-results,
.shop-hero-section .live-search-results {
    position: absolute !important; /* Forsiraj apsolutno pozicioniranje */
    top: 100% !important;
    z-index: 99999 !important; /* Forsiraj visok z-index */
    width: 100% !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
}

/* Osigurajmo da su rezultati pretrage iznad sekcije new-arrivals i drugih elemenata */
.hero-section .container {
    position: relative;
    z-index: auto; /* Smanjimo z-index kako bi rezultati pretrage mogli biti iznad */
}

/* Standardizirane boje teksta za sve rezultate pretrage */
.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333 !important; /* Forsiraj boju teksta */
    transition: background-color 0.2s;
    border-bottom: 1px solid #eee;
    background-color: #fff !important; /* Forsiraj bijelu pozadinu */
}

.search-result-item:hover {
    background-color: #f9f9f9 !important;
}

.search-result-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
    color: #333 !important; /* Forsiraj boju teksta */
}

.search-result-content .artist {
    color: #666 !important; /* Forsiraj boju teksta */
    font-size: 12px;
    margin-bottom: 5px;
}

.search-result-content .price {
    font-weight: 600;
    color: #e83e8c !important; /* Forsiraj boju teksta */
}

.search-section-title {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f5f5f5 !important;
    border-radius: 4px;
    color: #333 !important; /* Forsiraj boju teksta */
}

.searching,
.no-results,
.error {
    padding: 15px;
    text-align: center;
    color: #666 !important; /* Forsiraj boju teksta */
    background-color: #fff !important;
}

/* Osigurajmo da elementi pretrage nemaju overflow hidden koji bi mogao sakriti rezultate */
.hero-section,
.artist-hero-section,
.shop-hero-section,
.search-form-container,
.search-form {
    overflow: visible !important;
}

/* Search bar stilovi na shop stranici */
.shop-hero-section .shop-search-container {
    margin-top: 30px;
    width: 100%;
    max-width: 600px;
    position: relative;
}

.shop-search {
    display: flex;
    position: relative;
}

.shop-search input[type="search"] {
    flex: 1;
    border: none;
    border-radius: 30px;
    padding: 15px 25px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.shop-search input[type="search"]:focus {
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    outline: none;
}

.shop-search input[type="search"]::placeholder {
    color: #888;
}

.shop-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--main-color, #e83e8c);
    border: none;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 16px;
}

.shop-search button:hover {
    background-color: var(--main-hover-color, #c82071);
    transform: translateY(-50%) scale(1.05);
}

/* Novi stil za shop search - kopiran iz style.css za search formu s početne */
.shop-hero-section .search-form {
    position: relative;
    z-index: 99999; /* Ekstremno visok z-index za kontejner */
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
}

.shop-hero-section .search-form form {
    display: flex;
    position: relative;
}

.shop-hero-section .search-form input[type="search"] {
    flex: 1;
    border: none;
    border-radius: 30px;
    padding: 15px 25px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.shop-hero-section .search-form button[type="submit"] {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--main-color, #e83e8c);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.shop-hero-section .search-form button[type="submit"]:hover {
    background-color: var(--main-hover-color, #d72d7b);
}

/* Ujednačavanje live search rezultata */
.shop-hero-section .live-search-results {
    position: absolute !important;
    top: 100% !important;
    z-index: 99999 !important;
    width: 100% !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
}

/* Poboljšani stilovi za search form na stranici trgovine (shop page) */
.shop-hero-section .search-form {
    width: 100%;
    max-width: 600px;
    position: relative;
    margin: 25px auto 0;
}

.shop-hero-section .search-form form {
    display: flex;
    width: 100%;
}

.shop-hero-section .search-form input[type="search"] {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: #fff;
    outline: none;
}

.shop-hero-section .search-form input[type="search"]:focus {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--main-color, #e83e8c);
}

.shop-hero-section .search-form button[type="submit"] {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--main-color, #e83e8c);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.shop-hero-section .search-form button[type="submit"]:hover {
    background-color: var(--main-hover-color, #c82071);
    transform: scale(1.05);
}

.shop-hero-section .live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.shop-hero-section .live-search-results.has-results {
    padding: 15px;
    display: block;
}

/* Osigurajmo da se rezultati pretrage prikazuju iznad svih drugih elemenata */
.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.live-search-results.has-results {
    display: block;
    padding: 15px;
}

/* Poboljšanje za mobile verziju */
@media (max-width: 768px) {
    .shop-hero-section .search-form {
        max-width: 100%;
    }
    
    .shop-hero-section .search-form input[type="search"] {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .shop-hero-section .search-form button[type="submit"] {
        padding: 8px 12px;
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* Poboljšanje izgleda tražilice na stranici trgovine da izgleda kao na početnoj stranici */
.shop-search-container .search-form input[type="search"] {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 30px;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    outline: none;
}

.shop-search-container .search-form input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.shop-search-container .search-form input[type="search"]:focus {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-color: #ffffff;
}

.shop-search-container .search-form button[type="submit"] {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--main-color, #e83e8c);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.shop-search-container .search-form button[type="submit"]:hover {
    background-color: var(--main-hover-color, #c82071);
    transform: scale(1.05);
}

.shop-search-container .search-form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

/* Stilovi za tražilicu na stranici trgovine - usklađeni s početnom stranicom */
.shop-search-container .search-form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.shop-search-container .search-form input[type="search"] {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    border-radius: 30px;
    font-size: 16px;
    background-color: transparent !important;
    color: #ffffff !important;
    outline: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.shop-search-container .search-form input[type="search"]:focus {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-color: #ffffff !important;
}

.shop-search-container .search-form input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Usklađivanje tražilice na stranici trgovine s početnom stranicom */
.shop-search-container .search-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.shop-search-container .search-form form {
    display: flex;
    width: 100%;
}

.shop-search-container .search-form input[type="search"] {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid #e1e1e1;
    border-right: none;
    background: #fff;
    color: #333;
}

.shop-search-container .search-form input[type="search"]::placeholder {
    color: #999;
}

.shop-search-container .search-form input[type="search"]:focus {
    outline: none;
    border-color: var(--main-color, #e83e8c);
}

.shop-search-container .search-form button {
    background: var(--main-color, #e83e8c);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-search-container .search-form button:hover {
    background: var(--main-hover-color, #c82071);
}

.shop-search-container .live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-radius: 4px;
    margin-top: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.shop-search-container .live-search-results.has-results {
    display: block;
    padding: 15px;
}

.shop-search-container .search-form button {
    background-color: var(--main-color, #e83e8c);
    color: #fff;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    border-radius: 0 4px 4px 0;
}

.shop-search-container .search-form button i {
    font-size: 16px;
}

.shop-search-container .search-form button:hover {
    background-color: var(--main-hover-color, #c82071);
}

.shop-search-container .search-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.shop-search-container .search-form form {
    display: flex;
    width: 100%;
}

.shop-search-container .search-form input[type="search"] {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-right: none;
    background: #fff;
    color: #333;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
}

/* Category Hero Section */
.category-hero {
    background: var(--gradient-primary);
    padding: 4rem 0;
    position: relative;
    margin-bottom: 3rem;
}

.category-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.category-hero .hero-text {
    text-align: center;
    color: var(--color-white);
}

.category-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.search-filters-container {
    max-width: 900px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

.category-hero .filter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.category-hero .search-group {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.category-hero .search-group input[type="search"] {
    width: 100%;
    padding: 0.8rem 1rem;
    padding-right: 3rem;
    border: none;
    border-radius: 4px;
    background: var(--color-white);
    font-size: 1rem;
}

.category-hero .search-submit {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 3rem;
    border: none;
    background: transparent;
    color: var(--color-primary);
    cursor: pointer;
}

.category-hero .filter-group select {
    padding: 0.8rem 2rem 0.8rem 1rem;
    border: none;
    border-radius: 4px;
    background: var(--color-white);
    font-size: 1rem;
    min-width: 180px;
}

.category-hero .view-switcher {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
    align-self: center;
}

.category-hero .view-switcher button {
    background: var(--color-white);
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 4px;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-hero .view-switcher button.active {
    background: var(--color-primary);
    color: var(--color-white);
}

@media (max-width: 768px) {
    .category-hero {
        padding: 3rem 0;
    }
    
    .category-hero .filter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .category-hero .search-group,
    .category-hero .filter-group {
        width: 100%;
    }
    
    .search-filters-container {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Specifični stilovi za poravnanje view-switchera */
.category-hero .view-switcher {
    display: flex;
    gap: 0.5rem;
    height: 42px;
    align-self: center;
    margin: 1rem auto 0;
}

/* Poboljšanje vidljivosti teksta u select elementu */
.category-hero .filter-group select {
    color: var(--text-color);
    background-color: var(--color-white);
    font-weight: 500;
}

.woocommerce-shop ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0;
    padding: 2rem 0;
}

.woocommerce-shop ul.products li.product {
    width: 100%;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce-shop ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/*
Theme Name: Hit Records
Theme URI: https://hitrecords.hr
Author: Hit Records
Author URI: https://hitrecords.hr
Description: Moderna tema za Hit Records glazbeni dućan
Version: 1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hit-records
*/

:root {
    --primary-color: #FF69B4;
    --secondary-color: #FF1493;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --accent-color: #FF69B4;
    --hover-color: #FF1493;
    --gradient-primary: linear-gradient(135deg, #ff69b4 0%, #FF69B4 50%, #b4ff69 100%);
    --color-white: #ffffff;
    --color-primary: #FF69B4;
    --color-primary-dark: #cc548e;
    --color-text: #333333;
    --color-gray-light: #f0f0f0;
}

/* Osnovna struktura stranice */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#page {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.site-content {
    padding-top: 0; /* consolidated removal */
    flex: 1 0 auto;
    padding-bottom: 4rem;
}

.site-footer {
    flex-shrink: 0;
    margin-top: 0;
    width: 100%;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #ffffff;
    padding-top: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: var(--topbar-height);
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.site-branding {
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.site-branding img {
    height: 90px;
    width: auto;
    position: relative;
    display: block;
    padding: 5px 0;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

/* Glavni meni */
.main-navigation {
    display: flex;
    align-items: center;
    margin-left: auto;
    position: relative;
    z-index: 5;
}

#primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

#primary-menu > li {
    position: relative;
    display: inline-flex;
    align-items: center;
}

#primary-menu > li > a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

#primary-menu > li > a:hover {
    color: var(--primary-color);
    background: var(--light-gray);
}

#primary-menu > li.current-menu-item > a {
    color: white;
    background: var(--primary-color);
}

/* Košarica */
.header-cart {
    margin-left: 1rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--light-gray);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-color);
}

.cart-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.cart-count {
    background: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    min-width: 1.5rem;
    text-align: center;
}

.cart-total {
    font-weight: 600;
    color: var(--primary-color);
}

.cart-link:hover .cart-count {
    background: white;
    color: var(--primary-color);
}

.cart-link:hover .cart-total {
    color: white;
}

/* Mobilna navigacija */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }

    #primary-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        display: none;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    #primary-menu.active {
        display: flex;
    }

    #primary-menu > li {
        width: 100%;
    }

    #primary-menu > li > a {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 8px;
    }

    #primary-menu > li > a:hover {
        background: var(--light-gray);
        transform: translateX(5px);
    }

    .header-cart {
        margin-left: 0;
        margin-right: 1rem;
    }

    .site-header .container {
        flex-wrap: wrap;
        padding: 1rem;
    }

    .site-title {
        font-size: 1.2rem;
    }

    .site-content {
        padding-top: 80px;
    }
}

@media (max-width: 768px) {
    .site-header .container {
        padding: 0 1rem;
    }

    .site-title {
        font-size: 1.2rem;
    }
}

/* Animacije */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.site-header.scrolled-up {
    animation: slideDown 0.3s ease forwards;
}

.site-header.scrolled-down {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

/* Scroll efekti */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .primary-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .primary-menu.active {
        display: flex;
    }
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem 0 1rem;
    margin-top: 4rem;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-widget h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
}

.footer-menu a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-contact li i {
    width: 16px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 0 1rem;
    }

    .footer-widgets {
        gap: 1.5rem;
    }

    .footer-widget {
        text-align: center;
    }

    .footer-widget h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
    }
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    color: white;
}

.footer-social-link.facebook:hover { background: #1877f2; }
.footer-social-link.instagram:hover { background: #e4405f; }
.footer-social-link.youtube:hover { background: #ff0000; }
.footer-social-link.twitter:hover { background: #000000; }

/* Newsletter sekcija */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-1.343 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
    animation: heroPattern 60s linear infinite;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.newsletter-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    padding: 0 2rem;
    background: white;
    border: none;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--light-gray);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
    }
    
    .newsletter-form button {
        position: static;
        width: 100%;
        margin-top: 1rem;
        padding: 1rem;
    }
}

/* Glavni sadržaj */
.site-content {
    min-height: calc(100vh - 80px - 400px);
}

/* Hero Section - zajednički stilovi */
.hero-section,
.shop-hero-section,
.artist-hero-section,
.category-hero {
    background: var(--gradient-primary);
    padding: 4rem 0;
    position: relative;
    margin-bottom: 3rem;
}

.hero-section::before,
.shop-hero-section::before,
.artist-hero-section::before,
.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/pattern.png');
    opacity: 0.1;
    pointer-events: none;
}

.hero-content,
.shop-hero-content,
.artist-hero-content,
.category-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.hero-text,
.shop-hero-text,
.artist-hero-text,
.category-hero .hero-text {
    text-align: center;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.hero-text h1,
.shop-hero-text h1,
.artist-hero-text h1,
.category-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-text p,
.shop-hero-text p,
.artist-hero-text p,
.category-hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Category Hero specifični stilovi */
.category-hero {
    background: var(--gradient-primary);
    padding: 4rem 0;
    position: relative;
    margin-bottom: 3rem;
}

.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/pattern.png');
    opacity: 0.1;
    pointer-events: none;
}

.category-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.category-hero .hero-text {
    text-align: center;
    color: var(--color-white);
}

.category-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Zajednički stilovi za pretraživanje */
.search-filters-container {
    max-width: 800px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

/* Zajednički stilovi za pretraživanje */
.search-filters-container2 {
    max-width: 740px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}


.filter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.search-group {
    flex: 1;
    min-width: 670px;
    position: relative;
}

.search-group input[type="search"] {
    width: 100%;
    padding: 0.8rem 1rem;
    padding-right: 3rem;
    border: none;
    border-radius: 4px;
    background: var(--color-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-group input[type="search"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-primary);
}

.search-submit {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 3rem;
    border: none;
    background: transparent;
    color: var(--color-primary);
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    color: var(--color-primary-dark);
}

.filter-group {
    flex: 0 0 auto;
    min-width: 180px;
}

.filter-group select {
    width: 100%;
    padding: 0.8rem 2rem 0.8rem 1rem;
    border: none;
    border-radius: 4px;
    background: var(--color-white);
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-6-6h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
}

/* Responzivni dizajn */
@media (max-width: 768px) {
    .hero-text h1,
    .shop-hero-text h1,
    .artist-hero-text h1,
    .category-hero h1 {
        font-size: 2rem;
    }
    
    .hero-text p,
    .shop-hero-text p,
    .artist-hero-text p,
    .category-hero .hero-description {
        font-size: 1rem;
    }
    
    .search-filters-container {
        padding: 1rem;
    }
    
    .filter-form {
        flex-direction: column;
    }
    
    .search-group,
    .filter-group {
        min-width: 100%;
    }
    
    .search-group input[type="search"],
    .filter-group select {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form button {
        width: 100%;
    }

    .products {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
}

/* Uklanjamo stare stilove za products-grid */
.products-grid {
    display: none;
}

/* Dodajemo margine za sekcije proizvoda */
.featured-products,
.new-arrivals {
    margin: 4rem 0;
}

.featured-products h2,
.new-arrivals h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.featured-products h2::after,
.new-arrivals h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Osiguravamo da WooCommerce proizvodi koriste grid prikaz */
.featured-products .products,
.new-arrivals .products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

.products::before,
.products::after {
    display: none !important;
}

@media (max-width: 1200px) {
    .featured-products .products,
    .new-arrivals .products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 992px) {
    .featured-products .products,
    .new-arrivals .products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .featured-products .products,
    .new-arrivals .products {
        grid-template-columns: 1fr !important;
    }
    
    .featured-products h2,
    .new-arrivals h2 {
        font-size: 1.8rem;
    }
}

/* Streaming linkovi */
.streaming-links {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
    padding: 0 1rem 1rem;
}

.streaming-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    color: #666;
    transition: all 0.3s ease;
}

.streaming-link:hover {
    transform: translateY(-2px);
}

.streaming-link.spotify:hover { background: #1DB954; color: #fff; }
.streaming-link.youtube:hover { background: #FF0000; color: #fff; }
.streaming-link.deezer:hover { background: #00C7F2; color: #fff; }
.streaming-link.apple-music:hover { background: #FA243C; color: #fff; }
.streaming-link.tidal:hover { background: #000000; color: #fff; }

/* Proizvodi na naslovnici */
.featured-products,
.new-arrivals {
    padding: 4rem 0;
}

.featured-products h2,
.new-arrivals h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.featured-products h2::after,
.new-arrivals h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e74c3c;
    border-radius: 3px;
}

.hero-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 1rem;
    height: 100%;
}

.mosaic-main {
    grid-column: 1 / -1;
    grid-row: 1 / 3;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.mosaic-link {
    display: block;
    height: 100%;
    position: relative;
}

.mosaic-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mosaic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.mosaic-overlay h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
}

.mosaic-artist {
    font-size: 0.9rem;
    opacity: 0.8;
}

.mosaic-link:hover img {
    transform: scale(1.05);
}

.mosaic-link:hover .mosaic-overlay {
    transform: translateY(-5px);
}

/* Grid proizvoda */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

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

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
}

/* Stilovi za prikaz proizvoda */
.product-artists {
    margin: 0.25rem 0 1rem;
    font-size: 1rem;
    text-align: center;
}

.product-artist-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.product-artist-link:hover {
    color: var(--secondary-color);
}

/* Streaming linkovi */
.streaming-links {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    background: rgba(28, 44, 92, 0.05);
    padding: 1rem;
    border-radius: 8px;
}

.streaming-link {
    color: #666;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    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);
}

.streaming-link.spotify:hover {
    color: #1DB954;
    background: rgba(29, 185, 84, 0.1);
}

.streaming-link.youtube:hover {
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
}

.streaming-link.apple-music:hover {
    color: #FA57C1;
    background: rgba(250, 87, 193, 0.1);
}

.streaming-link.deezer:hover {
    color: #00C7F2;
    background: rgba(0, 199, 242, 0.1);
}

.streaming-link.tidal:hover {
    color: #000000;
    background: rgba(0, 0, 0, 0.1);
}

/* Sekcije proizvoda */
.featured-products,
.new-arrivals {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* WooCommerce proizvodi */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100% !important;
}

.woocommerce ul.products li.product {
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    min-width: 250px !important;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex !important;
    flex-direction: column;
    position: relative;
}

.woocommerce ul.products li.product::after {
    display: none !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title::after {
    display: none !important;
}

/* Uklanjamo sve potencijalne dekorativne elemente s kartica */
.woocommerce ul.products li.product *::after {
    display: none !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.2rem !important;
    padding: 1.25rem 1.25rem 0.5rem !important;
    margin: 0 !important;
    color: var(--text-color);
    font-weight: 600;
    text-align: center;
    min-height: 3em;
    line-height: 1.4;
    border: none !important;
}

.woocommerce ul.products li.product a img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    margin: 0 !important;
    transition: transform 0.3s ease;
}

.woocommerce ul.products li.product:hover a img {
    transform: scale(1.05);
}

.woocommerce ul.products li.product .artist {
    padding: 0 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.woocommerce ul.products li.product .price {
    padding: 0.5rem 1.25rem !important;
    margin-bottom: 1rem !important;
    color: var(--primary-color) !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    display: block !important;
}

.woocommerce ul.products li.product .price del {
    color: #666 !important;
    opacity: 0.5;
    font-size: 1.1rem !important;
    font-weight: 400 !important;
    margin-right: 0.5rem;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none !important;
    font-weight: 700 !important;
}

.woocommerce ul.products li.product {
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
    padding-bottom: 1rem !important;
}

.woocommerce ul.products li.product .button {
    margin: 0 1.25rem 1.25rem !important;
    padding: 0.8em 1.5em !important;
    background: var(--primary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    font-weight: 500 !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    font-size: 1rem !important;
    width: calc(100% - 2.5rem) !important;
    display: block !important;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
}

.woocommerce ul.products li.product .button:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
}

@media (max-width: 1400px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, minmax(250px, 1fr)) !important;
    }
}

@media (max-width: 992px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(250px, 1fr)) !important;
    }
}

@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(200px, 1fr)) !important;
    }
    
    .woocommerce ul.products li.product {
        min-width: 200px !important;
    }
    
    .woocommerce ul.products li.product a img {
        height: 200px !important;
    }
}

@media (max-width: 576px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }
    
    .woocommerce ul.products li.product {
        min-width: 100% !important;
    }
}

/* Kategorije */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
    text-decoration: none;
    color: white;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    margin: 0;
    font-size: 1.2rem;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.category-card:hover h3 {
    transform: translateY(-5px);
}

/* Responzivnost */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form button {
        width: 100%;
    }

    .products {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}

/* Single Product */
.single-product .product-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.single-product .product-gallery {
    position: sticky;
    top: 100px;
    width: 100%;
}

.single-product .product_title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.single-product .product-artists {
    text-align: left;
    margin: 0.25rem 0 1.5rem;
}

.single-product .product-artist-link {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.single-product .product-artist-link:hover {
    color: var(--secondary-color);
}

.single-product .price {
    font-size: 2rem !important;
    color: var(--primary-color) !important;
    margin: 1.5rem 0 !important;
}

.single-product .stock-status {
    margin-bottom: 1.5rem;
}

.single-product .stock-status .in-stock {
    color: #28a745;
    font-weight: 500;
}

.single-product .stock-status .out-of-stock {
    color: #dc3545;
    font-weight: 500;
}

.single-product .cart-section {
    margin: 1rem 0 2rem;
}

.single-product .cart {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.single-product .quantity {
    position: relative;
    width: 120px !important;
}

.single-product .quantity input {
    width: 100% !important;
    height: 48px !important;
    padding: 0.5rem 2rem !important;
    text-align: center;
    border: 1px solid var(--border-color) !important;
    border-radius: 4px !important;
    font-size: 1.1rem;
    -moz-appearance: textfield;
}

.single-product .quantity input::-webkit-outer-spin-button,
.single-product .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.single-product .quantity::before,
.single-product .quantity::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
    z-index: 1;
}

.single-product .quantity::before {
    content: '\f068';
    left: 8px;
}

.single-product .quantity::after {
    content: '\f067';
    right: 8px;
}

.single-product .single_add_to_cart_button {
    flex: 1;
    height: 48px !important;
    background: var(--primary-color) !important;
    color: white !important;
    padding: 0 2rem !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
}

.single-product .single_add_to_cart_button:hover {
    background: var(--secondary-color) !important;
}

.single-product .wishlist-button {
    text-align: center;
}

.single-product .wishlist-button a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    height: 48px !important;
    padding: 0 !important;
    background: white !important;
    color: var(--primary-color) !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border: none !important;
}

.single-product .wishlist-button a:hover {
    background: var(--light-gray) !important;
    color: var(--primary-color) !important;
}

.single-product .wishlist-button i {
    font-size: 1.4rem !important;
}

.single-product .product-details {
    margin: 2rem 0;
}

.single-product .details-table {
    width: 100%;
    border-collapse: collapse;
}

.single-product .details-table th,
.single-product .details-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.single-product .details-table th {
    width: 30%;
    text-align: left;
    color: #666;
}

.single-product .product-description {
    margin: 2rem 0;
}

.single-product .product-streaming {
    margin: 2rem 0;
}

.single-product .streaming-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.single-product .streaming-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 1.2rem;
}

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

.single-product .product-spotify-player {
    margin: 2rem 0;
}

.single-product .spotify-embed {
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: #282828;
}

.single-product .spotify-embed iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: none;
}

.single-product .related-products {
    margin: 4rem 0;
}

.single-product .related-products h2 {
    text-align: center;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .single-product .product-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .single-product .product-gallery {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .single-product .product_title {
        font-size: 2rem;
    }
    
    .single-product .price {
        font-size: 1.75rem !important;
    }
    
    .single-product .cart {
        padding: 1rem;
    }
    
    .single-product .streaming-links {
        gap: 0.75rem;
    }
    
    .single-product .streaming-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .single-product .spotify-embed iframe {
        height: 300px;
    }
}

/* Popis pjesama */
.product-tracklist {
    margin: 3rem 0;
    width: 100%;
}

.product-tracklist h2 {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.disc-section {
    width: 100%;
    margin-bottom: 2rem;
}

.disc-section:last-child {
    margin-bottom: 0;
}

.disc-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tracklist-table {
    width: 100%;
    border-collapse: collapse;
}

.tracklist-table tr {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.tracklist-table td {
    padding: 0.75rem 0;
}

.track-number {
    width: 30px;
    color: var(--primary-color);
    font-weight: 500;
}

.track-title {
    font-weight: 400;
    padding-left: 1rem !important;
}

.track-duration {
    width: 60px;
    text-align: right;
    color: #666;
    font-weight: 400;
}

/* Galerija proizvoda */
.woocommerce-product-gallery {
    position: relative;
    width: 100%;
}

.woocommerce-product-gallery > div {
    width: 100% !important;
}

.woocommerce-product-gallery__wrapper {
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
}

.woocommerce-product-gallery__wrapper > div {
    width: 100% !important;
    flex: 0 0 100% !important;
}

.woocommerce-product-gallery .flex-viewport {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 556px !important;
    overflow: hidden !important;
}

.woocommerce-product-gallery__image {
    width: 100% !important;
    height: 556px !important;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    flex: 0 0 100% !important;
}

.woocommerce-product-gallery__image a {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.woocommerce-product-gallery__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    background: var(--light-gray);
}

.woocommerce-product-gallery .flex-control-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem !important;
    padding: 0 !important;
    width: 100%;
}

.woocommerce-product-gallery .flex-control-thumbs li {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 8px;
    overflow: hidden;
}

.woocommerce-product-gallery .flex-control-thumbs img {
    width: 100%;
    height: auto;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.woocommerce-product-gallery .flex-control-thumbs img.flex-active,
.woocommerce-product-gallery .flex-control-thumbs img:hover {
    opacity: 1;
}

/* Lista želja */
.wishlist-button {
    margin-left: 1rem;
}

.yith-wcwl-add-button a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    background: white !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

.yith-wcwl-add-button a:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px);
}

.yith-wcwl-add-button i {
    font-size: 1.4rem !important;
}

/* Admin stilovi za popis pjesama */
.tracklist-container {
    padding: 1rem;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 1rem 0;
}

.disc-section {
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border: 1px solid #eee;
    border-radius: 4px;
}

.tracks-table {
    margin: 1rem 0;
}

.tracks-table input[type="text"] {
    width: 100%;
}

.tracks-table td {
    padding: 0.5rem;
}

.button.add-track,
.button.add-disc {
    margin: 0.5rem 0;
}

.button.remove-track,
.button.remove-disc {
    color: #dc3545;
}

.woocommerce-product-gallery.images {
    width: 100% !important;
    max-width: none !important;
}

.woocommerce div.product div.images {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
}

/* Breadcrumb */
.woocommerce-breadcrumb {
    margin: 2rem 0 !important;
    padding: 1rem !important;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 0.9rem !important;
    color: #666 !important;
}

.woocommerce-breadcrumb a {
    color: var(--primary-color) !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.woocommerce-breadcrumb a:hover {
    color: var(--secondary-color) !important;
    text-decoration: underline !important;
}

.woocommerce-breadcrumb .breadcrumb-separator {
    margin: 0 0.5rem;
    color: #999;
}

/* Cart Page */
.cart-wrapper {
    margin: 3rem 0;
}

.woocommerce-cart-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 2rem;
}

.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 !important;
    border: none !important;
}

.shop_table thead {
    background: var(--light-gray);
}

.shop_table th {
    padding: 1.5rem 1rem !important;
    font-weight: 600;
    text-align: left;
    border: none !important;
}

.shop_table td {
    padding: 1.5rem 1rem !important;
    border-bottom: 1px solid var(--border-color) !important;
    border-top: none !important;
}

.shop_table tr:last-child td {
    border-bottom: none !important;
}

.product-remove a {
    color: #dc3545 !important;
    font-size: 1.5rem;
    text-decoration: none;
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.product-remove a:hover {
    background: #dc3545 !important;
    color: white !important;
}

.product-thumbnail {
    width: 100px;
}

.product-thumbnail img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    border-radius: 8px;
}

.product-name a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-name a:hover {
    color: var(--primary-color);
}

.product-price,
.product-subtotal {
    font-weight: 600;
    color: var(--primary-color);
}

.quantity input {
    width: 80px !important;
    height: 40px !important;
    padding: 0.5rem !important;
    text-align: center;
    border: 1px solid var(--border-color) !important;
    border-radius: 4px !important;
    -moz-appearance: textfield;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.actions {
    background: var(--light-gray);
    padding: 1.5rem !important;
}

.coupon {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.coupon label {
    font-weight: 500;
}

.coupon input {
    height: 48px !important;
    padding: 0 1rem !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 4px !important;
    flex: 1;
}

.button {
    height: 48px !important;
    padding: 0 2rem !important;
    background: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
}

.button:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.cart-collaterals {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 2rem;
}

.cart_totals {
    width: 100% !important;
}

.cart_totals h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.cart_totals table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.cart_totals th {
    width: 30%;
    padding: 1rem 0;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cart_totals td {
    padding: 1rem 0;
    text-align: right;
    border-bottom: 1px solid var(--border-color);
}

.cart_totals tr:last-child th,
.cart_totals tr:last-child td {
    border-bottom: none;
}

.wc-proceed-to-checkout .button {
    width: 100%;
    text-align: center;
    font-size: 1.1rem !important;
}

@media (max-width: 768px) {
    .shop_table_responsive thead {
        display: none;
    }

    .shop_table_responsive tr td {
        display: block;
        text-align: right;
        padding: 1rem !important;
    }

    .shop_table_responsive tr td::before {
        content: attr(data-title);
        float: left;
        font-weight: 600;
    }

    .product-thumbnail {
        display: none !important;
    }

    .coupon {
        flex-direction: column;
    }

    .coupon input {
        width: 100% !important;
    }

    .coupon .button {
        width: 100%;
    }
}

.cart-empty-message {
    text-align: center;
    padding: 4rem 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin: 2rem 0;
}

.cart-empty-message p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.cart-empty-message .button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cart-empty-message .button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Mini košarica */
.header-cart {
    position: relative;
}

.mini-cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 380px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.header-cart:hover .mini-cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mini-cart-content {
    padding: 1.5rem;
}

.mini-cart-products {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
}

.mini-cart-item {
    display: grid;
    grid-template-columns: 60px 1fr 24px;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.mini-cart-item:last-child {
    border-bottom: none;
}

.item-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.item-details h4 {
    font-size: 0.9rem;
    margin: 0 0 0.5rem;
    color: var(--text-color);
}

.item-price {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin: 0;
}

.mini-cart-item .remove {
    color: #dc3545;
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.mini-cart-item .remove:hover {
    color: #bd2130;
    transform: scale(1.1);
}

.mini-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
}

.mini-cart-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.mini-cart-buttons .button {
    width: 100%;
    text-align: center;
    padding: 0.75rem 0.5rem !important;
    font-size: 0.85rem !important;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-cart-buttons .view-cart {
    background: var(--light-gray) !important;
    color: var(--text-color) !important;
}

.mini-cart-buttons .checkout {
    background: var(--primary-color) !important;
    color: white !important;
}

.mini-cart-empty {
    text-align: center;
    padding: 2rem 0;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .mini-cart-dropdown {
        width: 320px;
        right: -1rem;
    }
    
    .mini-cart-buttons .button {
        font-size: 0.8rem !important;
        padding: 0.75rem 0.25rem !important;
    }
}

/* Toolbar za kategorije proizvoda */
.woocommerce-products-header {
    margin-bottom: 2rem;
}

.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.view-switcher {
    display: flex;
    gap: 10px;
    margin-right: 20px;
}

.view-switcher button {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #999; /* Svjetlija siva za neaktivne ikone */
    font-size: 20px; /* Veće ikone */
    transition: all 0.3s ease;
    width: 40px; /* Fiksna širina */
    height: 40px; /* Fiksna visina */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.view-switcher button:hover {
    color: #333;
    background-color: #f5f5f5;
}

.view-switcher button.active {
    color: #2c2c2c;
    background-color: #f0f0f0;
}

.woocommerce-ordering {
    margin: 0 !important;
}

.woocommerce-ordering select {
    padding: 0.6rem 2.5rem 0.6rem 1rem !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 6px !important;
    background-color: white !important;
    font-size: 0.9rem !important;
    color: var(--text-color) !important;
    cursor: pointer !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.7rem center !important;
    background-size: 1em !important;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.products-search {
    position: relative;
    min-width: 250px;
}

.products-search input[type="search"] {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
}

.products-search button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1rem;
}

/* List view stilovi */
.products.list-view {
    display: block;
    margin: 0;
    padding: 0;
}

ul.products.list-view {
    display: block;
    margin: 0;
    padding: 0;
}

ul.products.list-view li.product {
    width: 100%;
    display: grid;
    grid-template-columns: 60px minmax(200px, 1fr) auto auto;
    gap: 20px;
    align-items: center;
    padding: 12px;
    margin: 0;
    border-bottom: 1px solid #eee;
    background: #fff;
}

ul.products.list-view li.product:hover {
    background: #f9f9f9;
}

ul.products.list-view li.product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 0;
}

ul.products.list-view li.product .product-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

ul.products.list-view li.product .woocommerce-loop-product__title {
    font-size: 15px;
    margin: 0;
    padding: 0;
}

ul.products.list-view li.product .artist {
    font-size: 13px;
    color: #666;
    margin: 0;
}

ul.products.list-view li.product .price {
    font-size: 15px;
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
}

ul.products.list-view li.product .streaming-links {
    display: flex;
    gap: 8px;
    margin: 0;
}

ul.products.list-view li.product .streaming-link {
    width: 24px;
    height: 24px;
    font-size: 14px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.2s;
}

ul.products.list-view li.product .streaming-link:hover {
    color: #333;
}

@media (max-width: 992px) {
    ul.products.list-view li.product {
        grid-template-columns: 50px minmax(150px, 1fr) auto auto;
        gap: 15px;
    }
    
    ul.products.list-view li.product img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    ul.products.list-view li.product {
        grid-template-columns: 40px 1fr auto;
        gap: 10px;
        padding: 8px;
    }
    
    ul.products.list-view li.product img {
        width: 40px;
        height: 40px;
    }
    
    ul.products.list-view li.product .streaming-links {
        display: none;
    }
}

@media (max-width: 576px) {
    ul.products.list-view li.product {
        grid-template-columns: 40px 1fr auto;
    }
    
    ul.products.list-view li.product .button {
        display: none;
    }
}

/* View Switcher Styles */
.view-switcher {
    display: flex;
    gap: 10px;
    margin-right: 20px;
}

.view-switcher button {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.view-switcher button:hover,
.view-switcher button.active {
    color: #e91e63;
}

@media (max-width: 992px) {
    .products.list-view li.product {
        grid-template-columns: 200px 1fr !important;
    }
    
    .products.list-view li.product .button {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 768px) {
    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .toolbar-left,
    .toolbar-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .products-search {
        min-width: 100%;
    }
    
    .products.list-view li.product {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
    
    .products.list-view li.product .product-content {
        text-align: center !important;
    }
    
    .products.list-view .streaming-links {
        justify-content: center !important;
    }
}

/* Header Search */
.header-search {
    position: relative;
    margin-left: 20px;
}

.search-toggle {
    background: none;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.search-toggle:hover {
    background-color: rgba(0,0,0,0.05);
}

.search-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 10px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-search-form {
    display: flex;
    width: 100%;
}

/* Dodajemo ponovno pravila za nonce input polje */
#search_nonce {
    display: none;
}

/* Stilovi za live search rezultate */
.live-search-results {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.live-search-results.has-results {
    max-height: 400px;
    overflow-y: auto;
    opacity: 1;
    margin-top: 10px;
    padding-right: 5px;
}

.searching {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    color: #777;
    text-align: center;
}

.searching span {
    position: relative;
    padding-left: 25px;
}

.searching span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-top: 2px solid var(--main-color, #e83e8c);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.search-section {
    margin-bottom: 15px;
}

.search-section-title {
    font-size: 14px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}

.search-results-grid {
    display: grid;
    gap: 8px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.search-result-image {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #999;
    font-size: 16px;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-content {
    flex: 1;
}

.search-result-content h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 2px;
    color: #333;
    line-height: 1.3;
}

.search-result-content .artist,
.search-result-content .count,
.search-result-content .date {
    font-size: 12px;
    color: #777;
    display: block;
    line-height: 1.3;
}

.search-result-content .price {
    font-size: 13px;
    color: var(--main-color, #e83e8c);
    font-weight: 500;
    display: block;
    margin-top: 2px;
}

.view-all-results {
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 5px;
}

.view-all-results a {
    color: var(--main-color, #e83e8c);
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}

.view-all-results a:hover {
    text-decoration: underline;
}

.no-results {
    padding: 20px 0;
    text-align: center;
    color: #777;
    font-size: 14px;
}

.error {
    padding: 20px 0;
    text-align: center;
    color: #e74c3c;
    font-size: 14px;
}

@media (max-width: 576px) {
    .search-dropdown {
        width: 280px;
        right: -70px;
    }
    
    .search-dropdown:before {
        right: 80px;
    }
}

/* Stranica izvođača */
.artist-single {
    margin: 3rem 0;
}

.artist-header {
    position: relative;
    margin-bottom: 3rem;
}

.artist-cover {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--light-gray);
}

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

.artist-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.artist-title {
    font-size: 3rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.artist-genre {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.artist-sidebar {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.artist-main {
    flex: 1;
}

.artist-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 3rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.artist-social-links,
.artist-streaming {
    margin-top: 3rem;
    text-align: center;
}

.artist-social-links h3,
.artist-streaming h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.social-links,
.streaming-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link,
.streaming-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.social-link:hover,
.streaming-link:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* Društvene mreže hover boje */
.social-link.facebook:hover { background: #1877f2; border-color: #1877f2; }
.social-link.instagram:hover { background: #e4405f; border-color: #e4405f; }
.social-link.website:hover { background: #2ecc71; border-color: #2ecc71; }
.social-link.tiktok:hover { background: #000000; border-color: #000000; }
.social-link.twitter:hover { background: #000000; border-color: #000000; }

/* Streaming servisi hover boje */
.streaming-link.spotify:hover { background: #1DB954; border-color: #1DB954; }
.streaming-link.youtube:hover { background: #FF0000; border-color: #FF0000; }
.streaming-link.deezer:hover { background: #00C7F2; border-color: #00C7F2; }
.streaming-link.apple-music:hover { background: #FA243C; border-color: #FA243C; }
.streaming-link.tidal:hover { background: #000000; border-color: #000000; }

@media (max-width: 768px) {
    .social-links,
    .streaming-links {
        gap: 0.75rem;
    }

    .social-link,
    .streaming-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .artist-social-links h3,
    .artist-streaming h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

.artist-products {
    margin: 3rem 0;
}

.artist-products h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #fff;
    text-align: left;
}

.artist-products .woocommerce ul.products {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.artist-products .woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    transition: all 0.3s ease;
}

.artist-products .woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.artist-products .woocommerce ul.products li.product img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin: 0;
    transition: transform 0.3s ease;
}

.artist-products .woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}

.artist-products .woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 1rem;
    margin: 0;
    font-size: 1rem;
    color: #fff;
    text-align: center;
}

.artist-products .woocommerce ul.products li.product .price {
    padding: 0 1rem;
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    text-align: center;
}

.artist-products .woocommerce ul.products li.product .price del {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.artist-products .woocommerce ul.products li.product .price ins {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

.artist-products .woocommerce ul.products li.product .button {
    display: block;
    width: 100%;
    margin: 1rem 0 0 0;
    padding: 0.8rem;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.artist-products .woocommerce ul.products li.product .button:hover {
    background: var(--primary-color-hover);
}

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

@media (max-width: 768px) {
    .artist-products .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .artist-products .woocommerce ul.products li.product img {
        height: 200px;
    }

    .artist-products h3 {
        font-size: 1.5rem;
    }
}

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

    .artist-products .woocommerce ul.products li.product a img {
        height: 180px;
    }
}

.artist-gallery {
    margin: 3rem 0;
}

.artist-gallery h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: transform 0.3s ease;
}

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

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

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

.artist-spotify-player {
    margin: 3rem 0;
}

.artist-spotify-player h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.artist-spotify-player .spotify-embed {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #282828;
}

.artist-spotify-player .spotify-embed iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: none;
}

@media (max-width: 768px) {
    .artist-spotify-player .spotify-embed iframe {
        height: 300px;
    }
}

/* Archive Artists Page */
.archive-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.archive-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM57 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-1.343 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
    animation: heroPattern 60s linear infinite;
    z-index: 1;
}

.archive-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.archive-filters {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.genre-filter select {
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.genre-filter select:hover,
.genre-filter select:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    outline: none;
}

.artist-search input[type="search"] {
    width: 100%;
    padding: 1rem 3rem 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.artist-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.artist-search input[type="search"]:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    outline: none;
}

.artist-search button {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.artist-search button:hover {
    transform: translateY(-50%) scale(1.1);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.artist-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 350px;
}

.artist-card:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.artist-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.artist-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        transparent 100%
    );
    color: #fff;
}

.artist-card-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.artist-card-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.artist-card-info {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.artist-card-genre {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.875rem;
    backdrop-filter: blur(5px);
}

.artist-card-releases {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Uklanjamo stare stilove za linkove */
.artist-card-links,
.artist-card-social,
.artist-card-streaming {
    display: none;
}

/* Responzivni dizajn */
@media (max-width: 1200px) {
    .artists-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .artist-card {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .artist-card {
        height: 350px;
    }
}

/* Novosti sekcija */
.news-section {
    padding: 4rem 0;
    background: #fff;
}

.news-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--text-color);
}

.news-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-color);
}

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

.news-card-image {
    position: relative;
    width: 100%;
    padding-top: 66%;
    overflow: hidden;
    display: block;
}

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

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

.news-card .no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #999;
}

.news-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.news-meta {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-date i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.news-title {
    font-size: 1.2rem;
    margin: 0 0 1rem;
    line-height: 1.4;
}

.news-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.news-title a:hover {
    color: var(--primary-color);
}

.news-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    margin-top: auto;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more:hover i {
    transform: translateX(3px);
}

.no-news {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    color: #666;
}

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

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-section h2 {
        font-size: 1.8rem;
    }
    
    .news-card {
        margin-bottom: 0;
    }
}

/* Single Post */
.single-post {
    margin: 4rem 0;
}

.post-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.post-header {
    margin-bottom: 2rem;
}

.post-thumbnail {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--light-gray);
    font-size: 0.95rem;
    color: #666;
}

.post-date,
.post-categories {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-date i,
.post-categories i {
    color: var(--primary-color);
}

.post-categories a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-categories a:hover {
    color: var(--primary-color);
}

.post-title {
    font-size: 2.5rem;
    margin: 0;
    padding: 2rem 2rem 0;
    color: var(--text-color);
    line-height: 1.3;
}

.post-body {
    padding: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.post-body h2,
.post-body h3,
.post-body h4 {
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.post-body ul,
.post-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.post-body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-color);
    background: var(--light-gray);
    font-style: italic;
    color: #666;
}

.post-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    background: var(--light-gray);
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.post-tags i {
    color: var(--primary-color);
}

.post-tags a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-tags a:hover {
    color: var(--primary-color);
}

.post-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.prev-post,
.next-post {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.prev-post:hover,
.next-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    color: var(--primary-color);
}

.prev-post i,
.next-post i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.prev-post span,
.next-post span {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.prev-post small,
.next-post small {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-post {
    text-align: right;
}

.next-post span {
    align-items: flex-end;
}

@media (max-width: 992px) {
    .post-title {
        font-size: 2rem;
        padding: 1.5rem 1.5rem 0;
    }

    .post-meta,
    .post-body,
    .post-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .single-post {
        margin: 2rem 0;
    }

    .post-thumbnail {
        height: 300px;
    }

    .post-title {
        font-size: 1.8rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .post-body {
        font-size: 1rem;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .next-post {
        text-align: left;
    }

    .next-post span {
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .post-thumbnail {
        height: 200px;
    }

    .post-title {
        font-size: 1.5rem;
    }
}

/* Post Share Buttons */
.post-share {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.post-share h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-button i {
    font-size: 1rem;
}

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

.share-button.facebook {
    background: #1877f2;
}

.share-button.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.share-button.twitter {
    background: #000000;
}

.share-button.linkedin {
    background: #0077b5;
}

.share-button.whatsapp {
    background: #25d366;
}

.share-button.email {
    background: #666666;
}

.share-button.copy {
    background: var(--primary-color);
}

@media (max-width: 576px) {
    .share-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .share-button {
        width: 100%;
        justify-content: center;
    }
}

/* Tooltip za kopiranje linka */
.copy-tooltip {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.copy-tooltip.show {
    opacity: 1;
    visibility: visible;
}

/* Archive News Page */
.archive-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem 0;
    margin-bottom: 3rem;
    color: white;
    text-align: center;
}

.archive-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.archive-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
    opacity: 0.9;
}

.archive-filters {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.filter-form {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.filter-group {
    position: relative;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    appearance: none;
}

.filter-group select {
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 1em;
}

.filter-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.filter-group .search-submit {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}

.view-switcher {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.view-switcher button {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-switcher button:hover,
.view-switcher button.active {
    background: white;
    color: var(--primary-color);
}

/* Grid View */
.news-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-archive-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.news-archive-image {
    position: relative;
    padding-top: 66%;
    overflow: hidden;
}

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

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

.news-archive-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* List View */
.news-archive-grid.list-view {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.news-archive-grid.list-view .news-archive-card {
    flex-direction: row;
    align-items: stretch;
}

.news-archive-grid.list-view .news-archive-image {
    width: 300px;
    padding-top: 0;
    flex-shrink: 0;
}

.news-archive-grid.list-view .news-archive-content {
    padding: 2rem;
}

.news-archive-grid.list-view .news-title {
    font-size: 1.5rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 6px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pagination .page-numbers.current {
    background: var(--primary-color);
    color: white;
}

.pagination .page-numbers:hover:not(.current) {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 1200px) {
    .news-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .filter-form {
        grid-template-columns: 1fr;
    }

    .news-archive-grid.list-view .news-archive-card {
        flex-direction: column;
    }

    .news-archive-grid.list-view .news-archive-image {
        width: 100%;
        padding-top: 66%;
    }
}

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

    .news-archive-grid {
        grid-template-columns: 1fr;
    }

    .archive-filters {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .archive-title {
        font-size: 1.8rem;
    }

    .pagination .page-numbers {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem;
    background: var(--light-gray);
    border-radius: 12px;
    margin: 2rem 0;
}

.no-results p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Stranice */
.single-page {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 4rem 0;
}

.page-header {
    position: relative;
    margin-bottom: 2rem;
}

.page-thumbnail {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.page-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-title {
    font-size: 2.5rem;
    margin: 0;
    padding: 2rem 2rem 0;
    color: var(--text-color);
    line-height: 1.3;
}

.page-body {
    padding: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.page-body p {
    margin-bottom: 1.5rem;
}

.page-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.page-body h2,
.page-body h3,
.page-body h4 {
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.page-body ul,
.page-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-body li {
    margin-bottom: 0.5rem;
}

.page-body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-color);
    background: var(--light-gray);
    font-style: italic;
    color: #666;
}

/* Responzivnost za stranice */
@media (max-width: 992px) {
    .page-title {
        font-size: 2rem;
        padding: 1.5rem 1.5rem 0;
    }

    .page-body {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .single-page {
        margin: 2rem 0;
    }

    .page-thumbnail {
        height: 300px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-body {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-thumbnail {
        height: 200px;
    }

    .page-title {
        font-size: 1.5rem;
    }
}

/* WooCommerce stranice padding */
.woocommerce-cart .page-content,
.woocommerce-checkout .page-content,
.woocommerce-account .page-content {
    padding-top: 4rem;
}

/* Responzivnost za WooCommerce stranice */
@media (max-width: 768px) {
    .woocommerce-cart .page-content,
    .woocommerce-checkout .page-content,
    .woocommerce-account .page-content {
        padding-top: 2rem;
    }
}

/* Sakrij poruku o uštedi u košarici */
.woocommerce-cart .woocommerce-cart-form .product-price .savings,
.woocommerce-cart .woocommerce-cart-form .product-subtotal .savings {
    display: none !important;
}

/* Sakrij sve poruke o uštedi */
.wc-block-components-product-badge.wc-block-components-sale-badge,
.wc-block-components-sale-badge,
.woocommerce-cart .woocommerce-cart-form .product-price .savings,
.woocommerce-cart .woocommerce-cart-form .product-subtotal .savings {
    display: none !important;
}

/* Progress bar za besplatnu dostavu */
.free-shipping-progress {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.progress-message {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Artist Archive Hero Section */
.artist-hero-section {
    background: linear-gradient(135deg, #ff69b4 0%, #FF69B4 50%, #b4ff69 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.artist-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
    pointer-events: none;
}

.artist-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.artist-hero-text {
    margin-bottom: 40px;
}

.artist-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.artist-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.artist-search-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.artist-search-container .genre-filter {
    flex: 1;
    min-width: 200px;
}

.artist-search-container .genre-filter select {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.artist-search-container .genre-filter select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.artist-search-container .genre-filter select option {
    background: #fff;
    color: #333;
}

.artist-search-container .artist-search {
    flex: 2;
    min-width: 300px;
    position: relative;
}

.artist-search-container .artist-search input[type="search"] {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.artist-search-container .artist-search input[type="search"]:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.artist-search-container .artist-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.artist-search-container .artist-search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.artist-search-container .artist-search button:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .artist-hero-section {
        padding: 60px 0;
        margin-bottom: 40px;
    }
    
    .artist-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .artist-hero-text p {
        font-size: 1rem;
    }

    .artist-search-container {
        flex-direction: column;
    }

    .artist-search-container .genre-filter,
    .artist-search-container .artist-search {
        width: 100%;
    }
}

/* Shop Hero Section */
.shop-hero-section {
    background: linear-gradient(135deg, #ff69b4 0%, #FF69B4 50%, #b4ff69 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.shop-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
    pointer-events: none;
}

.shop-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.shop-hero-text {
    margin-bottom: 40px;
}

.shop-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.shop-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.shop-search-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.shop-search {
    flex: 2;
    min-width: 300px;
    position: relative;
}

.shop-search input[type="search"] {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.shop-search input[type="search"]:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.shop-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.shop-search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.shop-search button:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .shop-hero-section {
        padding: 60px 0;
        margin-bottom: 40px;
    }
    
    .shop-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .shop-hero-text p {
        font-size: 1rem;
    }

    .shop-search-container {
        flex-direction: column;
    }

    .shop-search {
        width: 100%;
    }
}

/* Shop Header Styles */
.shop-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

.shop-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.shop-header .site-branding {
    flex: 0 0 auto;
}

.shop-header .main-navigation {
    flex: 1;
    margin: 0 2rem;
}

.shop-header .nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-header .nav-menu li {
    margin: 0 1rem;
}

.shop-header .nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.shop-header .nav-menu a:hover {
    color: #e91e63;
}

.shop-header .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shop-header .search-toggle button,
.shop-header .cart-toggle a {
    background: none;
    border: none;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.shop-header .search-toggle button:hover,
.shop-header .cart-toggle a:hover {
    color: #e91e63;
}

.shop-header .cart-count {
    background: #e91e63;
    color: #fff;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.search-overlay .search-form {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.search-overlay .search-field {
    width: 100%;
    padding: 1rem;
    font-size: 1.5rem;
    border: none;
    border-bottom: 2px solid #e91e63;
    background: none;
    outline: none;
}

.search-overlay .search-form button {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #e91e63;
    font-size: 1.2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .shop-header .main-navigation {
        display: none;
    }
    
    .shop-header .header-content {
        padding: 0.5rem 0;
    }
}

/* WooCommerce List View */
ul.products.list-view {
    display: block !important;
    margin: 0 !important;
}

ul.products.list-view li.product {
    width: 100% !important;
    float: none !important;
    display: grid !important;
    grid-template-columns: 120px 2fr 1fr auto !important;
    gap: 20px;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px !important;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

ul.products.list-view li.product:hover {
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* Slika proizvoda */
ul.products.list-view li.product img {
    width: 120px !important;
    height: 120px !important;
    object-fit: cover;
    margin: 0 !important;
    border-radius: 4px;
}

/* Glavni sadržaj (naslov i izvođač) */
ul.products.list-view li.product .product-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

ul.products.list-view li.product .woocommerce-loop-product__title {
    font-size: 1.2em !important;
    margin: 0 !important;
    color: #2c2c2c;
}

ul.products.list-view li.product .artist {
    font-size: 0.95em;
    color: #666;
    margin: 0;
}

/* Cijena */
ul.products.list-view li.product .price {
    font-size: 1.1em !important;
    margin: 0 !important;
    color: #2c2c2c;
    font-weight: 600;
}

ul.products.list-view li.product .price del {
    font-size: 0.85em;
    color: #999;
    margin-right: 5px;
}

ul.products.list-view li.product .price ins {
    text-decoration: none;
    color: #e53935;
}

/* Streaming servisi i gumb */
ul.products.list-view li.product .product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

ul.products.list-view li.product .streaming-links {
    display: flex;
    gap: 8px;
}

ul.products.list-view li.product .streaming-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 4px;
    color: #666;
    transition: all 0.3s ease;
}

ul.products.list-view li.product .streaming-link:hover {
    color: #fff;
}

ul.products.list-view li.product .button {
    margin: 0 !important;
    padding: 8px 16px !important;
}

/* Responzivni dizajn */
@media (max-width: 992px) {
    ul.products.list-view li.product {
        grid-template-columns: 100px 2fr 1fr !important;
    }
    
    ul.products.list-view li.product img {
        width: 100px !important;
        height: 100px !important;
    }
    
    ul.products.list-view li.product .product-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    ul.products.list-view li.product {
        grid-template-columns: 80px 1fr !important;
        gap: 15px;
    }
    
    ul.products.list-view li.product img {
        width: 80px !important;
        height: 80px !important;
    }
    
    ul.products.list-view li.product .price {
        grid-column: 2;
        text-align: left;
    }
    
    ul.products.list-view li.product .product-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    ul.products.list-view li.product .streaming-links {
        order: 2;
    }
    
    ul.products.list-view li.product .button {
        order: 1;
        width: 100%;
    }
}

/* Početna stranica - card view */
.home ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Trgovina - tablični prikaz */
.woocommerce-shop ul.products.list-view {
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product {
    display: table-row;
    width: 100%;
    background: #fff;
}

.woocommerce-shop ul.products.list-view li.product > * {
    display: table-cell;
    vertical-align: middle;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.woocommerce-shop ul.products.list-view li.product .product-image {
    width: 60px;
    padding: 8px;
}

.woocommerce-shop ul.products.list-view li.product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .product-title {
    width: 30%;
}

.woocommerce-shop ul.products.list-view li.product .woocommerce-loop-product__title {
    font-size: 15px;
    margin: 0;
    padding: 0;
    color: #333;
}

.woocommerce-shop ul.products.list-view li.product .artist {
    width: 20%;
    font-size: 14px;
    color: #666;
}

.woocommerce-shop ul.products.list-view li.product .price {
    width: 15%;
    font-size: 15px;
    font-weight: bold;
    white-space: nowrap;
    color: #333;
}

.woocommerce-shop ul.products.list-view li.product .streaming-links {
    width: 20%;
    display: flex;
    gap: 8px;
    justify-content: flex-start;
}

.woocommerce-shop ul.products.list-view li.product .streaming-link {
    width: 24px;
    height: 24px;
    font-size: 14px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.2s;
}

.woocommerce-shop ul.products.list-view li.product .button {
    width: 15%;
    text-align: right;
    padding: 8px 16px;
    font-size: 14px;
    background: #333;
    color: #fff;
    border-radius: 4px;
}

/* Zaglavlje tablice */
.woocommerce-shop ul.products.list-view:before {
    content: "";
    display: table-row;
    background: #f5f5f5;
}

.woocommerce-shop ul.products.list-view:before > * {
    display: table-cell;
    padding: 12px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    font-size: 13px;
}

@media (max-width: 992px) {
    .woocommerce-shop ul.products.list-view li.product .streaming-links {
        display: none;
    }
    
    .woocommerce-shop ul.products.list-view li.product .product-title {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .woocommerce-shop ul.products.list-view li.product {
        display: grid;
        grid-template-columns: 60px 1fr auto;
        gap: 12px;
        padding: 8px;
    }
    
    .woocommerce-shop ul.products.list-view li.product > * {
        display: block;
        width: auto;
        border: none;
    }
    
    .woocommerce-shop ul.products.list-view li.product .artist {
        font-size: 13px;
    }
    
    .woocommerce-shop ul.products.list-view:before {
        display: none;
    }
}

/* Zaglavlje tablice */
.woocommerce-shop .products-header.list-view-header {
    display: none;
    width: 100%;
    background: #f5f5f5;
    margin-bottom: 1px;
}

.woocommerce-shop .products-header.list-view-header.active {
    display: table;
}

.woocommerce-shop .products-header .header-row {
    display: table-row;
}

.woocommerce-shop .products-header .header-cell {
    display: table-cell;
    padding: 12px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    font-size: 13px;
    vertical-align: middle;
}

.woocommerce-shop .products-header .header-cell:nth-child(1) { width: 60px; }
.woocommerce-shop .products-header .header-cell:nth-child(2) { width: 30%; }
.woocommerce-shop .products-header .header-cell:nth-child(3) { width: 20%; }
.woocommerce-shop .products-header .header-cell:nth-child(4) { width: 15%; }
.woocommerce-shop .products-header .header-cell:nth-child(5) { width: 20%; }
.woocommerce-shop .products-header .header-cell:nth-child(6) { width: 15%; text-align: right; }

@media (max-width: 992px) {
    .woocommerce-shop .products-header .header-cell:nth-child(5) { display: none; }
    .woocommerce-shop .products-header .header-cell:nth-child(2) { width: 40%; }
}

@media (max-width: 768px) {
    .woocommerce-shop .products-header.list-view-header {
        display: none !important;
    }
}

/* Početna stranica - grid prikaz */
.home ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Shop stranica - tablični prikaz */
.woocommerce-shop ul.products.list-view {
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.woocommerce-shop .products-header.list-view-header {
    display: none;
    background: #f8f9fa;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.woocommerce-shop .products-header.list-view-header.active {
    display: block;
}

.woocommerce-shop .products-header .header-row {
    display: grid;
    grid-template-columns: 80px 3fr 2fr 1fr 2fr 1fr;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    font-weight: 600;
}

.woocommerce-shop ul.products.list-view li.product {
    display: grid;
    grid-template-columns: 80px 3fr 2fr 1fr 2fr 1fr;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0.5rem;
    margin: 0;
    border-bottom: 1px solid #eee;
}

.woocommerce-shop ul.products.list-view li.product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .woocommerce-loop-product__title {
    font-size: 1rem;
    margin: 0;
    padding: 0;
}

.woocommerce-shop ul.products.list-view li.product .artist {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .price {
    font-size: 1rem;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .streaming-links {
    display: flex;
    gap: 0.5rem;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .streaming-link {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    color: #666;
    transition: all 0.2s;
}

.woocommerce-shop ul.products.list-view li.product .button {
    margin: 0;
    padding: 0.5rem 1rem;
    text-align: center;
    background: #f8f9fa;
    border: none;
    border-radius: 4px;
    color: #333;
    transition: all 0.2s;
}

@media (max-width: 992px) {
    .woocommerce-shop ul.products.list-view li.product {
        grid-template-columns: 80px 3fr 2fr 1fr 1fr;
    }
    
    .woocommerce-shop .products-header .header-row {
        grid-template-columns: 80px 3fr 2fr 1fr 1fr;
    }
    
    .woocommerce-shop ul.products.list-view li.product .streaming-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .woocommerce-shop ul.products.list-view li.product {
        grid-template-columns: 60px 2fr 1fr;
        gap: 0.5rem;
    }
    
    .woocommerce-shop .products-header .header-row {
        grid-template-columns: 60px 2fr 1fr;
    }
    
    .woocommerce-shop ul.products.list-view li.product .artist {
        display: block;
        grid-column: 2;
    }
    
    .woocommerce-shop ul.products.list-view li.product .button {
        display: none;
    }
}

/* Stilovi za live search rezultate */
.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 70vh;
    overflow-y: auto;
    display: none;
    margin-top: 5px;
    padding: 0;
    min-width: 300px;
}

.live-search-results.has-results {
    display: block;
}

.hero-section .live-search-results,
.shop-search-container .live-search-results {
    width: 100%;
    max-width: 600px;
    min-height: 200px;
    z-index: 1010;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    border-radius: 4px;
    border: 1px solid #e1e1e1;
}

.search-form {
    position: relative;
}

.search-form form {
    display: flex;
    width: 100%;
}

.search-form input[type="search"] {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.search-form button[type="submit"] {
    background: var(--main-color, #e83e8c);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-form button[type="submit"]:hover {
    background: var(--main-hover-color, #c82071);
}

.search-section {
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.search-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.search-section-title {
    font-size: 14px;
    margin: 0 0 10px 0;
    padding: 8px 10px;
    background: #f5f5f5;
    border-left: 3px solid var(--main-color, #e83e8c);
}

.search-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 10px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
    border-radius: 4px;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}

.search-result-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-content {
    flex-grow: 1;
    overflow: hidden;
}

.search-result-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-content .artist,
.search-result-content .genre,
.search-result-content .date {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.search-result-content .price {
    font-weight: bold;
    color: #222;
    font-size: 13px;
}

.view-all-results {
    padding: 12px;
    text-align: center;
    border-top: 1px solid #e1e1e1;
    background: #f9f9f9;
}

.view-all-results a {
    color: var(--main-color, #e83e8c);
    text-decoration: none;
    font-weight: 500;
    display: block;
    transition: color 0.2s;
}

.view-all-results a:hover {
    color: var(--main-hover-color, #c82071);
    text-decoration: underline;
}

.searching,
.no-results,
.error {
    padding: 20px 15px;
    text-align: center;
    color: #666;
}

.searching {
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzgiIGhlaWdodD0iMzgiIHZpZXdCb3g9IjAgMCAzOCAzOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiNlODNlOGMiPiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMSAxKSIgc3Ryb2tlLXdpZHRoPSIyIj4gICAgICAgICAgICA8Y2lyY2xlIHN0cm9rZS1vcGFjaXR5PSIuNSIgY3g9IjE4IiBjeT0iMTgiIHI9IjE4Ii8+ICAgICAgICAgICAgPHBhdGggZD0iTTM2IDE4YzAtOS45NC04LjA2LTE4LTE4LTE4Ij4gICAgICAgICAgICAgICAgPGFuaW1hdGVUcmFuc2Zvcm0gICAgICAgICAgICAgICAgICAgIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgICAgICAgICAgICAgICAgICAgIHR5cGU9InJvdGF0ZSIgICAgICAgICAgICAgICAgICAgIGZyb209IjAgMTggMTgiICAgICAgICAgICAgICAgICAgICB0bz0iMzYwIDE4IDE4IiAgICAgICAgICAgICAgICAgICAgZHVyPSIxcyIgICAgICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIi8+ICAgICAgICAgICAgPC9wYXRoPiAgICAgICAgPC9nPiAgICA8L2c+PC9zdmc+') center center no-repeat;
    background-size: 30px;
    height: 80px;
}

/* Dodatni stil za tražilicu na početnoj stranici */
.hero-section .search-form {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Dodatni stilovi za bolju vidljivost rezultata na početnoj stranici */
.hero-section .live-search-results {
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    border-radius: 4px;
    border: 1px solid #e1e1e1;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1010;
}

/* Stilovi za shop tražilicu */
.shop-search-container .live-search-results {
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1010;
}

/* Ispravak za mobilne uređaje */
@media (max-width: 768px) {
    .hero-section .live-search-results,
    .shop-search-container .live-search-results {
        position: absolute;
        width: 100%;
        max-height: 400px;
        max-width: 100%;
    }
    
    .search-result-image {
        width: 50px;
        height: 50px;
    }
    
    .search-result-content h4 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .search-result-image {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .search-result-content .artist,
    .search-result-content .genre,
    .search-result-content .date {
        font-size: 11px;
    }
}

/* Stilovi za stranicu rezultata pretraživanja */
.search-results-page {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.search-results-page .container {
    max-width: 1200px;
    margin: 0 auto;
}

.search-results-page .page-header {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.search-results-page .page-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.search-results-page .page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--main-color, #e83e8c);
}

.search-results-page .page-title span {
    color: var(--main-color, #e83e8c);
}

.search-results-page .search-form-container {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 0 15px;
}

.search-results-container {
    margin-top: 40px;
}

.search-section {
    margin-bottom: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-section:last-child {
    margin-bottom: 0;
}

.search-section-title {
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    color: #333;
    position: relative;
}

.search-section-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--main-color, #e83e8c);
}

/* Stilovi za sekciju proizvoda */
.search-results-page .products-section .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.search-results-page .products-section .product {
    margin-bottom: 0 !important;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.search-results-page .products-section .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Stilovi za sekciju izvođača */
.search-results-page .artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.search-results-page .artist-card {
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}

.search-results-page .artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.search-results-page .artist-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.search-results-page .artist-image {
    height: 220px;
    overflow: hidden;
}

.search-results-page .artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.search-results-page .artist-card:hover .artist-image img {
    transform: scale(1.05);
}

.search-results-page .artist-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #ccc;
    font-size: 4rem;
}

.search-results-page .artist-info {
    padding: 15px;
    text-align: center;
}

.search-results-page .artist-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.search-results-page .artist-genre {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 5px;
    font-style: italic;
}

.search-results-page .artist-count {
    font-size: 14px;
    color: #777;
    display: block;
}

/* Stilovi za sekciju članaka */
.search-results-page .posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.search-results-page .post-card {
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}

.search-results-page .post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.search-results-page .post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.search-results-page .post-thumbnail {
    height: 200px;
    overflow: hidden;
}

.search-results-page .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.search-results-page .post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.search-results-page .post-content {
    padding: 20px;
}

.search-results-page .post-title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.search-results-page .post-meta {
    margin-bottom: 10px;
    font-size: 14px;
    color: #888;
}

.search-results-page .post-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.search-results-page .post-excerpt p {
    margin: 0;
}

/* Stil za poruku kad nema rezultata */
.search-results-page .no-results {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-results-page .no-results p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Responzivni stilovi */
@media (max-width: 1200px) {
    .search-results-page .products-section .products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .search-results-page .products-section .products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .search-results-page .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .search-results-page {
        padding: 40px 0;
    }
    
    .search-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .search-results-page .page-title {
        font-size: 24px;
    }
    
    .search-results-page .products-section .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .search-results-page .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .search-results-page .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .search-results-page .artist-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .search-results-page .products-section .products {
        grid-template-columns: 1fr;
    }
    
    .search-results-page .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .search-results-page .page-title {
        font-size: 22px;
    }
    
    .search-section-title {
        font-size: 20px;
    }
}

/* Dodatni stilovi za stranicu rezultata pretraživanja */
.search-results-page .results-count {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
    font-style: italic;
}

.search-results-page .post-thumbnail.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #ccc;
    font-size: 3rem;
    height: 200px;
}

.search-results-page .no-results .btn-primary {
    display: inline-block;
    background-color: var(--main-color, #e83e8c);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.search-results-page .no-results .btn-primary:hover {
    background-color: var(--main-hover-color, #c82071);
}

.search-results-page .post-date i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .search-results-page .results-count {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .search-results-page .post-thumbnail.no-image {
        height: 160px;
        font-size: 2.5rem;
    }
}

/* Stilovi za izvođače u pretragama */
.search-result-item .artist {
    color: var(--main-color, #e83e8c);
    font-weight: 500;
}

.search-result-item:hover .artist {
    color: #c62b71;
}

/* Poboljšani stilovi za live search rezultate */
.live-search-results {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
}

.live-search-results.has-results {
    max-height: 500px;
    overflow-y: auto;
    opacity: 1;
    margin-top: 10px;
    padding: 10px;
    background: #fff;
    border: 1px solid #eee;
}

/* Treba biti ispred drugih elemenata */
.header-search .live-search-results.has-results {
    z-index: 9999;
}

/* Prikazivanje vrste rezultata za izvođače */
.search-result-item .count {
    display: inline-flex;
    align-items: center;
    color: #777;
    font-size: 12px;
}

.search-result-item .count::before {
    content: '\f001';
    font-family: 'Font Awesome 5 Free';
    margin-right: 5px;
    font-size: 10px;
    color: var(--main-color, #e83e8c);
}

/* Isticanje poklapanja u rezultatima */
.search-result-item .highlight {
    background-color: rgba(232, 62, 140, 0.1);
    color: var(--main-color, #e83e8c);
    font-weight: 500;
    padding: 0 2px;
    border-radius: 2px;
}

/* Stilovi za polje unosa u header search */
.header-search-form .search-field {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    padding: 8px 15px;
    font-size: 14px;
    outline: none;
}

.header-search-form .search-field:focus {
    border-color: var(--main-color, #e83e8c);
    box-shadow: 0 0 0 2px rgba(232, 62, 140, 0.1);
}

.header-search-form .search-submit {
    background: var(--main-color, #e83e8c);
    border: none;
    color: white;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    margin-left: -1px;
}

.search-input-wrapper {
    width: 100%;
    position: relative;
}

/* Live search rezultati - pozicioniranje iznad drugih elemenata */
.search-form,
.header-search-form {
    position: relative;
}

.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    max-height: 80vh;
    overflow-y: auto;
    margin-top: 5px;
    display: none;
}

.live-search-results.has-results {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
    border-bottom: 1px solid #eee;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}

.search-result-image {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-image i {
    font-size: 24px;
    color: #999;
}

.search-result-content {
    flex: 1;
}

.search-result-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
}

.search-result-content .artist {
    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
}

.search-result-content .price {
    font-weight: 600;
    color: #e83e8c;
}

.search-result-content .date {
    font-size: 12px;
    color: #666;
}

.search-section {
    margin-bottom: 20px;
}

.search-section-title {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.search-results-grid {
    display: flex;
    flex-direction: column;
}

.view-all-results {
    padding: 10px;
    text-align: center;
    border-top: 1px solid #eee;
}

.view-all-results a {
    color: #e83e8c;
    text-decoration: none;
    font-weight: 600;
}

.view-all-results a:hover {
    text-decoration: underline;
}

.searching {
    padding: 15px;
    text-align: center;
    color: #666;
}

.no-results, .error {
    padding: 15px;
    text-align: center;
    color: #666;
}

.highlight {
    background-color: #ffe0f0;
    font-weight: bold;
    color: #e83e8c;
    padding: 0 2px;
}

/* Poboljšano pozicioniranje rezultata pretrage - iznad svih elemenata */
.search-form,
.header-search-form {
    position: relative;
}

/* Izrazito povećan z-index i poboljšano pozicioniranje */
.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 9999; /* Mnogo veći z-index od ostalih elemenata */
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    max-height: 80vh;
    overflow-y: auto;
    margin-top: 5px;
    display: none;
}

.live-search-results.has-results {
    display: block;
}

/* Specifično ciljamo hero sekciju da bi nadjačali njena pravila */
.hero-section .live-search-results,
.artist-hero-section .live-search-results,
.shop-hero-section .live-search-results {
    position: absolute;
    top: 100%;
    z-index: 9999;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

/* Standardizirane boje teksta za sve rezultate pretrage */
.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333 !important; /* Forsiraj boju teksta */
    transition: background-color 0.2s;
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}

.search-result-image {
    width: 50px;
    height: 50px;
    min-width: 50px; /* Osiguraj minimalnu širinu */
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

.search-result-content {
    flex: 1;
}

.search-result-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
    color: #333 !important; /* Forsiraj boju teksta */
}

.search-result-content .artist {
    color: #666 !important; /* Forsiraj boju teksta */
    font-size: 12px;
    margin-bottom: 5px;
}

.search-result-content .price {
    font-weight: 600;
    color: #e83e8c !important; /* Forsiraj boju teksta */
}

.search-result-content .date {
    font-size: 12px;
    color: #666 !important; /* Forsiraj boju teksta */
}

.search-section-title {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
    color: #333 !important; /* Forsiraj boju teksta */
}

.searching {
    padding: 15px;
    text-align: center;
    color: #666 !important; /* Forsiraj boju teksta */
    background-color: #fff;
}

.no-results, .error {
    padding: 15px;
    text-align: center;
    color: #666 !important; /* Forsiraj boju teksta */
    background-color: #fff;
}

.highlight {
    background-color: #ffe0f0;
    font-weight: bold;
    color: #e83e8c !important; /* Forsiraj boju teksta */
    padding: 0 2px;
}

/* Dodatno poboljšanje za rezultate pretrage - iznad svih elemenata */
.search-form,
.header-search-form {
    position: relative;
    z-index: 99999; /* Ekstremno visok z-index za kontejner */
}

/* Izrazito povećan z-index i potpuno apsolutno pozicioniranje */
.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 99999; /* Ekstremno visok z-index */
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); /* Jača sjenka za bolju vidljivost */
    max-height: 80vh;
    overflow-y: auto;
    margin-top: 5px;
    display: none;
}

.live-search-results.has-results {
    display: block;
}

/* Specifično ciljanje rezultata pretrage na početnoj stranici */
.hero-section .search-form {
    position: relative;
    z-index: 99999; /* Ekstremno visok z-index */
}

.hero-section .live-search-results,
.artist-hero-section .live-search-results,
.shop-hero-section .live-search-results {
    position: absolute !important; /* Forsiraj apsolutno pozicioniranje */
    top: 100% !important;
    z-index: 99999 !important; /* Forsiraj visok z-index */
    width: 100% !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
}

/* Osigurajmo da su rezultati pretrage iznad sekcije new-arrivals i drugih elemenata */
.hero-section .container {
    position: relative;
    z-index: auto; /* Smanjimo z-index kako bi rezultati pretrage mogli biti iznad */
}

/* Standardizirane boje teksta za sve rezultate pretrage */
.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333 !important; /* Forsiraj boju teksta */
    transition: background-color 0.2s;
    border-bottom: 1px solid #eee;
    background-color: #fff !important; /* Forsiraj bijelu pozadinu */
}

.search-result-item:hover {
    background-color: #f9f9f9 !important;
}

.search-result-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
    color: #333 !important; /* Forsiraj boju teksta */
}

.search-result-content .artist {
    color: #666 !important; /* Forsiraj boju teksta */
    font-size: 12px;
    margin-bottom: 5px;
}

.search-result-content .price {
    font-weight: 600;
    color: #e83e8c !important; /* Forsiraj boju teksta */
}

.search-section-title {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f5f5f5 !important;
    border-radius: 4px;
    color: #333 !important; /* Forsiraj boju teksta */
}

.searching,
.no-results,
.error {
    padding: 15px;
    text-align: center;
    color: #666 !important; /* Forsiraj boju teksta */
    background-color: #fff !important;
}

/* Osigurajmo da elementi pretrage nemaju overflow hidden koji bi mogao sakriti rezultate */
.hero-section,
.artist-hero-section,
.shop-hero-section,
.search-form-container,
.search-form {
    overflow: visible !important;
}

/* Search bar stilovi na shop stranici */
.shop-hero-section .shop-search-container {
    margin-top: 30px;
    width: 100%;
    max-width: 600px;
    position: relative;
}

.shop-search {
    display: flex;
    position: relative;
}

.shop-search input[type="search"] {
    flex: 1;
    border: none;
    border-radius: 30px;
    padding: 15px 25px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.shop-search input[type="search"]:focus {
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    outline: none;
}

.shop-search input[type="search"]::placeholder {
    color: #888;
}

.shop-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--main-color, #e83e8c);
    border: none;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 16px;
}

.shop-search button:hover {
    background-color: var(--main-hover-color, #c82071);
    transform: translateY(-50%) scale(1.05);
}

/* Novi stil za shop search - kopiran iz style.css za search formu s početne */
.shop-hero-section .search-form {
    position: relative;
    z-index: 99999; /* Ekstremno visok z-index za kontejner */
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
}

.shop-hero-section .search-form form {
    display: flex;
    position: relative;
}

.shop-hero-section .search-form input[type="search"] {
    flex: 1;
    border: none;
    border-radius: 30px;
    padding: 15px 25px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.shop-hero-section .search-form button[type="submit"] {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--main-color, #e83e8c);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.shop-hero-section .search-form button[type="submit"]:hover {
    background-color: var(--main-hover-color, #d72d7b);
}

/* Ujednačavanje live search rezultata */
.shop-hero-section .live-search-results {
    position: absolute !important;
    top: 100% !important;
    z-index: 99999 !important;
    width: 100% !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
}

/* Poboljšani stilovi za search form na stranici trgovine (shop page) */
.shop-hero-section .search-form {
    width: 100%;
    max-width: 600px;
    position: relative;
    margin: 25px auto 0;
}

.shop-hero-section .search-form form {
    display: flex;
    width: 100%;
}

.shop-hero-section .search-form input[type="search"] {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: #fff;
    outline: none;
}

.shop-hero-section .search-form input[type="search"]:focus {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--main-color, #e83e8c);
}

.shop-hero-section .search-form button[type="submit"] {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--main-color, #e83e8c);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.shop-hero-section .search-form button[type="submit"]:hover {
    background-color: var(--main-hover-color, #c82071);
    transform: scale(1.05);
}

.shop-hero-section .live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.shop-hero-section .live-search-results.has-results {
    padding: 15px;
    display: block;
}

/* Osigurajmo da se rezultati pretrage prikazuju iznad svih drugih elemenata */
.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.live-search-results.has-results {
    display: block;
    padding: 15px;
}

/* Poboljšanje za mobile verziju */
@media (max-width: 768px) {
    .shop-hero-section .search-form {
        max-width: 100%;
    }
    
    .shop-hero-section .search-form input[type="search"] {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .shop-hero-section .search-form button[type="submit"] {
        padding: 8px 12px;
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* Poboljšanje izgleda tražilice na stranici trgovine da izgleda kao na početnoj stranici */
.shop-search-container .search-form input[type="search"] {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 30px;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    outline: none;
}

.shop-search-container .search-form input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.shop-search-container .search-form input[type="search"]:focus {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-color: #ffffff;
}

.shop-search-container .search-form button[type="submit"] {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--main-color, #e83e8c);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.shop-search-container .search-form button[type="submit"]:hover {
    background-color: var(--main-hover-color, #c82071);
    transform: scale(1.05);
}

.shop-search-container .search-form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

/* Stilovi za tražilicu na stranici trgovine - usklađeni s početnom stranicom */
.shop-search-container .search-form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.shop-search-container .search-form input[type="search"] {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    border-radius: 30px;
    font-size: 16px;
    background-color: transparent !important;
    color: #ffffff !important;
    outline: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.shop-search-container .search-form input[type="search"]:focus {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-color: #ffffff !important;
}

.shop-search-container .search-form input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Usklađivanje tražilice na stranici trgovine s početnom stranicom */
.shop-search-container .search-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.shop-search-container .search-form form {
    display: flex;
    width: 100%;
}

.shop-search-container .search-form input[type="search"] {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid #e1e1e1;
    border-right: none;
    background: #fff;
    color: #333;
}

.shop-search-container .search-form input[type="search"]::placeholder {
    color: #999;
}

.shop-search-container .search-form input[type="search"]:focus {
    outline: none;
    border-color: var(--main-color, #e83e8c);
}

.shop-search-container .search-form button {
    background: var(--main-color, #e83e8c);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-search-container .search-form button:hover {
    background: var(--main-hover-color, #c82071);
}

.shop-search-container .live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-radius: 4px;
    margin-top: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.shop-search-container .live-search-results.has-results {
    display: block;
    padding: 15px;
}

.shop-search-container .search-form button {
    background-color: var(--main-color, #e83e8c);
    color: #fff;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    border-radius: 0 4px 4px 0;
}

.shop-search-container .search-form button i {
    font-size: 16px;
}

.shop-search-container .search-form button:hover {
    background-color: var(--main-hover-color, #c82071);
}

.shop-search-container .search-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.shop-search-container .search-form form {
    display: flex;
    width: 100%;
}

.shop-search-container .search-form input[type="search"] {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-right: none;
    background: #fff;
    color: #333;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
}

/* Category Hero Section */
.category-hero {
    background: var(--gradient-primary);
    padding: 4rem 0;
    position: relative;
    margin-bottom: 3rem;
}

.category-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.category-hero .hero-text {
    text-align: center;
    color: var(--color-white);
}

.category-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.search-filters-container {
    max-width: 900px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

.category-hero .filter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.category-hero .search-group {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.category-hero .search-group input[type="search"] {
    width: 100%;
    padding: 0.8rem 1rem;
    padding-right: 3rem;
    border: none;
    border-radius: 4px;
    background: var(--color-white);
    font-size: 1rem;
}

.category-hero .search-submit {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 3rem;
    border: none;
    background: transparent;
    color: var(--color-primary);
    cursor: pointer;
}

.category-hero .filter-group select {
    padding: 0.8rem 2rem 0.8rem 1rem;
    border: none;
    border-radius: 4px;
    background: var(--color-white);
    font-size: 1rem;
    min-width: 180px;
}

.category-hero .view-switcher {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
    align-self: center;
}

.category-hero .view-switcher button {
    background: var(--color-white);
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 4px;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-hero .view-switcher button.active {
    background: var(--color-primary);
    color: var(--color-white);
}

@media (max-width: 768px) {
    .category-hero {
        padding: 3rem 0;
    }
    
    .category-hero .filter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .category-hero .search-group,
    .category-hero .filter-group {
        width: 100%;
    }
    
    .search-filters-container {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Specifični stilovi za poravnanje view-switchera */
.category-hero .view-switcher {
    display: flex;
    gap: 0.5rem;
    height: 42px;
    align-self: center;
    margin: 1rem auto 0;
}

/* Poboljšanje vidljivosti teksta u select elementu */
.category-hero .filter-group select {
    color: var(--text-color);
    background-color: var(--color-white);
    font-weight: 500;
}

.woocommerce-shop ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0;
    padding: 2rem 0;
}

.woocommerce-shop ul.products li.product {
    width: 100%;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce-shop ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.woocommerce-shop ul.products li.product img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin: 0;
    transition: transform 0.3s ease;
}

.woocommerce-shop ul.products li.product:hover img {
    transform: scale(1.05);
}

.woocommerce-shop ul.products li.product .woocommerce-loop-product__title {
    padding: 1rem;
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
    text-align: center;
}

.woocommerce-shop ul.products li.product .price {
    padding: 0 1rem;
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    text-align: center;
}

.woocommerce-shop ul.products li.product .button {
    display: block;
    width: calc(100% - 2rem);
    margin: 1rem;
    padding: 0.8rem;
    text-align: center;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.woocommerce-shop ul.products li.product .button:hover {
    background: var(--primary-color-dark);
}

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

@media (max-width: 768px) {
    .woocommerce-shop ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .woocommerce-shop ul.products li.product img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .woocommerce-shop ul.products {
        grid-template-columns: 1fr;
    }
    
    .woocommerce-shop ul.products li.product img {
        height: 250px;
    }
}

.artist-products .products li.product h2.woocommerce-loop-product__title {
    padding: 1rem;
    margin: 0;
    font-size: 1rem;
    color: #fff;
    text-align: center;
}

.artist-products .products li.product .price {
    padding: 0 1rem;
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    text-align: center;
}

.artist-products .products li.product .button {
    display: block;
    width: 100%;
    margin: 1rem 0 0 0;
    padding: 0.8rem;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.artist-products .products li.product .button:hover {
    background: var(--primary-color-hover);
}

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

@media (max-width: 768px) {
    .artist-products .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .artist-products .products li.product img {
        height: 200px;
    }
}

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

.artist-products {
    margin: 3rem 0;
}

.artist-products h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #fff;
    text-align: left;
}

.artist-products .woocommerce {
    margin: 0;
    padding: 0;
}

.artist-products .woocommerce ul.products {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.artist-products .woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    transition: all 0.3s ease;
}

.artist-products .woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.artist-products .woocommerce ul.products li.product img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin: 0;
    transition: transform 0.3s ease;
}

.artist-products .woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}

.artist-products .woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 1rem;
    margin: 0;
    font-size: 1rem;
    color: #fff;
    text-align: center;
}

.artist-products .woocommerce ul.products li.product .price {
    padding: 0 1rem;
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    text-align: center;
}

.artist-products .woocommerce ul.products li.product .price del {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.artist-products .woocommerce ul.products li.product .price ins {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

.artist-products .woocommerce ul.products li.product .button {
    display: block;
    width: 100%;
    margin: 1rem 0 0 0;
    padding: 0.8rem;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.artist-products .woocommerce ul.products li.product .button:hover {
    background: var(--primary-color-hover);
}

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

@media (max-width: 768px) {
    .artist-products .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .artist-products .woocommerce ul.products li.product img {
        height: 200px;
    }

    .artist-products h3 {
        font-size: 1.5rem;
    }
}

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

    .artist-products .woocommerce ul.products li.product a img {
        height: 180px;
    }
}

.artist-gallery {
    margin: 3rem 0;
}

.artist-gallery h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: transform 0.3s ease;
}

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

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

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

.artist-spotify-player {
    margin: 3rem 0;
}

.artist-spotify-player h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.artist-spotify-player .spotify-embed {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #282828;
}

.artist-spotify-player .spotify-embed iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: none;
}

@media (max-width: 768px) {
    .artist-spotify-player .spotify-embed iframe {
        height: 300px;
    }
}

/* Archive Artists Page */
.archive-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.archive-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-1.343 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
    animation: heroPattern 60s linear infinite;
    z-index: 1;
}

.archive-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.archive-filters {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.genre-filter select {
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.genre-filter select:hover,
.genre-filter select:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    outline: none;
}

.artist-search input[type="search"] {
    width: 100%;
    padding: 1rem 3rem 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.artist-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.artist-search input[type="search"]:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    outline: none;
}

.artist-search button {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.artist-search button:hover {
    transform: translateY(-50%) scale(1.1);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.artist-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 350px;
}

.artist-card:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.artist-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.artist-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        transparent 100%
    );
    color: #fff;
}

.artist-card-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.artist-card-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.artist-card-info {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.artist-card-genre {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.875rem;
    backdrop-filter: blur(5px);
}

.artist-card-releases {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Uklanjamo stare stilove za linkove */
.artist-card-links,
.artist-card-social,
.artist-card-streaming {
    display: none;
}

/* Responzivni dizajn */
@media (max-width: 1200px) {
    .artists-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .artist-card {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .artist-card {
        height: 350px;
    }
}

/* Novosti sekcija */
.news-section {
    padding: 4rem 0;
    background: #fff;
}

.news-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--text-color);
}

.news-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-color);
}

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

.news-card-image {
    position: relative;
    width: 100%;
    padding-top: 66%;
    overflow: hidden;
    display: block;
}

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

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

.news-card .no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #999;
}

.news-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.news-meta {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-date i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.news-title {
    font-size: 1.2rem;
    margin: 0 0 1rem;
    line-height: 1.4;
}

.news-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.news-title a:hover {
    color: var(--primary-color);
}

.news-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    margin-top: auto;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more:hover i {
    transform: translateX(3px);
}

.no-news {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    color: #666;
}

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

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-section h2 {
        font-size: 1.8rem;
    }
    
    .news-card {
        margin-bottom: 0;
    }
}

/* Single Post */
.single-post {
    margin: 4rem 0;
}

.post-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.post-header {
    margin-bottom: 2rem;
}

.post-thumbnail {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--light-gray);
    font-size: 0.95rem;
    color: #666;
}

.post-date,
.post-categories {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-date i,
.post-categories i {
    color: var(--primary-color);
}

.post-categories a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-categories a:hover {
    color: var(--primary-color);
}

.post-title {
    font-size: 2.5rem;
    margin: 0;
    padding: 2rem 2rem 0;
    color: var(--text-color);
    line-height: 1.3;
}

.post-body {
    padding: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.post-body h2,
.post-body h3,
.post-body h4 {
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.post-body ul,
.post-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.post-body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-color);
    background: var(--light-gray);
    font-style: italic;
    color: #666;
}

/* Responzivnost za stranice */
@media (max-width: 992px) {
    .page-title {
        font-size: 2rem;
        padding: 1.5rem 1.5rem 0;
    }

    .page-body {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .single-page {
        margin: 2rem 0;
    }

    .page-thumbnail {
        height: 300px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-body {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-thumbnail {
        height: 200px;
    }

    .page-title {
        font-size: 1.5rem;
    }
}

/* WooCommerce stranice padding */
.woocommerce-cart .page-content,
.woocommerce-checkout .page-content,
.woocommerce-account .page-content {
    padding-top: 4rem;
}

/* Responzivnost za WooCommerce stranice */
@media (max-width: 768px) {
    .woocommerce-cart .page-content,
    .woocommerce-checkout .page-content,
    .woocommerce-account .page-content {
        padding-top: 2rem;
    }
}

/* Sakrij poruku o uštedi u košarici */
.woocommerce-cart .woocommerce-cart-form .product-price .savings,
.woocommerce-cart .woocommerce-cart-form .product-subtotal .savings {
    display: none !important;
}

/* Sakrij sve poruke o uštedi */
.wc-block-components-product-badge.wc-block-components-sale-badge,
.wc-block-components-sale-badge,
.woocommerce-cart .woocommerce-cart-form .product-price .savings,
.woocommerce-cart .woocommerce-cart-form .product-subtotal .savings {
    display: none !important;
}

/* Progress bar za besplatnu dostavu */
.free-shipping-progress {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.progress-message {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Artist Archive Hero Section */
.artist-hero-section {
    background: linear-gradient(135deg, #ff69b4 0%, #FF69B4 50%, #b4ff69 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.artist-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
    pointer-events: none;
}

.artist-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.artist-hero-text {
    margin-bottom: 40px;
}

.artist-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.artist-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.artist-search-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.artist-search-container .genre-filter {
    flex: 1;
    min-width: 200px;
}

.artist-search-container .genre-filter select {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.artist-search-container .genre-filter select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.artist-search-container .genre-filter select option {
    background: #fff;
    color: #333;
}

.artist-search-container .artist-search {
    flex: 2;
    min-width: 300px;
    position: relative;
}

.artist-search-container .artist-search input[type="search"] {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.artist-search-container .artist-search input[type="search"]:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.artist-search-container .artist-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.artist-search-container .artist-search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.artist-search-container .artist-search button:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .artist-hero-section {
        padding: 60px 0;
        margin-bottom: 40px;
    }
    
    .artist-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .artist-hero-text p {
        font-size: 1rem;
    }

    .artist-search-container {
        flex-direction: column;
    }

    .artist-search-container .genre-filter,
    .artist-search-container .artist-search {
        width: 100%;
    }
}

/* Shop Hero Section */
.shop-hero-section {
    background: linear-gradient(135deg, #ff69b4 0%, #FF69B4 50%, #b4ff69 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.shop-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
    pointer-events: none;
}

.shop-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.shop-hero-text {
    margin-bottom: 40px;
}

.shop-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.shop-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.shop-search-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.shop-search {
    flex: 2;
    min-width: 300px;
    position: relative;
}

.shop-search input[type="search"] {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.shop-search input[type="search"]:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.shop-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.shop-search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.shop-search button:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .shop-hero-section {
        padding: 60px 0;
        margin-bottom: 40px;
    }
    
    .shop-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .shop-hero-text p {
        font-size: 1rem;
    }

    .shop-search-container {
        flex-direction: column;
    }

    .shop-search {
        width: 100%;
    }
}

/* Shop Header Styles */
.shop-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

.shop-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.shop-header .site-branding {
    flex: 0 0 auto;
}

.shop-header .main-navigation {
    flex: 1;
    margin: 0 2rem;
}

.shop-header .nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-header .nav-menu li {
    margin: 0 1rem;
}

.shop-header .nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.shop-header .nav-menu a:hover {
    color: #e91e63;
}

.shop-header .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shop-header .search-toggle button,
.shop-header .cart-toggle a {
    background: none;
    border: none;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.shop-header .search-toggle button:hover,
.shop-header .cart-toggle a:hover {
    color: #e91e63;
}

.shop-header .cart-count {
    background: #e91e63;
    color: #fff;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.search-overlay .search-form {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.search-overlay .search-field {
    width: 100%;
    padding: 1rem;
    font-size: 1.5rem;
    border: none;
    border-bottom: 2px solid #e91e63;
    background: none;
    outline: none;
}

.search-overlay .search-form button {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #e91e63;
    font-size: 1.2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .shop-header .main-navigation {
        display: none;
    }
    
    .shop-header .header-content {
        padding: 0.5rem 0;
    }
}

/* WooCommerce List View */
ul.products.list-view {
    display: block !important;
    margin: 0 !important;
}

ul.products.list-view li.product {
    width: 100% !important;
    float: none !important;
    display: grid !important;
    grid-template-columns: 120px 2fr 1fr auto !important;
    gap: 20px;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px !important;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

ul.products.list-view li.product:hover {
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* Slika proizvoda */
ul.products.list-view li.product img {
    width: 120px !important;
    height: 120px !important;
    object-fit: cover;
    margin: 0 !important;
    border-radius: 4px;
}

/* Glavni sadržaj (naslov i izvođač) */
ul.products.list-view li.product .product-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

ul.products.list-view li.product .woocommerce-loop-product__title {
    font-size: 1.2em !important;
    margin: 0 !important;
    color: #2c2c2c;
}

ul.products.list-view li.product .artist {
    font-size: 0.95em;
    color: #666;
    margin: 0;
}

/* Cijena */
ul.products.list-view li.product .price {
    font-size: 1.1em !important;
    margin: 0 !important;
    color: #2c2c2c;
    font-weight: 600;
}

ul.products.list-view li.product .price del {
    font-size: 0.85em;
    color: #999;
    margin-right: 5px;
}

ul.products.list-view li.product .price ins {
    text-decoration: none;
    color: #e53935;
}

/* Streaming servisi i gumb */
ul.products.list-view li.product .product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

ul.products.list-view li.product .streaming-links {
    display: flex;
    gap: 8px;
}

ul.products.list-view li.product .streaming-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 4px;
    color: #666;
    transition: all 0.3s ease;
}

ul.products.list-view li.product .streaming-link:hover {
    color: #fff;
}

ul.products.list-view li.product .button {
    margin: 0 !important;
    padding: 8px 16px !important;
}

/* Responzivni dizajn */
@media (max-width: 992px) {
    ul.products.list-view li.product {
        grid-template-columns: 100px 2fr 1fr !important;
    }
    
    ul.products.list-view li.product img {
        width: 100px !important;
        height: 100px !important;
    }
    
    ul.products.list-view li.product .product-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    ul.products.list-view li.product {
        grid-template-columns: 80px 1fr !important;
        gap: 15px;
    }
    
    ul.products.list-view li.product img {
        width: 80px !important;
        height: 80px !important;
    }
    
    ul.products.list-view li.product .price {
        grid-column: 2;
        text-align: left;
    }
    
    ul.products.list-view li.product .product-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    ul.products.list-view li.product .streaming-links {
        order: 2;
    }
    
    ul.products.list-view li.product .button {
        order: 1;
        width: 100%;
    }
}

/* Početna stranica - card view */
.home ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Trgovina - tablični prikaz */
.woocommerce-shop ul.products.list-view {
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product {
    display: table-row;
    width: 100%;
    background: #fff;
}

.woocommerce-shop ul.products.list-view li.product > * {
    display: table-cell;
    vertical-align: middle;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.woocommerce-shop ul.products.list-view li.product .product-image {
    width: 60px;
    padding: 8px;
}

.woocommerce-shop ul.products.list-view li.product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .product-title {
    width: 30%;
}

.woocommerce-shop ul.products.list-view li.product .woocommerce-loop-product__title {
    font-size: 15px;
    margin: 0;
    padding: 0;
    color: #333;
}

.woocommerce-shop ul.products.list-view li.product .artist {
    width: 20%;
    font-size: 14px;
    color: #666;
}

.woocommerce-shop ul.products.list-view li.product .price {
    width: 15%;
    font-size: 15px;
    font-weight: bold;
    white-space: nowrap;
    color: #333;
}

.woocommerce-shop ul.products.list-view li.product .streaming-links {
    width: 20%;
    display: flex;
    gap: 8px;
    justify-content: flex-start;
}

.woocommerce-shop ul.products.list-view li.product .streaming-link {
    width: 24px;
    height: 24px;
    font-size: 14px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.2s;
}

.woocommerce-shop ul.products.list-view li.product .button {
    width: 15%;
    text-align: right;
    padding: 8px 16px;
    font-size: 14px;
    background: #333;
    color: #fff;
    border-radius: 4px;
}

/* Zaglavlje tablice */
.woocommerce-shop ul.products.list-view:before {
    content: "";
    display: table-row;
    background: #f5f5f5;
}

.woocommerce-shop ul.products.list-view:before > * {
    display: table-cell;
    padding: 12px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    font-size: 13px;
}

@media (max-width: 992px) {
    .woocommerce-shop ul.products.list-view li.product .streaming-links {
        display: none;
    }
    
    .woocommerce-shop ul.products.list-view li.product .product-title {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .woocommerce-shop ul.products.list-view li.product {
        display: grid;
        grid-template-columns: 60px 1fr auto;
        gap: 12px;
        padding: 8px;
    }
    
    .woocommerce-shop ul.products.list-view li.product > * {
        display: block;
        width: auto;
        border: none;
    }
    
    .woocommerce-shop ul.products.list-view li.product .artist {
        font-size: 13px;
    }
    
    .woocommerce-shop ul.products.list-view:before {
        display: none;
    }
}

/* Zaglavlje tablice */
/*
Theme Name: Hit Records
Theme URI: https://hitrecords.hr
Author: Hit Records
Author URI: https://hitrecords.hr
Description: Moderna tema za Hit Records glazbeni dućan
Version: 1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hit-records
*/

:root {
    --primary-color: #FF69B4;
    --secondary-color: #FF1493;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --accent-color: #FF69B4;
    --hover-color: #FF1493;
    --gradient-primary: linear-gradient(135deg, #ff69b4 0%, #FF69B4 50%, #b4ff69 100%);
    --color-white: #ffffff;
    --color-primary: #FF69B4;
    --color-primary-dark: #cc548e;
    --color-text: #333333;
    --color-gray-light: #f0f0f0;
}

/* Osnovna struktura stranice */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#page {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.site-content {
    padding-top: 0;
    flex: 1 0 auto;
    padding-bottom: 4rem;
}

.site-footer {
    flex-shrink: 0;
    margin-top: 0;
    width: 100%;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #ffffff;
    padding-top: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: var(--topbar-height);
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.site-branding {
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.site-branding img {
    height: 90px;
    width: auto;
    position: relative;
    display: block;
    padding: 5px 0;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

/* Glavni meni */
.main-navigation {
    display: flex;
    align-items: center;
    margin-left: auto;
    position: relative;
    z-index: 5;
}

#primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

#primary-menu > li {
    position: relative;
    display: inline-flex;
    align-items: center;
}

#primary-menu > li > a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

#primary-menu > li > a:hover {
    color: var(--primary-color);
    background: var(--light-gray);
}

#primary-menu > li.current-menu-item > a {
    color: white;
    background: var(--primary-color);
}

/* Košarica */
.header-cart {
    margin-left: 1rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--light-gray);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-color);
}

.cart-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.cart-count {
    background: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    min-width: 1.5rem;
    text-align: center;
}

.cart-total {
    font-weight: 600;
    color: var(--primary-color);
}

.cart-link:hover .cart-count {
    background: white;
    color: var(--primary-color);
}

.cart-link:hover .cart-total {
    color: white;
}

/* Mobilna navigacija */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }

    #primary-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        display: none;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    #primary-menu.active {
        display: flex;
    }

    #primary-menu > li {
        width: 100%;
    }

    #primary-menu > li > a {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 8px;
    }

    #primary-menu > li > a:hover {
        background: var(--light-gray);
        transform: translateX(5px);
    }

    .header-cart {
        margin-left: 0;
        margin-right: 1rem;
    }

    .site-header .container {
        flex-wrap: wrap;
        padding: 1rem;
    }

    .site-title {
        font-size: 1.2rem;
    }

    .site-content {
        padding-top: 80px;
    }
}

@media (max-width: 768px) {
    .site-header .container {
        padding: 0 1rem;
    }

    .site-title {
        font-size: 1.2rem;
    }
}

/* Animacije */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.site-header.scrolled-up {
    animation: slideDown 0.3s ease forwards;
}

.site-header.scrolled-down {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

/* Scroll efekti */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .primary-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .primary-menu.active {
        display: flex;
    }
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem 0 1rem;
    margin-top: 4rem;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-widget h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
}

.footer-menu a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-contact li i {
    width: 16px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 0 1rem;
    }

    .footer-widgets {
        gap: 1.5rem;
    }

    .footer-widget {
        text-align: center;
    }

    .footer-widget h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
    }
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    color: white;
}

.footer-social-link.facebook:hover { background: #1877f2; }
.footer-social-link.instagram:hover { background: #e4405f; }
.footer-social-link.youtube:hover { background: #ff0000; }
.footer-social-link.twitter:hover { background: #000000; }

/* Newsletter sekcija */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-1.343 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
    animation: heroPattern 60s linear infinite;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.newsletter-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    padding: 0 2rem;
    background: white;
    border: none;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--light-gray);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
    }
    
    .newsletter-form button {
        position: static;
        width: 100%;
        margin-top: 1rem;
        padding: 1rem;
    }
}

/* Glavni sadržaj */
.site-content {
    min-height: calc(100vh - 80px - 400px);
}

/* Hero Section - zajednički stilovi */
.hero-section,
.shop-hero-section,
.artist-hero-section,
.category-hero {
    background: var(--gradient-primary);
    padding: 4rem 0;
    position: relative;
    margin-bottom: 3rem;
}

.hero-section::before,
.shop-hero-section::before,
.artist-hero-section::before,
.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/pattern.png');
    opacity: 0.1;
    pointer-events: none;
}

.hero-content,
.shop-hero-content,
.artist-hero-content,
.category-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.hero-text,
.shop-hero-text,
.artist-hero-text,
.category-hero .hero-text {
    text-align: center;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.hero-text h1,
.shop-hero-text h1,
.artist-hero-text h1,
.category-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-text p,
.shop-hero-text p,
.artist-hero-text p,
.category-hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Category Hero specifični stilovi */
.category-hero {
    background: var(--gradient-primary);
    padding: 4rem 0;
    position: relative;
    margin-bottom: 3rem;
}

.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/pattern.png');
    opacity: 0.1;
    pointer-events: none;
}

.category-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.category-hero .hero-text {
    text-align: center;
    color: var(--color-white);
}

.category-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Zajednički stilovi za pretraživanje */
.search-filters-container {
    max-width: 800px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

/* Zajednički stilovi za pretraživanje */
.search-filters-container2 {
    max-width: 740px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}


.filter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.search-group {
    flex: 1;
    min-width: 670px;
    position: relative;
}

.search-group input[type="search"] {
    width: 100%;
    padding: 0.8rem 1rem;
    padding-right: 3rem;
    border: none;
    border-radius: 4px;
    background: var(--color-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-group input[type="search"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-primary);
}

.search-submit {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 3rem;
    border: none;
    background: transparent;
    color: var(--color-primary);
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    color: var(--color-primary-dark);
}

.filter-group {
    flex: 0 0 auto;
    min-width: 180px;
}

.filter-group select {
    width: 100%;
    padding: 0.8rem 2rem 0.8rem 1rem;
    border: none;
    border-radius: 4px;
    background: var(--color-white);
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-6-6h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
}

/* Responzivni dizajn */
@media (max-width: 768px) {
    .hero-text h1,
    .shop-hero-text h1,
    .artist-hero-text h1,
    .category-hero h1 {
        font-size: 2rem;
    }
    
    .hero-text p,
    .shop-hero-text p,
    .artist-hero-text p,
    .category-hero .hero-description {
        font-size: 1rem;
    }
    
    .search-filters-container {
        padding: 1rem;
    }
    
    .filter-form {
        flex-direction: column;
    }
    
    .search-group,
    .filter-group {
        min-width: 100%;
    }
    
    .search-group input[type="search"],
    .filter-group select {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form button {
        width: 100%;
    }

    .products {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
}

/* Uklanjamo stare stilove za products-grid */
.products-grid {
    display: none;
}

/* Dodajemo margine za sekcije proizvoda */
.featured-products,
.new-arrivals {
    margin: 4rem 0;
}

.featured-products h2,
.new-arrivals h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.featured-products h2::after,
.new-arrivals h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Osiguravamo da WooCommerce proizvodi koriste grid prikaz */
.featured-products .products,
.new-arrivals .products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

.products::before,
.products::after {
    display: none !important;
}

@media (max-width: 1200px) {
    .featured-products .products,
    .new-arrivals .products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 992px) {
    .featured-products .products,
    .new-arrivals .products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .featured-products .products,
    .new-arrivals .products {
        grid-template-columns: 1fr !important;
    }
    
    .featured-products h2,
    .new-arrivals h2 {
        font-size: 1.8rem;
    }
}

/* Streaming linkovi */
.streaming-links {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
    padding: 0 1rem 1rem;
}

.streaming-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    color: #666;
    transition: all 0.3s ease;
}

.streaming-link:hover {
    transform: translateY(-2px);
}

.streaming-link.spotify:hover { background: #1DB954; color: #fff; }
.streaming-link.youtube:hover { background: #FF0000; color: #fff; }
.streaming-link.deezer:hover { background: #00C7F2; color: #fff; }
.streaming-link.apple-music:hover { background: #FA243C; color: #fff; }
.streaming-link.tidal:hover { background: #000000; color: #fff; }

/* Proizvodi na naslovnici */
.featured-products,
.new-arrivals {
    padding: 4rem 0;
}

.featured-products h2,
.new-arrivals h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.featured-products h2::after,
.new-arrivals h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e74c3c;
    border-radius: 3px;
}

.hero-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 1rem;
    height: 100%;
}

.mosaic-main {
    grid-column: 1 / -1;
    grid-row: 1 / 3;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.mosaic-link {
    display: block;
    height: 100%;
    position: relative;
}

.mosaic-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mosaic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.mosaic-overlay h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
}

.mosaic-artist {
    font-size: 0.9rem;
    opacity: 0.8;
}

.mosaic-link:hover img {
    transform: scale(1.05);
}

.mosaic-link:hover .mosaic-overlay {
    transform: translateY(-5px);
}

/* Grid proizvoda */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

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

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
}

/* Stilovi za prikaz proizvoda */
.product-artists {
    margin: 0.25rem 0 1rem;
    font-size: 1rem;
    text-align: center;
}

.product-artist-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.product-artist-link:hover {
    color: var(--secondary-color);
}

/* Streaming linkovi */
.streaming-links {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    background: rgba(28, 44, 92, 0.05);
    padding: 1rem;
    border-radius: 8px;
}

.streaming-link {
    color: #666;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    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);
}

.streaming-link.spotify:hover {
    color: #1DB954;
    background: rgba(29, 185, 84, 0.1);
}

.streaming-link.youtube:hover {
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
}

.streaming-link.apple-music:hover {
    color: #FA57C1;
    background: rgba(250, 87, 193, 0.1);
}

.streaming-link.deezer:hover {
    color: #00C7F2;
    background: rgba(0, 199, 242, 0.1);
}

.streaming-link.tidal:hover {
    color: #000000;
    background: rgba(0, 0, 0, 0.1);
}

/* Sekcije proizvoda */
.featured-products,
.new-arrivals {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* WooCommerce proizvodi */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100% !important;
}

.woocommerce ul.products li.product {
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    min-width: 250px !important;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex !important;
    flex-direction: column;
    position: relative;
}

.woocommerce ul.products li.product::after {
    display: none !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title::after {
    display: none !important;
}

/* Uklanjamo sve potencijalne dekorativne elemente s kartica */
.woocommerce ul.products li.product *::after {
    display: none !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.2rem !important;
    padding: 1.25rem 1.25rem 0.5rem !important;
    margin: 0 !important;
    color: var(--text-color);
    font-weight: 600;
    text-align: center;
    min-height: 3em;
    line-height: 1.4;
    border: none !important;
}

.woocommerce ul.products li.product a img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    margin: 0 !important;
    transition: transform 0.3s ease;
}

.woocommerce ul.products li.product:hover a img {
    transform: scale(1.05);
}

.woocommerce ul.products li.product .artist {
    padding: 0 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.woocommerce ul.products li.product .price {
    padding: 0.5rem 1.25rem !important;
    margin-bottom: 1rem !important;
    color: var(--primary-color) !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    display: block !important;
}

.woocommerce ul.products li.product .price del {
    color: #666 !important;
    opacity: 0.5;
    font-size: 1.1rem !important;
    font-weight: 400 !important;
    margin-right: 0.5rem;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none !important;
    font-weight: 700 !important;
}

.woocommerce ul.products li.product {
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
    padding-bottom: 1rem !important;
}

.woocommerce ul.products li.product .button {
    margin: 0 1.25rem 1.25rem !important;
    padding: 0.8em 1.5em !important;
    background: var(--primary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    font-weight: 500 !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    font-size: 1rem !important;
    width: calc(100% - 2.5rem) !important;
    display: block !important;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
}

.woocommerce ul.products li.product .button:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
}

@media (max-width: 1400px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, minmax(250px, 1fr)) !important;
    }
}

@media (max-width: 992px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(250px, 1fr)) !important;
    }
}

@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(200px, 1fr)) !important;
    }
    
    .woocommerce ul.products li.product {
        min-width: 200px !important;
    }
    
    .woocommerce ul.products li.product a img {
        height: 200px !important;
    }
}

@media (max-width: 576px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }
    
    .woocommerce ul.products li.product {
        min-width: 100% !important;
    }
}

/* Kategorije */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
    text-decoration: none;
    color: white;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    margin: 0;
    font-size: 1.2rem;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.category-card:hover h3 {
    transform: translateY(-5px);
}

/* Responzivnost */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form button {
        width: 100%;
    }

    .products {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}

/* Single Product */
.single-product .product-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.single-product .product-gallery {
    position: sticky;
    top: 100px;
    width: 100%;
}

.single-product .product_title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.single-product .product-artists {
    text-align: left;
    margin: 0.25rem 0 1.5rem;
}

.single-product .product-artist-link {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.single-product .product-artist-link:hover {
    color: var(--secondary-color);
}

.single-product .price {
    font-size: 2rem !important;
    color: var(--primary-color) !important;
    margin: 1.5rem 0 !important;
}

.single-product .stock-status {
    margin-bottom: 1.5rem;
}

.single-product .stock-status .in-stock {
    color: #28a745;
    font-weight: 500;
}

.single-product .stock-status .out-of-stock {
    color: #dc3545;
    font-weight: 500;
}

.single-product .cart-section {
    margin: 1rem 0 2rem;
}

.single-product .cart {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.single-product .quantity {
    position: relative;
    width: 120px !important;
}

.single-product .quantity input {
    width: 100% !important;
    height: 48px !important;
    padding: 0.5rem 2rem !important;
    text-align: center;
    border: 1px solid var(--border-color) !important;
    border-radius: 4px !important;
    font-size: 1.1rem;
    -moz-appearance: textfield;
}

.single-product .quantity input::-webkit-outer-spin-button,
.single-product .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.single-product .quantity::before,
.single-product .quantity::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
    z-index: 1;
}

.single-product .quantity::before {
    content: '\f068';
    left: 8px;
}

.single-product .quantity::after {
    content: '\f067';
    right: 8px;
}

.single-product .single_add_to_cart_button {
    flex: 1;
    height: 48px !important;
    background: var(--primary-color) !important;
    color: white !important;
    padding: 0 2rem !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
}

.single-product .single_add_to_cart_button:hover {
    background: var(--secondary-color) !important;
}

.single-product .wishlist-button {
    text-align: center;
}

.single-product .wishlist-button a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    height: 48px !important;
    padding: 0 !important;
    background: white !important;
    color: var(--primary-color) !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border: none !important;
}

.single-product .wishlist-button a:hover {
    background: var(--light-gray) !important;
    color: var(--primary-color) !important;
}

.single-product .wishlist-button i {
    font-size: 1.4rem !important;
}

.single-product .product-details {
    margin: 2rem 0;
}

.single-product .details-table {
    width: 100%;
    border-collapse: collapse;
}

.single-product .details-table th,
.single-product .details-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.single-product .details-table th {
    width: 30%;
    text-align: left;
    color: #666;
}

.single-product .product-description {
    margin: 2rem 0;
}

.single-product .product-streaming {
    margin: 2rem 0;
}

.single-product .streaming-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.single-product .streaming-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 1.2rem;
}

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

.single-product .product-spotify-player {
    margin: 2rem 0;
}

.single-product .spotify-embed {
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: #282828;
}

.single-product .spotify-embed iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: none;
}

.single-product .related-products {
    margin: 4rem 0;
}

.single-product .related-products h2 {
    text-align: center;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .single-product .product-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .single-product .product-gallery {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .single-product .product_title {
        font-size: 2rem;
    }
    
    .single-product .price {
        font-size: 1.75rem !important;
    }
    
    .single-product .cart {
        padding: 1rem;
    }
    
    .single-product .streaming-links {
        gap: 0.75rem;
    }
    
    .single-product .streaming-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .single-product .spotify-embed iframe {
        height: 300px;
    }
}

/* Popis pjesama */
.product-tracklist {
    margin: 3rem 0;
    width: 100%;
}

.product-tracklist h2 {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.disc-section {
    width: 100%;
    margin-bottom: 2rem;
}

.disc-section:last-child {
    margin-bottom: 0;
}

.disc-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tracklist-table {
    width: 100%;
    border-collapse: collapse;
}

.tracklist-table tr {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.tracklist-table td {
    padding: 0.75rem 0;
}

.track-number {
    width: 30px;
    color: var(--primary-color);
    font-weight: 500;
}

.track-title {
    font-weight: 400;
    padding-left: 1rem !important;
}

.track-duration {
    width: 60px;
    text-align: right;
    color: #666;
    font-weight: 400;
}

/* Galerija proizvoda */
.woocommerce-product-gallery {
    position: relative;
    width: 100%;
}

.woocommerce-product-gallery > div {
    width: 100% !important;
}

.woocommerce-product-gallery__wrapper {
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
}

.woocommerce-product-gallery__wrapper > div {
    width: 100% !important;
    flex: 0 0 100% !important;
}

.woocommerce-product-gallery .flex-viewport {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 556px !important;
    overflow: hidden !important;
}

.woocommerce-product-gallery__image {
    width: 100% !important;
    height: 556px !important;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    flex: 0 0 100% !important;
}

.woocommerce-product-gallery__image a {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.woocommerce-product-gallery__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    background: var(--light-gray);
}

.woocommerce-product-gallery .flex-control-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem !important;
    padding: 0 !important;
    width: 100%;
}

.woocommerce-product-gallery .flex-control-thumbs li {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 8px;
    overflow: hidden;
}

.woocommerce-product-gallery .flex-control-thumbs img {
    width: 100%;
    height: auto;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.woocommerce-product-gallery .flex-control-thumbs img.flex-active,
.woocommerce-product-gallery .flex-control-thumbs img:hover {
    opacity: 1;
}

/* Lista želja */
.wishlist-button {
    margin-left: 1rem;
}

.yith-wcwl-add-button a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    background: white !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

.yith-wcwl-add-button a:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px);
}

.yith-wcwl-add-button i {
    font-size: 1.4rem !important;
}

/* Admin stilovi za popis pjesama */
.tracklist-container {
    padding: 1rem;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 1rem 0;
}

.disc-section {
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border: 1px solid #eee;
    border-radius: 4px;
}

.tracks-table {
    margin: 1rem 0;
}

.tracks-table input[type="text"] {
    width: 100%;
}

.tracks-table td {
    padding: 0.5rem;
}

.button.add-track,
.button.add-disc {
    margin: 0.5rem 0;
}

.button.remove-track,
.button.remove-disc {
    color: #dc3545;
}

.woocommerce-product-gallery.images {
    width: 100% !important;
    max-width: none !important;
}

.woocommerce div.product div.images {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
}

/* Breadcrumb */
.woocommerce-breadcrumb {
    margin: 2rem 0 !important;
    padding: 1rem !important;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 0.9rem !important;
    color: #666 !important;
}

.woocommerce-breadcrumb a {
    color: var(--primary-color) !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.woocommerce-breadcrumb a:hover {
    color: var(--secondary-color) !important;
    text-decoration: underline !important;
}

.woocommerce-breadcrumb .breadcrumb-separator {
    margin: 0 0.5rem;
    color: #999;
}

/* Cart Page */
.cart-wrapper {
    margin: 3rem 0;
}

.woocommerce-cart-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 2rem;
}

.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 !important;
    border: none !important;
}

.shop_table thead {
    background: var(--light-gray);
}

.shop_table th {
    padding: 1.5rem 1rem !important;
    font-weight: 600;
    text-align: left;
    border: none !important;
}

.shop_table td {
    padding: 1.5rem 1rem !important;
    border-bottom: 1px solid var(--border-color) !important;
    border-top: none !important;
}

.shop_table tr:last-child td {
    border-bottom: none !important;
}

.product-remove a {
    color: #dc3545 !important;
    font-size: 1.5rem;
    text-decoration: none;
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.product-remove a:hover {
    background: #dc3545 !important;
    color: white !important;
}

.product-thumbnail {
    width: 100px;
}

.product-thumbnail img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    border-radius: 8px;
}

.product-name a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-name a:hover {
    color: var(--primary-color);
}

.product-price,
.product-subtotal {
    font-weight: 600;
    color: var(--primary-color);
}

.quantity input {
    width: 80px !important;
    height: 40px !important;
    padding: 0.5rem !important;
    text-align: center;
    border: 1px solid var(--border-color) !important;
    border-radius: 4px !important;
    -moz-appearance: textfield;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.actions {
    background: var(--light-gray);
    padding: 1.5rem !important;
}

.coupon {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.coupon label {
    font-weight: 500;
}

.coupon input {
    height: 48px !important;
    padding: 0 1rem !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 4px !important;
    flex: 1;
}

.button {
    height: 48px !important;
    padding: 0 2rem !important;
    background: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
}

.button:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.cart-collaterals {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 2rem;
}

.cart_totals {
    width: 100% !important;
}

.cart_totals h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.cart_totals table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.cart_totals th {
    width: 30%;
    padding: 1rem 0;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cart_totals td {
    padding: 1rem 0;
    text-align: right;
    border-bottom: 1px solid var(--border-color);
}

.cart_totals tr:last-child th,
.cart_totals tr:last-child td {
    border-bottom: none;
}

.wc-proceed-to-checkout .button {
    width: 100%;
    text-align: center;
    font-size: 1.1rem !important;
}

@media (max-width: 768px) {
    .shop_table_responsive thead {
        display: none;
    }

    .shop_table_responsive tr td {
        display: block;
        text-align: right;
        padding: 1rem !important;
    }

    .shop_table_responsive tr td::before {
        content: attr(data-title);
        float: left;
        font-weight: 600;
    }

    .product-thumbnail {
        display: none !important;
    }

    .coupon {
        flex-direction: column;
    }

    .coupon input {
        width: 100% !important;
    }

    .coupon .button {
        width: 100%;
    }
}

.cart-empty-message {
    text-align: center;
    padding: 4rem 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin: 2rem 0;
}

.cart-empty-message p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.cart-empty-message .button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cart-empty-message .button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Mini košarica */
.header-cart {
    position: relative;
}

.mini-cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 380px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.header-cart:hover .mini-cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mini-cart-content {
    padding: 1.5rem;
}

.mini-cart-products {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
}

.mini-cart-item {
    display: grid;
    grid-template-columns: 60px 1fr 24px;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.mini-cart-item:last-child {
    border-bottom: none;
}

.item-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.item-details h4 {
    font-size: 0.9rem;
    margin: 0 0 0.5rem;
    color: var(--text-color);
}

.item-price {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin: 0;
}

.mini-cart-item .remove {
    color: #dc3545;
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.mini-cart-item .remove:hover {
    color: #bd2130;
    transform: scale(1.1);
}

.mini-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
}

.mini-cart-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.mini-cart-buttons .button {
    width: 100%;
    text-align: center;
    padding: 0.75rem 0.5rem !important;
    font-size: 0.85rem !important;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-cart-buttons .view-cart {
    background: var(--light-gray) !important;
    color: var(--text-color) !important;
}

.mini-cart-buttons .checkout {
    background: var(--primary-color) !important;
    color: white !important;
}

.mini-cart-empty {
    text-align: center;
    padding: 2rem 0;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .mini-cart-dropdown {
        width: 320px;
        right: -1rem;
    }
    
    .mini-cart-buttons .button {
        font-size: 0.8rem !important;
        padding: 0.75rem 0.25rem !important;
    }
}

/* Toolbar za kategorije proizvoda */
.woocommerce-products-header {
    margin-bottom: 2rem;
}

.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.view-switcher {
    display: flex;
    gap: 10px;
    margin-right: 20px;
}

.view-switcher button {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #999; /* Svjetlija siva za neaktivne ikone */
    font-size: 20px; /* Veće ikone */
    transition: all 0.3s ease;
    width: 40px; /* Fiksna širina */
    height: 40px; /* Fiksna visina */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.view-switcher button:hover {
    color: #333;
    background-color: #f5f5f5;
}

.view-switcher button.active {
    color: #2c2c2c;
    background-color: #f0f0f0;
}

.woocommerce-ordering {
    margin: 0 !important;
}

.woocommerce-ordering select {
    padding: 0.6rem 2.5rem 0.6rem 1rem !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 6px !important;
    background-color: white !important;
    font-size: 0.9rem !important;
    color: var(--text-color) !important;
    cursor: pointer !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.7rem center !important;
    background-size: 1em !important;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.products-search {
    position: relative;
    min-width: 250px;
}

.products-search input[type="search"] {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
}

.products-search button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1rem;
}

/* List view stilovi */
.products.list-view {
    display: block;
    margin: 0;
    padding: 0;
}

ul.products.list-view {
    display: block;
    margin: 0;
    padding: 0;
}

ul.products.list-view li.product {
    width: 100%;
    display: grid;
    grid-template-columns: 60px minmax(200px, 1fr) auto auto;
    gap: 20px;
    align-items: center;
    padding: 12px;
    margin: 0;
    border-bottom: 1px solid #eee;
    background: #fff;
}

ul.products.list-view li.product:hover {
    background: #f9f9f9;
}

ul.products.list-view li.product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 0;
}

ul.products.list-view li.product .product-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

ul.products.list-view li.product .woocommerce-loop-product__title {
    font-size: 15px;
    margin: 0;
    padding: 0;
}

ul.products.list-view li.product .artist {
    font-size: 13px;
    color: #666;
    margin: 0;
}

ul.products.list-view li.product .price {
    font-size: 15px;
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
}

ul.products.list-view li.product .streaming-links {
    display: flex;
    gap: 8px;
    margin: 0;
}

ul.products.list-view li.product .streaming-link {
    width: 24px;
    height: 24px;
    font-size: 14px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.2s;
}

ul.products.list-view li.product .streaming-link:hover {
    color: #333;
}

@media (max-width: 992px) {
    ul.products.list-view li.product {
        grid-template-columns: 50px minmax(150px, 1fr) auto auto;
        gap: 15px;
    }
    
    ul.products.list-view li.product img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    ul.products.list-view li.product {
        grid-template-columns: 40px 1fr auto;
        gap: 10px;
        padding: 8px;
    }
    
    ul.products.list-view li.product img {
        width: 40px;
        height: 40px;
    }
    
    ul.products.list-view li.product .streaming-links {
        display: none;
    }
}

@media (max-width: 576px) {
    ul.products.list-view li.product {
        grid-template-columns: 40px 1fr auto;
    }
    
    ul.products.list-view li.product .button {
        display: none;
    }
}

/* View Switcher Styles */
.view-switcher {
    display: flex;
    gap: 10px;
    margin-right: 20px;
}

.view-switcher button {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.view-switcher button:hover,
.view-switcher button.active {
    color: #e91e63;
}

@media (max-width: 992px) {
    .products.list-view li.product {
        grid-template-columns: 200px 1fr !important;
    }
    
    .products.list-view li.product .button {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 768px) {
    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .toolbar-left,
    .toolbar-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .products-search {
        min-width: 100%;
    }
    
    .products.list-view li.product {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
    
    .products.list-view li.product .product-content {
        text-align: center !important;
    }
    
    .products.list-view .streaming-links {
        justify-content: center !important;
    }
}

/* Header Search */
.header-search {
    position: relative;
    margin-left: 20px;
}

.search-toggle {
    background: none;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.search-toggle:hover {
    background-color: rgba(0,0,0,0.05);
}

.search-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 10px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-search-form {
    display: flex;
    width: 100%;
}

/* Dodajemo ponovno pravila za nonce input polje */
#search_nonce {
    display: none;
}

/* Stilovi za live search rezultate */
.live-search-results {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.live-search-results.has-results {
    max-height: 400px;
    overflow-y: auto;
    opacity: 1;
    margin-top: 10px;
    padding-right: 5px;
}

.searching {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    color: #777;
    text-align: center;
}

.searching span {
    position: relative;
    padding-left: 25px;
}

.searching span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-top: 2px solid var(--main-color, #e83e8c);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.search-section {
    margin-bottom: 15px;
}

.search-section-title {
    font-size: 14px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}

.search-results-grid {
    display: grid;
    gap: 8px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.search-result-image {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #999;
    font-size: 16px;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-content {
    flex: 1;
}

.search-result-content h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 2px;
    color: #333;
    line-height: 1.3;
}

.search-result-content .artist,
.search-result-content .count,
.search-result-content .date {
    font-size: 12px;
    color: #777;
    display: block;
    line-height: 1.3;
}

.search-result-content .price {
    font-size: 13px;
    color: var(--main-color, #e83e8c);
    font-weight: 500;
    display: block;
    margin-top: 2px;
}

.view-all-results {
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 5px;
}

.view-all-results a {
    color: var(--main-color, #e83e8c);
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}

.view-all-results a:hover {
    text-decoration: underline;
}

.no-results {
    padding: 20px 0;
    text-align: center;
    color: #777;
    font-size: 14px;
}

.error {
    padding: 20px 0;
    text-align: center;
    color: #e74c3c;
    font-size: 14px;
}

@media (max-width: 576px) {
    .search-dropdown {
        width: 280px;
        right: -70px;
    }
    
    .search-dropdown:before {
        right: 80px;
    }
}

/* Stranica izvođača */
.artist-single {
    margin: 3rem 0;
}

.artist-header {
    position: relative;
    margin-bottom: 3rem;
}

.artist-cover {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--light-gray);
}

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

.artist-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.artist-title {
    font-size: 3rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.artist-genre {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.artist-sidebar {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.artist-main {
    flex: 1;
}

.artist-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 3rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.artist-social-links,
.artist-streaming {
    margin-top: 3rem;
    text-align: center;
}

.artist-social-links h3,
.artist-streaming h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.social-links,
.streaming-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link,
.streaming-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.social-link:hover,
.streaming-link:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* Društvene mreže hover boje */
.social-link.facebook:hover { background: #1877f2; border-color: #1877f2; }
.social-link.instagram:hover { background: #e4405f; border-color: #e4405f; }
.social-link.website:hover { background: #2ecc71; border-color: #2ecc71; }
.social-link.tiktok:hover { background: #000000; border-color: #000000; }
.social-link.twitter:hover { background: #000000; border-color: #000000; }

/* Streaming servisi hover boje */
.streaming-link.spotify:hover { background: #1DB954; border-color: #1DB954; }
.streaming-link.youtube:hover { background: #FF0000; border-color: #FF0000; }
.streaming-link.deezer:hover { background: #00C7F2; border-color: #00C7F2; }
.streaming-link.apple-music:hover { background: #FA243C; border-color: #FA243C; }
.streaming-link.tidal:hover { background: #000000; border-color: #000000; }

@media (max-width: 768px) {
    .social-links,
    .streaming-links {
        gap: 0.75rem;
    }

    .social-link,
    .streaming-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .artist-social-links h3,
    .artist-streaming h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

.artist-products {
    margin: 3rem 0;
}

.artist-products h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #fff;
    text-align: left;
}

.artist-products .woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.artist-products .woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    padding: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-products .woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.artist-products .woocommerce ul.products li.product img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin: 0;
    transition: transform 0.3s ease;
}

.artist-products .woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}

.artist-products .woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 1rem;
    margin: 0;
    font-size: 1rem;
    color: #fff;
    text-align: center;
}

.artist-products .woocommerce ul.products li.product .price {
    padding: 0 1rem;
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    text-align: center;
}

.artist-products .woocommerce ul.products li.product .price del {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.artist-products .woocommerce ul.products li.product .price ins {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

.artist-products .woocommerce ul.products li.product .button {
    display: block;
    width: 100%;
    margin: 1rem 0 0 0;
    padding: 0.8rem;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.artist-products .woocommerce ul.products li.product .button:hover {
    background: var(--primary-color-hover);
}

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

@media (max-width: 768px) {
    .artist-products .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .artist-products .woocommerce ul.products li.product img {
        height: 200px;
    }

    .artist-products h3 {
        font-size: 1.5rem;
    }
}

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

    .artist-products .woocommerce ul.products li.product a img {
        height: 180px;
    }
}

.artist-gallery {
    margin: 3rem 0;
}

.artist-gallery h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: transform 0.3s ease;
}

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

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

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

.artist-spotify-player {
    margin: 3rem 0;
}

.artist-spotify-player h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.artist-spotify-player .spotify-embed {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #282828;
}

.artist-spotify-player .spotify-embed iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: none;
}

@media (max-width: 768px) {
    .artist-spotify-player .spotify-embed iframe {
        height: 300px;
    }
}

/* Archive Artists Page */
.archive-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.archive-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-1.343 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
    animation: heroPattern 60s linear infinite;
    z-index: 1;
}

.archive-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.archive-filters {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.genre-filter select {
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.genre-filter select:hover,
.genre-filter select:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    outline: none;
}

.artist-search input[type="search"] {
    width: 100%;
    padding: 1rem 3rem 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.artist-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.artist-search input[type="search"]:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    outline: none;
}

.artist-search button {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.artist-search button:hover {
    transform: translateY(-50%) scale(1.1);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.artist-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 350px;
}

.artist-card:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.artist-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.artist-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        transparent 100%
    );
    color: #fff;
}

.artist-card-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.artist-card-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.artist-card-info {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.artist-card-genre {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.875rem;
    backdrop-filter: blur(5px);
}

.artist-card-releases {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Uklanjamo stare stilove za linkove */
.artist-card-links,
.artist-card-social,
.artist-card-streaming {
    display: none;
}

/* Responzivni dizajn */
@media (max-width: 1200px) {
    .artists-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .artist-card {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .artist-card {
        height: 350px;
    }
}

/* Novosti sekcija */
.news-section {
    padding: 4rem 0;
    background: #fff;
}

.news-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--text-color);
}

.news-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-color);
}

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

.news-card-image {
    position: relative;
    width: 100%;
    padding-top: 66%;
    overflow: hidden;
    display: block;
}

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

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

.news-card .no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #999;
}

.news-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.news-meta {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-date i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.news-title {
    font-size: 1.2rem;
    margin: 0 0 1rem;
    line-height: 1.4;
}

.news-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.news-title a:hover {
    color: var(--primary-color);
}

.news-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    margin-top: auto;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more:hover i {
    transform: translateX(3px);
}

.no-news {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    color: #666;
}

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

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-section h2 {
        font-size: 1.8rem;
    }
    
    .news-card {
        margin-bottom: 0;
    }
}

/* Single Post */
.single-post {
    margin: 4rem 0;
}

.post-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.post-header {
    margin-bottom: 2rem;
}

.post-thumbnail {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--light-gray);
    font-size: 0.95rem;
    color: #666;
}

.post-date,
.post-categories {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-date i,
.post-categories i {
    color: var(--primary-color);
}

.post-categories a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-categories a:hover {
    color: var(--primary-color);
}

.post-title {
    font-size: 2.5rem;
    margin: 0;
    padding: 2rem 2rem 0;
    color: var(--text-color);
    line-height: 1.3;
}

.post-body {
    padding: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.post-body h2,
.post-body h3,
.post-body h4 {
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.post-body ul,
.post-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.post-body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-color);
    background: var(--light-gray);
    font-style: italic;
    color: #666;
}

.post-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    background: var(--light-gray);
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.post-tags i {
    color: var(--primary-color);
}

.post-tags a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-tags a:hover {
    color: var(--primary-color);
}

.post-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.prev-post,
.next-post {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.prev-post:hover,
.next-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    color: var(--primary-color);
}

.prev-post i,
.next-post i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.prev-post span,
.next-post span {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.prev-post small,
.next-post small {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-post {
    text-align: right;
}

.next-post span {
    align-items: flex-end;
}

@media (max-width: 992px) {
    .post-title {
        font-size: 2rem;
        padding: 1.5rem 1.5rem 0;
    }

    .post-meta,
    .post-body,
    .post-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .single-post {
        margin: 2rem 0;
    }

    .post-thumbnail {
        height: 300px;
    }

    .post-title {
        font-size: 1.8rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .post-body {
        font-size: 1rem;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .next-post {
        text-align: left;
    }

    .next-post span {
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .post-thumbnail {
        height: 200px;
    }

    .post-title {
        font-size: 1.5rem;
    }
}

/* Post Share Buttons */
.post-share {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.post-share h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-button i {
    font-size: 1rem;
}

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

.share-button.facebook {
    background: #1877f2;
}

.share-button.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.share-button.twitter {
    background: #000000;
}

.share-button.linkedin {
    background: #0077b5;
}

.share-button.whatsapp {
    background: #25d366;
}

.share-button.email {
    background: #666666;
}

.share-button.copy {
    background: var(--primary-color);
}

@media (max-width: 576px) {
    .share-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .share-button {
        width: 100%;
        justify-content: center;
    }
}

/* Tooltip za kopiranje linka */
.copy-tooltip {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.copy-tooltip.show {
    opacity: 1;
    visibility: visible;
}

/* Archive News Page */
.archive-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem 0;
    margin-bottom: 3rem;
    color: white;
    text-align: center;
}

.archive-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.archive-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
    opacity: 0.9;
}

.archive-filters {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.filter-form {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.filter-group {
    position: relative;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    appearance: none;
}

.filter-group select {
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 1em;
}

.filter-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.filter-group .search-submit {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}

.view-switcher {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.view-switcher button {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-switcher button:hover,
.view-switcher button.active {
    background: white;
    color: var(--primary-color);
}

/* Grid View */
.news-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-archive-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.news-archive-image {
    position: relative;
    padding-top: 66%;
    overflow: hidden;
}

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

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

.news-archive-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* List View */
.news-archive-grid.list-view {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.news-archive-grid.list-view .news-archive-card {
    flex-direction: row;
    align-items: stretch;
}

.news-archive-grid.list-view .news-archive-image {
    width: 300px;
    padding-top: 0;
    flex-shrink: 0;
}

.news-archive-grid.list-view .news-archive-content {
    padding: 2rem;
}

.news-archive-grid.list-view .news-title {
    font-size: 1.5rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 6px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pagination .page-numbers.current {
    background: var(--primary-color);
    color: white;
}

.pagination .page-numbers:hover:not(.current) {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 1200px) {
    .news-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .filter-form {
        grid-template-columns: 1fr;
    }

    .news-archive-grid.list-view .news-archive-card {
        flex-direction: column;
    }

    .news-archive-grid.list-view .news-archive-image {
        width: 100%;
        padding-top: 66%;
    }
}

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

    .news-archive-grid {
        grid-template-columns: 1fr;
    }

    .archive-filters {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .archive-title {
        font-size: 1.8rem;
    }

    .pagination .page-numbers {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem;
    background: var(--light-gray);
    border-radius: 12px;
    margin: 2rem 0;
}

.no-results p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Stranice */
.single-page {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 4rem 0;
}

.page-header {
    position: relative;
    margin-bottom: 2rem;
}

.page-thumbnail {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.page-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-title {
    font-size: 2.5rem;
    margin: 0;
    padding: 2rem 2rem 0;
    color: var(--text-color);
    line-height: 1.3;
}

.page-body {
    padding: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.page-body p {
    margin-bottom: 1.5rem;
}

.page-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.page-body h2,
.page-body h3,
.page-body h4 {
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.page-body ul,
.page-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-body li {
    margin-bottom: 0.5rem;
}

.page-body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-color);
    background: var(--light-gray);
    font-style: italic;
    color: #666;
}

/* Responzivnost za stranice */
@media (max-width: 992px) {
    .page-title {
        font-size: 2rem;
        padding: 1.5rem 1.5rem 0;
    }

    .page-body {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .single-page {
        margin: 2rem 0;
    }

    .page-thumbnail {
        height: 300px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-body {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-thumbnail {
        height: 200px;
    }

    .page-title {
        font-size: 1.5rem;
    }
}

/* WooCommerce stranice padding */
.woocommerce-cart .page-content,
.woocommerce-checkout .page-content,
.woocommerce-account .page-content {
    padding-top: 4rem;
}

/* Responzivnost za WooCommerce stranice */
@media (max-width: 768px) {
    .woocommerce-cart .page-content,
    .woocommerce-checkout .page-content,
    .woocommerce-account .page-content {
        padding-top: 2rem;
    }
}

/* Sakrij poruku o uštedi u košarici */
.woocommerce-cart .woocommerce-cart-form .product-price .savings,
.woocommerce-cart .woocommerce-cart-form .product-subtotal .savings {
    display: none !important;
}

/* Sakrij sve poruke o uštedi */
.wc-block-components-product-badge.wc-block-components-sale-badge,
.wc-block-components-sale-badge,
.woocommerce-cart .woocommerce-cart-form .product-price .savings,
.woocommerce-cart .woocommerce-cart-form .product-subtotal .savings {
    display: none !important;
}

/* Progress bar za besplatnu dostavu */
.free-shipping-progress {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.progress-message {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Artist Archive Hero Section */
.artist-hero-section {
    background: linear-gradient(135deg, #ff69b4 0%, #FF69B4 50%, #b4ff69 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.artist-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
    pointer-events: none;
}

.artist-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.artist-hero-text {
    margin-bottom: 40px;
}

.artist-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.artist-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.artist-search-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.artist-search-container .genre-filter {
    flex: 1;
    min-width: 200px;
}

.artist-search-container .genre-filter select {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.artist-search-container .genre-filter select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.artist-search-container .genre-filter select option {
    background: #fff;
    color: #333;
}

.artist-search-container .artist-search {
    flex: 2;
    min-width: 300px;
    position: relative;
}

.artist-search-container .artist-search input[type="search"] {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.artist-search-container .artist-search input[type="search"]:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.artist-search-container .artist-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.artist-search-container .artist-search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.artist-search-container .artist-search button:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .artist-hero-section {
        padding: 60px 0;
        margin-bottom: 40px;
    }
    
    .artist-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .artist-hero-text p {
        font-size: 1rem;
    }

    .artist-search-container {
        flex-direction: column;
    }

    .artist-search-container .genre-filter,
    .artist-search-container .artist-search {
        width: 100%;
    }
}

/* Shop Hero Section */
.shop-hero-section {
    background: linear-gradient(135deg, #ff69b4 0%, #FF69B4 50%, #b4ff69 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.shop-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
    pointer-events: none;
}

.shop-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.shop-hero-text {
    margin-bottom: 40px;
}

.shop-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.shop-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.shop-search-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.shop-search {
    flex: 2;
    min-width: 300px;
    position: relative;
}

.shop-search input[type="search"] {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.shop-search input[type="search"]:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.shop-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.shop-search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.shop-search button:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .shop-hero-section {
        padding: 60px 0;
        margin-bottom: 40px;
    }
    
    .shop-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .shop-hero-text p {
        font-size: 1rem;
    }

    .shop-search-container {
        flex-direction: column;
    }

    .shop-search {
        width: 100%;
    }
}

/* Shop Header Styles */
.shop-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

.shop-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.shop-header .site-branding {
    flex: 0 0 auto;
}

.shop-header .main-navigation {
    flex: 1;
    margin: 0 2rem;
}

.shop-header .nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-header .nav-menu li {
    margin: 0 1rem;
}

.shop-header .nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.shop-header .nav-menu a:hover {
    color: #e91e63;
}

.shop-header .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shop-header .search-toggle button,
.shop-header .cart-toggle a {
    background: none;
    border: none;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.shop-header .search-toggle button:hover,
.shop-header .cart-toggle a:hover {
    color: #e91e63;
}

.shop-header .cart-count {
    background: #e91e63;
    color: #fff;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.search-overlay .search-form {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.search-overlay .search-field {
    width: 100%;
    padding: 1rem;
    font-size: 1.5rem;
    border: none;
    border-bottom: 2px solid #e91e63;
    background: none;
    outline: none;
}

.search-overlay .search-form button {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #e91e63;
    font-size: 1.2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .shop-header .main-navigation {
        display: none;
    }
    
    .shop-header .header-content {
        padding: 0.5rem 0;
    }
}

/* WooCommerce List View */
ul.products.list-view {
    display: block !important;
    margin: 0 !important;
}

ul.products.list-view li.product {
    width: 100% !important;
    float: none !important;
    display: grid !important;
    grid-template-columns: 120px 2fr 1fr auto !important;
    gap: 20px;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px !important;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

ul.products.list-view li.product:hover {
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* Slika proizvoda */
ul.products.list-view li.product img {
    width: 120px !important;
    height: 120px !important;
    object-fit: cover;
    margin: 0 !important;
    border-radius: 4px;
}

/* Glavni sadržaj (naslov i izvođač) */
ul.products.list-view li.product .product-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

ul.products.list-view li.product .woocommerce-loop-product__title {
    font-size: 1.2em !important;
    margin: 0 !important;
    color: #2c2c2c;
}

ul.products.list-view li.product .artist {
    font-size: 0.95em;
    color: #666;
    margin: 0;
}

/* Cijena */
ul.products.list-view li.product .price {
    font-size: 1.1em !important;
    margin: 0 !important;
    color: #2c2c2c;
    font-weight: 600;
}

ul.products.list-view li.product .price del {
    font-size: 0.85em;
    color: #999;
    margin-right: 5px;
}

ul.products.list-view li.product .price ins {
    text-decoration: none;
    color: #e53935;
}

/* Streaming servisi i gumb */
ul.products.list-view li.product .product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

ul.products.list-view li.product .streaming-links {
    display: flex;
    gap: 8px;
}

ul.products.list-view li.product .streaming-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 4px;
    color: #666;
    transition: all 0.3s ease;
}

ul.products.list-view li.product .streaming-link:hover {
    color: #fff;
}

ul.products.list-view li.product .button {
    margin: 0 !important;
    padding: 8px 16px !important;
}

/* Responzivni dizajn */
@media (max-width: 992px) {
    ul.products.list-view li.product {
        grid-template-columns: 100px 2fr 1fr !important;
    }
    
    ul.products.list-view li.product img {
        width: 100px !important;
        height: 100px !important;
    }
    
    ul.products.list-view li.product .product-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    ul.products.list-view li.product {
        grid-template-columns: 80px 1fr !important;
        gap: 15px;
    }
    
    ul.products.list-view li.product img {
        width: 80px !important;
        height: 80px !important;
    }
    
    ul.products.list-view li.product .price {
        grid-column: 2;
        text-align: left;
    }
    
    ul.products.list-view li.product .product-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    ul.products.list-view li.product .streaming-links {
        order: 2;
    }
    
    ul.products.list-view li.product .button {
        order: 1;
        width: 100%;
    }
}

/* Početna stranica - card view */
.home ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Trgovina - tablični prikaz */
.woocommerce-shop ul.products.list-view {
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product {
    display: table-row;
    width: 100%;
    background: #fff;
}

.woocommerce-shop ul.products.list-view li.product > * {
    display: table-cell;
    vertical-align: middle;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.woocommerce-shop ul.products.list-view li.product .product-image {
    width: 60px;
    padding: 8px;
}

.woocommerce-shop ul.products.list-view li.product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .product-title {
    width: 30%;
}

.woocommerce-shop ul.products.list-view li.product .woocommerce-loop-product__title {
    font-size: 15px;
    margin: 0;
    padding: 0;
    color: #333;
}

.woocommerce-shop ul.products.list-view li.product .artist {
    width: 20%;
    font-size: 14px;
    color: #666;
}

.woocommerce-shop ul.products.list-view li.product .price {
    width: 15%;
    font-size: 15px;
    font-weight: bold;
    white-space: nowrap;
    color: #333;
}

.woocommerce-shop ul.products.list-view li.product .streaming-links {
    width: 20%;
    display: flex;
    gap: 8px;
    justify-content: flex-start;
}

.woocommerce-shop ul.products.list-view li.product .streaming-link {
    width: 24px;
    height: 24px;
    font-size: 14px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.2s;
}

.woocommerce-shop ul.products.list-view li.product .button {
    width: 15%;
    text-align: right;
    padding: 8px 16px;
    font-size: 14px;
    background: #333;
    color: #fff;
    border-radius: 4px;
}

/* Zaglavlje tablice */
.woocommerce-shop ul.products.list-view:before {
    content: "";
    display: table-row;
    background: #f5f5f5;
}

.woocommerce-shop ul.products.list-view:before > * {
    display: table-cell;
    padding: 12px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    font-size: 13px;
}

@media (max-width: 992px) {
    .woocommerce-shop ul.products.list-view li.product .streaming-links {
        display: none;
    }
    
    .woocommerce-shop ul.products.list-view li.product .product-title {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .woocommerce-shop ul.products.list-view li.product {
        display: grid;
        grid-template-columns: 60px 1fr auto;
        gap: 12px;
        padding: 8px;
    }
    
    .woocommerce-shop ul.products.list-view li.product > * {
        display: block;
        width: auto;
        border: none;
    }
    
    .woocommerce-shop ul.products.list-view li.product .artist {
        font-size: 13px;
    }
    
    .woocommerce-shop ul.products.list-view:before {
        display: none;
    }
}

/* Zaglavlje tablice */
.woocommerce-shop .products-header.list-view-header {
    display: none;
    width: 100%;
    background: #f5f5f5;
    margin-bottom: 1px;
}

.woocommerce-shop .products-header.list-view-header.active {
    display: table;
}

.woocommerce-shop .products-header .header-row {
    display: table-row;
}

.woocommerce-shop .products-header .header-cell {
    display: table-cell;
    padding: 12px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    font-size: 13px;
    vertical-align: middle;
}

.woocommerce-shop .products-header .header-cell:nth-child(1) { width: 60px; }
.woocommerce-shop .products-header .header-cell:nth-child(2) { width: 30%; }
.woocommerce-shop .products-header .header-cell:nth-child(3) { width: 20%; }
.woocommerce-shop .products-header .header-cell:nth-child(4) { width: 15%; }
.woocommerce-shop .products-header .header-cell:nth-child(5) { width: 20%; }
.woocommerce-shop .products-header .header-cell:nth-child(6) { width: 15%; text-align: right; }

@media (max-width: 992px) {
    .woocommerce-shop .products-header .header-cell:nth-child(5) { display: none; }
    .woocommerce-shop .products-header .header-cell:nth-child(2) { width: 40%; }
}

@media (max-width: 768px) {
    .woocommerce-shop .products-header.list-view-header {
        display: none !important;
    }
}

/* Početna stranica - grid prikaz */
.home ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Shop stranica - tablični prikaz */
.woocommerce-shop ul.products.list-view {
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.woocommerce-shop .products-header.list-view-header {
    display: none;
    background: #f8f9fa;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.woocommerce-shop .products-header.list-view-header.active {
    display: block;
}

.woocommerce-shop .products-header .header-row {
    display: grid;
    grid-template-columns: 80px 3fr 2fr 1fr 2fr 1fr;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    font-weight: 600;
}

.woocommerce-shop ul.products.list-view li.product {
    display: grid;
    grid-template-columns: 80px 3fr 2fr 1fr 2fr 1fr;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0.5rem;
    margin: 0;
    border-bottom: 1px solid #eee;
}

.woocommerce-shop ul.products.list-view li.product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .woocommerce-loop-product__title {
    font-size: 1rem;
    margin: 0;
    padding: 0;
}

.woocommerce-shop ul.products.list-view li.product .artist {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .price {
    font-size: 1rem;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .streaming-links {
    display: flex;
    gap: 0.5rem;
    margin: 0;
}

.woocommerce-shop ul.products.list-view li.product .streaming-link {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    color: #666;
    transition: all 0.2s;
}

.woocommerce-shop ul.products.list-view li.product .button {
    margin: 0;
    padding: 0.5rem 1rem;
    text-align: center;
    background: #f8f9fa;
    border: none;
    border-radius: 4px;
    color: #333;
    transition: all 0.2s;
}

@media (max-width: 992px) {
    .woocommerce-shop ul.products.list-view li.product {
        grid-template-columns: 80px 3fr 2fr 1fr 1fr;
    }
    
    .woocommerce-shop .products-header .header-row {
        grid-template-columns: 80px 3fr 2fr 1fr 1fr;
    }
    
    .woocommerce-shop ul.products.list-view li.product .streaming-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .woocommerce-shop ul.products.list-view li.product {
        grid-template-columns: 60px 2fr 1fr;
        gap: 0.5rem;
    }
    
    .woocommerce-shop .products-header .header-row {
        grid-template-columns: 60px 2fr 1fr;
    }
    
    .woocommerce-shop ul.products.list-view li.product .artist {
        display: block;
        grid-column: 2;
    }
    
    .woocommerce-shop ul.products.list-view li.product .button {
        display: none;
    }
}

/* Stilovi za live search rezultate */
.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 70vh;
    overflow-y: auto;
    display: none;
    margin-top: 5px;
    padding: 0;
    min-width: 300px;
}

.live-search-results.has-results {
    display: block;
}

.hero-section .live-search-results,
.shop-search-container .live-search-results {
    width: 100%;
    max-width: 600px;
    min-height: 200px;
    z-index: 1010;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    border-radius: 4px;
    border: 1px solid #e1e1e1;
}

.search-form {
    position: relative;
}

.search-form form {
    display: flex;
    width: 100%;
}

.search-form input[type="search"] {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.search-form button[type="submit"] {
    background: var(--main-color, #e83e8c);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-form button[type="submit"]:hover {
    background: var(--main-hover-color, #c82071);
}

.search-section {
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.search-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.search-section-title {
    font-size: 14px;
    margin: 0 0 10px 0;
    padding: 8px 10px;
    background: #f5f5f5;
    border-left: 3px solid var(--main-color, #e83e8c);
}

.search-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 10px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
    border-radius: 4px;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}

.search-result-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-content {
    flex-grow: 1;
    overflow: hidden;
}

.search-result-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-content .artist,
.search-result-content .genre,
.search-result-content .date {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.search-result-content .price {
    font-weight: bold;
    color: #222;
    font-size: 13px;
}

.view-all-results {
    padding: 12px;
    text-align: center;
    border-top: 1px solid #e1e1e1;
    background: #f9f9f9;
}

.view-all-results a {
    color: var(--main-color, #e83e8c);
    text-decoration: none;
    font-weight: 500;
    display: block;
    transition: color 0.2s;
}

.view-all-results a:hover {
    color: var(--main-hover-color, #c82071);
    text-decoration: underline;
}

.searching,
.no-results,
.error {
    padding: 20px 15px;
    text-align: center;
    color: #666;
}

.searching {
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzgiIGhlaWdodD0iMzgiIHZpZXdCb3g9IjAgMCAzOCAzOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiNlODNlOGMiPiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMSAxKSIgc3Ryb2tlLXdpZHRoPSIyIj4gICAgICAgICAgICA8Y2lyY2xlIHN0cm9rZS1vcGFjaXR5PSIuNSIgY3g9IjE4IiBjeT0iMTgiIHI9IjE4Ii8+ICAgICAgICAgICAgPHBhdGggZD0iTTM2IDE4YzAtOS45NC04LjA2LTE4LTE4LTE4Ij4gICAgICAgICAgICAgICAgPGFuaW1hdGVUcmFuc2Zvcm0gICAgICAgICAgICAgICAgICAgIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgICAgICAgICAgICAgICAgICAgIHR5cGU9InJvdGF0ZSIgICAgICAgICAgICAgICAgICAgIGZyb209IjAgMTggMTgiICAgICAgICAgICAgICAgICAgICB0bz0iMzYwIDE4IDE4IiAgICAgICAgICAgICAgICAgICAgZHVyPSIxcyIgICAgICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIi8+ICAgICAgICAgICAgPC9wYXRoPiAgICAgICAgPC9nPiAgICA8L2c+PC9zdmc+') center center no-repeat;
    background-size: 30px;
    height: 80px;
}

/* Dodatni stil za tražilicu na početnoj stranici */
.hero-section .search-form {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Dodatni stilovi za bolju vidljivost rezultata na početnoj stranici */
.hero-section .live-search-results {
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    border-radius: 4px;
    border: 1px solid #e1e1e1;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1010;
}

/* Stilovi za shop tražilicu */
.shop-search-container .live-search-results {
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1010;
}

/* Ispravak za mobilne uređaje */
@media (max-width: 768px) {
    .hero-section .live-search-results,
    .shop-search-container .live-search-results {
        position: absolute;
        width: 100%;
        max-height: 400px;
        max-width: 100%;
    }
    
    .search-result-image {
        width: 50px;
        height: 50px;
    }
    
    .search-result-content h4 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .search-result-image {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .search-result-content .artist,
    .search-result-content .genre,
    .search-result-content .date {
        font-size: 11px;
    }
}

/* Stilovi za stranicu rezultata pretraživanja */
.search-results-page {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.search-results-page .container {
    max-width: 1200px;
    margin: 0 auto;
}

.search-results-page .page-header {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.search-results-page .page-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.search-results-page .page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--main-color, #e83e8c);
}

.search-results-page .page-title span {
    color: var(--main-color, #e83e8c);
}

.search-results-page .search-form-container {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 0 15px;
}

.search-results-container {
    margin-top: 40px;
}

.search-section {
    margin-bottom: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-section:last-child {
    margin-bottom: 0;
}

.search-section-title {
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    color: #333;
    position: relative;
}

.search-section-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--main-color, #e83e8c);
}

/* Stilovi za sekciju proizvoda */
.search-results-page .products-section .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.search-results-page .products-section .product {
    margin-bottom: 0 !important;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.search-results-page .products-section .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Stilovi za sekciju izvođača */
.search-results-page .artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.search-results-page .artist-card {
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}

.search-results-page .artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.search-results-page .artist-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.search-results-page .artist-image {
    height: 220px;
    overflow: hidden;
}

.search-results-page .artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.search-results-page .artist-card:hover .artist-image img {
    transform: scale(1.05);
}

.search-results-page .artist-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #ccc;
    font-size: 4rem;
}

.search-results-page .artist-info {
    padding: 15px;
    text-align: center;
}

.search-results-page .artist-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.search-results-page .artist-genre {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 5px;
    font-style: italic;
}

.search-results-page .artist-count {
    font-size: 14px;
    color: #777;
    display: block;
}

/* Stilovi za sekciju članaka */
.search-results-page .posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.search-results-page .post-card {
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}

.search-results-page .post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.search-results-page .post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.search-results-page .post-thumbnail {
    height: 200px;
    overflow: hidden;
}

.search-results-page .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.search-results-page .post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.search-results-page .post-content {
    padding: 20px;
}

.search-results-page .post-title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.search-results-page .post-meta {
    margin-bottom: 10px;
    font-size: 14px;
    color: #888;
}

.search-results-page .post-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.search-results-page .post-excerpt p {
    margin: 0;
}

/* Stil za poruku kad nema rezultata */
.search-results-page .no-results {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-results-page .no-results p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Responzivni stilovi */
@media (max-width: 1200px) {
    .search-results-page .products-section .products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .search-results-page .products-section .products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .search-results-page .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .search-results-page {
        padding: 40px 0;
    }
    
    .search-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .search-results-page .page-title {
        font-size: 24px;
    }
    
    .search-results-page .products-section .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .search-results-page .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .search-results-page .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .search-results-page .artist-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .search-results-page .products-section .products {
        grid-template-columns: 1fr;
    }
    
    .search-results-page .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .search-results-page .page-title {
        font-size: 22px;
    }
    
    .search-section-title {
        font-size: 20px;
    }
}

/* Dodatni stilovi za stranicu rezultata pretraživanja */
.search-results-page .results-count {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
    font-style: italic;
}

.search-results-page .post-thumbnail.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #ccc;
    font-size: 3rem;
    height: 200px;
}

.search-results-page .no-results .btn-primary {
    display: inline-block;
    background-color: var(--main-color, #e83e8c);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.search-results-page .no-results .btn-primary:hover {
    background-color: var(--main-hover-color, #c82071);
}

.search-results-page .post-date i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .search-results-page .results-count {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .search-results-page .post-thumbnail.no-image {
        height: 160px;
        font-size: 2.5rem;
    }
}

/* Stilovi za izvođače u pretragama */
.search-result-item .artist {
    color: var(--main-color, #e83e8c);
    font-weight: 500;
}

.search-result-item:hover .artist {
    color: #c62b71;
}

/* Poboljšani stilovi za live search rezultate */
.live-search-results {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
}

.live-search-results.has-results {
    max-height: 500px;
    overflow-y: auto;
    opacity: 1;
    margin-top: 10px;
    padding: 10px;
    background: #fff;
    border: 1px solid #eee;
}

/* Treba biti ispred drugih elemenata */
.header-search .live-search-results.has-results {
    z-index: 9999;
}

/* Prikazivanje vrste rezultata za izvođače */
.search-result-item .count {
    display: inline-flex;
    align-items: center;
    color: #777;
    font-size: 12px;
}

.search-result-item .count::before {
    content: '\f001';
    font-family: 'Font Awesome 5 Free';
    margin-right: 5px;
    font-size: 10px;
    color: var(--main-color, #e83e8c);
}

/* Isticanje poklapanja u rezultatima */
.search-result-item .highlight {
    background-color: rgba(232, 62, 140, 0.1);
    color: var(--main-color, #e83e8c);
    font-weight: 500;
    padding: 0 2px;
    border-radius: 2px;
}

/* Stilovi za polje unosa u header search */
.header-search-form .search-field {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    padding: 8px 15px;
    font-size: 14px;
    outline: none;
}

.header-search-form .search-field:focus {
    border-color: var(--main-color, #e83e8c);
    box-shadow: 0 0 0 2px rgba(232, 62, 140, 0.1);
}

.header-search-form .search-submit {
    background: var(--main-color, #e83e8c);
    border: none;
    color: white;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    margin-left: -1px;
}

.search-input-wrapper {
    width: 100%;
    position: relative;
}

/* Live search rezultati - pozicioniranje iznad drugih elemenata */
.search-form,
.header-search-form {
    position: relative;
}

.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    max-height: 80vh;
    overflow-y: auto;
    margin-top: 5px;
    display: none;
}

.live-search-results.has-results {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
    border-bottom: 1px solid #eee;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}

.search-result-image {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-image i {
    font-size: 24px;
    color: #999;
}

.search-result-content {
    flex: 1;
}

.search-result-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
}

.search-result-content .artist {
    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
}

.search-result-content .price {
    font-weight: 600;
    color: #e83e8c;
}

.search-result-content .date {
    font-size: 12px;
    color: #666;
}

.search-section {
    margin-bottom: 20px;
}

.search-section-title {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.search-results-grid {
    display: flex;
    flex-direction: column;
}

.view-all-results {
    padding: 10px;
    text-align: center;
    border-top: 1px solid #eee;
}

.view-all-results a {
    color: #e83e8c;
    text-decoration: none;
    font-weight: 600;
}

.view-all-results a:hover {
    text-decoration: underline;
}

.searching {
    padding: 15px;
    text-align: center;
    color: #666;
}

.no-results, .error {
    padding: 15px;
    text-align: center;
    color: #666;
}

.highlight {
    background-color: #ffe0f0;
    font-weight: bold;
    color: #e83e8c;
    padding: 0 2px;
}

/* Poboljšano pozicioniranje rezultata pretrage - iznad svih elemenata */
.search-form,
.header-search-form {
    position: relative;
}

/* Izrazito povećan z-index i poboljšano pozicioniranje */
.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 9999; /* Mnogo veći z-index od ostalih elemenata */
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    max-height: 80vh;
    overflow-y: auto;
    margin-top: 5px;
    display: none;
}

.live-search-results.has-results {
    display: block;
}

/* Specifično ciljamo hero sekciju da bi nadjačali njena pravila */
.hero-section .live-search-results,
.artist-hero-section .live-search-results,
.shop-hero-section .live-search-results {
    position: absolute;
    top: 100%;
    z-index: 9999;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

/* Standardizirane boje teksta za sve rezultate pretrage */
.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333 !important; /* Forsiraj boju teksta */
    transition: background-color 0.2s;
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}

.search-result-image {
    width: 50px;
    height: 50px;
    min-width: 50px; /* Osiguraj minimalnu širinu */
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

.search-result-content {
    flex: 1;
}

.search-result-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
    color: #333 !important; /* Forsiraj boju teksta */
}

.search-result-content .artist {
    color: #666 !important; /* Forsiraj boju teksta */
    font-size: 12px;
    margin-bottom: 5px;
}

.search-result-content .price {
    font-weight: 600;
    color: #e83e8c !important; /* Forsiraj boju teksta */
}

.search-result-content .date {
    font-size: 12px;
    color: #666 !important; /* Forsiraj boju teksta */
}

.search-section-title {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
    color: #333 !important; /* Forsiraj boju teksta */
}

.searching {
    padding: 15px;
    text-align: center;
    color: #666 !important; /* Forsiraj boju teksta */
    background-color: #fff;
}

.no-results, .error {
    padding: 15px;
    text-align: center;
    color: #666 !important; /* Forsiraj boju teksta */
    background-color: #fff;
}

.highlight {
    background-color: #ffe0f0;
    font-weight: bold;
    color: #e83e8c !important; /* Forsiraj boju teksta */
    padding: 0 2px;
}

/* Dodatno poboljšanje za rezultate pretrage - iznad svih elemenata */
.search-form,
.header-search-form {
    position: relative;
    z-index: 99999; /* Ekstremno visok z-index za kontejner */
}

/* Izrazito povećan z-index i potpuno apsolutno pozicioniranje */
.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 99999; /* Ekstremno visok z-index */
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); /* Jača sjenka za bolju vidljivost */
    max-height: 80vh;
    overflow-y: auto;
    margin-top: 5px;
    display: none;
}

.live-search-results.has-results {
    display: block;
}

/* Specifično ciljanje rezultata pretrage na početnoj stranici */
.hero-section .search-form {
    position: relative;
    z-index: 99999; /* Ekstremno visok z-index */
}

.hero-section .live-search-results,
.artist-hero-section .live-search-results,
.shop-hero-section .live-search-results {
    position: absolute !important; /* Forsiraj apsolutno pozicioniranje */
    top: 100% !important;
    z-index: 99999 !important; /* Forsiraj visok z-index */
    width: 100% !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
}

/* Osigurajmo da su rezultati pretrage iznad sekcije new-arrivals i drugih elemenata */
.hero-section .container {
    position: relative;
    z-index: auto; /* Smanjimo z-index kako bi rezultati pretrage mogli biti iznad */
}

/* Standardizirane boje teksta za sve rezultate pretrage */
.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333 !important; /* Forsiraj boju teksta */
    transition: background-color 0.2s;
    border-bottom: 1px solid #eee;
    background-color: #fff !important; /* Forsiraj bijelu pozadinu */
}

.search-result-item:hover {
    background-color: #f9f9f9 !important;
}

.search-result-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
    color: #333 !important; /* Forsiraj boju teksta */
}

.search-result-content .artist {
    color: #666 !important; /* Forsiraj boju teksta */
    font-size: 12px;
    margin-bottom: 5px;
}

.search-result-content .price {
    font-weight: 600;
    color: #e83e8c !important; /* Forsiraj boju teksta */
}

.search-section-title {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f5f5f5 !important;
    border-radius: 4px;
    color: #333 !important; /* Forsiraj boju teksta */
}

.searching,
.no-results,
.error {
    padding: 15px;
    text-align: center;
    color: #666 !important; /* Forsiraj boju teksta */
    background-color: #fff !important;
}

/* Osigurajmo da elementi pretrage nemaju overflow hidden koji bi mogao sakriti rezultate */
.hero-section,
.artist-hero-section,
.shop-hero-section,
.search-form-container,
.search-form {
    overflow: visible !important;
}

/* Search bar stilovi na shop stranici */
.shop-hero-section .shop-search-container {
    margin-top: 30px;
    width: 100%;
    max-width: 600px;
    position: relative;
}

.shop-search {
    display: flex;
    position: relative;
}

.shop-search input[type="search"] {
    flex: 1;
    border: none;
    border-radius: 30px;
    padding: 15px 25px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.shop-search input[type="search"]:focus {
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    outline: none;
}

.shop-search input[type="search"]::placeholder {
    color: #888;
}

.shop-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--main-color, #e83e8c);
    border: none;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 16px;
}

.shop-search button:hover {
    background-color: var(--main-hover-color, #c82071);
    transform: translateY(-50%) scale(1.05);
}

/* Novi stil za shop search - kopiran iz style.css za search formu s početne */
.shop-hero-section .search-form {
    position: relative;
    z-index: 99999; /* Ekstremno visok z-index za kontejner */
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
}

.shop-hero-section .search-form form {
    display: flex;
    position: relative;
}

.shop-hero-section .search-form input[type="search"] {
    flex: 1;
    border: none;
    border-radius: 30px;
    padding: 15px 25px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.shop-hero-section .search-form button[type="submit"] {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--main-color, #e83e8c);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.shop-hero-section .search-form button[type="submit"]:hover {
    background-color: var(--main-hover-color, #d72d7b);
}

/* Ujednačavanje live search rezultata */
.shop-hero-section .live-search-results {
    position: absolute !important;
    top: 100% !important;
    z-index: 99999 !important;
    width: 100% !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
}

/* Poboljšani stilovi za search form na stranici trgovine (shop page) */
.shop-hero-section .search-form {
    width: 100%;
    max-width: 600px;
    position: relative;
    margin: 25px auto 0;
}

.shop-hero-section .search-form form {
    display: flex;
    width: 100%;
}

.shop-hero-section .search-form input[type="search"] {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: #fff;
    outline: none;
}

.shop-hero-section .search-form input[type="search"]:focus {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--main-color, #e83e8c);
}

.shop-hero-section .search-form button[type="submit"] {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--main-color, #e83e8c);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.shop-hero-section .search-form button[type="submit"]:hover {
    background-color: var(--main-hover-color, #c82071);
    transform: scale(1.05);
}

.shop-hero-section .live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.shop-hero-section .live-search-results.has-results {
    padding: 15px;
    display: block;
}

/* Osigurajmo da se rezultati pretrage prikazuju iznad svih drugih elemenata */
.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.live-search-results.has-results {
    display: block;
    padding: 15px;
}

/* Poboljšanje za mobile verziju */
@media (max-width: 768px) {
    .shop-hero-section .search-form {
        max-width: 100%;
    }
    
    .shop-hero-section .search-form input[type="search"] {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .shop-hero-section .search-form button[type="submit"] {
        padding: 8px 12px;
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* Poboljšanje izgleda tražilice na stranici trgovine da izgleda kao na početnoj stranici */
.shop-search-container .search-form input[type="search"] {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 30px;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    outline: none;
}

.shop-search-container .search-form input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.shop-search-container .search-form input[type="search"]:focus {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-color: #ffffff;
}

.shop-search-container .search-form button[type="submit"] {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--main-color, #e83e8c);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.shop-search-container .search-form button[type="submit"]:hover {
    background-color: var(--main-hover-color, #c82071);
    transform: scale(1.05);
}

.shop-search-container .search-form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

/* Stilovi za tražilicu na stranici trgovine - usklađeni s početnom stranicom */
.shop-search-container .search-form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.shop-search-container .search-form input[type="search"] {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    border-radius: 30px;
    font-size: 16px;
    background-color: transparent !important;
    color: #ffffff !important;
    outline: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.shop-search-container .search-form input[type="search"]:focus {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-color: #ffffff !important;
}

.shop-search-container .search-form input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Usklađivanje tražilice na stranici trgovine s početnom stranicom */
.shop-search-container .search-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.shop-search-container .search-form form {
    display: flex;
    width: 100%;
}

.shop-search-container .search-form input[type="search"] {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid #e1e1e1;
    border-right: none;
    background: #fff;
    color: #333;
}

.shop-search-container .search-form input[type="search"]::placeholder {
    color: #999;
}

.shop-search-container .search-form input[type="search"]:focus {
    outline: none;
    border-color: var(--main-color, #e83e8c);
}

.shop-search-container .search-form button {
    background: var(--main-color, #e83e8c);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-search-container .search-form button:hover {
    background: var(--main-hover-color, #c82071);
}

.shop-search-container .live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-radius: 4px;
    margin-top: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.shop-search-container .live-search-results.has-results {
    display: block;
    padding: 15px;
}

.shop-search-container .search-form button {
    background-color: var(--main-color, #e83e8c);
    color: #fff;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    border-radius: 0 4px 4px 0;
}

.shop-search-container .search-form button i {
    font-size: 16px;
}

.shop-search-container .search-form button:hover {
    background-color: var(--main-hover-color, #c82071);
}

.shop-search-container .search-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.shop-search-container .search-form form {
    display: flex;
    width: 100%;
}

.shop-search-container .search-form input[type="search"] {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-right: none;
    background: #fff;
    color: #333;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
}

/* Category Hero Section */
.category-hero {
    background: var(--gradient-primary);
    padding: 4rem 0;
    position: relative;
    margin-bottom: 3rem;
}

.category-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.category-hero .hero-text {
    text-align: center;
    color: var(--color-white);
}

.category-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.search-filters-container {
    max-width: 900px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

.category-hero .filter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.category-hero .search-group {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.category-hero .search-group input[type="search"] {
    width: 100%;
    padding: 0.8rem 1rem;
    padding-right: 3rem;
    border: none;
    border-radius: 4px;
    background: var(--color-white);
    font-size: 1rem;
}

.category-hero .search-submit {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 3rem;
    border: none;
    background: transparent;
    color: var(--color-primary);
    cursor: pointer;
}

.category-hero .filter-group select {
    padding: 0.8rem 2rem 0.8rem 1rem;
    border: none;
    border-radius: 4px;
    background: var(--color-white);
    font-size: 1rem;
    min-width: 180px;
}

.category-hero .view-switcher {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
    align-self: center;
}

.category-hero .view-switcher button {
    background: var(--color-white);
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 4px;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-hero .view-switcher button.active {
    background: var(--color-primary);
    color: var(--color-white);
}

@media (max-width: 768px) {
    .category-hero {
        padding: 3rem 0;
    }
    
    .category-hero .filter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .category-hero .search-group,
    .category-hero .filter-group {
        width: 100%;
    }
    
    .search-filters-container {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Specifični stilovi za poravnanje view-switchera */
.category-hero .view-switcher {
    display: flex;
    gap: 0.5rem;
    height: 42px;
    align-self: center;
    margin: 1rem auto 0;
}

/* Poboljšanje vidljivosti teksta u select elementu */
.category-hero .filter-group select {
    color: var(--text-color);
    background-color: var(--color-white);
    font-weight: 500;
}

.woocommerce-shop ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0;
    padding: 2rem 0;
}

.woocommerce-shop ul.products li.product {
    width: 100%;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce-shop ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.woocommerce-shop ul.products li.product img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin: 0;
    transition: transform 0.3s ease;
}

.woocommerce-shop ul.products li.product:hover img {
    transform: scale(1.05);
}

.woocommerce-shop ul.products li.product .woocommerce-loop-product__title {
    padding: 1rem;
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
    text-align: center;
}

.woocommerce-shop ul.products li.product .price {
    padding: 0 1rem;
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    text-align: center;
}

.woocommerce-shop ul.products li.product .button {
    display: block;
    width: calc(100% - 2rem);
    margin: 1rem;
    padding: 0.8rem;
    text-align: center;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.woocommerce-shop ul.products li.product .button:hover {
    background: var(--primary-color-dark);
}

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

@media (max-width: 768px) {
    .woocommerce-shop ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .woocommerce-shop ul.products li.product img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .woocommerce-shop ul.products {
        grid-template-columns: 1fr;
    }
    
    .woocommerce-shop ul.products li.product img {
        height: 250px;
    }
}

.artist-products .products li.product h2.woocommerce-loop-product__title {
    padding: 1rem;
    margin: 0;
    font-size: 1rem;
    color: #fff;
    text-align: center;
}

.artist-products .products li.product .price {
    padding: 0 1rem;
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    text-align: center;
}

.artist-products .products li.product .button {
    display: block;
    width: 100%;
    margin: 1rem 0 0 0;
    padding: 0.8rem;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.artist-products .products li.product .button:hover {
    background: var(--primary-color-hover);
}

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

@media (max-width: 768px) {
    .artist-products .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .artist-products .products li.product img {
        height: 200px;
    }
}

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

.artist-products {
    margin: 3rem 0;
}

.artist-products h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #fff;
    text-align: left;
}

.artist-products .woocommerce {
    margin: 0;
    padding: 0;
}

.artist-products .woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.artist-products .woocommerce ul.products::before,
.artist-products .woocommerce ul.products::after {
    display: none;
}

.artist-products .woocommerce ul.products li.product {
    float: none;
    margin: 0;
    padding: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-products .woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.artist-products .woocommerce ul.products li.product a img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin: 0;
    transition: transform 0.3s ease;
}

.artist-products .woocommerce ul.products li.product:hover a img {
    transform: scale(1.05);
}

.artist-products .home-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.artist-products .home-product-item {
    display: flex;
    flex-direction: column;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.artist-products .home-product-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.artist-products .home-product-image {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
}

.artist-products .home-product-image img {
    width: 100%;
    transition: transform 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.artist-products .home-product-item:hover .home-product-image img {
    transform: scale(1.05);
}

.artist-products .home-product-details {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.artist-products .home-product-title {
    font-size: 16px;
    margin: 0 0 5px 0;
    font-weight: 600;
    line-height: 1.3;
}

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

.artist-products .home-product-title a:hover {
    color: #0066cc;
    text-decoration: underline;
}

.artist-products .home-product-artist {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.artist-products .home-product-price {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 18px;
    color: #222;
}

.artist-products .home-add-to-cart-btn {
    display: inline-block;
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    text-transform: none;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    border-radius: 0;
}

.artist-products .home-add-to-cart-btn:hover {
    background: #fff;
    color: var(--primary-color);
}

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

@media (max-width: 768px) {
    .artist-products .home-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .artist-products .home-product-image img {
        height: 200px;
    }
    
    .artist-products h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .artist-products .home-products-grid {
        grid-template-columns: 1fr;
    }
    
    .artist-products .home-product-image img {
        height: 250px;
    }
}

.artist-social.flat-design,
.artist-streaming.flat-design {
    margin: 2rem 0;
    text-align: left;
}

.social-links-container,
.streaming-links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-start;
}

.artist-social.flat-design .social-link,
.artist-streaming.flat-design .streaming-link {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    font-size: 0.9rem;
    min-width: fit-content;
}

.artist-social.flat-design .social-link:hover,
.artist-streaming.flat-design .streaming-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.artist-social.flat-design .social-link i,
.artist-streaming.flat-design .streaming-link i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.artist-social.flat-design h3,
.artist-streaming.flat-design h3 {
    text-align: left;
    margin-bottom: 1rem;
}

/* Boje za društvene mreže */
.social-link.facebook { background-color: #1877f2; }
.social-link.instagram { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.social-link.website { background-color: #2c3e50; }
.social-link.tiktok { background-color: #000000; }
.social-link.twitter { background-color: #1da1f2; }

/* Boje za streaming servise */
.streaming-link.spotify { background-color: #1DB954; }
.streaming-link.youtube { background-color: #FF0000; }
.streaming-link.deezer { background-color: #00C7F2; }
.streaming-link.apple-music { background-color: #FA57C1; }
.streaming-link.tidal { background-color: #000000; }

/* Responsive dizajn */
@media (max-width: 768px) {
    .social-links-container,
    .streaming-links-container {
        gap: 0.75rem;
    }

    .artist-social.flat-design .social-link,
    .artist-streaming.flat-design .streaming-link {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .artist-social.flat-design .social-link i,
    .artist-streaming.flat-design .streaming-link i {
        margin-right: 0.5rem;
        font-size: 1rem;
    }
}
