/* assets/css/style.css */

:root {
    --primary: #8B5A2B;
    --primary-dark: #6B3F1F;
    --primary-light: #B87C4A;
    --secondary: #D4A373;
    --dark: #2C1810;
    --light: #FDF8F2;
    --accent: #C44536;
    --gray: #6B7280;
    --light-gray: #F3F4F6;
    --white: #FFFFFF;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-colored: 0 20px 25px -5px rgba(139, 90, 43, 0.2), 0 10px 10px -5px rgba(139, 90, 43, 0.1);
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Animácie */
@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 fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(139, 90, 43, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(139, 90, 43, 0); }
    100% { box-shadow: 0 0 0 0 rgba(139, 90, 43, 0); }
}

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

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

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

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate {
    animation: fadeInUp 0.8s ease forwards;
}

/* ===== HEADER ===== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--dark);
    font-weight: 300;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-colored);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--light-gray);
    color: var(--dark);
    border: 2px solid var(--light-gray);
}

.btn-secondary:hover {
    background: var(--gray);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.btn-danger {
    background: var(--accent);
    color: var(--white);
}

.btn-danger:hover {
    background: #a33d2f;
    transform: translateY(-2px);
}

.btn-success {
    background: #28a745;
    color: var(--white);
}

.btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
}

.btn-warning {
    background: #ffc107;
    color: var(--dark);
}

.btn-warning:hover {
    background: #e0a800;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

/* Hero Buttons */
.btn-hero {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(139, 90, 43, 0.4);
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 35px rgba(139, 90, 43, 0.6);
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-5px) scale(1.02);
}

/* CTA Button */
.btn-cta {
    background: var(--white);
    color: var(--primary);
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s;
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
}

.btn-cta:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px) scale(1.02);
    gap: 1.5rem;
    box-shadow: var(--shadow-xl);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--white);
    color: var(--primary);
    padding: 0.5rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(139,90,43,0.1);
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: var(--light);
    padding: 0.3rem 1.5rem;
    border-radius: 50px;
}

/* ===== PAGE HEADER ===== */
.page-header-modern {
    background: linear-gradient(135deg, rgba(44,24,16,0.95) 0%, rgba(139,90,43,0.85) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0 4rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0 L60 30 L30 60 L0 30 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 60px 60px;
    opacity: 0.1;
}

.page-header-modern h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
    position: relative;
    z-index: 2;
}

.page-header-modern p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.2s both;
    position: relative;
    z-index: 2;
}

.page-header-modern .header-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    animation: bounce 2s infinite;
    position: relative;
    z-index: 2;
}

/* ===== HERO SECTION ===== */
.hero-premium {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 0.3s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(44,24,16,0.85) 0%, 
        rgba(139,90,43,0.7) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    z-index: 2;
    animation: heroReveal 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroReveal {
    0% { 
        opacity: 0; 
        transform: translateY(50px) scale(0.95);
        filter: blur(10px);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-title-line {
    display: block;
    color: var(--secondary);
    font-size: 0.5em;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    transition: opacity 0.3s;
    cursor: pointer;
}

.hero-scroll:hover {
    opacity: 1;
}

.hero-scroll i {
    animation: scrollBounce 2s infinite;
    font-size: 1.5rem;
}

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

/* ===== STORY SECTION ===== */
.story-premium {
    position: relative;
    padding: 5rem 0;
    background: var(--white);
    overflow: hidden;
}

.story-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(139,90,43,0.03) 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    z-index: 1;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.story-label {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--light);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary);
}

.story-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--dark);
    margin-bottom: 1.8rem;
    line-height: 1.3;
}

.story-highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.story-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(212, 163, 115, 0.2);
    z-index: -1;
}

.story-text {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.1rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(139,90,43,0.1);
    border-bottom: 1px solid rgba(139,90,43,0.1);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-label i {
    color: var(--primary);
    font-size: 1rem;
}

.story-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.story-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1s;
}

.story-image-wrapper:hover .story-image {
    transform: scale(1.05);
}

.story-image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--white);
    padding: 1.2rem 1.8rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border-left: 5px solid var(--primary);
}

.story-image-badge .year {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: block;
}

