/* Seafood landing page */

:root {
    --seafood-navy: #062b4c;
    --seafood-navy-dark: #01182c;
    --seafood-blue: #0b4f82;
    --seafood-red: #ef2724;
    --seafood-red-dark: #c81816;
    --seafood-green: #08b843;
    --seafood-green-dark: #058b32;
    --seafood-gold: #f4d995;
    --seafood-text: #092542;
    --seafood-muted: #5f6b78;
    --seafood-line: #eadcc6;
    --seafood-white: #fff;
    --seafood-shadow: 0 12px 28px rgba(4, 22, 40, 0.14);
}

body.page-template-page-landing .site-header {
    display: none !important;
}

.seafood-landing,
.seafood-landing * {
    box-sizing: border-box;
    letter-spacing: 0;
}

.seafood-landing {
    background: var(--seafood-white);
    color: var(--seafood-text);
    font-family: "Roboto",  sans-serif;
    overflow: hidden;
}

.seafood-container {
    max-width: 1280px;
    margin: 0 auto;
}

.seafood-section {
    padding: 34px 0;
    scroll-margin-top: 96px;
}

.seafood-hero,
.seafood-anchor-target {
    scroll-margin-top: 96px;
}

.seafood-anchor-target {
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.seafood-section-header {
    margin: 0 0 24px;
    text-align: center;
}

.seafood-section-title {
    margin: 0 0 16px;
    color: var(--seafood-navy);
    font-family: "Roboto", sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
}

.seafood-section-subtitle {
    margin: 7px 0 0;
    color: var(--seafood-navy);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
}

.seafood-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 22px;
    border: 0;
    border-radius: 6px;
    color: var(--seafood-white);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.seafood-btn:hover,
.seafood-btn:focus {
    color: var(--seafood-white);
    text-decoration: none;
    transform: translateY(-1px);
}

.seafood-btn-primary {
    background: var(--seafood-red);
    box-shadow: 0 10px 20px rgba(239, 39, 36, 0.28);
}

.seafood-btn-primary:hover,
.seafood-btn-primary:focus {
    background: var(--seafood-red-dark);
}

.seafood-btn-secondary {
    background: var(--seafood-red);
}

.seafood-btn-zalo {
    background: var(--seafood-green);
    box-shadow: 0 10px 20px rgba(8, 184, 67, 0.26);
}

.seafood-btn-zalo:hover,
.seafood-btn-zalo:focus {
    background: var(--seafood-green-dark);
}

.seafood-btn-large {
    min-width: 220px;
    min-height: 48px;
    padding: 12px 22px;
    flex-direction: column;
    font-size: 15px;
}

.seafood-btn small {
    display: block;
    color: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: none;
}

/* Header */

.seafood-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 30;
    width: 100%;
    padding: 14px 0;
    background: transparent;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.seafood-header-sticky {
    position: fixed;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 28px rgba(4, 22, 40, 0.12);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.seafood-header-container {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.seafood-brand {
    display: inline-flex;
    align-items: center;
    min-width: 160px;
    color: var(--seafood-white);
    text-decoration: none;
}

.seafood-brand:hover,
.seafood-brand:focus {
    color: var(--seafood-white);
    text-decoration: none;
}

.seafood-logo {
    display: block;
    width: 65px;
    max-width: 100%;
    height: auto;
}

.seafood-brand-text {
    display: grid;
    gap: 3px;
}

.seafood-brand-name {
    color: var(--seafood-white);
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.seafood-brand-subtitle {
    color: var(--seafood-white);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.seafood-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex: 1;
}

.seafood-nav-link {
    color: var(--seafood-white);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.seafood-nav-link:hover,
.seafood-nav-link:focus {
    color: var(--seafood-gold);
    text-decoration: none;
}

.seafood-menu-toggle {
    display: none;
}

.seafood-header-sticky .seafood-brand-name,
.seafood-header-sticky .seafood-brand-subtitle,
.seafood-header-sticky .seafood-nav-link {
    color: var(--seafood-navy);
}

.seafood-header-sticky .seafood-nav-link:hover,
.seafood-header-sticky .seafood-nav-link:focus {
    color: var(--seafood-red);
}

.seafood-header-cta {
    min-width: 148px;
    min-height: 48px;
    padding: 10px 20px;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}

/* Hero */

.seafood-hero {
    position: relative;
    z-index: 1;
    min-height: 75vh;
    padding: 210px 0 110px;
    background-color: var(--seafood-navy-dark);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    overflow: visible;
}

.seafood-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(1, 17, 30, 0.45) 0%, rgba(1, 17, 30, 0.22) 56%, rgba(1, 17, 30, 0.08) 100%),
        linear-gradient(180deg, rgba(1, 16, 30, 0.28) 0%, rgba(1, 16, 30, 0.12) 48%, rgba(1, 16, 30, 0.3) 100%);
}

.seafood-hero-overlay {
    display: none;
}

.seafood-hero-content {
    position: relative;
    z-index: 2;
    display: block;
}

.seafood-hero-text {
    width: 58%;
    max-width: 720px;
    color: var(--seafood-white);
    text-align: center;
}

.seafood-hero-title {
    margin: 0;
    color: var(--seafood-white);
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 5px 12px rgba(0, 0, 0, 0.45);
    margin-bottom: 20px;
}

.seafood-hero-script {
    margin: 10px 0 20px;
    color: var(--seafood-gold);
    font-family: "Great Vibes", cursive;
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
    text-shadow: 0 3px 9px rgba(0, 0, 0, 0.45);
    font-style: italic;
}

.seafood-hero-description {
    margin: 0 0 18px;
    color: var(--seafood-white);
    font-size: 18px;
    font-weight: 700;
}

.seafood-hero-tags {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 32px 0 30px;
}

.seafood-hero-tag {
    display: grid;
    min-width: 66px;
    gap: 5px;
    justify-items: center;
    color: var(--seafood-white);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.seafood-hero-tag-icon {
    display: inline-flex;
    width: 40px;
    height: 34px;
    align-items: center;
    justify-content: center;
    color: #ef3b2e;
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

.seafood-hero-tag-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.seafood-hero-tag span:nth-child(2) {
    display: none;
}

.seafood-hero-kicker {
    margin: 0 0 28px;
    color: var(--seafood-white);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.15;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.48);
}

.seafood-hero-actions {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.seafood-quick-features {
    position: absolute;
    right: 0;
    bottom: -130px;
    left: 0;
    z-index: 10;
}

.seafood-features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    padding: 31px 0 30px;
    border-radius: 6px;
    background: var(--seafood-white);
    box-shadow: 0 16px 34px rgba(4, 22, 40, 0.13);
}

.seafood-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0px 30px 10px;
    color: var(--seafood-text);
    text-align: center;
}

.seafood-feature-item + .seafood-feature-item {
    border-left: 1px solid #e7e2dc;
}

.seafood-feature-icon {
    display: inline-flex;
    width: auto;
    height: 46px;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #062b4c;
    font-size: 34px;
    line-height: 1;
}

.seafood-feature-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.seafood-feature-title {
    margin: 0 0 10px;
    color: #191919;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.28;
    text-transform: none;
}

.seafood-feature-accent {
    margin: 0;
    max-width: 245px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--seafood-navy);
}

/* Price */

.seafood-price-section {
    padding-top: 200px;
    padding-bottom: 26px;
    background: var(--seafood-white);
}

.seafood-price-section .seafood-section-header {
    margin-bottom: 10px;
}



.seafood-price-heading .seafood-section-title {
    font-size: 36px;
}

.seafood-price-heading .seafood-section-subtitle {
        color: var(--seafood-navy);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
}

.seafood-price-actions {
    display: flex;
    justify-content: center;
}

.seafood-price-all {
    min-height: 40px;
    padding: 8px 22px;
    border: 0;
    border-radius: 6px;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    cursor: pointer;
}

.seafood-price-board {
    overflow: hidden;
    /* border: 1px solid var(--seafood-line);
    border-radius: 8px; */
    background: var(--seafood-white);
    margin: 30px auto 12px;
}

.seafood-price-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    align-items: end;
}

.seafood-price-item {
    min-width: 0;
    padding: 18px 10px 15px;
    text-align: center;
}

.seafood-price-item-hidden {
    display: none;
}

.seafood-price-item-revealed {
    animation: seafoodPriceReveal 0.28s ease both;
}

@keyframes seafoodPriceReveal {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.seafood-price-image {
    display: flex;
    height: 82px;
    align-items: center;
    justify-content: center;
    margin-bottom: 11px;
}

.seafood-price-image img {
    display: block;
    max-width: 100%;
    max-height: 82px;
    object-fit: contain;
}

.seafood-price-name {
    margin: 0 0 7px;
    color: var(--seafood-navy);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.15;
    text-transform: uppercase;
}

.seafood-price-value {
    margin: 0;
    color: var(--seafood-red);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.15;
}

.seafood-price-note {
    margin: 0;
    padding: 24px 16px 12px;
    color: var(--seafood-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
    text-align: center;
    font-style: italic;
}

/* Categories */

.seafood-categories-section {
    padding: 50px 0px 70px
}

.seafood-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.seafood-category-card {
    position: relative;
    overflow: hidden;
    border-radius: 7px;
    background: var(--seafood-navy);
    box-shadow: var(--seafood-shadow);
}

.seafood-category-image {
    height: 450px;
    overflow: hidden;
}

.seafood-category-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.seafood-category-card:hover .seafood-category-image img {
    transform: scale(1.04);
}

.seafood-category-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    min-height: 103px;
    padding: 14px 15px 16px;
    background:
        linear-gradient(180deg, rgba(9, 43, 73, 0.78) 0%, rgba(3, 24, 45, 0.78) 100%);
    color: var(--seafood-white);
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    /* -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px); */
}

.seafood-category-title {
    margin: 0 0 10px;
    color: var(--seafood-white);
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.seafood-category-description {
    min-height: 30px;
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}

.seafood-category-link {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 4px 18px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 4px;
    color: var(--seafood-white);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
}

.seafood-category-link:hover,
.seafood-category-link:focus {
    background: rgba(255, 255, 255, 0.12);
    color: var(--seafood-white);
    text-decoration: none;
}

.seafood-category-link i{
    margin-left: 8px;
    font-size: 13px;
}

/* Process */

.seafood-process-section {
    padding-top: 20px;
    padding-bottom: 70px;
    background: var(--seafood-white);
}

.seafood-process-section .seafood-section-header {
    margin-bottom: 22px;
}

.seafood-process-timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.seafood-process-step {
    position: relative;
    display: grid;
    justify-items: center;
    text-align: center;
}

.seafood-process-icon {
    display: inline-flex;
    width: 92px;
    height: 76px;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
    border: 1px solid #d5dbe4;
    border-radius: 8px;
    background: var(--seafood-white);
    color: #08b843;
    font-size: 44px;
    box-shadow: 0 5px 10px rgba(8, 184, 67, 0.1);
}

.seafood-process-arrow {
    position: absolute;
    top: 35px;
    right: -24px;
    width: 48px;
    color: var(--seafood-navy);
    font-size: 26px;
}

.seafood-process-step:last-child .seafood-process-arrow {
    display: none;
}

.seafood-process-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.seafood-process-number {
    color: var(--seafood-navy);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.seafood-process-title {
    margin: 0;
    color: var(--seafood-navy);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
}

.seafood-process-description {
    max-width: 160px;
    margin: 6px 0 0;
    color: var(--seafood-navy);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
}

/* Benefits */

.seafood-benefits-section {
    --seafood-benefits-bg: url("../images/seafood/benefits-bg.png");
    padding: 60px 0 70px;
    background-image:
        linear-gradient(180deg, rgba(9, 43, 73, 0.2) 0%, rgba(3, 24, 45, 0.2) 100%),
        var(--seafood-benefits-bg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--seafood-white);
}

.seafood-benefits-section .seafood-section-title {
    color: var(--seafood-white);
}

.seafood-benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 26px;
    margin-top: 40px;
}

.seafood-benefit-item {
    text-align: center;
}

.seafood-benefit-icon {
    display: inline-flex;
    width: 70px;
    height: 70px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    color: var(--seafood-white);
    font-size: 30px;
}

.seafood-benefit-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.seafood-benefit-title {
    margin: 0 0 8px;
    color: var(--seafood-white);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
}

.seafood-benefit-description {
    margin: 0 auto;
    max-width: 210px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

/* Feedback */

.seafood-reviews-section {
    padding-top: 70px;
    padding-bottom: 70px;
    background: #fbfcfd;
}

.seafood-reviews-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.seafood-review-slide {
    min-width: 0;
}

.seafood-reviews-slider.slick-initialized {
    display: block;
    margin-right: -12px;
    margin-left: -12px;
}

.seafood-reviews-slider .slick-list {
    overflow: hidden;
}

.seafood-reviews-slider .slick-track {
    display: flex;
}

.seafood-reviews-slider .slick-slide {
    height: auto;
}

.seafood-reviews-slider .seafood-review-slide {
    padding-right: 12px;
    padding-left: 12px;
}

.seafood-reviews-slider .seafood-review-card {
    height: 100%;
}

.seafood-reviews-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.seafood-reviews-nav {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d5dbe4;
    border-radius: 50%;
    background: var(--seafood-white);
    color: var(--seafood-navy);
    font-size: 15px;
    box-shadow: 0 6px 16px rgba(7, 25, 43, 0.1);
    cursor: pointer;
}

.seafood-reviews-nav:hover,
.seafood-reviews-nav:focus {
    background: var(--seafood-navy);
    color: var(--seafood-white);
}

.seafood-review-card {
    position: relative;
    overflow: hidden;
    height: 380px;
    min-height: 360px;
    margin: 0;
    border-radius: 7px;
    background: #edf1f5;
    box-shadow: 0 6px 16px rgba(7, 25, 43, 0.1);
}

.seafood-review-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.seafood-review-link,
.seafood-review-video,
.seafood-review-video-link {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
}

.seafood-review-link,
.seafood-review-video-link {
    position: relative;
}

.seafood-review-video {
    background: #061f33;
}

video.seafood-review-video {
    object-fit: cover;
}

.seafood-review-video iframe,
.seafood-review-video > * {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 0;
    border: 0;
}

.seafood-review-video-link {
    background:
        linear-gradient(rgba(7, 50, 82, 0.72), rgba(7, 50, 82, 0.72)),
        url("../images/seafood/benefits-bg.png") center / cover no-repeat;
}

.seafood-review-play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.34);
    color: var(--seafood-white);
    font-size: 18px;
    transform: translate(-50%, -50%);
}

.seafood-review-card figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 8px;
    background: rgba(0, 0, 0, 0.55);
    color: var(--seafood-white);
    font-size: 11px;
    font-weight: 700;
}

/* Order */

.seafood-order-section {
    padding-top: 6px;
    padding-bottom: 70px;
    background: #fbfcfd;
}

.seafood-order-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* grid-template-columns: 1.05fr 0.8fr 0.95fr; */
    overflow: hidden;
    border-radius: 8px;
    background: var(--seafood-white);
    box-shadow: var(--seafood-shadow);
}

