.page-main {
    display: flex;
    justify-content: center;
}

/* Dark hero section for Anchovy */
.hero-anchovy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
    background: linear-gradient(135deg, #0b2d46 0%, #0f3d54 100%);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.hero-left {
    color: #fff;
}

.hero-left h2 {
    font-size: 1.8rem;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    background: #ff8c42;
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.process-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.process-icon {
    color: #a8d5e8;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.process-text {
    flex: 1;
}

.process-text strong {
    color: #fff;
    display: block;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.process-text span {
    color: #b0d4e8;
    font-size: 0.95rem;
    line-height: 1.4;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-main-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.hero-main-image img {
    display: block;
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.hero-secondary-images {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.secondary-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.secondary-image img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    background: #fff;
    padding: 4px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.image-label {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    max-width: 150px;
}

/* Product gallery: side-by-side, responsive, with hover effects */
.product-gallery {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(180deg, #f7fbff 0%, #eef7ff 100%);
    padding: 1rem;
    border-radius: 10px;
    flex-wrap: wrap;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(14, 30, 37, 0.08);
    transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
    width: 300px;
    text-align: center;
}

.product-card img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: grayscale(60%) contrast(0.95) brightness(0.98);
    transition: filter 220ms ease, transform 220ms ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(14, 30, 37, 0.14);
}

.product-card:hover img {
    filter: none;
    transform: scale(1.02);
}

.product-card figcaption {
    padding: 0.6rem 0.8rem 1rem;
    font-weight: 600;
    color: #113b66;
}

/* Small thumbs used elsewhere (table) */
.product-thumb {
    max-width: 140px;
    height: auto;
    display: block;
    margin: 0.25rem auto;
    border-radius: 6px;
}

/* Bestselling section styles */
.bestselling-section {
    margin-top: 1.25rem;
    background: linear-gradient(180deg, #fffaf6 0%, #fff5ef 100%);
    padding: 1rem;
    border-radius: 10px;
}

.bestselling-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    margin-top: 0.75rem;
}

.bestselling-card {
    width: 220px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(14, 30, 37, 0.06);
    transition: transform 200ms ease, box-shadow 200ms ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.bestselling-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.98);
    transition: filter 200ms ease, transform 200ms ease;
}

.bestselling-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(14, 30, 37, 0.12); }
.bestselling-card:hover img { filter: none; transform: scale(1.02); }

.bestselling-card .product-name { padding: 0.6rem 0.8rem; color: #0f3a5a; font-weight: 600; }

.callout { margin-top: 1rem; background: #0f3a5a; color: #fff; padding: 1rem; border-radius: 8px; text-align:center; font-weight:600; }

/* Responsive: stack on small screens */
@media (max-width: 640px) {
    .hero-anchovy {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .hero-left h2 {
        font-size: 1.4rem;
    }

    .hero-main-image {
        order: -1;
    }

    .hero-secondary-images {
        justify-content: center;
    }

    .secondary-image img {
        width: 120px;
        height: 120px;
    }

    .product-gallery { gap: 0.75rem; }
    .product-card { width: 100%; max-width: 420px; }
    .bestselling-card { width: 100%; max-width: 420px; }
}