.katalogoa-header {
    background: linear-gradient(135deg, #000000 0%, #212529 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.katalogoa-header h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0 0 15px 0;
    font-size: 2.5em;
    font-weight: bold;
}

.kategoria-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.kategoria-icon:hover {
    transform: scale(1.1);
}

.kategoria-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.kategoria-icon {
    font-size: 1.8em;
}

.produktuak-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
    justify-content: flex-start;
    align-items: stretch;
}
.produktuak-flex .produktu-card {
    flex: 1 1 350px;
    max-width: 450px;
}
.produktu-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #e9ecef;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.produktu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #dc3545;
}
.produktu-card h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.3em;
}
.produktu-card p {
    margin: 8px 0;
    font-size: 1em;
}
.produktu-image {
    font-size: 4em;
    text-align: center;
    margin-bottom: 15px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.3);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.produktu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.produktu-image:hover {
    transform: scale(1.1);
}
.produktu-image-large {
    font-size: 3em;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.produktu-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.produktu-image:hover,
.produktu-image-large:hover {
    transform: scale(1.1);
}
.produktu-description {
    margin-bottom: 15px;
}
.produktu-description h3 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.4em;
}
.produktu-price {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #28a745;
}
.produktu-stock {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.discount-text {
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: bold;
}
.available-text {
    background: #000000;
    color: white;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: bold;
}
.prezio-oraingoa {
    font-size: 1.4em;
    font-weight: bold;
    color: #28a745;
}
.prezio-originala,
.prezio-marratua {
    text-decoration: line-through;
    color: #dc3545;
    font-size: 1em;
    margin-left: 10px;
}
.deskontua-etiketa {
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: bold;
    margin-left: 10px;
}
.produktu-link {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    width: 100%;
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
    margin-top: auto;
}
.produktu-link:hover {
    background: linear-gradient(135deg, #bb2d3b 0%, #a02331 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.4);
}
.products-section {
    margin-top: 30px;
}
.products-section h2 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}
.product-price {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}
.produktu-detail-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.produktu-detail-flex .produktu-image-large {
    width: 120px;
    height: 120px;
    font-size: 4em;
    flex-shrink: 0;
}
.produktu-info {
    text-align: center;
    width: 100%;
}
.produktu-specs {
    background: rgba(248, 249, 250, 0.8);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}
.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}
.spec-item:last-child {
    border-bottom: none;
}
.spec-label {
    font-weight: 600;
    color: #495057;
}
.spec-value {
    color: #333;
    font-weight: 500;
}
.price-section {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background: rgba(248, 249, 250, 0.5);
    border-radius: 10px;
}
.discount-info {
    margin-top: 15px;
    padding: 15px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}
.discount-info h4 {
    color: #dc3545;
    margin: 0 0 10px 0;
}
.savings {
    color: #333;
    font-weight: bold;
    font-size: 1.1em;
}
.back-buttons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}
.text-left {
    text-align: left;
    margin: 20px 0;
}
.ez-produktu {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 30px;
    background: rgba(108, 117, 125, 0.1);
    border-radius: 8px;
}
