/* ========== FISH PAGE SPECIFIC STYLES ========== */

/* Marine-blau Header f¸«är Fisch-Seite - LICHTERES BLAU */
.fish-header-override {
    background: linear-gradient(135deg, #4a9fe3 0%, #2a6db0 100%) !important;
    border-bottom: 3px solid #2a9d8f !important;
}

/* Fisch Header (Page Header) - KEIN BLAUER HINTERGRUND */
.fish-page-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border: 2px solid #1a6ea0;
    border-radius: 15px;
    padding: 30px 20px;
    margin: 20px 0 40px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.fish-page-header h1 {
    color: #1a6ea0 !important;
    margin-bottom: 15px;
    font-size: 2rem;
}

.fish-page-header .subtitle {
    color: #666 !important;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Fisch Grid Styles */
.fish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.fish-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #4d9fd4;
    position: relative;
}

.fish-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(26, 110, 160, 0.3);
    border-color: #1a6ea0;
}

.fish-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.fish-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2a9d8f;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.fish-info {
    padding: 20px;
}

.fish-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #264653;
    margin: 0 0 10px 0;
    min-height: 60px;
}

.fish-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px dashed #eee;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1a6ea0;
}

.price-unit {
    color: #666;
    font-size: 0.9rem;
}

.fish-featured-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 50px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.fish-section-title {
    text-align: center;
    color: #264653;
    font-size: 2rem;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.fish-no-data {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.fish-action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.fish-btn {
    padding: 12px 30px;
    background: #1a6ea0;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 16px;
    border: 2px solid transparent;
}

.fish-btn:hover {
    background: #264653;
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
    border-color: #1a6ea0;
}

.fish-btn-secondary {
    background: #2a9d8f;
}

.fish-btn-secondary:hover {
    background: #21867a;
    border-color: #2a9d8f;
}

/* Fish Info Section */
.fish-info-section {
    background: linear-gradient(135deg, #1a6ea0 0%, #264653 100%);
    border-radius: 15px;
    padding: 30px;
    color: white;
    margin: 40px 0;
}

.fish-info-section h2 {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Fish Stats Counter */
.fish-stats-counter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 15px;
    border: 2px solid #1a6ea0;
}

.fish-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 25px;
    background: white;
    border-radius: 10px;
    min-width: 120px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.fish-stat-item:hover {
    transform: translateY(-5px);
}

.fish-stat-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: #1a6ea0;
    line-height: 1;
}

.fish-stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
    text-align: center;
}

/* Mobile Anpassungen f¸«är Fish Price Text */
@media (max-width: 768px) {
    .fish-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .fish-price > div:last-child {
        font-size: 0.8rem !important;
        color: #2a9d8f;
        display: flex;
        align-items: center;
        gap: 5px;
        max-width: 100%;
    }
    
    .fish-price > div:last-child i {
        font-size: 0.9rem;
    }
    
    .fish-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .fish-name {
        font-size: 1.1rem;
        min-height: 50px;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .fish-image {
        height: 180px;
    }
    
    .fish-action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .fish-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .fish-stats-counter {
        gap: 10px;
        padding: 15px;
    }
    
    .fish-stat-item {
        min-width: calc(50% - 20px);
        padding: 10px 15px;
    }
    
    .fish-page-header h1 {
        font-size: 1.8rem;
    }
    
    .fish-page-header .subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .fish-price > div:last-child {
        font-size: 0.75rem !important;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .fish-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .fish-image {
        height: 160px;
    }
    
    .fish-info {
        padding: 15px;
    }
    
    .fish-name {
        font-size: 1rem;
        min-height: 45px;
    }
    
    .price-amount {
        font-size: 1.3rem;
    }
    
    .fish-stat-item {
        min-width: calc(50% - 10px);
        padding: 8px 12px;
    }
    
    .fish-stat-number {
        font-size: 1.5rem;
    }
    
    .fish-page-header {
        padding: 20px 15px;
    }
    
    .fish-page-header h1 {
        font-size: 1.6rem;
    }
    
    .fish-page-header .subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .fish-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .fish-image {
        height: 150px;
    }
    
    .fish-price > div:last-child {
        font-size: 0.7rem !important;
    }
}

/* Print styles for fish prices */
@media print {
    .main-header,
    .main-footer,
    .sticky-coffee-widget,
    .virtual-assistant,
    .fish-action-buttons,
    .footer-nav {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
        padding: 20px !important;
    }
    
    .fish-grid {
        display: block !important;
    }
    
    .fish-card {
        break-inside: avoid;
        margin-bottom: 20px;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    
    .fish-image {
        display: none !important;
    }
    
    .price-amount {
        color: black !important;
        font-size: 1.2rem !important;
    }
}