/* Scoped Variables */
body {
    background-color: #FFFFFF !important;
}

.seafood-landing-wrapper {
    --primary-text: #333333;
    --secondary-text: #666666;
    --accent-red: #E53935;
    --accent-blue: #1E88E5;
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
    --border-color: #EEEEEE;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 50px;
    
    font-family: 'Outfit', sans-serif;
    color: var(--primary-text);
    background-color: var(--white);
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Reset only for our wrapper */
.seafood-landing-wrapper * {
    box-sizing: border-box;
}

.seafood-landing-wrapper h2, 
.seafood-landing-wrapper h3, 
.seafood-landing-wrapper p, 
.seafood-landing-wrapper a {
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
}

/* Sidebar Layout */
.seafood-landing-wrapper .seafood-shop-sidebar {
    flex: 0 0 280px;
    padding-right: 40px; /* Increased spacing */
    border-right: 1px solid #eee;
}

.seafood-landing-wrapper .seafood-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px;
}

/* Dual Price Slider */
.seafood-landing-wrapper .seafood-price-slider-container {
    position: relative;
    width: 100%;
    height: 30px;
    margin-top: 15px;
}
.seafood-landing-wrapper .slider-track {
    width: 100%;
    height: 6px;
    background-color: #e0e0e0; /* Light grey track */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 3px;
}
.seafood-landing-wrapper input[type="range"] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    width: 100% !important;
    outline: none !important;
    position: absolute !important;
    margin: auto !important;
    top: 0 !important;
    bottom: 0 !important;
    background-color: transparent !important;
    pointer-events: none !important;
    height: 5px !important; /* Force height to match track */
    border: none !important;
    padding: 0 !important;
}
.seafood-landing-wrapper input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none !important;
    height: 5px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
.seafood-landing-wrapper input[type="range"]::-moz-range-track {
    -moz-appearance: none !important;
    height: 5px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
.seafood-landing-wrapper input[type="range"]::-ms-track {
    appearance: none;
    height: 5px;
}
/* The JS sets the background gradient for the active range. 
   We need to ensure the handles look like the design (Blue circle) */
.seafood-landing-wrapper input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    height: 20px !important;
    width: 20px !important;
    background-color: var(--accent-blue) !important;
    cursor: pointer !important;
    margin-top: -7px !important; /* Center on track */
    pointer-events: auto !important;
    border-radius: 50% !important;
    border: 2px solid #fff !important; /* White border for clean look */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
}
.seafood-landing-wrapper input[type="range"]::-moz-range-thumb {
    height: 20px !important;
    width: 20px !important;
    cursor: pointer !important;
    border-radius: 50% !important;
    background-color: var(--accent-blue) !important;
    pointer-events: auto !important;
    border: 2px solid #fff !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
}
.seafood-landing-wrapper input[type="range"]:active::-webkit-slider-thumb {
    background-color: #ffffff;
    border: 3px solid var(--accent-blue);
}

.seafood-landing-wrapper .seafood-price-inputs {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    gap: 15px;
}
.seafood-landing-wrapper .seafood-price-inputs .price-group {
    display: flex;
    flex-direction: column;
    width: 48%;
}
.seafood-landing-wrapper .seafood-price-inputs label {
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 5px;
    font-weight: 600;
}
.seafood-landing-wrapper .seafood-price-inputs input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 6px;
    font-size: 14px;
    color: var(--primary-text);
    font-weight: 500;
}

/* Category Checkboxes */
/* Category Checkboxes */
.seafood-landing-wrapper .seafood-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.seafood-landing-wrapper .seafood-cat-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--secondary-text);
    cursor: pointer;
    transition: color 0.2s;
}
.seafood-landing-wrapper .seafood-cat-checkbox:hover {
    color: var(--accent-blue);
}
.seafood-landing-wrapper .seafood-cat-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-blue);
    border-radius: 4px;
    border: 1px solid #ddd;
}
.seafood-landing-wrapper .seafood-cat-checkbox .count {
    margin-left: auto;
    font-size: 12px;
    color: #999;
}

/* Stock Checkbox */
.seafood-landing-wrapper .seafood-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--secondary-text);
    cursor: pointer;
}
.seafood-landing-wrapper .seafood-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-blue);
}