.seafood-order-form-panel {
    padding: 48px 40px 24px;
    /* background:
        linear-gradient(rgba(7, 50, 82, 0.94), rgba(7, 50, 82, 0.94)),
        url("../themes") center / cover no-repeat; */
        background: var(--seafood-navy);
    color: var(--seafood-white);
}

.seafood-order-title {
    margin: 0 0 8px;
    color: var(--seafood-white);
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
}

.seafood-order-description {
    margin: 0 0 20px;
    color: var(--seafood-white);
    font-size: 16px;
    font-weight: 400;
}

.seafood-order-form {
    display: grid;
    gap: 10px;
}

.seafood-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.seafood-order-form label {
    display: grid;
    gap: 0;
    margin: 0;
}

.seafood-order-form label span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.seafood-order-form input,
.seafood-order-form select,
.seafood-order-form textarea {
    width: 100%;
    min-height: 39px;
    border: 0;
    border-radius: 5px;
    background: var(--seafood-white);
    color: var(--seafood-text);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

.seafood-order-form input,
.seafood-order-form select {
    padding: 0 12px;
}

.seafood-order-form textarea {
    min-height: 76px;
    padding: 12px;
    resize: vertical;
}

.seafood-order-submit {
    width: 100%;
    min-height: 50px;
    margin-top: 3px;
    flex-direction: row;
    font-size: 14px;
}

.seafood-order-fluent-form,
.seafood-order-fluent-form form {
    display: grid;
    gap: 10px;
}

.seafood-order-fluent-form .fluentform,
.seafood-order-fluent-form .frm-fluent-form,
.seafood-order-fluent-form .fluentform_wrapper {
    margin: 0;
}

.seafood-order-fluent-form .ff-el-group {
    margin-bottom: 0;
}

.seafood-order-fluent-form .ff-t-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.seafood-order-fluent-form .ff-t-cell {
    width: auto !important;
    padding: 0 !important;
}

.seafood-order-fluent-form .ff-el-input--label {
    margin-bottom: 6px;
}

.seafood-order-fluent-form .ff-el-input--label label {
    margin: 0;
    color: var(--seafood-white);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
}

.seafood-order-fluent-form .ff-el-input--label .required {
    color: var(--seafood-red);
}

.seafood-order-fluent-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.seafood-order-fluent-form select,
.seafood-order-fluent-form textarea,
.seafood-order-fluent-form .ff-el-form-control {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    background: var(--seafood-white);
    color: var(--seafood-text);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    box-shadow: none;
    outline: 0;
    font-family: "Roboto", sans-serif;
}

.ff-el-form-control,
.ff-el-form-control option {
    color: #999 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    font-family: "Roboto", sans-serif !important;
}

.fluentform .ff-el-is-error .text-danger {
    font-size: 16px !important;
    font-weight: 400 !important;
    margin-top: 12px !important;
}

.fluentform .ff-el-group {
    margin-bottom: 16px !important;
}
.seafood-order-fluent-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.seafood-order-fluent-form select,
.seafood-order-fluent-form .ff-el-form-control:not(textarea) {
    padding: 0 12px;
    font-family: "Roboto", sans-serif;
}

.seafood-order-fluent-form textarea,
.seafood-order-fluent-form textarea.ff-el-form-control {
    min-height: 100px;
    padding: 12px;
    resize: vertical;
}

.seafood-order-fluent-form input:focus,
.seafood-order-fluent-form select:focus,
.seafood-order-fluent-form textarea:focus,
.seafood-order-fluent-form .ff-el-form-control:focus {
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16);
}

