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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #090909;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-delphin {
    color: #0095FF;
}

.logo-reps {
    color: #ffffff;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #0095FF;
    transform: translateY(-2px);
}

.nav-link.active {
    color: #0095FF;
    font-weight: 400;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #0095FF, #00d4ff);
    border-radius: 1px;
}

.discord-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #0095FF;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 149, 255, 0.3);
}

.discord-btn:hover {
    background: #007acc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 149, 255, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Główna zawartość strony produktów */
.main-content {
    margin-top: 100px;
    padding: 2rem 0;
    min-height: calc(100vh - 100px);
}

/* Sekcja kategorii */
.categories-section {
    margin-bottom: 3rem;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.category-btn {
    background: rgba(0, 149, 255, 0.15);
    border: 2px solid #0095FF;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.category-btn:hover {
    background: rgba(0, 149, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 149, 255, 0.2);
}

.category-btn.active {
    background: #0095FF;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 149, 255, 0.4);
}

/* Wyszukiwarka */
.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    padding-right: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 149, 255, 0.3);
    border-radius: 25px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #0095FF;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 149, 255, 0.2);
}

.search-input::placeholder {
    color: #cccccc;
}

.search-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #0095FF;
    font-size: 1.1rem;
}

/* Sekcja produktów */
.products-section {
    margin-top: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 149, 255, 0.3);
}

.product-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

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

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

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

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #090909;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1rem;
    font-weight: 500;
    color: #666666;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 0.5rem;
    border-radius: 10px;
}

.product-card:hover .product-name {
    opacity: 1;
    transform: translateY(0);
}

/* Brak produktów */
.no-products {
    text-align: center;
    padding: 3rem;
    color: #cccccc;
    font-size: 1.1rem;
}

/* Footer - skopiowany z oryginalnej strony */
footer {
    background-image: linear-gradient(to top, #002946 0%, #090909 100%);
    color: #ffffff;
    padding: 70px;
    display: flex;
    justify-content: center;
}

.footer-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    justify-content: space-between;
}

.vertical-line {
    width: 1px;
    height: 90px;
    background-color: #ffffff;
    margin: 0 70px;
}

.footer-logo {
    height: 230px;
    margin-left: 300px;
    border-radius: 50px;
}

.footer-nav {
    display: flex;
    align-items: center;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    margin-right: 550px;
}

.footer-nav-list a {
    color: #ffffff;
    text-decoration: none;
    margin: 5px 0;
    font-size: 16px;
    font-weight: 400;
}

.footer-nav-list a:hover {
    text-decoration: underline;
}

.border-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Responsywność */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(9, 9, 9, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(0, 149, 255, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .discord-btn {
        display: none;
    }
    
    .categories-grid {
        justify-content: flex-start;
    }
    
    .category-btn {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    footer {
        padding: 30px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        margin-left: 0;
        height: 100px;
        margin-bottom: 20px;
        border-radius: 150px;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
    }

    .vertical-line {
        display: none;
    }

    .footer-nav-list {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .main-content {
        margin-top: 80px;
        padding: 1rem 0;
    }
    
    .categories-grid {
        gap: 0.5rem;
    }
    
    .category-btn {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .search-input {
        padding: 0.8rem 1.2rem;
        padding-right: 2.5rem;
        font-size: 0.9rem;
    }
}

/* Animacje fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

::-webkit-scrollbar-track {
    background: #090909;
}

::-webkit-scrollbar-thumb {
    background: #0095FF;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #007acc;
}

