/* =========================================
   Tablet
   992px and below
========================================= */

@media (max-width: 992px) {

    .header-inner {
        min-height: 70px;
        gap: 20px;
    }

    .main-nav {
        margin-left: auto;
    }

    .nav-list {
        gap: 22px;
    }

    .nav-link {
        min-height: 70px;
        font-size: 14px;
    }

    .site-logo img {
        max-width: 160px;
        max-height: 60px;
    }

    .header-actions .btn {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-section {
        min-height: 400px;
    }

    .hero-content {
        max-width: 600px;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .hero-title {
        font-size: clamp(34px, 5vw, 48px);
    }

}


/* =========================================
   Mobile
   768px and below
========================================= */

@media (max-width: 768px) {

    .header-inner {
        min-height: 64px;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        margin: 0;
        padding: 10px 20px 20px;
        background-color: var(--color-white);
        border-top: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        min-height: 48px;
        padding: 8px 0;
        font-size: 15px;
    }

    .nav-link::after {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section {
        min-height: 360px;
    }

    .hero-content {
        max-width: 560px;
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .hero-eyebrow {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .hero-title {
        margin-bottom: 14px;
        font-size: clamp(32px, 8vw, 42px);
    }

    .hero-description {
        margin-bottom: 22px;
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-actions .btn {
        min-height: 44px;
        padding: 9px 16px;
        font-size: 14px;
    }

}


/* =========================================
   Small Mobile
   576px and below
========================================= */

@media (max-width: 576px) {

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .header-inner {
        min-height: 60px;
    }

    .site-logo img {
        max-width: 140px;
        max-height: 60px;
    }

    .main-nav {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-section {
        min-height: 340px;
    }

    .hero-content {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

}


/* =========================================
   Extra Small Mobile
   400px and below
========================================= */

@media (max-width: 400px) {

    .hero-section {
        min-height: 320px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 13px;
    }

}

/* =========================================
   Trust Stats
   Tablet
========================================= */

@media (max-width: 768px) {

    .trust-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-stat {
        min-height: 100px;
    }

    .trust-stat:nth-child(2) {
        border-right: 0;
    }

    .trust-stat:nth-child(-n + 2) {
        border-bottom: 1px solid var(--color-border);
    }

    .trust-stat__number {
        font-size: 24px;
    }

}


/* =========================================
   Trust Stats
   Small Mobile
========================================= */

@media (max-width: 400px) {

    .trust-stat {
        min-height: 90px;
        padding: 15px 10px;
    }

    .trust-stat__number {
        font-size: 22px;
    }

    .trust-stat__label {
        font-size: 13px;
    }

}

/* =========================================
   Section Heading
   Tablet
========================================= */

@media (max-width: 992px) {

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading__title {
        font-size: 30px;
    }

    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

}


/* =========================================
   Products
   Mobile
========================================= */

@media (max-width: 768px) {

    .products-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading__title {
        font-size: 27px;
    }

    .section-heading__description {
        font-size: 14px;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .fish-card__content {
        padding: 16px;
    }

    .fish-card__title {
        font-size: 18px;
    }

    .fish-card__text {
        min-height: auto;
        font-size: 13px;
    }

}


/* =========================================
   Products
   Small Mobile
========================================= */

@media (max-width: 400px) {

    .products-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }
  
    .fish-card__image {
        aspect-ratio: 16 / 10;
    }

}
/* =========================================
   Why Choose Us & Order Process
   Tablet
========================================= */

@media (max-width: 992px) {

    .why-order-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .why-order-grid {
        gap: 45px;
    }

    .why-us-title {
        font-size: 30px;
    }

    .order-process {
        padding: 30px;
    }

    .order-process__title {
        font-size: 27px;
    }

}


/* =========================================
   Why Choose Us & Order Process
   Mobile
========================================= */

@media (max-width: 768px) {

    .why-order-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .why-order-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .why-us-content {
        max-width: none;
    }

    .why-us-title {
        font-size: 28px;
    }

    .order-process {
        padding: 25px;
    }

    .order-process__title {
        font-size: 25px;
    }

}


/* =========================================
   Why Choose Us & Order Process
   Small Mobile
========================================= */

@media (max-width: 400px) {

    .why-order-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .why-us-title {
        font-size: 25px;
    }

    .order-process {
        padding: 20px;
    }

    .order-process__title {
        font-size: 23px;
    }

    .why-us-item {
        gap: 10px;
    }

    .order-step {
        gap: 12px;
    }

}

/* =========================================
   Footer
   Tablet
========================================= */

@media (max-width: 992px) {

    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
        padding-top: 60px;
        padding-bottom: 45px;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

}


/* =========================================
   Footer
   Mobile
========================================= */

@media (max-width: 768px) {

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 35px 25px;
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 500px;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-credit {
        text-align: left;
    }

}


/* =========================================
   Footer
   Small Mobile
========================================= */

@media (max-width: 400px) {

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 45px;
        padding-bottom: 35px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: auto;
    }

    .footer-title {
        margin-bottom: 14px;
    }

}