.seafood-order-fluent-form .ff-el-form-check-label,
.seafood-order-fluent-form .ff-el-form-check-label span {
    color: var(--seafood-white);
    font-size: 12px;
    font-weight: 700;
}

.seafood-order-fluent-form .ff-el-form-check-input {
    margin-right: 7px;
}

.seafood-order-fluent-form .ff_submit_btn_wrapper {
    margin: 3px 0 0;
}

.seafood-order-fluent-form button[type="submit"],
.seafood-order-fluent-form input[type="submit"],
.seafood-order-fluent-form .ff-btn-submit,
.seafood-order-fluent-form .ff-btn,
.seafood-order-fluent-form .ff_btn_style {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 5px;
    background: var(--seafood-red);
    color: var(--seafood-white);
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
}

.seafood-order-fluent-form button[type="submit"]:hover,
.seafood-order-fluent-form input[type="submit"]:hover,
.seafood-order-fluent-form .ff-btn-submit:hover,
.seafood-order-fluent-form .ff-btn:hover,
.seafood-order-fluent-form .ff_btn_style:hover {
    background: #d71920;
    color: var(--seafood-white);
}

.seafood-order-fluent-form .error,
.seafood-order-fluent-form .ff-el-is-error,
.seafood-order-fluent-form .text-danger {
    color: #ffd8d8;
    font-size: 12px;
    font-weight: 700;
}

