/* =========================================
   Site Header
========================================= */

.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 30px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    width: auto;
    max-width: 180px;
    max-height: 70px;
}

/* =========================================
   Main Navigation
========================================= */

.main-nav {
    margin-left: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 76px;
    color: var(--color-dark);
    font-size: 15px;
    font-weight: 600;
    transition: color var(--transition);
}

.nav-link::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    content: "";
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}


/* =========================================
   Header Actions
========================================= */

.header-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-actions .btn {
    min-height: 44px;
    padding: 9px 18px;
}


/* =========================================
   Mobile Menu Toggle
========================================= */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--color-dark);
    background-color: transparent;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    transition:
        transform var(--transition),
        opacity var(--transition);
}

/* =========================================
   Mobile Menu Toggle - Active
========================================= */

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   Hero Section
========================================= */

.hero-section {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    color: var(--color-white);
    background-color: var(--color-dark);
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(10, 30, 20, 0.78) 0%,
            rgba(10, 30, 20, 0.52) 45%,
            rgba(10, 30, 20, 0.20) 100%
        );
}

.hero-content {
    max-width: 650px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 600;
}

.hero-title {
    margin-bottom: 18px;
    color: var(--color-white);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.2;
}

.hero-title span {
    display: block;
    color: var(--color-white);
}

.hero-description {
    max-width: 580px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions .btn--outline {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.7);
}

.hero-actions .btn--outline:hover {
    color: var(--color-primary);
    background-color: var(--color-white);
    border-color: var(--color-white);
}

/* =========================================
   Trust Stats
========================================= */

.trust-stats-section {
    position: relative;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 20px;
    text-align: center;
    border-right: 1px solid var(--color-border);
}

.trust-stat:last-child {
    border-right: 0;
}

.trust-stat__number {
    display: block;
    margin-bottom: 2px;
    color: var(--color-primary);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.trust-stat__label {
    display: block;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* =========================================
   Section Heading
========================================= */

.section-heading {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-heading__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
}

.section-heading__title {
    margin-bottom: 12px;
    color: var(--color-dark);
    font-size: 34px;
    line-height: 1.3;
}

.section-heading__description {
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
    color: var(--color-muted);
    font-size: 15px;
}


/* =========================================
   Products Section
========================================= */

.products-section {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: var(--color-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}


/* =========================================
   Fish Card
========================================= */

.fish-card {
    overflow: hidden;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.fish-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.fish-card__image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: var(--color-light);
}

.fish-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fish-card:hover .fish-card__image img {
    transform: scale(1.05);
}

.fish-card__content {
    padding: 20px;
}

.fish-card__title {
    margin-bottom: 6px;
    color: var(--color-dark);
    font-size: 20px;
}

.fish-card__text {
    min-height: 52px;
    margin-bottom: 14px;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.6;
}

.fish-card__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
}

.fish-card__link span {
    transition: transform var(--transition);
}

.fish-card__link:hover {
    color: var(--color-primary-dark);
}

.fish-card__link:hover span {
    transform: translateX(4px);
}


/* =========================================
   Products Loading
========================================= */

.products-loading {
    padding-top: 30px;
    color: var(--color-muted);
    font-size: 14px;
    text-align: center;
}

/* =========================================
   Products Load More
========================================= */

.products-load-more {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.products-load-more__button {
    min-width: 180px;
    gap: 10px;
}

.products-load-more__loader {
    display: none;
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.products-load-more__button.is-loading {
    cursor: wait;
    pointer-events: none;
}

.products-load-more__button.is-loading
.products-load-more__loader {
    display: block;
}

.products-load-more__button:disabled {
    opacity: 0.8;
}

/* =========================================
   Products Load Trigger
========================================= */

.products-load-trigger {
    width: 100%;
    height: 1px;
}


/* =========================================
   Why Choose Us & Order Process
========================================= */

.why-order-section {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: var(--color-white);
}

.why-order-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px;
    align-items: center;
}


/* =========================================
   Why Choose Us
========================================= */

.why-us-content {
    max-width: 560px;
}

.why-us-title {
    margin-bottom: 14px;
    color: var(--color-dark);
    font-size: 34px;
    line-height: 1.3;
}

.why-us-description {
    max-width: 500px;
    margin-bottom: 30px;
    color: var(--color-muted);
    font-size: 15px;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.why-us-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    color: var(--color-white);
    background-color: var(--color-primary);
    border-radius: 50%;
    font-size: 15px;
    font-weight: 700;
}

.why-us-item__content h3 {
    margin-bottom: 3px;
    color: var(--color-dark);
    font-size: 17px;
}

.why-us-item__content p {
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   Order Process
========================================= */

.order-process {
    padding: 36px;
    background-color: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.order-process__title {
    margin-bottom: 28px;
    color: var(--color-dark);
    font-size: 30px;
    line-height: 1.3;
}

.order-steps {
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
}

.order-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 22px;
}

.order-step:last-child {
    padding-bottom: 0;
}

.order-step:not(:last-child)::after {
    position: absolute;
    top: 34px;
    left: 16px;
    width: 1px;
    height: calc(100% - 20px);
    content: "";
    background-color: var(--color-border);
}

.order-step__number {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    color: var(--color-primary);
    background-color: var(--color-white);
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
}

.order-step__content {
    padding-top: 2px;
}

.order-step__content h3 {
    margin-bottom: 3px;
    color: var(--color-dark);
    font-size: 16px;
}

.order-step__content p {
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* =========================================
   Site Footer
========================================= */

.site-footer {
    color: rgba(255, 255, 255, 0.8);
    background-color: var(--color-dark);
}


/* =========================================
   Footer Main
========================================= */

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-top: 70px;
    padding-bottom: 55px;
}


/* =========================================
   Footer Brand
========================================= */

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
}

.footer-logo img {
    width: auto;
    max-width: 170px;
    max-height: 60px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   Footer Columns
========================================= */

.footer-title {
    margin-bottom: 20px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-white);
}


/* =========================================
   Footer Contact
========================================= */

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-list li {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-contact__label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}

.footer-contact-list a,
.footer-contact-list span:last-child {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact-list a:hover {
    color: var(--color-white);
}


/* =========================================
   Footer Bottom
========================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright,
.footer-credit {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}

.footer-credit {
    text-align: right;
}