/* Best Sellers Mini Cards */
.seafood-landing-wrapper .seafood-best-sellers-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.seafood-landing-wrapper .seafood-mini-card {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.seafood-landing-wrapper .seafood-mini-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.seafood-landing-wrapper .seafood-mini-card:hover {
    transform: translateX(5px);
}
.seafood-landing-wrapper .seafood-mini-card .mini-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
    flex-shrink: 0;
}
.seafood-landing-wrapper .seafood-mini-card .mini-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.seafood-landing-wrapper .seafood-mini-card .mini-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.seafood-landing-wrapper .seafood-mini-card .mini-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-text);
    line-height: 1.3;
}
.seafood-landing-wrapper .seafood-mini-card .mini-rating {
    display: flex;
    gap: 2px;
}
.seafood-landing-wrapper .seafood-mini-card .mini-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-blue);
}

.seafood-landing-wrapper .seafood-widget {
    margin-bottom: 40px; /* Increased spacing between widgets */
}

.seafood-landing-wrapper .seafood-section {
    margin-bottom: 60px;
    margin-top: 40px;
}

.seafood-landing-wrapper .seafood-section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--primary-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seafood-landing-wrapper .seafood-section-subtitle {
    font-size: 14px;
    color: var(--secondary-text);
    margin-top: -20px;
    margin-bottom: 24px;
}

.seafood-landing-wrapper .seafood-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}

.seafood-landing-wrapper .seafood-view-all {
    font-size: 14px;
    color: var(--secondary-text);
    text-decoration: underline !important;
}

/* Category Grid */
.seafood-landing-wrapper .seafood-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.seafood-landing-wrapper .seafood-category-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 180px;
}

.seafood-landing-wrapper .seafood-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.seafood-landing-wrapper .seafood-category-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.seafood-landing-wrapper .seafood-category-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-text);
    margin: 0;
}

.seafood-landing-wrapper .seafood-special-cat {
    position: relative;
    overflow: hidden;
}

.seafood-landing-wrapper .seafood-special-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-red);
    color: white;
    font-size: 10px;
    padding: 4px 8px;
    border-bottom-left-radius: 8px;
}

/* Product Grid */
.seafood-landing-wrapper .seafood-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.seafood-landing-wrapper .seafood-product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    position: relative;
    transition: box-shadow 0.2s;
}

.seafood-landing-wrapper .seafood-product-card:hover {
    box-shadow: var(--shadow-md);
}

.seafood-landing-wrapper .seafood-badge-discount {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-red);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}

.seafood-landing-wrapper .seafood-badge-special {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent-red);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 15px 5px;
    border-radius: 0 0 20px 20px;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
    transform: rotate(-15deg);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.seafood-landing-wrapper .seafood-product-image {
    padding: 0 !important;
    width: 100%;
    aspect-ratio: 1 / 1; /* Force square shape */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 12px;
    position: relative;
}
.seafood-landing-wrapper .seafood-product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Fill the area */
    transition: transform 0.5s ease;
    margin: 0 !important;
    padding: 0 !important;
}
.seafood-landing-wrapper .seafood-product-card:hover .seafood-product-image img {
    transform: scale(1.1);
}

.seafood-landing-wrapper .seafood-product-info {
    text-align: left;
}

.seafood-landing-wrapper .seafood-price-row {
    margin-bottom: 8px;
}

.seafood-landing-wrapper .seafood-current-price {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-text);
    margin-right: 8px;
}

.seafood-landing-wrapper .seafood-old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.seafood-landing-wrapper .seafood-product-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-text);
    margin-bottom: 16px;
    min-height: 40px; /* Ensure alignment */
    line-height: 1.4;
}

.seafood-landing-wrapper .seafood-rating {
    color: #FFC107;
    font-size: 12px;
    margin-bottom: 12px;
}

.seafood-landing-wrapper .seafood-review-count {
    color: #999;
    margin-left: 4px;
}

.seafood-landing-wrapper .seafood-btn-buy {
    width: 100%;
    padding: 10px;
    background: white;
    border: 1px solid #ccc;
    border-radius: var(--radius-full);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    display: block;
    text-align: center;
}