.seafood-order-fluent-form .ff-message-success {
    margin: 0;
    border: 0;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--seafood-navy);
    font-size: 13px;
    font-weight: 700;
}

.seafood-order-image {
    height: 540px;
    background: #d7e7f2;
}

.seafood-order-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seafood-footer {
    padding: 56px 0 28px;
    background: linear-gradient(180deg, var(--seafood-navy) 0%, var(--seafood-navy-dark) 100%);
    color: var(--seafood-white);
}

.seafood-footer .seafood-container {
    max-width: 1220px;
    padding-right: 24px;
    padding-left: 24px;
}

.seafood-footer-content {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.9fr) minmax(170px, 0.45fr);
    gap: 46px;
    align-items: start;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.seafood-footer-section {
    min-width: 0;
}

.seafood-footer-section:last-child {
    justify-self: end;
    min-width: 170px;
}

.seafood-footer-title {
    margin: 0 0 16px;
    color: var(--seafood-white);
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
}

.seafood-footer-description {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

.seafood-footer-heading {
    margin: 2px 0 18px;
    color: #FFF;
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.seafood-footer-contacts {
    display: grid;
    gap: 13px;
}

.seafood-footer-contact {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
}

.seafood-footer-contact-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(244, 217, 149, 0.42);
    border-radius: 50%;
    /* color: var(--seafood-gold); */
    font-size: 15px;
}

.seafood-footer-contact-link,
.seafood-footer-contact-text,
.seafood-policy-link {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    transition: color 0.2s ease;
}

.seafood-footer-contact-link:hover,
.seafood-footer-contact-link:focus,
.seafood-policy-link:hover,
.seafood-policy-link:focus {
    color: var(--seafood-gold);
    text-decoration: none;
}

.seafood-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.seafood-footer-social {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    /* border: 1px solid rgba(255, 255, 255, 0.28); */
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #FFF;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.seafood-footer-social i{
        color: rgba(255, 255, 255, 0.88);
}

.seafood-footer-social:hover,
.seafood-footer-social:focus {
    border-color: var(--seafood-gold);
    background: rgba(244, 217, 149, 0.14);
    color: var(--seafood-gold);
    text-decoration: none;
}

.seafood-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.5;
}

