/**
 * ICH Poland - Minimalist Theme
 * Czarno-biały, clean, hover tylko kolor
 * 
 * @package ICH_Theme
 * @version 3.0 - MINIMALIST
 */

/* ===========================================
   RESET & COLORS
   =========================================== */

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

:root {
    --primary: #00B0E8;
    --black: #000000;
    --gray: #666666;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

/* ===========================================
   TYPOGRAPHY - MINIMALIST
   =========================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    font-weight: 300;
}

h2 {
    font-size: 2.5rem;
    font-weight: 300;
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
}

p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--gray);
}

/* ===========================================
   HEADER
   =========================================== */

.site-header {
    background: #FFFFFF;
    border-bottom: 1px solid #E8E8E8;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.site-logo img {
    max-height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.site-logo img:hover {
    transform: scale(1.05);
}

/* ===========================================
   DESKTOP NAVIGATION
   =========================================== */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
    height: 100%;
    align-items: center;
}

.main-navigation > ul > li {
    position: relative;
    height: 83px;
    display: flex;
    align-items: center;
}

.main-navigation > ul > li > a {
    color: #333333;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 0 25px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.main-navigation > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #00B0E8;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-navigation > ul > li > a:hover::after,
.main-navigation > ul > li.current-menu-item > a::after {
    transform: scaleX(1);
}

.main-navigation > ul > li > a:hover {
    color: #00B0E8;
}

.main-navigation > ul > li.current-menu-item > a {
    color: #00B0E8;
}

/* ===========================================
   DROPDOWN
   =========================================== */

.main-navigation ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    border: none;
    min-width: 260px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 999;
    margin-top: 0;
}

.main-navigation > ul > li:hover > ul {
    display: block;
    animation: fadeInDown 0.3s ease;
}

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

.main-navigation ul ul a {
    display: block;
    padding: 14px 30px;
    color: #333333;
    font-size: 14px;
    text-transform: none;
    font-weight: 400;
    background: #FFFFFF;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.main-navigation ul ul a:hover {
    color: #00B0E8;
    background: #F0F8FF;
    border-left-color: #00B0E8;
    padding-left: 35px;
    font-weight: 500;
}

.main-navigation ul ul li {
    position: relative;
    margin: 0;
}

.main-navigation ul ul li:not(:last-child) {
    border-bottom: 1px solid #F0F0F0;
}

.main-navigation ul ul ul {
    top: 0;
    left: 99%;
    margin-top: 0;
    margin-left: 2px;
}

.main-navigation ul ul li:hover > ul {
    display: block;
}

.main-navigation > ul > li.menu-item-has-children > a::before {
    content: '▾';
    font-size: 10px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.main-navigation > ul > li.menu-item-has-children:hover > a::before {
    transform: rotate(180deg);
}

.main-navigation ul ul li.menu-item-has-children > a::after {
    content: '→';
    position: absolute;
    right: 20px;
    font-size: 12px;
    color: #999999;
}

.main-navigation ul ul li.menu-item-has-children > a:hover::after {
    color: #00B0E8;
    right: 15px;
}

/* ===========================================
   MOBILE MENU
   =========================================== */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===========================================
   MOBILE RESPONSIVE NAVIGATION
   =========================================== */

@media (max-width: 992px) {
    .site-header {
        padding: 15px 0;
    }
    
    .header-inner {
        height: auto;
        padding: 0 30px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        top: 25px;
        right: 30px;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        background: #FFFFFF;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 30px 40px;
        gap: 0;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
        transition: right 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    .main-navigation > ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        height: auto;
    }
    
    .main-navigation > ul > li {
        width: 100%;
        border-bottom: 1px solid #E8E8E8;
        height: auto;
    }
    
    .main-navigation > ul > li > a {
        display: block;
        padding: 18px 0;
        font-size: 15px;
        color: #333333;
        height: auto;
    }
    
    .main-navigation > ul > li > a::after {
        display: none;
    }
    
    .main-navigation ul ul {
        display: none !important;
        position: static !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 0 0 20px !important;
        margin: 0 !important;
        min-width: auto !important;
        width: 100% !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    
    .main-navigation li.open > ul {
        display: block !important;
        max-height: 1000px;
        margin-top: 10px !important;
    }
    
    .main-navigation ul ul li {
        border-bottom: none;
        margin-bottom: 8px;
    }
    
    .main-navigation ul ul a {
        display: block !important;
        padding: 12px 15px !important;
        color: #555555 !important;
        font-size: 14px !important;
        text-transform: none !important;
        background: #F8F9FA !important;
        border-radius: 6px;
        border-left: 3px solid transparent !important;
    }
    
    .main-navigation ul ul a:hover {
        background: #E8F4FD !important;
        color: #00B0E8 !important;
        border-left-color: #00B0E8 !important;
    }
    
    .main-navigation ul ul ul {
        padding-left: 15px !important;
    }
    
    .main-navigation ul ul ul a {
        background: #EEEEEE !important;
        padding-left: 20px !important;
    }
    
    .submenu-toggle {
        position: absolute;
        right: 0;
        top: 0;
        width: 50px;
        height: 54px;
        background: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: #333333;
        z-index: 10;
        font-weight: 300;
    }
    
    .submenu-toggle::before {
        content: '+';
        transition: transform 0.3s ease;
    }
    
    .submenu-toggle.open::before {
        content: '−';
    }
    
    .main-navigation > ul > li.menu-item-has-children > a::before,
    .main-navigation ul ul li.menu-item-has-children > a::after {
        display: none;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
    }
}

@media (min-width: 993px) {
    .submenu-toggle {
        display: none !important;
    }
}

@media (max-width: 1200px) and (min-width: 993px) {
    .main-navigation > ul > li > a {
        padding: 0 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .main-navigation {
        width: 280px;
        padding: 80px 25px 30px;
    }
    
    .header-inner {
        padding: 0 20px;
    }
}

@media (max-width: 1300px) and (min-width: 1025px) {
    .header-inner {
        padding: 0 20px;
    }

    .main-navigation {
        gap: 30px;
    }

    .main-navigation ul {
        gap: 25px;
    }

    .main-navigation > ul > li > a {
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }

    .site-logo img {
        max-height: 45px;
    }
}

@media (max-width: 1100px) and (min-width: 993px) {
    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding: 10px 20px;
    }

    .site-logo {
        flex: 1 1 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .main-navigation {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .main-navigation > ul > li > a {
        font-size: 0.9rem;
    }
}

/* ===========================================
   HERO VIDEO 
   =========================================== */

.hero-video-fullwidth {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 368px;
    max-height: 700px;
    overflow: hidden;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.hero-video-fullwidth video {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain !important;
    display: block;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.hero-video-fullwidth + * {
    margin-top: 0 !important;
}

.hero-text-overlay,
div.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 80px;
    right: 80px;
    z-index: 10;
    color: var(--white);
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

.hero-text-overlay::before,
.hero-text-overlay::after {
    display: none !important;
}

.hero-text-overlay h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--black);
    max-width: 800px;
}

.hero-text-overlay .tagline {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-hero {
    padding: 16px 40px;
    font-size: 0.9rem;
    font-weight: 400;
    border: 1px solid var(--white);
    background: transparent;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero:hover {
    background: var(--white);
    color: var(--black);
}

@media (max-width: 768px) {
    .hero-video-fullwidth {
        min-height: 300px;
        max-height: 500px;
    }
    
    .hero-video-fullwidth video {
        max-height: 500px;
    }
    
    .hero-text-overlay {
        left: 40px;
        right: 40px;
        bottom: 40px;
    }
    
    .hero-text-overlay h1 {
        font-size: 2.5rem;
    }
}

/* ===========================================
   SECTIONS - MINIMAL SPACING
   =========================================== */

.section-fullwidth {
    padding: 120px 40px;
    width: 100%;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.container-product {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 60px;
    font-weight: 300;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    text-align: center;
    margin-top: -40px;
    margin-bottom: 80px;
}

/* ===========================================
   O NAS
   =========================================== */

.about-fullwidth {
    padding: 120px 40px;
    background: var(--white);
    border-top: 1px solid #E0E0E0;
}

.about-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-inner h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 40px;
}

.about-inner p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 30px;
}

/* ===========================================
   STATYSTYKI
   =========================================== */

.stats-fullwidth {
    padding: 100px 40px;
    background: var(--light-gray);
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    text-align: center;
}

.stat-box {
    color: var(--black);
}

.stat-number {
    font-size: 4rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1;
}

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

/* ===========================================
   KAFELKI SZYBKIEGO DOSTĘPU Z TŁO OBRAZÓW
   =========================================== */

.quick-links-fullwidth {
    width: 100%;
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-link-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    padding: 40px 20px;
    text-decoration: none;
    color: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    overflow: hidden;
    min-height: 280px;
}

.quick-link-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--bg-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    transition: all 0.5s ease;
    z-index: 1;
}

.quick-link-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(248,249,250,0.75) 100%);
    z-index: 2;
    transition: all 0.5s ease;
}

.quick-link-box:hover::before {
    opacity: 1;
    transform: scale(1.05);
}

.quick-link-box:hover::after {
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
}

.quick-link-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    border-color: #00a9c7;
}

.quick-link-content {
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
}

.quick-link-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #00a9c7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255,255,255,0.8);
    transition: all 0.4s ease;
}

.quick-link-content p {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
    transition: all 0.4s ease;
}

.quick-link-box:hover .quick-link-content h3 {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    transform: scale(1.05);
}

.quick-link-box:hover .quick-link-content p {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
    .quick-link-box {
        min-height: 220px;
        padding: 30px 15px;
    }
    
    .quick-link-content h3 {
        font-size: 18px;
    }
    
    .quick-link-content p {
        font-size: 14px;
    }
}

/* ===========================================
   UKRYJ IKONY
   =========================================== */

.section-badge,
.service-icon,
.additional-icon,
.doc-icon,
.spec-icon,
.stat-icon,
.empty-icon,
.contact-icon,
.info-icon,
.zoom-icon,
.step-number,
.title-icon {
    display: none !important;
}

/* ===========================================
   MASZYNY GRID
   =========================================== */

.category-fullwidth {
    padding: 120px 40px;
    background: var(--white);
}

.category-header-centered {
    text-align: center;
    margin-bottom: 80px;
}

.category-header-centered h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 15px;
}