.seafood-landing-wrapper .seafood-btn-buy:hover {
    background: var(--primary-text);
    color: white;
    border-color: var(--primary-text);
}

/* Hot Deal Grid */
.seafood-landing-wrapper .seafood-hot-deal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.seafood-landing-wrapper .seafood-deal-card {
    background: #FDF6E8; /* Light beige default */
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.seafood-landing-wrapper .seafood-deal-card.highlight-bg {
    background: #FCEAEA; /* Light pinkish */
    background-color: #FCEAEA !important;
}

.seafood-landing-wrapper .seafood-deal-card:last-child {
    background: #E8F1F6; /* Light blueish */
}

.seafood-landing-wrapper .seafood-deal-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.seafood-landing-wrapper .seafood-deal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1); /* Slight darken */
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.seafood-landing-wrapper .seafood-deal-tag {
    font-family: 'Brush Script MT', cursive; /* Fallback for script font */
    color: #FFD700;
    font-size: 24px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.seafood-landing-wrapper .seafood-deal-price {
    background: rgba(255,255,255,0.9);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
    align-self: flex-start;
}

.seafood-landing-wrapper .seafood-deal-price .was {
    display: block;
    font-size: 10px;
    color: #E53935;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.seafood-landing-wrapper .seafood-deal-price .now {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-text);
}

.seafood-landing-wrapper .seafood-deal-content {
    padding: 24px;
    text-align: center;
}

.seafood-landing-wrapper .seafood-deal-subtitle {
    font-size: 13px;
    color: var(--secondary-text);
    display: block;
    margin-bottom: 4px;
}

.seafood-landing-wrapper .seafood-deal-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.seafood-landing-wrapper .seafood-btn-show-more {
    padding: 10px 30px;
    background: transparent;
    border: 1px solid var(--primary-text);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.2s;
    color: black
}

.seafood-landing-wrapper .seafood-btn-show-more:hover {
    background: var(--primary-text);
    color: white;
}

/* Floating Widgets */
.seafood-landing-wrapper .seafood-whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 100;
    transition: transform 0.2s;
}

.seafood-landing-wrapper .seafood-whatsapp-float:hover {
    transform: scale(1.1);
}

.seafood-landing-wrapper .seafood-reviews-tab {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #000;
    color: #FFD700;
    padding: 12px 8px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    cursor: pointer;
    z-index: 100;
    font-weight: 600;
    letter-spacing: 1px;
}

.seafood-landing-wrapper .seafood-footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.seafood-landing-wrapper .seafood-footer-handle {
    width: 40px;
    height: 4px;
    background: #ccc;
    border-radius: 2px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .seafood-landing-wrapper .seafood-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .seafood-landing-wrapper .seafood-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .seafood-landing-wrapper .seafood-hot-deal-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------
   SHOP PAGE SPECIFIC STYLES
   --------------------------------------------------------- */
/* Shop Toolbar */
.seafood-landing-wrapper .seafood-shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
}

.seafood-landing-wrapper .seafood-result-count {
    margin: 0;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.seafood-landing-wrapper .seafood-ordering {
    margin: 0;
}

.seafood-landing-wrapper .seafood-shop-layout {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.seafood-landing-wrapper .seafood-shop-sidebar {
    width: 280px;
    flex-shrink: 0;
    padding-right: 20px;
    border-right: 1px solid var(--border-color);
}

.seafood-landing-wrapper .seafood-shop-content {
    flex-grow: 1;
}

/* Widget Styling */
.seafood-landing-wrapper .seafood-widget {
    margin-bottom: 40px;
}

.seafood-landing-wrapper .seafood-widget .widget-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-text);
}

/* WooCommerce Price Filter */
.seafood-landing-wrapper .widget_price_filter .price_slider {
    background-color: #eee;
    margin-bottom: 20px;
    height: 4px;
    border-radius: 2px;
    position: relative;
}

.seafood-landing-wrapper .widget_price_filter .price_slider_bar {
    background-color: var(--accent-blue);
    height: 4px;
    border-radius: 2px;
    position: absolute;
}

