/* Enhanced Design Styles for Click Village - NEW MODERN DESIGN */

/* CSS Variables for consistent design */
:root {
    /* Modern Color Palette */
    --primary-green: #22c55e;
    --primary-green-dark: #16a34a;
    --primary-orange: #f97316;
    --primary-orange-dark: #ea580c;
    
    /* Background Gradients */
    --hero-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --green-gradient: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --orange-gradient: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    --blue-gradient: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-primary: 'Inter', 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 20px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Clean Hero Section - No Blue Colors */
.welcome-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
}

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

.welcome-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

/* Clean Hero Text */
.welcome-hero-txt {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out;
}

.welcome-hero-txt h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: var(--font-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.welcome-hero-txt .highlight {
    color: #22c55e;
}

.welcome-hero-txt .accent {
    color: #f97316;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Simple Search Form - No Box */
.hero-search-simple {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.search-fields {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.search-input-wrapper {
    position: relative;
    min-width: 250px;
    flex: 1;
}

.search-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 16px;
    font-family: var(--font-primary);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    transition: all 0.3s ease;
}

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

.search-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.search-btn-simple {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    color: var(--white);
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.search-btn-simple:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
    filter: brightness(1.1);
}

/* Simple Hero Action Buttons */
.hero-actions-simple {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    font-family: var(--font-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: var(--white);
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Simple Scroll Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-down span {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.scroll-down i {
    font-size: 20px;
}

/* Enhanced Categories Section - Overlapping Hero */
.categories-section {
    padding: 0;
    background: transparent;
    position: relative;
    margin-top: -15vh; /* Overlap 20% of hero section */
    z-index: 10;
}

.categories-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 0 auto;
    max-width: 1600px;
    padding: 60px 40px;
    flex-wrap: wrap;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-delay: var(--delay);
    animation-fill-mode: both;
    width: 280px;
    min-width: 260px;
    flex-shrink: 0;
    flex: 1;
    max-width: 320px;
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-2xl);
}

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

.category-content {
    position: relative;
}

.category-icon-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.category-image {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 197, 94, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-overlay i {
    color: var(--white);
    font-size: 32px;
    transform: scale(0);
    transition: transform 0.4s ease 0.1s;
}

.category-card:hover .category-overlay i {
    transform: scale(1);
}

.category-info {
    padding: 30px 25px;
    text-align: center;
    position: relative;
}

.category-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 12px;
    font-family: var(--font-primary);
    line-height: 1.3;
}

.category-info p {
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-arrow {
    color: var(--primary-green);
    font-size: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced Products Section */
.products-section {
    padding: var(--section-padding);
    background: var(--gray-800);
    color: var(--white);
    overflow: hidden;
}

.products-section .section-header h2 {
    color: var(--white);
}

.products-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.products-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.products-slider-clean {
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    padding: 20px 0;
}

.products-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 30px;
}

.product-slide {
    min-width: 350px;
    flex-shrink: 0;
}

.modern-product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.5s ease;
    height: 100%;
    position: relative;
}

.modern-product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.product-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.modern-product-card:hover .product-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 197, 94, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.modern-product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-btn {
    background: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--gray-800);
    transform: scale(0.8);
}

.modern-product-card:hover .overlay-btn {
    transform: scale(1);
}

.overlay-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--orange-gradient);
    color: var(--white);
    padding: 10px 15px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-md);
    transform: rotate(-3deg);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--green-gradient);
    color: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-content {
    padding: 30px 25px;
}

.product-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: var(--font-primary);
}

