/* =========================================
   Page Hero
========================================= */

.page-hero {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
}


.page-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}


.page-hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.page-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(15, 35, 24, 0.68);
}


.page-hero .container {
    position: relative;
    z-index: 2;
}


.page-hero__content {
    max-width: 700px;
    padding: 38px 0;
}


.page-hero__title {
    margin-bottom: 10px;
    color: var(--color-white);
    font-size: 38px;
    line-height: 1.3;
}


.page-hero__description {
    max-width: 600px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
}


/* =========================================
   Breadcrumb
========================================= */

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}


.breadcrumb a {
    color: var(--color-white);
}


.breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.8);
}


.breadcrumb span:last-child {
    color: rgba(255, 255, 255, 0.65);
}

/* =========================================
   Products Loader
========================================= */

.products-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    min-height: 40px;
}

.products-loader[hidden] {
    display: none;
}

.products-loader img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
/* =========================================
   Fish Card Appearance Animation
========================================= */

.fish-card--hidden {
    opacity: 0;
    transform: translateY(25px);
}

.fish-card--visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
} 