.seafood-landing-wrapper .widget_price_filter .price_slider_amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.seafood-landing-wrapper .widget_price_filter .button {
    background: var(--primary-text);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

/* Custom Sidebar Styling */
.seafood-landing-wrapper .seafood-custom-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seafood-landing-wrapper .seafood-custom-categories li {
    margin-bottom: 12px;
}

.seafood-landing-wrapper .seafood-custom-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--secondary-text);
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s;
    background: transparent;
}

.seafood-landing-wrapper .seafood-custom-categories a:hover {
    background: #f0f0f0;
    color: var(--primary-text);
}

.seafood-landing-wrapper .seafood-custom-categories a.active {
    background: var(--accent-blue);
    color: white;
    font-weight: 500;
}

.seafood-landing-wrapper .seafood-custom-categories .count {
    font-size: 11px;
    background: rgba(0,0,0,0.05);
    padding: 2px 8px;
    border-radius: 10px;
}

.seafood-landing-wrapper .seafood-custom-categories a.active .count {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* Custom Price Filter */
.seafood-landing-wrapper .seafood-price-inputs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.seafood-landing-wrapper .price-group {
    flex: 1;
}

.seafood-landing-wrapper .price-group label {
    display: block;
    font-size: 12px;
    color: var(--secondary-text);
    margin-bottom: 4px;
}

.seafood-landing-wrapper .price-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
}

.seafood-landing-wrapper .seafood-btn-filter {
    width: 100%;
    background: var(--primary-text);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    transition: background 0.2s;
}

.seafood-landing-wrapper .seafood-btn-filter:hover {
    background: var(--accent-blue);
}

/* Pagination - Corrected */
/* Pagination - Corrected */
.seafood-landing-wrapper .seafood-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.seafood-landing-wrapper .seafood-pagination ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.seafood-landing-wrapper .seafood-pagination li {
    margin: 0;
}

.seafood-landing-wrapper .seafood-pagination a, 
.seafood-landing-wrapper .seafood-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #eee;
    color: var(--primary-text);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    background: #fff;
    line-height: normal;
    padding: 0;
}

.seafood-landing-wrapper .seafood-pagination a:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.seafood-landing-wrapper .seafood-pagination span.current {
    background-color: #222;
    color: #fff;
    border-color: #222;
}

/* Sorting Dropdown Fix */
.seafood-landing-wrapper .seafood-ordering select {
    width: auto;
    min-width: 200px;
    max-width: 100%;
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
}

@media (max-width: 900px) {
    .seafood-landing-wrapper .seafood-shop-layout {
        flex-direction: column;
    }
    
    .seafood-landing-wrapper .seafood-shop-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

/* About Us Page Styles */

.seafood-landing-wrapper .seafood-about-hero {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    overflow: hidden;
}

.seafood-landing-wrapper .seafood-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.seafood-landing-wrapper .seafood-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 20px;
}

.seafood-landing-wrapper .seafood-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.seafood-landing-wrapper .seafood-hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

.seafood-landing-wrapper .seafood-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.seafood-landing-wrapper .seafood-about-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-text);
    margin-bottom: 20px;
}

.seafood-landing-wrapper .seafood-about-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.seafood-landing-wrapper .seafood-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.seafood-landing-wrapper .seafood-value-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s;
}

.seafood-landing-wrapper .seafood-value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.seafood-landing-wrapper .seafood-value-icon {
    font-size: 40px;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.seafood-landing-wrapper .seafood-value-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-text);
}

.seafood-landing-wrapper .seafood-value-card p {
    font-size: 15px;
    color: var(--secondary-text);
    line-height: 1.5;
}

.seafood-landing-wrapper .seafood-cta-section {
    text-align: center;
    background: #f9f9f9;
    padding: 60px 20px;
    border-radius: var(--radius-lg);
}

.seafood-landing-wrapper .seafood-cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-text);
}

.seafood-landing-wrapper .seafood-cta-section p {
    font-size: 18px;
    color: var(--secondary-text);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .seafood-landing-wrapper .seafood-about-grid {
        grid-template-columns: 1fr;
    }
    .seafood-landing-wrapper .seafood-hero-content h1 {
        font-size: 36px;
    }
}