.story-image-badge .text {
    color: var(--gray);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ===== TIMELINE ===== */
.timeline-modern {
    padding: 5rem 0;
    position: relative;
    background: var(--white);
}

.timeline-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline-item-modern {
    display: flex;
    justify-content: flex-end;
    padding: 2rem 0;
    position: relative;
}

.timeline-item-modern:nth-child(even) {
    justify-content: flex-start;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 0 0 0 rgba(139, 90, 43, 0.5);
    animation: pulse 2s infinite;
}

.timeline-content-modern {
    width: 45%;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid rgba(139,90,43,0.1);
    transition: all 0.3s;
}

.timeline-content-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-colored);
    border-color: var(--primary);
}

.timeline-item-modern:nth-child(even) .timeline-content-modern {
    margin-right: auto;
}

.timeline-item-modern:nth-child(odd) .timeline-content-modern {
    margin-left: auto;
}

.timeline-year-modern {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.timeline-content-modern h3 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.timeline-content-modern p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.timeline-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* ===== PRODUCT SECTIONS ===== */
.products-section-modern,
.showcase-premium {
    padding: 5rem 0;
    background: var(--light);
}

.product-grid-modern,
.product-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.product-card-modern,
.product-card-premium {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s;
    position: relative;
    border: 1px solid rgba(139,90,43,0.1);
}

.product-card-modern:hover,
.product-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-colored);
    border-color: var(--primary);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(196,69,54,0.3);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.product-badge.hit {
    background: #ff6b6b;
    right: auto;
    left: 1rem;
}

.product-image-modern,
.product-media {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: var(--light-gray);
}

.product-image-modern img,
.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.product-actions {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    opacity: 0;
    transition: all 0.3s;
}

.product-card-modern:hover .product-actions {
    opacity: 1;
    bottom: 1.5rem;
}

.product-action-btn {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-action-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.product-content-modern,
.product-content-premium {
    padding: 2rem;
    background: var(--white);
}

.product-category {
    color: var(--primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.product-content-modern h3,
.product-content-premium h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
    font-weight: 600;
}

.product-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.95rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--light-gray);
    padding-top: 1.2rem;
}

.product-price-modern,
.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.product-link-modern,
.product-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.product-link-modern:hover,
.product-link:hover {
    gap: 1rem;
    color: var(--primary);
}

/* Product Detail */
.product-detail {
    padding: 4rem 0;
    background: var(--white);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-gallery {
    position: relative;
}

.main-image {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
}

.thumbnail {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    background: var(--light-gray);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary);
    transform: scale(1.05);
}

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

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-gray), #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 2rem;
}

.product-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.product-meta {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light);
    border-radius: 15px;
    border-left: 4px solid var(--primary);
}

