

/* Start:/local/templates/main/css/styles.css?17494126469518*/
/* Global styles for Srbska Priroda */

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Dark mode scrollbar */
.dark ::-webkit-scrollbar-track {
    background: #374151;
}

.dark ::-webkit-scrollbar-thumb {
    background: #6b7280;
}

.dark ::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Smooth transitions - exclude AOS elements */
*:not([data-aos]) {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, transform, box-shadow, opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}



/* Enhanced hover effects */
a, button, .cursor-pointer {
    transition: all 0.2s ease;
}

/* Remove translateY for text links to prevent jerky movement */
a:hover, button:hover, .cursor-pointer:hover {
    opacity: 0.8;
}

/* Keep translateY only for specific buttons and cards */
.btn-hover:hover, 
.card-hover:hover, 
.dashboard-card:hover,
.product-card:hover,
.view-button:hover,
.pagination-btn:hover,
button.bg-primary:hover,
button.border:hover,
a.bg-primary:hover,
a.border:hover {
    opacity: 1;
}

/* Sidebar links smooth transitions */
nav a {
    transition: all 0.2s ease;
}

/* Only apply translateX to dashboard sidebar, not main navigation */
aside nav a:hover {
    transform: translateX(4px);
}

/* Main navigation links - no transform to prevent text jumping */
header nav a:hover {
    color: #22c55e;
    transform: none;
}

/* Table row hover effects */
table tbody tr {
    transition: all 0.2s ease;
}

table tbody tr:hover {
    background-color: rgba(34, 197, 94, 0.05);
    transform: scale(1.01);
}

/* Icon hover animations - only for buttons and interactive elements */
button .fas, button .far, button .fab,
.cursor-pointer .fas, .cursor-pointer .far, .cursor-pointer .fab {
    transition: all 0.2s ease;
}

button .fas:hover, button .far:hover, button .fab:hover,
.cursor-pointer .fas:hover, .cursor-pointer .far:hover, .cursor-pointer .fab:hover {
    transform: scale(1.1);
}

/* Product item cards - general class for all products */
.product-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
}

.product-item:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Product card specific improvements */
.homepage-product-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
}

.homepage-product-card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 0 25px 50px -5px rgba(0, 0, 0, 0.15);
}

.homepage-product-card img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.homepage-product-card:hover img {
    transform: scale(1.1);
}

/* Category cards animation with smooth rotation */
.category-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
}

.category-card:hover {
    transform: translateY(-6px) translateZ(0);
}

.category-card .w-20 {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.category-card:hover .w-20 {
    transform: scale(1.15) rotate(8deg);
}

.category-card h3 {
    transition: all 0.3s ease;
}

.category-card:hover h3 {
    color: #22c55e;
    transform: translateY(-2px);
}

/* Featured producers cards */
.producer-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
}

.producer-card:hover {
    transform: translateY(-6px) translateZ(0);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
}

.producer-card img {
    transition: all 0.3s ease;
}

.producer-card:hover img {
    transform: scale(1.1);
}

/* Filter sidebar animations */
.filter-sidebar {
    transition: all 0.3s ease;
}

.filter-sidebar label {
    transition: all 0.2s ease;
    cursor: pointer;
    border-radius: 6px;
    padding: 4px 8px;
    margin: 2px 0;
}

.filter-sidebar label:hover {
    transform: translateX(4px);
    background-color: rgba(34, 197, 94, 0.05);
    color: #22c55e;
}

.filter-sidebar input:checked + span {
    color: #22c55e !important;
    font-weight: 600;
}

/* Clear filters button animation */
.filter-sidebar button {
    transition: all 0.2s ease;
}

.filter-sidebar button:hover {
    transform: translateY(-1px);
    border-color: #22c55e;
    background-color: rgba(34, 197, 94, 0.05);
}

/* Product badges animation */
.product-badge {
    transition: all 0.2s ease;
}

.product-card:hover .product-badge {
    transform: scale(1.05);
}

/* Focus styles */
.focus-ring:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.5);
}

/* Button hover effects */
.btn-hover {
    transition: all 0.2s ease;
}

.btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.15), 0 15px 15px -5px rgba(0, 0, 0, 0.06);
}