.category-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
}

.machines-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===========================================
   MACHINE CARD
   =========================================== */

.machine-card-ich {
    background: var(--white);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.machine-card-ich:hover {
    transform: translateY(-5px);
}

.machine-image-box {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: var(--light-gray);
    margin-bottom: 30px;
}

.machine-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    filter: none !important;
    -webkit-filter: none !important;
}

.machine-card-ich:hover .machine-image-box img {
    opacity: 1 !important;
}

.machine-tag {
    display: none;
}

.machine-content-box {
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.machine-producer-tag {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 400;
}

.machine-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.3;
}

.machine-title a {
    color: var(--black);
}

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

.machine-desc {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.machine-link-box {
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
    margin-top: auto;
}

.machine-link-btn {
    color: var(--black);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.machine-link-btn:hover {
    color: var(--primary);
}

.machine-link-btn::after {
    content: ' →';
}

.machine-card-ich,
.service-card,
.spec-item,
.additional-item,
.document-card,
.faq-item,
.contact-card {
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
}

.machine-card-ich,
.service-card {
    border-bottom: 1px solid #E0E0E0 !important;
    padding-bottom: 40px;
}

/* ===========================================
   ARCHIVE MASZYNY
   =========================================== */

.archive-maszyny-hero {
    position: relative;
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 50%, #006064 100%);
    padding: 60px 0;
    overflow: hidden;
}

.archive-maszyny-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.archive-maszyny-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.archive-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.hero-machine-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}

.hero-machine-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.archive-maszyny-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin: 0 0 12px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.15);
}