.meta-item {
    display: flex;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

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

.meta-label {
    width: 120px;
    font-weight: 600;
    color: var(--dark);
}

.meta-value {
    flex: 1;
    color: var(--gray);
}

.product-price-large {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin: 20px 0;
}

.old-price {
    font-size: 1.2rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-left: 10px;
    font-weight: normal;
}

.sale-price {
    color: var(--accent);
    font-size: 2rem;
    font-weight: 700;
}

.product-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge {
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-novinka {
    background: #cce5ff;
    color: #004085;
}

.badge-odporucane {
    background: #fff3cd;
    color: #856404;
}

.badge-stock {
    background: #d4edda;
    color: #28a745;
}

.badge-out-of-stock {
    background: #f8d7da;
    color: #dc3545;
}

.badge-sale {
    background: var(--accent);
    color: white;
}

.product-parameters {
    margin: 30px 0;
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
}

.parameters-title {
    padding: 15px 20px;
    background: var(--primary);
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.parameters-grid {
    padding: 20px;
}

.parameter-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.parameter-row:last-child {
    border-bottom: none;
}

.parameter-name {
    width: 150px;
    font-weight: 600;
    color: var(--dark);
}

.parameter-value {
    flex: 1;
    color: var(--gray);
}

.product-document {
    margin: 30px 0;
    padding: 20px;
    background: var(--light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--light-gray);
    flex-wrap: wrap;
}

.document-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.document-info {
    flex: 1;
}

.document-info strong {
    display: block;
    color: var(--dark);
    margin-bottom: 5px;
}

.document-info small {
    color: var(--gray);
}

.document-download {
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.document-download:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===== FILTER SECTION ===== */
.filter-section {
    padding: 3rem 0;
    background: var(--white);
}

.filter-premium {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(139,90,43,0.1);
    transition: all 0.3s ease;
}

.filter-premium.scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.filter-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    transition: padding 0.3s ease;
}

.filter-premium.scrolled .filter-container {
    padding: 0.5rem 2rem;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-premium.scrolled .filter-header {
    margin-bottom: 0.5rem;
}

.filter-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-title h2 {
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 700;
    margin: 0;
    transition: font-size 0.3s ease;
}

.filter-premium.scrolled .filter-title h2 {
    font-size: 1rem;
}

.filter-title span {
    background: var(--primary);
    color: var(--white);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-premium.scrolled .filter-title span {
    font-size: 0.7rem;
    padding: 0.15rem 0.6rem;
}

.filter-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gray);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-premium.scrolled .filter-info {
    font-size: 0.8rem;
}

.filter-info i {
    color: var(--primary);
    font-size: 1rem;
}

.filter-buttons-premium {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.filter-premium.scrolled .filter-buttons-premium {
    gap: 0.5rem;
}

.filter-btn-premium {
    padding: 0.7rem 1.6rem;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    text-decoration: none;
    color: var(--gray);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s;
    background: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.filter-premium.scrolled .filter-btn-premium {
    padding: 0.5rem 1.3rem;
    font-size: 0.8rem;
}

.filter-btn-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(139, 90, 43, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 1;
}

.filter-btn-premium:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.filter-btn-premium:hover::before {
    width: 300px;
    height: 300px;
}

.filter-btn-premium.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-colored);
}

.filter-btn-premium i {
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.filter-premium.scrolled .filter-btn-premium i {
    font-size: 0.8rem;
}

.filter-btn-premium span {
    position: relative;
    z-index: 2;
}

/* ===== FEATURES SECTION ===== */
.features-premium {
    padding: 5rem 0;
    background: var(--white);
}

.features-grid-premium {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card-premium {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 30px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: all 0.4s;
    border: 1px solid rgba(139,90,43,0.05);
}

.feature-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.4s;
    border: 2px solid transparent;
}

.feature-card-premium:hover .feature-icon-wrapper {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(180deg) scale(1.1);
    border-color: var(--secondary);
}

.feature-card-premium h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.feature-card-premium p {
    color: var(--gray);
    line-height: 1.7;
}

/* ===== REFERENCES SECTION ===== */
.references-premium,
.gallery-premium {
    padding: 5rem 0;
    background: var(--light);
}

.references-grid-premium,
.gallery-grid-premium {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item-premium,
.reference-card-premium {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.4s;
    border: 1px solid rgba(139,90,43,0.1);
}

.gallery-item-premium:hover,
.reference-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-colored);
    border-color: var(--primary);
}

.gallery-item-premium.large,
.reference-card-premium.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1/1;
}

.gallery-item-premium img,
.reference-card-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.gallery-item-premium:hover img,
.reference-card-premium:hover img {
    transform: scale(1.1);
}

.gallery-overlay-premium,
.reference-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44,24,16,0.95));
    color: var(--white);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s;
}

.gallery-item-premium:hover .gallery-overlay-premium,
.reference-card-premium:hover .reference-overlay {
    transform: translateY(0);
}

.gallery-overlay-premium h3,
.reference-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.gallery-overlay-premium p,
.reference-overlay p {
    opacity: 0.9;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.gallery-overlay-premium .meta,
.reference-overlay .meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--secondary);
}

.gallery-overlay-premium .meta i,
.reference-overlay .meta i {
    margin-right: 0.3rem;
}

.category-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

/* ===== STATS SECTION ===== */
.stats-premium {
    padding: 4rem 0;
    background: var(--white);
    border-top: 1px solid rgba(139,90,43,0.1);
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--light);
    border-radius: 20px;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CTA SECTION ===== */
.cta-premium {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0 L60 30 L30 60 L0 30 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 60px 60px;
    opacity: 0.3;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-stat-item {
    text-align: center;
}

.cta-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.cta-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== QUOTE SECTION ===== */
.quote-modern {
    padding: 5rem 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.quote-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.quote-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.quote-box blockquote {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--dark);
    font-style: italic;
    margin: 2rem 0;
}

.quote-box cite {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ===== TEAM SECTION ===== */
.team-modern {
    padding: 5rem 0;
    background: var(--white);
}

.team-grid-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 1px solid rgba(139,90,43,0.05);
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-colored);
    border-color: var(--primary);
}