.seafood-footer-bottom p{
    color: rgba(255, 255, 255, 0.78);
}

.seafood-copyright {
    margin: 0;
}

.seafood-policy-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 20px;
}

/* Tablet */

@media (max-width: 1024px) {
    .seafood-container,
    .seafood-header-container {
        max-width: 920px;
    }

    .seafood-nav {
        gap: 22px;
    }

    .seafood-nav-link {
        font-size: 14px;
    }

    .seafood-header-cta {
        min-width: 118px;
        padding-right: 12px;
        padding-left: 12px;
        font-size: 12px;
    }

    .seafood-hero {
        min-height: 590px;
    }

    .seafood-hero-text {
        width: 66%;
    }

    .seafood-hero-title {
        font-size: 56px;
    }

    .seafood-hero-script {
        font-size: 42px;
    }

    .seafood-hero-kicker {
        font-size: 16px;
    }

    .seafood-hero-tags {
        gap: 12px;
    }

    .seafood-btn-large {
        min-width: 205px;
    }

    .seafood-features-grid {
        padding: 28px 0;
    }

    .seafood-feature-item {
        min-height: 160px;
        padding: 10px 18px 8px;
    }

    .seafood-feature-icon {
        height: 42px;
        font-size: 31px;
    }

    .seafood-feature-title {
        font-size: 19px;
    }

    .seafood-feature-accent {
        font-size: 14px;
    }

    .seafood-price-board {
        overflow-x: auto;
    }

    .seafood-price-grid {
        min-width: 960px;
    }

    .seafood-categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seafood-process-timeline {
        gap: 12px;
    }

    .seafood-process-arrow {
        right: -17px;
        width: 34px;
    }

    .seafood-benefits-grid {
        gap: 16px;
    }

    .seafood-reviews-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .seafood-order-shell {
        grid-template-columns: 1fr 0.85fr;
    }
}