.product-farm {
    color: var(--primary-green);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-status {
    margin-bottom: 20px;
}

.status-available {
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.status-unavailable {
    color: #ef4444;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.product-actions {
    margin-top: 20px;
}

.btn-add-cart {
    width: 100%;
    background: var(--green-gradient);
    color: var(--white);
    border: none;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-primary);
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
}

/* Modern Slider Navigation */
.slider-nav-modern {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
}

.slider-nav-modern:hover {
    background: var(--green-gradient);
    transform: translateY(-50%) scale(1.1);
    border-color: transparent;
}

.slider-nav-modern.prev-btn {
    left: 10px;
}

.slider-nav-modern.next-btn {
    right: 10px;
}

/* Modern Slider Dots */
.slider-dots-modern {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    background: var(--primary-green);
    transform: scale(1.2);
}

/* Products CTA */
.products-cta {
    margin-top: 60px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: var(--white);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view-all:hover {
    background: var(--green-gradient);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
    text-decoration: none;
}

.btn-view-all i {
    transition: transform 0.4s ease;
}

.btn-view-all:hover i {
    transform: translateX(8px);
}

/* POTPUNO NOVO - Index Domaćinstva Grid */
#explore {
    padding: 100px 0;
    background: #ffffff;
}

#explore .container {
    max-width: 1200px;
}

.domaci-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
    margin-top: 50px;
}

.domaci-kartica {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.domaci-kartica:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.domaci-slika {
    height: 200px;
    overflow: hidden;
}

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

.domaci-kartica:hover .domaci-slika img {
    transform: scale(1.1);
}

.domaci-sadrzaj {
    padding: 25px;
}

.domaci-naziv {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.domaci-opis {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.domaci-dugme {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.domaci-dugme:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .domaci-grid {
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
    }
}

@media (max-width: 576px) {
    .domaci-grid {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
}

/* FLUID Products Slider - Novi dizajn */
.fluid-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 120px;
    z-index: 2;
}

.fluid-slider {
    overflow: hidden;
    border-radius: 20px;
    padding: 0;
}

.fluid-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    gap: 25px;
    padding: 20px;
}

.fluid-slide {
    min-width: 320px;
    flex-shrink: 0;
}

.product-card-fluid {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
}

.product-card-fluid:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.product-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-overlay-fluid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(34, 197, 94, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-fluid:hover .product-overlay-fluid {
    opacity: 1;
}

.view-btn-fluid {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 30px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.view-btn-fluid:hover {
    background: #fff;
    transform: scale(1.05);
}

.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.organic-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-info-fluid {
    padding: 25px 20px;
    text-align: center;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-farm-info {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.product-farm-info i {
    color: #22c55e;
}

.product-availability {
    margin-bottom: 15px;
}

.available {
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
}

.unavailable {
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

/* Fluid Navigation Arrows */
.fluid-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 10;
    font-size: 18px;
    color: #333;
}

.fluid-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    color: #22c55e;
}

.fluid-prev {
    left: 40px;
}

.fluid-next {
    right: 40px;
}

/* Fluid Dots */
.fluid-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.fluid-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.fluid-dot.active, .fluid-dot:hover {
    background: #22c55e;
    transform: scale(1.2);
}

/* Responsive za fluid slider */
@media (max-width: 768px) {
    .fluid-slider-wrapper {
        padding: 0 60px;
    }
    
    .fluid-prev {
        left: 20px;
    }
    
    .fluid-next {
        right: 20px;
    }
    
    .fluid-arrow {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .fluid-slider-wrapper {
        padding: 0 40px;
    }
    
    .fluid-slide {
        min-width: 280px;
    }
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-slider-wrapper {
        padding: 0 60px;
    }
    
        min-height: 350px;
    }
    
        height: 160px;
    }
    
        padding: 18px 14px;
    }
    
        font-size: 15px;
    }
    
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .welcome-hero {
        padding: 50px 0;
        min-height: 70vh;
    }
    
    .welcome-hero-txt h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .search-fields {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .search-input-wrapper {
        min-width: auto;
        width: 100%;
    }
    
    .search-btn-simple {
        width: 100%;
        padding: 18px 30px;
    }
    
    .hero-actions-simple {
        gap: 15px;
    }
    
    .btn-hero {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .scroll-down {
        bottom: 20px;
    }
    
    .products-slider-wrapper {
        padding: 0 30px;
    }
    
    .product-slide {
        min-width: 280px;
    }
    
    .product-image-container {
        height: 220px;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
    }
    
    .price-tag {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .manifestacija-date-badge {
        top: 10px;
        right: 10px;
        padding: 6px;
    }
    
    .date-day {
        font-size: 16px;
    }
    
    .date-month {
        font-size: 10px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .statistics-counter {
        flex-direction: column;
        align-items: center;
    }
}
    
    .welcome-hero-form {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .categories-section {
        margin-top: -12vh;
    }
    
    .categories-grid {
        flex-direction: row;
        gap: 25px;
        padding: 50px 25px;
        overflow-x: auto;
        justify-content: center;
        -webkit-overflow-scrolling: touch;
    }
    
    .categories-grid::-webkit-scrollbar {
        display: none;
    }
    
    .category-card {
        width: 220px;
        min-width: 210px;
        max-width: 220px;
        flex: none;
    }
    
    .category-icon-wrapper {
        height: 140px;
    }
    
    .category-image {
        width: 90px;
        height: 90px;
    }
    
    .category-info {
        padding: 25px 18px;
    }
    
    .category-info h3 {
        font-size: 17px;
    }
    
    .category-info p {
        font-size: 14px;
    }
    
    .products-slider-wrapper {
        padding: 0 40px;
    }
    
    .product-slide {
        min-width: 280px;
    }
    
        min-height: 320px;
    }
    
        height: 140px;
    }
    
        padding: 15px 12px;
    }
    
        font-size: 14px;
    }
    
        font-size: 11px;
    }
    
        flex-direction: column;
        gap: 6px;
    }
}