.team-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(44,24,16,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.team-social {
    display: flex;
    gap: 0.8rem;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.team-info p {
    color: var(--gray);
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact-hero {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.contact-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0 L60 30 L30 60 L0 30 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 60px 60px;
    opacity: 0.1;
}

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

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-info-premium {
    padding: 4rem 0;
    background: var(--light);
}

.contact-info-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s;
    border: 1px solid rgba(139,90,43,0.05);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-colored);
    border-color: var(--primary);
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.4s;
    border: 2px solid transparent;
}

.contact-info-card:hover .contact-info-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(180deg) scale(1.1);
    border-color: var(--secondary);
}

.contact-info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0.3rem;
}

.contact-info-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-main {
    padding: 4rem 0;
    background: var(--white);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-premium {
    background: var(--white);
    border-radius: 40px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(139,90,43,0.1);
}

.contact-form-premium h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-form-premium > p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.form-group-premium {
    margin-bottom: 1.5rem;
}

.form-group-premium label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group-premium label span {
    color: var(--accent);
}

.form-control-premium {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--light);
    font-family: var(--font-sans);
}

.form-control-premium:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(139, 90, 43, 0.1);
}

.form-control-premium.error {
    border-color: var(--accent);
}

.form-select-premium {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    font-size: 1rem;
    background: var(--light);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238B5A2B' 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.2rem;
}

.form-select-premium:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(139, 90, 43, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 2rem 0;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.2rem;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-submit {
    background: var(--primary);
    color: var(--white);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    box-shadow: var(--shadow-colored);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.company-info-premium {
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    border-radius: 40px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(139,90,43,0.1);
}

.company-info-premium h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.company-details {
    margin-bottom: 2rem;
}

.company-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139,90,43,0.1);
}

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

.detail-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.detail-content {
    flex: 1;
}

.detail-content strong {
    display: block;
    color: var(--dark);
    margin-bottom: 0.3rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-content span {
    color: var(--gray);
    font-size: 1rem;
}

.detail-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.detail-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.business-hours {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.business-hours h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-hours h3 i {
    color: var(--primary);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(139,90,43,0.1);
}

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

.hours-day {
    font-weight: 600;
    color: var(--dark);
}

.hours-time {
    color: var(--primary);
    font-weight: 500;
}

.map-section {
    padding: 4rem 0;
    background: var(--light);
}

.map-container-premium {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-header h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.map-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.map-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(139,90,43,0.1);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
}

.map-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--dark);
    border-left: 4px solid var(--primary);
}

.map-badge i {
    color: var(--primary);
    font-size: 1.2rem;
}

.direction-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--dark);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s;
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.direction-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 1;
}

.direction-btn:hover {
    background: var(--primary);
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.direction-btn:hover::before {
    width: 300px;
    height: 300px;
}

.direction-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s;
    position: relative;
    z-index: 2;
}

.direction-btn span {
    position: relative;
    z-index: 2;
}

.direction-btn:hover i {
    transform: translateX(5px) scale(1.1);
}

.direction-btn-light {
    background: var(--white);
    color: var(--dark);
}

.direction-btn-light:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== EMPTY STATE ===== */
.empty-state {
    grid-column: 1/-1;
    text-align: center;
    padding: 4rem;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.empty-state i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ===== PAGINATION ===== */
.pagination-modern {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    background: var(--white);
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-weight: 600;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.pagination-btn.next {
    width: auto;
    padding: 0 2rem;
    gap: 0.5rem;
}

/* ===== MODAL ===== */
.modal-premium {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    overflow: auto;
    padding: 2rem;
}

.modal-premium.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 1000px;
    width: 100%;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    animation: modalSlideIn 0.4s;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.modal-close:hover {
    background: var(--accent);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    min-height: 500px;
}

.modal-image {
    height: 100%;
    min-height: 400px;
    background: var(--light);
}

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

.modal-info {
    padding: 2.5rem;
    background: var(--white);
}

.modal-info h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.modal-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    flex-wrap: wrap;
}

.modal-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
}

.modal-meta-item i {
    color: var(--primary);
}

.modal-description {
    margin-bottom: 2rem;
}

.modal-description h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.modal-description p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.modal-btn {
    flex: 1;
    min-width: 150px;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.95rem;
}

.modal-btn-primary {
    background: var(--primary);
    color: var(--white);
}

.modal-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.modal-btn-secondary {
    background: var(--light);
    color: var(--dark);
}

.modal-btn-secondary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

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

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

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

/* ===== ALERTS ===== */
.alert-premium {
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 0.5s ease;
}

.alert-premium i {
    font-size: 1.3rem;
}

