.hero-section{
    position:relative;
    padding:0;
    background:
        radial-gradient(
            ellipse 900px 620px at 78% 18%,
            rgba(240, 225, 200, .9),
            rgba(253, 250, 244, 0) 60%
        ),
        linear-gradient(
            180deg,
            #fdfaf4 0%,
            #fcf6ec 60%,
            #f8ecda 100%
        );
    overflow:hidden;
}

.hero-eyebrow{
    color:#c19a5b;
    font-size:32px;
    font-weight:600;
}
.hero-divider{
    width:60px;
    height:2px;
    background:#c19a5b;
    border-radius:3px;
}

.hero-text{
    font-size:15.5px;
    line-height:1.75;
    color:#657085;
}

.hero-link-arrow{
    color:#8f2323;
    text-decoration:none;
    font-weight:600;
    font-size:15px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    border-bottom:1px solid #8f2323;
    padding-bottom:3px;
    transition:gap .25s ease;
}

.hero-link-arrow:hover{
    color:#8f2323;
    gap:13px;
}

.hero-link-arrow svg{
    transition:transform .25s ease;
}

.hero-link-arrow:hover svg{
    transform:translateX(3px);
}

.hero-visual{
    position:relative;
    height:600px;
    clip-path:inset(0 10px 0 0);
    margin-right:-20px;
    margin-left:-20px;
}

.hero-img-wrap{
    position:absolute;
    top:30px;
    right:-90px;
    width:112%;
    height:600px;
    border-radius:100px 0 0 0;
    overflow:hidden;
    background:#cfe0e8;
    transform:rotate(-5deg);
    transform-origin:left top;
}

.hero-img-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .9s ease;
}

.hero-img-wrap:hover img{
    transform:scale(1.05);
}

.hero-wave-divider{
    position:absolute;
    left:0;
    right:0;
    bottom:-2px;
    line-height:0;
}

.hero-wave-divider svg{
    width:100%;
    height:auto;
    display:block;
}

.hero-btn-primary-red{
    background:#8f2323;
    border:1px solid #8f2323;
    color:#fff;
    padding:11px 24px;
    border-radius:30px;
    font-size:14.5px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    transition:all .3s ease;
    background-size:200% auto;
    background-image:linear-gradient(
        90deg,
        #8f2323 0%,
        #a83232 50%,
        #8f2323 100%
    );
}

.hero-btn-primary-red:hover{
    background-position:right center;
    color:#fff;
    box-shadow:0 8px 20px rgba(143, 35, 35, 0.35);
    transform:translateY(-2px);
}

/* ===================== SEAFOOD FRESH SECTION ===================== */

.hero-fresh-section{
    background-color:#009de0;
    background: url(https://cdn.brandingvn.com/2607/haisankutomdanang.com/kutom-sea.jpg) no-repeat center center;
    background-size: cover;
    padding:35px 0 70px;
    position:relative;
    margin-top:-2px;
}

.hero-wave-icon{
    color:#8f2323;
}

.hero-fresh-heading{
    color:#006994;
    font-weight:700;
}

.hero-fresh-divider{
    width:56px;
    height:2px;
    background:#c19a5b;
    border-radius:3px;
}


.hero-fresh-img-wrap{
    position:relative;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 24px 48px -18px rgba(20, 30, 60, 0.25);
}

.hero-fresh-img-wrap img{
    width:100%;
    height:380px;
    object-fit:cover;
    display:block;
    transition:transform .9s ease;
}

.hero-fresh-img-wrap:hover img{
    transform:scale(1.06);
}

.hero-price-glass-card{
    position:absolute;
    left:24px;
    bottom:24px;
    background:rgba(255, 255, 255, 0.72);
    backdrop-filter:blur(14px) saturate(160%);
    -webkit-backdrop-filter:blur(14px) saturate(160%);
    border:1px solid rgba(255, 255, 255, 0.5);
    border-radius:16px;
    box-shadow:0 12px 30px rgba(20, 30, 60, 0.18);
}


.hero-price-glass-card .hero-item-name{ color:#006994; }


/* ===================== PRODUCT CARDS ===================== */

.hero-product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 26px -12px rgba(20, 30, 60, 0.14);
    transition:transform .35s ease, box-shadow .35s ease;
    height:100%;
}

.hero-product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 26px 46px -18px rgba(20, 30, 60, 0.28);
}

.hero-product-img{
    height:170px;
    overflow:hidden;
    position:relative;
}

.hero-product-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.hero-product-card:hover .hero-product-img img{
    transform:scale(1.12);
}

.hero-product-name{ color:#006994; }