/* Product Categories Grid Styles */
.product-categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.category-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.category-name {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .product-categories-grid {
        gap: 10px;
    }
    
    .category-item {
        padding: 10px 16px;
        flex: 0 1 calc(50% - 5px);
    }
    
    .category-name {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .category-item {
        flex: 1 0 100%;
    }
}

/* Hero section adjustment */
.archive-maszyny-hero {
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, #00838f 0%, #00acc1 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.archive-maszyny-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
    background-size: cover;
}

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

.archive-hero-content h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
}

.archive-hero-content .subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-bottom: 0;
}