/* Dashboard stats cards */
.dashboard-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-card:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Loading spinner */
.spinner {
    border: 2px solid #f3f4f6;
    border-top: 2px solid #22c55e;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Fade in animation */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Slide in from right */
.slide-in-right {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* Slide in from left */
.slide-in-left {
    animation: slideInLeft 0.3s ease-out;
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Pulse animation */
.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Custom form styles */
.form-input {
    transition: all 0.2s ease;
}

.form-input:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

/* Custom checkbox styles */
.custom-checkbox {
    appearance: none;
    width: 1rem;
    height: 1rem;
    border: 2px solid #d1d5db;
    border-radius: 0.25rem;
    background-color: white;
    cursor: pointer;
    position: relative;
}

.custom-checkbox:checked {
    background-color: #22c55e;
    border-color: #22c55e;
}

.custom-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Custom radio styles */
.custom-radio {
    appearance: none;
    width: 1rem;
    height: 1rem;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
    position: relative;
}

.custom-radio:checked {
    border-color: #22c55e;
}

.custom-radio:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.5rem;
    height: 0.5rem;
    background-color: #22c55e;
    border-radius: 50%;
}

/* Notification styles */
.notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    max-width: 24rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #22c55e;
    padding: 1rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.error {
    border-left-color: #ef4444;
}

.notification.warning {
    border-left-color: #f59e0b;
}

.notification.info {
    border-left-color: #3b82f6;
}

/* Mobile responsive utilities */
@media (max-width: 768px) {
    .mobile-hidden {
        display: none !important;
    }
    
    .mobile-full {
        width: 100% !important;
    }
    
    .mobile-text-sm {
        font-size: 0.875rem !important;
    }
    
    .mobile-p-2 {
        padding: 0.5rem !important;
    }
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .bg-primary {
        background-color: #22c55e !important;
        -webkit-print-color-adjust: exact;
    }
} 
/* End */


/* Start:/local/templates/main/css/dashboard.css?17494091884103*/
/* Dashboard specific styles */
.dashboard-sidebar {
    width: 256px;
    transition: width 0.3s ease;
}

.dashboard-sidebar.collapsed {
    width: 64px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin: 4px 8px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    text-decoration: none;
    color: #6b7280;
}

.sidebar-item:hover {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.sidebar-item.active {
    background-color: #22c55e;
    color: white;
}

.sidebar-icon {
    width: 20px;
    margin-right: 12px;
    text-align: center;
}

.dashboard-sidebar.collapsed .sidebar-text {
    display: none;
}

.dashboard-sidebar.collapsed .sidebar-icon {
    margin-right: 0;
}

.dashboard-main {
    margin-left: 256px;
    transition: margin-left 0.3s ease;
}

.dashboard-main.expanded {
    margin-left: 64px;
}

.stats-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.stats-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.2));
    transition: all 0.3s ease;
}

.stats-card:hover .stats-icon {
    transform: scale(1.1);
}

.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

.chart-container canvas {
    max-height: 300px !important;
    height: 300px !important;
}

.table-responsive {
    overflow-x: auto;
}

.status-badge {
    position: relative;
    overflow: hidden;
}

.status-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.status-badge:hover::before {
    left: 100%;
}

.status-delivered {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #166534;
}

.status-processing {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.status-confirmed {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
}

.status-cancelled {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
}

.dark .stats-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.8));
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.dark .dashboard-table th {
    background: linear-gradient(135deg, #374151, #4b5563);
}

.dark .loading-skeleton {
    background: linear-gradient(90deg, #374151 25%, #4b5563 50%, #374151 75%);
    background-size: 200% 100%;
}

@media (max-width: 768px) {
    .dashboard-sidebar {
        position: fixed;
        left: -100%;
        z-index: 50;
        height: 100vh;
        transition: left 0.3s ease;
    }
    
    .dashboard-sidebar.mobile-open {
        left: 0;
    }
    
    .dashboard-main {
        margin-left: 0;
    }
    
    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 40;
    }
    
    .chart-container {
        height: 250px;
    }
    
    .chart-container canvas {
        max-height: 250px !important;
        height: 250px !important;
    }
    
    .stats-card {
        text-align: center;
    }
    
    .dashboard-table {
        font-size: 0.875rem;
    }
}

/* Print styles for dashboard */
@media print {
    .sidebar {
        display: none;
    }
    
    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
    }
    
    .chart-container {
        break-inside: avoid;
    }
    
    .stats-card {
        break-inside: avoid;
        margin-bottom: 1rem;
    }
} 
/* End */


/* Start:/local/templates/main/css/catalog.css?17494104227458*/
/* Catalog specific styles */

/* Custom Choices.js styling - Fixed dropdown positioning */
.choices {
    position: relative !important;
}

.choices__inner {
    background-color: white !important;
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    color: #111827 !important;
    font-size: 14px !important;
    min-height: 42px !important;
    padding: 8px 12px !important;
    transition: all 0.2s ease !important;
}

.choices__inner:hover {
    border-color: #22c55e !important;
}

.choices__inner:focus,
.choices.is-focused .choices__inner {
    border-color: #22c55e !important;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1) !important;
}

.dark .choices__inner {
    background-color: #374151 !important;
    border-color: #4b5563 !important;
    color: #f9fafb !important;
}

.choices__list--dropdown {
    background-color: white !important;
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15) !important;
    z-index: 9999 !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin-top: 4px !important;
    max-height: 300px !important;
    overflow-y: auto !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) !important;
    transition: all 0.2s ease !important;
}

.choices.is-open .choices__list--dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Ensure proper container positioning */
.choices[data-type*="select-one"] {
    position: relative !important;
    overflow: visible !important;
}