.archive-maszyny-hero .subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    margin: 0;
    text-shadow: 0 1px 8px rgba(0,0,0,0.1);
}

.category-machines-section {
    padding: 80px 40px;
    background: var(--white);
    border-bottom: 1px solid #E0E0E0;
}

.category-machines-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.category-header-highlighted {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--black);
    position: relative;
}

.category-title-large {
    font-size: 3rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: none !important;
    padding: 0 !important;
    display: inline-block;
}

.category-count {
    color: #00B0E8;
    font-size: 1.5rem;
    font-weight: 600;
}

.category-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.machines-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.machine-card-compact {
    background: var(--white);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border-radius: 0;
}

.machine-card-compact:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.machine-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.machine-image-compact {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: var(--light-gray);
    margin-bottom: 20px;
}

.machine-image-compact img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.machine-card-compact:hover .machine-image-compact img {
    opacity: 0.85;
}

.machine-content-compact {
    padding: 0 15px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.machine-producer-compact {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 400;
    display: block;
}

.machine-title-compact {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.3;
}

.machine-card-compact:hover .machine-title-compact {
    color: var(--primary);
}

.machine-model-compact {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

.machine-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.machine-placeholder {
    font-size: 4rem;
    color: #ccc;
}

.machine-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.machine-producer {
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.machine-card-title {
    font-size: 1.2rem;
    margin: 0;
    color: #333;
    font-weight: 700;
    line-height: 1.3;
}

.machine-category {
    font-size: 0.9rem;
    color: #666;
    padding: 6px 12px;
    background: #f0f0f0;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
}

.machine-card-btn {
    color: #667eea;
    font-weight: 600;
    margin-top: auto;
    padding-top: 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.machine-card-compact:hover .machine-card-btn {
    color: #5568d3;
    transform: translateX(5px);
}

/* ===========================================
   FILTERS
   =========================================== */

.machines-filters {
    background: #f8f9fa;
    padding: 30px 20px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.filters-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.filter-group input[type="text"],
.filter-group select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.filter-group input[type="text"]:focus,
.filter-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.filter-actions {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.btn-filter,
.btn-reset {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-filter.btn-cyan {
    background: #667eea;
    color: white;
}

.btn-filter.btn-cyan:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-reset {
    background: white;
    color: #666;
    border: 2px solid #e0e0e0;
    display: inline-block;
}

.btn-reset:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

.active-filters {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 0 20px;
    background: var(--light-gray);
    border-bottom: 1px solid #E0E0E0;
}

.active-filters-inner {
    background: #e3f2fd;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.active-filters strong {
    color: #1976d2;
    margin-right: 10px;
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-tag {
    background: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid #E0E0E0;
    color: var(--black);
}

.filter-tag a {
    color: #d32f2f;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.filter-tag a:hover {
    color: #b71c1c;
}

.clear-all {
    color: #d32f2f;
    text-decoration: none;
    font-weight: 600;
    margin-left: auto;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clear-all:hover {
    text-decoration: underline;
}

.results-header {
    margin-bottom: 40px;
    text-align: center;
}

.results-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.results-count strong {
    color: #667eea;
    font-size: 1.3rem;
}

.empty-state-section {
    padding: 120px 40px;
    text-align: center;
    max-width: 1200px;
    margin: 60px auto;
}

.empty-state {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.empty-state h3 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 300;
}

.empty-state p {
    font-size: 1.1rem;
    color: var(--gray);
    margin: 10px 0;
}

.empty-state a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

.empty-state a:hover {
    text-decoration: underline;
}

.empty-state ul {
    margin: 20px auto;
    max-width: 500px;
}

.empty-state li {
    margin: 10px 0;
    color: #666;
}

.empty-state code {
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    color: #d32f2f;
}

.pagination {
    margin-top: 60px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    border: 1px solid #E0E0E0;
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s ease;
    background: white;
    border-radius: 8px;
    font-weight: 600;
}

.pagination a:hover,
.pagination .current {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* ===========================================
   SINGLE MASZYNA
   =========================================== */

.maszyna-single-improved {
    background: var(--white);
}

.product-hero {
    padding: 80px 40px;
    background: var(--white);
    border-bottom: 1px solid #E0E0E0;
}

.product-hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.product-images {
    position: sticky;
    top: 120px;
}

.main-product-image {
    background: var(--light-gray);
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 5/6;
    cursor: pointer;
}

.main-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    filter: none !important;
    -webkit-filter: none !important;
}

.main-product-image:hover img {
    opacity: 0.8;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumb-img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.thumb-img:hover,
.thumb-img.active {
    opacity: 1;
}

.product-info {
    padding-top: 0;
}

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

.brand-badge {
    display: inline-block;
    padding: 0;
    background: none;
    color: var(--gray);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 300;
}

.product-model {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.product-model strong {
    color: var(--black);
    font-weight: 400;
}

.product-excerpt {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 40px;
    padding: 0;
    background: none;
    border: none;
}

.product-price-box {
    background: none;
    border: none;
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    padding: 30px 0;
    margin-bottom: 40px;
}

.price-display,
.availability-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.price-label,
.availability-label {
    font-weight: 400;
    color: var(--gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 2rem;
    font-weight: 300;
    color: var(--black);
}

.price-negotiable {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}

.availability-value {
    font-weight: 400;
    color: var(--black);
}

.product-cta {
    display: flex;
    gap: 20px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 0.85rem;
    border: 1px solid var(--black);
    background: transparent;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background: var(--black);
    color: var(--white);
}

.btn-cyan {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
}

.btn-cyan:hover {
    background: transparent;
    color: var(--black);
}

.product-attributes-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #E0E0E0;
}

.product-attribute-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #F5F5F5;
}

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

.attribute-checkmark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary);
}

.attribute-text {
    font-size: 0.95rem;
    color: var(--black);
    line-height: 1.4;
}

.product-specs-section {
    padding: 120px 40px;
    background: var(--light-gray);
    border-top: 1px solid #E0E0E0;
}

.specs-table {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid #E0E0E0;
}

.specs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #E0E0E0;
}

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

.specs-label,
.specs-value {
    padding: 20px 30px;
    font-size: 0.95rem;
}

.specs-label {
    background: var(--light-gray);
    font-weight: 400;
    color: var(--black);
    border-right: 1px solid #E0E0E0;
}

.specs-value {
    background: var(--white);
    color: var(--gray);
    line-height: 1.6;
}

.specs-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid #E0E0E0;
}

.spec-item {
    background: none;
    padding: 40px 20px;
    border-right: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    display: block;
    text-align: center;
}

.spec-item:nth-child(3n) {
    border-right: none;
}

.spec-item:nth-last-child(-n+3) {
    border-bottom: none;
}

.spec-label {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.spec-value {
    font-size: 2.5rem;
    color: var(--black);
    font-weight: 300;
    line-height: 1.2;
}

.product-features-section {
    padding: 120px 40px;
    background: var(--white);
    border-top: 1px solid #E0E0E0;
}

.features-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.feature-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding-bottom: 50px;
    border-bottom: 1px solid #E0E0E0;
}

.feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-checkmark {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--black);
    margin-top: 5px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
}

.product-technical-section {
    padding: 120px 40px;
    background: var(--light-gray);
    border-top: 1px solid #E0E0E0;
}

.technical-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.technical-header h2 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 0;
}

.btn-datasheet {
    padding: 14px 35px;
    background: #D32F2F;
    color: var(--white);
    border: none;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-datasheet:hover {
    background: #B71C1C;
    color: var(--white);
}

.technical-data-table {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid #E0E0E0;
}

.tech-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #E0E0E0;
}

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

.tech-label,
.tech-value {
    padding: 20px 30px;
    font-size: 0.95rem;
}

.tech-label {
    background: var(--light-gray);
    font-weight: 400;
    color: var(--black);
    border-right: 1px solid #E0E0E0;
}

.tech-value {
    background: var(--white);
    color: var(--gray);
    line-height: 1.6;
}

.tech-note {
    padding: 20px 30px;
    background: var(--light-gray);
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
    border-top: 1px solid #E0E0E0;
}

.product-description-section {
    padding: 120px 40px;
    background: var(--white);
}

.product-full-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray);
}

.product-full-content h2 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--black);
    margin-top: 60px;
    margin-bottom: 30px;
    border: none;
    padding: 0;
}

