/* BieliznaEkstra.pl - lightweight store */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f8f8f8;
    color: #333;
}

/* Header */
.shop-header {
    background: #1a1a2e;
    padding: 16px 0;
    text-align: center;
}

.shop-logo img {
    max-height: 60px;
    width: auto;
}

/* Navigation */
.shop-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
    text-align: center;
}

.shop-nav-link {
    display: inline-block;
    padding: 6px 16px;
    margin: 2px 4px;
    text-decoration: none;
    color: #555;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.15s;
}

.shop-nav-link:hover {
    color: #1a1a2e;
    border-color: #ddd;
}

.shop-nav-link.active {
    color: #fff;
    background: #1a1a2e;
    border-color: #1a1a2e;
}

/* Main content */
.shop-main {
    padding-top: 24px;
    padding-bottom: 40px;
    min-height: 60vh;
}

/* Product cards */
.product-card {
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    transition: box-shadow 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-no-image {
    font-size: 3rem;
    color: #ddd;
}

.product-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-brand {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    margin-bottom: 4px;
}

.product-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    margin: 0 0 8px;
    line-height: 1.3;
    flex: 1;
}

.product-size {
    font-size: 0.75rem;
    color: #888;
}

/* Footer */
.shop-footer {
    background: #1a1a2e;
    color: #aaa;
    text-align: center;
    padding: 24px 0;
    font-size: 0.85rem;
}

.shop-footer p {
    margin: 4px 0;
}

.shop-footer-contact {
    color: #777;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 576px) {
    .shop-logo img {
        max-height: 40px;
    }

    .shop-nav-link {
        padding: 4px 10px;
        font-size: 0.8rem;
    }

    .product-info {
        padding: 8px;
    }

    .product-name {
        font-size: 0.78rem;
    }
}