.alert-success-premium {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error-premium {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid var(--accent);
}

.alert-info-premium {
    background: #cce5ff;
    color: #004085;
    border-left: 4px solid #007bff;
}

.alert-warning-premium {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.message {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideIn 0.3s;
    border-left: 4px solid;
    box-shadow: var(--shadow-sm);
}

.message.success {
    background: #d4edda;
    color: #155724;
    border-left-color: #28a745;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border-left-color: #dc3545;
}

.message.info {
    background: #cce5ff;
    color: #004085;
    border-left-color: #007bff;
}

.message.warning {
    background: #fff3cd;
    color: #856404;
    border-left-color: #ffc107;
}

.message .close-btn {
    margin-left: auto;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    background: none;
    border: none;
    font-size: 1rem;
}

.message .close-btn:hover {
    opacity: 1;
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    background: white;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
    animation: toastSlideIn 0.3s;
    border-left: 4px solid;
}

.toast.success {
    border-left-color: #28a745;
}

.toast.error {
    border-left-color: #dc3545;
}

.toast.info {
    border-left-color: #007bff;
}

.toast.warning {
    border-left-color: #ffc107;
}

.toast i {
    font-size: 1.2rem;
}

.toast.success i {
    color: #28a745;
}

.toast.error i {
    color: #dc3545;
}

.toast-close {
    margin-left: auto;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    background: none;
    border: none;
    font-size: 1rem;
}

.toast-close:hover {
    opacity: 1;
}

/* ===== LOADING STATES ===== */
.loading-spinner {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid rgba(139,90,43,0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

.loading-shimmer {
    animation: shimmer 2s infinite;
    background: linear-gradient(to right, var(--light-gray) 4%, var(--white) 25%, var(--light-gray) 36%);
    background-size: 1000px 100%;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 6px;
    border: 3px solid var(--light);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== FOOTER ===== */
.footer-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, var(--dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 4rem 0 0;
    margin-top: 4rem;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0 L60 30 L30 60 L0 30 Z" fill="rgba(255,255,255,0.02)"/></svg>');
    background-size: 60px 60px;
    opacity: 0.3;
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-grid-modern {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-about h3 span {
    color: var(--secondary);
    font-weight: 300;
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    color: var(--white);
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links ul li a i {
    font-size: 0.8rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.footer-links ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links ul li a:hover i {
    transform: translateX(3px);
}

.footer-contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: rgba(255,255,255,0.7);
}

.contact-item i {
    width: 20px;
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.contact-item p,
.contact-item div {
    line-height: 1.6;
}

.contact-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary);
}

.footer-bottom-modern {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
}

.footer-copyright p {
    margin-bottom: 0.3rem;
}

.footer-copyright small {
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .footer-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .story-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .cta-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-image {
        min-height: 400px;
    }
    
    .timeline-modern::before {
        left: 30px;
    }
    
    .timeline-item-modern,
    .timeline-item-modern:nth-child(even) {
        justify-content: flex-start;
        padding-left: 60px;
    }
    
    .timeline-dot {
        left: 30px;
        transform: translateX(0);
    }
    
    .timeline-content-modern {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .product-grid-modern,
    .product-grid-premium,
    .gallery-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .features-grid-premium,
    .team-grid-modern,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        opacity: 1;
        bottom: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .filter-container {
        padding: 0.8rem 1rem;
    }
    
    .filter-premium.scrolled .filter-container {
        padding: 0.5rem 1rem;
    }
    
    .filter-buttons-premium {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
    }
    
    .filter-btn-premium {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .filter-premium.scrolled .filter-btn-premium {
        padding: 0.4rem 0.9rem;
        font-size: 0.75rem;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .main-image {
        height: 300px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .footer-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-modern {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .modal-info {
        padding: 2rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .quote-box {
        padding: 2rem;
    }
    
    .quote-box blockquote {
        font-size: 1.2rem;
    }
    
    .map-badge {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .company-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .filter-btn-premium {
        width: 100%;
        justify-content: center;
    }
    
    .products-header-right {
        flex-direction: column;
        width: 100%;
    }
    
    .sort-select {
        width: 100%;
    }
    
    .view-options {
        width: 100%;
        justify-content: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* ===== PRIDAŤ NA KONIEC SUBORA style.css ===== */

/* Reset pre main */
main {
    min-height: 50vh;
}

/* Container helper */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Loading spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

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

/* Error states */
.error {
    border-color: #dc3545 !important;
}

.error-message {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

/* Success states */
.success-message {
    color: #28a745;
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

/* Image placeholder */
.image-placeholder {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 2rem;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}