.product-documents-section {
    padding: 120px 40px;
    background: var(--light-gray);
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.document-card {
    background: var(--white);
    padding: 40px;
    text-align: center;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.document-card:hover {
    border-bottom-color: var(--primary);
}

.doc-name {
    font-size: 1rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 10px;
}

.doc-action {
    color: var(--gray);
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-gallery-section {
    padding: 120px 40px;
    background: var(--white);
}

.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
    height: 300px;
    background: var(--light-gray);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    filter: none !important;
    -webkit-filter: none !important;
}

.gallery-item:hover img {
    opacity: 0.7;
}

.gallery-overlay {
    display: none;
}

.related-machines-section {
    padding: 120px 40px;
    background: var(--white);
    border-top: 1px solid #E0E0E0;
}

.related-machines-section .section-title {
    text-align: left;
    margin-bottom: 60px;
}

.related-machines-section .machines-grid-full {
    max-width: 1400px;
    margin: 0 auto;
}

/* ===========================================
   PRODUCT IMAGE SLIDER
   =========================================== */

.product-image-slider {
    position: relative;
    width: 100%;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.slider-main {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.slider-arrow:hover {
    background: #00bcd4;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,188,212,0.3);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #cbd5e0;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    border-color: #00bcd4;
    transform: scale(1.2);
}

.slider-dot.active {
    background: #00bcd4;
    border-color: #00bcd4;
    width: 12px;
    border-radius: 6px;
}

.slider-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #e2e8f0;
    border-top-color: #00bcd4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 0;
}

.slider-main.loaded::before {
    display: none;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===========================================
   LIGHTBOX
   =========================================== */

.ich-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    z-index: 100000;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.8;
}

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

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

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ===========================================
   CONTACT PAGE
   =========================================== */

.contact-header,
.cleaning-header {
    background: var(--white);
    color: var(--black);
    padding: 120px 40px 80px;
    text-align: center;
    border-bottom: 1px solid #E0E0E0;
}

.contact-header h1,
.cleaning-header h1 {
    color: var(--black);
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 15px;
}

.contact-subtitle,
.cleaning-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
}

.contact-info-section {
    padding: 120px 40px;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-card {
    background: none;
    padding: 0;
    text-align: left;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 30px;
}

.contact-card h3 {
    color: var(--black);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card p {
    color: var(--gray);
    line-height: 1.8;
}

.contact-card a {
    color: var(--black);
}

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

.contact-form-section {
    padding: 120px 40px;
    background: var(--light-gray);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 400;
    color: var(--gray);
    margin-bottom: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #E0E0E0;
    background: var(--white);
    font-size: 1rem;
    font-family: inherit;
    color: var(--black);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black);
}

.contact-form button {
    width: 100%;
    margin-top: 20px;
    padding: 16px;
    border: 1px solid var(--black);
    background: var(--black);
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.contact-form button:hover {
    background: transparent;
    color: var(--black);
}

.contact-map-section {
    padding: 0;
    background: var(--light-gray);
}

.map-container {
    width: 100%;
    height: 500px;
}

/* ===========================================
   CLEANING PAGE
   =========================================== */

.cleaning-sliders-section {
    padding: 120px 40px;
    background: var(--white);
}

.before-after-container {
    margin-bottom: 120px;
    text-align: center;
}

.before-after-container h2 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 40px;
    font-weight: 300;
}

.slider-description {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.cleaning-features-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cleaning-feature-box {
    background: var(--white);
    padding: 30px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cleaning-feature-box.feature-left {
    border-left-color: rgba(0, 176, 232, 0.3);
    box-shadow: -4px 0 12px rgba(0, 176, 232, 0.08);
}

.cleaning-feature-box.feature-right {
    border-left-color: rgba(0, 176, 232, 0.3);
    box-shadow: -4px 0 12px rgba(0, 176, 232, 0.08);
}

.cleaning-feature-box:hover {
    border-left-color: var(--primary);
    box-shadow: -4px 0 20px rgba(0, 176, 232, 0.15);
    transform: translateX(5px);
}

.cleaning-feature-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.cleaning-feature-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
    margin: 0;
}

.before-after-slider {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 30px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
}

.before-after-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-before,
.image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block !important;
    pointer-events: none;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    filter: none !important;
    -webkit-filter: none !important;
}

.image-after {
    clip-path: inset(0 50% 0 0);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 100%;
    background: transparent;
    z-index: 10;
    cursor: col-resize;
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    cursor: col-resize;
    z-index: 2;
}

.slider-button span {
    font-size: 1.2rem;
    color: var(--black);
    font-weight: 700;
}

.slider-labels {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 5;
}

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

.cleaning-info-section {
    background: var(--light-gray);
    padding: 120px 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-box {
    background: none;
    padding: 0;
    text-align: center;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 30px;
}

.info-box h3 {
    color: var(--black);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.info-box p {
    color: var(--gray);
}

.cleaning-cta-section {
    padding: 120px 40px;
    background: var(--white);
    text-align: center;
}

.cleaning-cta-section h2 {
    font-size: 2.5rem;
    color: var(--black);
    font-weight: 300;
    margin-bottom: 15px;
}

.cleaning-cta-section p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================================
   SERWIS PAGE
   =========================================== */

.page-header-gradient {
    background: var(--white);
    color: var(--black);
    padding: 120px 40px 80px;
    text-align: center;
    border-bottom: 1px solid #E0E0E0;
}

.page-header-gradient h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--black);
}

.services-main-section {
    padding: 120px 40px;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: none;
    padding: 0;
    border: none;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 40px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 400;
}

.service-card > p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-features li {
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--gray);
    border-bottom: 1px solid #E0E0E0;
}

.btn-service {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-service:hover {
    background: var(--black);
    color: var(--white);
}

.services-additional {
    padding: 120px 40px;
    background: var(--light-gray);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.additional-item {
    background: none;
    padding: 0;
    text-align: left;
}

.additional-item h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 10px;
    font-weight: 400;
}

.additional-item p {
    font-size: 0.95rem;
    color: var(--gray);
}

.service-process-section {
    padding: 120px 40px;
    background: var(--white);
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.process-step {
    background: none;
    border: none;
    padding: 0;
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.process-step h4 {
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 10px;
    font-weight: 400;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray);
}

.process-arrow {
    font-size: 1.5rem;
    color: var(--gray);
    margin-top: 20px;
}

.faq-section {
    padding: 120px 40px;
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 40px;
    border: none;
    border-bottom: 2px solid transparent;
}

.faq-item:hover {
    border-bottom-color: var(--primary);
}

.faq-item h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 400;
}

.faq-item p {
    font-size: 1rem;
    color: var(--gray);
}

.service-cta-section {
    padding: 120px 40px;
    background: var(--white);
    text-align: center;
}

.service-cta-section h2 {
    font-size: 2.5rem;
    color: var(--black);
    font-weight: 300;
}

/* ===========================================
   SERWIS NEWS PAGE
   =========================================== */

.serwis-news-page {
    background: #fff;
}

.breadcrumb {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

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

.breadcrumb a:hover {
    color: #00b0e8;
}

.serwis-hero {
    background: #f8f9fa;
    padding: 40px 0 20px;
}

.serwis-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px;
}

.serwis-hero .subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.hero-banner {
    padding: 60px 0;
    background: #fff;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.banner-grid.layout-image-right .banner-image {
    order: 2;
}

.banner-grid.layout-image-right .banner-content {
    order: 1;
}

.banner-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

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

.banner-grid:hover .banner-image img {
    transform: scale(1.05);
}

.banner-content {
    padding: 40px;
}

.banner-label {
    font-size: 12px;
    font-weight: 600;
    color: #00b0e8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px;
}

.banner-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px;
    line-height: 1.2;
}

.banner-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-more {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #00b0e8;
    color: #00b0e8;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: #00b0e8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 176, 232, 0.3);
}

.news-section {
    padding: 60px 0;
    background: #fff;
}

.news-section:nth-child(even) {
    background: #f8f9fa;
}

.news-grid {
    display: grid;
    gap: 30px;
}

.news-grid.layout-full-width {
    grid-template-columns: 1fr;
}

.news-grid.layout-two-columns {
    grid-template-columns: repeat(2, 1fr);
}

.news-grid.layout-three-columns {
    grid-template-columns: repeat(3, 1fr);
}

.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    display: grid;
    animation: fadeInUp 0.6s ease-out;
}

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

.news-card:nth-child(2) {
    animation-delay: 0.1s;
}

.news-card:nth-child(3) {
    animation-delay: 0.2s;
}

.news-card:nth-child(4) {
    animation-delay: 0.3s;
}

.news-card.layout-image-left {
    grid-template-columns: 45% 55%;
}

.news-card.layout-image-right {
    grid-template-columns: 55% 45%;
}

.news-card.layout-image-right .news-image {
    order: 2;
}

.news-card.layout-image-right .news-content {
    order: 1;
}

.news-card.layout-image-top {
    grid-template-columns: 1fr;
}

.news-image {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.news-card.layout-image-left .news-image,
.news-card.layout-image-right .news-image {
    height: 100%;
    min-height: 300px;
}

.news-card.layout-image-top .news-image {
    height: 250px;
}

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

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

.news-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-card.layout-image-top .news-content {
    padding: 25px;
}

.news-category {
    font-size: 11px;
    font-weight: 600;
    color: #00b0e8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
}

.news-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0 0 12px;
    line-height: 1.3;
}

.news-card.layout-image-top .news-content h3 {
    font-size: 18px;
}

.news-date {
    font-size: 13px;
    color: #999;
    margin: 0 0 15px;
}

.news-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-excerpt p {
    margin: 0 0 10px;
}

.news-excerpt p:last-child {
    margin-bottom: 0;
}

.layout-three-columns .news-card {
    grid-template-columns: 1fr;
}

.layout-three-columns .news-image {
    height: 200px;
}

.layout-three-columns .news-content h3 {
    font-size: 16px;
}

.layout-three-columns .news-content {
    padding: 20px;
}

.serwis-cta {
    background: #fff;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.serwis-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #00B0E8;
}

.serwis-cta p {
    font-size: 18px;
    margin: 0 0 40px;
    opacity: 0.95;
}

.cta-buttons .btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-buttons .btn.btn-primary {
    background: #fff;
    color: #00b0e8;
    border: 2px solid #fff;
}

.cta-buttons .btn.btn-primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.cta-buttons .btn.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-buttons .btn.btn-secondary:hover {
    background: #fff;
    color: #00b0e8;
    transform: translateY(-2px);
}

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

/* ===========================================
   BREADCRUMBS
   =========================================== */

.breadcrumbs {
    padding: 20px 40px;
    background: var(--white);
    font-size: 0.85rem;
    color: var(--gray);
    border-bottom: 1px solid #E0E0E0;
}

.breadcrumbs a {
    color: var(--gray);
}

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

/* ===========================================
   LANGUAGE SWITCHER
   =========================================== */

.language-switcher {
    list-style: none;
    display: flex;
    gap: 10px;
}

.language-switcher .lang-item a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    transition: opacity 0.3s ease;
}