/* Mobile landscape and small tablets */

@media (max-width: 768px) {
 .seafood-container,
    .seafood-header-container {
        padding-right: 14px;
        padding-left: 14px;
    }

    .seafood-section-title {
        font-size: 24px;
    }

    .seafood-section-subtitle, .seafood-price-heading .seafood-section-subtitle {
        font-size: 15px;
    }

    .seafood-brand {
        min-width: 112px;
    }

    .seafood-logo {
        width: 110px;
    }

    .seafood-header-cta {
        min-width: 102px;
        min-height: 36px;
        padding: 8px 10px;
        font-size: 10px;
    }

    .seafood-hero {
        min-height: 690px;
        padding-top: 125px;
        padding-bottom: 192px;
    }

    .seafood-hero-title {
        font-size: 34px;
    }

    .seafood-hero-script {
        margin-top: 8px;
        margin-bottom: 15px;
        font-size: 29px;
    }

    .seafood-hero-tags {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .seafood-hero-tag-icon {
        width: 34px;
        height: 30px;
        font-size: 22px;
    }

    .seafood-hero-kicker {
        margin-bottom: 18px;
        font-size: 14px;
    }

    .seafood-btn-large {
        min-height: 54px;
        font-size: 14px;
    }

    .seafood-features-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
        padding: 0;
    }

    .seafood-feature-item {
        min-height: auto;
        padding: 18px 20px 17px;
        border-top: 1px solid #e7e2dc;
        border-left: 0;
    }

    .seafood-feature-item:first-child {
        border-top: 0;
    }

    .seafood-feature-item:nth-child(n + 2) {
        border-top: 1px solid #e7e2dc;
    }

    .seafood-feature-item:nth-child(even) {
        border-left: 0;
    }

    .seafood-feature-icon {
        height: 34px;
        margin-bottom: 10px;
        font-size: 25px;
    }

    .seafood-feature-title {
        font-size: 18px;
    }

    .seafood-feature-accent {
        max-width: 260px;
        font-size: 13px;
    }

    .seafood-price-grid {
        min-width: 720px;
    }

    .seafood-price-image {
        height: 70px;
    }

    .seafood-price-image img {
        max-height: 70px;
    }

    .seafood-price-name {
        font-size: 12px;
    }

    .seafood-price-value {
        font-size: 15px;
    }

    .seafood-category-image {
        height: 400px;
    }

    .seafood-price-all {
    min-height: 38px;
    font-size: 14px;
}

.seafood-price-heading .seafood-section-title {
    font-size: 28px;
}

    .seafood-category-title {
        font-size: 18px;
        margin: 0 0 8px;
    }

    .seafood-category-description{
        margin: 0 0 10px;
        min-height: auto
    }

    .seafood-category-link {
    display: inline-flex;
    min-height: 38px;
    padding: 4px 18px;
    font-size: 14px;
}

.seafood-category-link i {
    margin-left: 8px;
    font-size: 12px;
}

    .seafood-reviews-grid {
        gap: 10px;
    }

    .seafood-review-card,
    .seafood-review-image,
    .seafood-review-link,
    .seafood-review-video,
    .seafood-review-video-link,
    .seafood-review-video iframe,
    .seafood-review-video > * {
        height: 320px;
        min-height: 320px;
    }

    .seafood-order-form-panel {
        padding: 24px 18px;
    }

    .seafood-form-row {
        grid-template-columns: 1fr;
    }

    .seafood-order-fluent-form .ff-t-container {
        grid-template-columns: 1fr;
    }

    .seafood-order-title {
        font-size: 26px;
    }

    .seafood-section,
    .seafood-hero,
    .seafood-anchor-target {
        scroll-margin-top: 82px;
    }

    .seafood-section {
        padding: 28px 0 40px;
    }

    .seafood-section-title {
        font-size: 28px;
    }

    .seafood-header {
        position: absolute;
        padding: 12px 0;
    }

    .seafood-header.is-menu-open:not(.seafood-header-sticky) {
        background: rgba(1, 24, 44, 0.78);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }

    .seafood-header-sticky {
        position: fixed;
    }

    .seafood-header-container {
        position: relative;
        align-items: center;
        gap: 10px;
        padding-right: 14px;
        padding-left: 14px;
        flex-wrap: nowrap;
    }

    .seafood-brand {
        order: 1;
        min-width: 132px;
    }

    .seafood-logo {
        width: 60px;
    }

    .seafood-menu-toggle {
        order: 3;
        display: inline-flex;
        width: 38px;
        height: 38px;
        flex: 0 0 42px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 6px;
        background: rgba(1, 24, 44, 0.34);
        color: var(--seafood-white);
        cursor: pointer;
    }

    .seafood-menu-toggle-bar {
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .seafood-menu-toggle.is-open .seafood-menu-toggle-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .seafood-menu-toggle.is-open .seafood-menu-toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .seafood-menu-toggle.is-open .seafood-menu-toggle-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .seafood-header-sticky .seafood-menu-toggle {
        border-color: rgba(6, 43, 76, 0.28);
        background: rgba(6, 43, 76, 0.06);
        color: var(--seafood-navy);
    }

    .seafood-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 14px;
        left: 14px;
        z-index: 40;
        order: 4;
        display: none;
        width: auto;
        flex: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        overflow: hidden;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 8px;
        background: rgba(1, 24, 44, 0.97);
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
    }

    .seafood-nav.is-open {
        display: flex;
    }

    .seafood-nav-link,
    .seafood-header-sticky .seafood-nav-link {
        display: block;
        padding: 13px 12px;
        border-radius: 5px;
        color: var(--seafood-white);
        font-size: 14px;
        line-height: 1.1;
    }

    .seafood-nav-link + .seafood-nav-link {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .seafood-nav-link:hover,
    .seafood-nav-link:focus,
    .seafood-header-sticky .seafood-nav-link:hover,
    .seafood-header-sticky .seafood-nav-link:focus {
        background: rgba(255, 255, 255, 0.08);
        color: var(--seafood-gold);
    }

    .seafood-header-cta {
        order: 2;
        min-height: 38px;
        margin-left: auto;
        font-size: 14px;
    }

    .seafood-hero {
        min-height: 710px;
        padding: 126px 0 190px;
        background-position: center top;
    }

    .seafood-hero::before {
        background:
            linear-gradient(90deg, rgba(1, 17, 30, 0.62) 0%, rgba(1, 17, 30, 0.42) 70%, rgba(1, 17, 30, 0.22) 100%),
            linear-gradient(180deg, rgba(1, 16, 30, 0.24) 0%, rgba(1, 16, 30, 0.16) 45%, rgba(1, 16, 30, 0.55) 100%);
    }

    .seafood-hero-text {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .seafood-hero-title {
        font-size: 40px;
        line-height: 1.2;
    }

    .seafood-hero-script {
        font-size: 34px;
    }

    .seafood-hero-tags {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px 8px;
    }

    .seafood-hero-tag {
        min-width: 0;
        font-size: 11px;
    }

    .seafood-hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .seafood-btn-large {
        width: 100%;
        max-width: 320px;
    }

    .seafood-quick-features {
        bottom: -220px;
    }

    .seafood-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 0px 0;
    }

    .seafood-feature-item {
        min-height: 145px;
        padding: 18px 20px;
        border-top: 1px solid #e7e2dc;
        border-left: 0;
    }

    .seafood-feature-item:nth-child(even) {
        border-left: 1px solid #e7e2dc;
    }

    .seafood-feature-item:nth-child(-n + 2) {
        border-top: 0;
    }

    .seafood-feature-icon {
        height: 38px;
        margin-bottom: 12px;
        font-size: 28px;
    }

    .seafood-feature-title {
        margin-bottom: 7px;
        font-size: 17px;
    }

    .seafood-feature-accent {
        font-size: 13px;
        line-height: 1.55;
    }


    .seafood-price-section{
        padding: 280px 0 40px;
    }

    .seafood-price-heading {
        gap: 10px;
    }

    .seafood-price-grid {
        min-width: 820px;
    }

      .seafood-categories-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .seafood-process-timeline {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 auto;
        gap:  24px 18px;
    }

    .seafood-process-icon {
    width: 60px;
    height: 60px;
    font-size: 32px;
    }

    .seafood-process-number {
    font-size: 20px;
}

        .seafood-process-arrow {
        display: none;
    }

    .seafood-process-description {
    font-size: 15px;
}

    .seafood-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 auto;
        gap: 24px 18px;
    }

    .seafood-benefit-icon {
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    font-size: 20px;
}

.seafood-benefit-title {
    margin: 0 0 8px;
    color: var(--seafood-white);
    font-size: 16px;
}

.seafood-benefit-description {
    font-size: 15px;
}

    .seafood-reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seafood-order-shell {
        grid-template-columns: 1fr;
    }

    .seafood-order-image {
        height: 300px;
    }

    .seafood-footer {
        padding-top: 42px;
    }

    .seafood-footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .seafood-footer-section:last-child {
        justify-self: start;
        min-width: 0;
    }

    .seafood-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        font-size: 13px;
            padding-top: 12px;
    }

    .seafood-footer-social {
    width: 36px;
    height: 36px;
    font-size: 14px;
}

    .seafood-policy-links {
        justify-content: flex-start;
    }

    .seafood-footer-title {
        font-size: 24px;
    }

    .seafood-footer-contact {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 10px;
        font-size: 15px;
    }

    .seafood-footer-contact-icon {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .seafood-benefits-section, .seafood-reviews-section{
    padding: 40px 0 40px;
    }

    .seafood-footer .seafood-container {
    max-width: 100%;
    padding-right: 14px;
    padding-left: 14px;
}

.seafood-footer-description {
    font-size: 15px;
}

.ff-el-form-control, .ff-el-form-control option {
    font-size: 15px !important;
}
.seafood-footer-bottom p {
    font-size: 15px;
}
}



@media print {
    .seafood-header,
    .seafood-footer {
        display: none;
    }
}