@media (max-width: 576px) {
    .welcome-hero {
        min-height: 60vh;
        padding: 30px 0;
    }
    
    .welcome-hero-txt h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .search-fields {
        padding: 0 15px;
    }
    
    .search-input {
        padding: 14px 16px 14px 40px;
        font-size: 14px;
    }
    
    .search-icon {
        left: 14px;
        font-size: 14px;
    }
    
    .search-btn-simple {
        padding: 16px 24px;
        font-size: 14px;
    }
    
    .hero-actions-simple {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn-hero {
        font-size: 13px;
        padding: 8px 16px;
        width: 200px;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .single-list-topics-content,
    .single-how-works,
    .single-explore-item,
    .single-blog-item {
        margin-bottom: 20px;
    }
}
    
    .welcome-hero-txt h1 {
        font-size: 2rem;
    }
    
    .welcome-hero-serch-box {
        padding: 20px;
        margin: 0 15px;
    }
    
    .search-header h3 {
        font-size: 20px;
    }
    
    .products-slider-wrapper {
        padding: 0 30px;
    }
    
    .slider-nav-modern {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .categories-section {
        margin-top: -10vh;
    }
    
    .categories-grid {
        gap: 20px;
        padding: 40px 20px;
        justify-content: center;
    }
    
    .category-card {
        width: 180px;
        min-width: 170px;
        max-width: 180px;
        flex: none;
    }
    
    .category-icon-wrapper {
        height: 120px;
    }
    
    .category-image {
        width: 80px;
        height: 80px;
    }
    
    .category-info {
        padding: 22px 15px;
    }
    
    .category-info h3 {
        font-size: 15px;
    }
    
    .category-info p {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

/* Section Header Enhancements */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 16px;
    font-family: var(--font-primary);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--green-gradient);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Statistics Section Updates */
.statistics {
    padding: 80px 0;
    background: var(--hero-gradient);
    color: var(--white);
}

.statistics-counter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.single-ststistics-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    min-width: 200px;
}

.single-ststistics-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

/* Blog Section Updates */
.blog {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.single-blog-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s ease;
    height: 100%;
}

.single-blog-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}