.choices__list {
    overflow: visible !important;
}

.dark .choices__list--dropdown {
    background-color: #374151 !important;
    border-color: #4b5563 !important;
}

.choices__item--choice {
    color: #374151 !important;
    padding: 8px 12px !important;
    transition: all 0.2s ease !important;
}

.dark .choices__item--choice {
    color: #f9fafb !important;
}

.choices__item--choice.is-highlighted {
    background-color: #22c55e !important;
    color: white !important;
}

.choices__item--choice:hover {
    background-color: #f3f4f6 !important;
}

.dark .choices__item--choice:hover {
    background-color: #4b5563 !important;
}

/* Product card animations */
.product-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0); /* Force hardware acceleration */
}

.product-card:hover {
    transform: translateY(-6px) translateZ(0);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.12), 0 10px 20px -5px rgba(0, 0, 0, 0.08);
}

.product-card img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover img {
    transform: scale(1.08);
}

/* Product card content transitions */
.product-card .p-4 {
    transition: all 0.3s ease;
}

.product-card:hover .p-4 {
    background-color: rgba(34, 197, 94, 0.02);
}

/* Product price animation */
.product-card .text-primary {
    transition: all 0.2s ease;
}

.product-card:hover .text-primary {
    transform: scale(1.05);
    color: #16a34a;
}

/* Add to cart button animation */
.product-card button {
    transition: all 0.2s ease;
    transform: translateZ(0);
}

.product-card button:hover {
    transform: translateY(-1px) scale(1.05) translateZ(0);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Wishlist heart animation */
.product-card .fa-heart {
    transition: all 0.2s ease;
}

.product-card .fa-heart.favorited {
    color: #ef4444 !important;
    transform: scale(1.2);
}

/* Filter sidebar styling */
.filter-sidebar {
    position: sticky;
    top: 6rem;
    max-height: calc(100vh - 8rem);
    overflow-y: auto;
}

.filter-sidebar::-webkit-scrollbar {
    width: 4px;
}

.filter-sidebar::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.filter-sidebar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

.dark .filter-sidebar::-webkit-scrollbar-track {
    background: #374151;
}

.dark .filter-sidebar::-webkit-scrollbar-thumb {
    background: #6b7280;
}

/* Price range styling */
input[type="radio"]:checked + span {
    color: #22c55e;
    font-weight: 500;
}

input[type="checkbox"]:checked + span {
    color: #22c55e;
    font-weight: 500;
}

/* Product badge styling and animations */
.product-badge,
.product-card .rounded-full[class*="bg-"] {
    transition: all 0.2s ease;
}

.product-card:hover .rounded-full[class*="bg-"] {
    transform: scale(1.05);
}

/* Star rating animations */
.product-card .fa-star {
    transition: all 0.1s ease;
}

.product-card:hover .fa-star {
    transform: scale(1.1);
}

/* Product title animation */
.product-card h3 {
    transition: all 0.2s ease;
}

.product-card:hover h3 {
    color: #22c55e;
}

.product-badge {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.2));
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.dark .product-badge {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.3));
    border: 1px solid rgba(34, 197, 94, 0.4);
}

/* Sort and view buttons */
.view-button {
    transition: all 0.2s ease;
}

.view-button:hover {
    transform: translateY(-1px);
}

.view-button.active {
    background-color: #22c55e;
    color: white;
}

/* Pagination styling */
.pagination-btn {
    transition: all 0.2s ease;
}

.pagination-btn:hover {
    background-color: #f3f4f6;
    transform: translateY(-1px);
}

.dark .pagination-btn:hover {
    background-color: #374151;
}

.pagination-btn.active {
    background-color: #22c55e;
    color: white;
}

/* List view styling */
.products-list .product-card {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.products-list .product-card img {
    width: 150px;
    height: 100px;
    flex-shrink: 0;
}

.products-list .product-card .p-4 {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive design */
@media (max-width: 1024px) {
    .filter-sidebar {
        position: static;
        max-height: none;
    }
}

@media (max-width: 768px) {
    .product-card:hover {
        transform: none;
    }
    
    .product-card:hover img {
        transform: none;
    }
    
    .products-list .product-card {
        flex-direction: column;
    }
    
    .products-list .product-card img {
        width: 100%;
        height: 200px;
    }
    
    .products-list .product-card .p-4 {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Loading animation */
.products-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #22c55e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.dark .spinner {
    border-color: #374151;
    border-top-color: #22c55e;
} 
/* End */


/* Start:/local/templates/main/styles.css?175059439139*/
img.logo-img {
    max-width: 54px;
}
/* End */
/* /local/templates/main/css/styles.css?17494126469518 */
/* /local/templates/main/css/dashboard.css?17494091884103 */
/* /local/templates/main/css/catalog.css?17494104227458 */
/* /local/templates/main/styles.css?175059439139 */