.language-switcher .lang-item a:hover {
    opacity: 0.7;
}

.language-switcher .lang-item.active a {
    opacity: 1;
}

.language-switcher img {
    width: 24px;
    height: 18px;
    border: 1px solid #E0E0E0;
}

.language-switcher span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================================
   FOOTER
   =========================================== */

.site-footer {
    background: #4B5563;
    color: var(--white);
    padding: 80px 0 0 0;
    border-top: 1px solid #333;
}

.footer-top {
    background-color: #4B5563;
}

.footer-divider {
    height: 1px;
    background-color: #4B5563;
    margin: 0;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    color: var(--white);
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    background-color: #f5f5f5;
    color: #333;
    width: 100%;
    padding: 40px 0;
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom .footer-legal {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 15px 0;
}

.footer-bottom .footer-legal span {
    color: #666;
}

/* ===========================================
   RESPONSIVE - GENERAL
   =========================================== */

@media (max-width: 1200px) {
    .machines-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .machines-grid-compact {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .product-images {
        position: static;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cleaning-features-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cleaning-feature-box {
        min-height: auto;
        padding: 25px;
    }
    
    .cleaning-feature-box.feature-left {
        order: 1;
    }
    
    .before-after-slider {
        order: 2;
    }
    
    .cleaning-feature-box.feature-right {
        order: 3;
    }
    
    .banner-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-image {
        min-height: 300px;
    }
    
    .news-grid.layout-two-columns {
        grid-template-columns: 1fr;
    }
    
    .news-card.layout-image-left,
    .news-card.layout-image-right {
        grid-template-columns: 1fr;
    }
    
    .news-card.layout-image-right .news-image {
        order: 1;
    }
    
    .news-card.layout-image-right .news-content {
        order: 2;
    }
}

@media (max-width: 992px) {
    .machines-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .category-title-large {
        font-size: 2.5rem;
    }
    
    .machine-image-compact {
        height: 200px;
    }
    
    .filter-form {
        grid-template-columns: 1fr;
    }
    
    .filter-actions {
        grid-column: 1;
    }
    
    .active-filters-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .clear-all {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-text-overlay {
        left: 40px;
        right: 40px;
        bottom: 40px;
    }
    
    .hero-text-overlay h1 {
        font-size: 2.5rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .machines-grid-full,
    .machines-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .main-navigation {
        gap: 30px;
    }
    
    .main-navigation ul {
        gap: 30px;
    }
    
    .specs-grid,
    .documents-grid,
    .product-gallery-grid,
    .services-grid,
    .additional-grid,
    .info-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .product-cta,
    .cta-buttons,
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-hero,
    .btn-large {
        width: 100%;
    }
    
    .filter-form {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .category-title-large {
        font-size: 2rem;
    }
    
    .category-machines-section {
        padding: 60px 20px;
    }
    
    .machine-image-compact {
        height: 250px;
    }
    
    .cleaning-feature-box {
        padding: 20px;
    }
    
    .cleaning-feature-box h3 {
        font-size: 1.1rem;
    }
    
    .cleaning-feature-box p {
        font-size: 0.9rem;
    }
    
    .before-after-slider {
        max-width: 100%;
    }
    
    .slider-button {
        width: 40px;
        height: 40px;
    }
    
    .slider-button span {
        font-size: 1rem;
    }
    
    .slider-labels {
        padding: 0 15px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-slide img {
        padding: 10px;
    }
    
    .slider-dots {
        padding: 15px;
        gap: 8px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dot.active {
        width: 24px;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-checkmark {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
    
    .tech-row {
        grid-template-columns: 1fr;
    }
    
    .tech-label {
        border-right: none;
        border-bottom: 1px solid #E0E0E0;
    }
    
    .technical-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .specs-row {
        grid-template-columns: 1fr;
    }
    
    .specs-label {
        border-right: none;
        border-bottom: 1px solid #E0E0E0;
    }
    
    .product-attributes-list {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .archive-maszyny-hero {
        padding: 40px 0;
    }
    
    .archive-maszyny-hero h1 {
        font-size: 32px;
    }
    
    .archive-maszyny-hero .subtitle {
        font-size: 16px;
    }
    
    .hero-machine-icon {
        width: 60px;
        height: 60px;
    }
    
    .hero-machine-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .filter-actions {
        flex-direction: column;
    }
    
    .filter-actions .btn-filter,
    .filter-actions .btn-reset {
        width: 100%;
    }
    
    .active-filters-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .clear-all {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .serwis-hero h1 {
        font-size: 32px;
    }
    
    .banner-content h2 {
        font-size: 24px;
    }
    
    .banner-content {
        padding: 30px 20px;
    }
    
    .news-grid.layout-three-columns {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .news-section {
        padding: 40px 0;
    }
    
    .hero-banner {
        padding: 40px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .machines-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .category-title-large {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .category-description {
        font-size: 1rem;
    }
}

/* ===========================================
   QUICK FIXES & OPTIMIZATIONS
   =========================================== */

.machine-card-ich:hover .machine-image-box img,
.main-product-image:hover img,
.gallery-item:hover img {
    opacity: 1 !important;
}

.machine-image-box img,
.main-product-image img,
.gallery-item img,
.image-before,
.image-after {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.before-after-slider img,
.machine-image-box img,
.main-product-image img {
    filter: none !important;
    -webkit-filter: none !important;
}