/* ==================================================
   CHE'GU WEBSITE
   FULL STYLE.CSS
================================================== */

/* =========================
   VARIABLES
========================= */

:root {
    --red: #d72b35;
    --dark-red: #901820;
    --yellow: #e9b33d;
    --green: #667a4c;

    --cream: #f3e7d6;
    --light-cream: #fffaf2;

    --brown: #81553b;
    --dark: #211914;
    --grey: #716961;
    --white: #ffffff;

    --border: #e4d5c3;

    --shadow-small:
        0 10px 25px rgba(65, 42, 27, 0.08);

    --shadow-large:
        0 22px 48px rgba(65, 42, 27, 0.15);
}

/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Barlow Condensed", Arial, sans-serif;

    color: var(--dark);
    background: var(--light-cream);

    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1320px, 94%);
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

section {
    scroll-margin-top: 80px;
}

.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);
    white-space: nowrap;

    border: 0;
}

/* =========================
   HEADER
========================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;

    background:
        rgba(255, 250, 242, 0.92);

    border-bottom:
        1px solid rgba(215, 43, 53, 0.12);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.site-header.scrolled {
    background:
        rgba(255, 250, 242, 0.98);

    box-shadow:
        0 9px 28px
        rgba(55, 35, 24, 0.09);
}

.navbar {
    min-height: 78px;

    display: flex;
    align-items: center;

    gap: 22px;
}

/* =========================
   LOGO
========================= */

.brand-logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.brand-logo img {
    width: 105px;
    height: 58px;

    object-fit: contain;

    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.brand-logo:hover img {
    transform:
        scale(1.05)
        rotate(-2deg);

    filter:
        drop-shadow(
            0 7px 11px
            rgba(215, 43, 53, 0.20)
        );
}

/* =========================
   NAVIGATION
========================= */

.nav-menu {
    display: flex;
    align-items: center;

    gap: 28px;

    margin-left: auto;

    font-size: 17px;
    font-weight: 700;
}

.nav-menu a {
    position: relative;

    padding: 9px 0;

    transition: color 0.25s ease;
}

.nav-menu a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 2px;

    width: 0;
    height: 2px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--red),
            var(--yellow)
        );

    transition: width 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--red);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* =========================
   SEARCH
========================= */

.header-search {
    width: 220px;
    height: 44px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 999px;

    background: var(--white);

    box-shadow: var(--shadow-small);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.header-search:focus-within {
    border-color: var(--red);

    box-shadow:
        0 10px 24px
        rgba(215, 43, 53, 0.15);

    transform: translateY(-2px);
}

.header-search input {
    width: 100%;
    height: 100%;

    padding: 0 9px 0 17px;

    border: none;
    outline: none;

    color: var(--dark);
    background: transparent;

    font-size: 15px;
}

.header-search input::placeholder {
    color: #9e958c;
}

.header-search button {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: grid;
    place-items: center;

    border: none;
    border-radius: 50%;

    color: var(--white);
    background: var(--red);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.header-search button:hover {
    background: var(--green);

    transform: rotate(-5deg);
}

.header-search svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-button {
    display: none;

    width: 44px;
    height: 44px;

    flex-shrink: 0;

    border: none;
    background: transparent;
}

.menu-button span {
    display: block;

    width: 27px;
    height: 2px;

    margin: 7px auto;

    border-radius: 999px;

    background: var(--dark);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.menu-button.active span:nth-child(1) {
    transform:
        translateY(9px)
        rotate(45deg);
}

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-button.active span:nth-child(3) {
    transform:
        translateY(-9px)
        rotate(-45deg);
}

/* =========================
   HERO — MINIMAL PREMIUM
   COLORWAY MERAH & CREAM
========================= */

.floating-product {
    display: none !important;
}

.hero {
    position: relative;
    min-height: 760px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 110px 0 64px;

    overflow: hidden;
    isolation: isolate;

    background-color: #5b1118;
    background-image:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.24) 0%,
            rgba(0, 0, 0, 0.10) 46%,
            rgba(0, 0, 0, 0.48) 100%
        ),
        var(--hero-bg);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    animation: none;
}

/* Vignette merah gelap lembut */
.hero::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 0;

    background:
        radial-gradient(
            ellipse at center,
            transparent 24%,
            rgba(0, 0, 0, 0.10) 66%,
            rgba(0, 0, 0, 0.34) 100%
        );

    pointer-events: none;
}

/* Garisan cream-merah */
.hero::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 48px;
    z-index: 2;

    width: 150px;
    height: 2px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #f3e7d6,
            #d72b35,
            transparent
        );

    transform: translateX(-50%);

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;

    width: min(860px, 90%);
    max-width: 860px;

    margin: 0 auto;
    padding: 0;

    color: var(--cream);
    text-align: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;
    padding: 14px 28px;

    border: 1px solid rgba(255, 247, 236, 0.92);
    border-radius: 999px;

    color: #8f1720;
    background:
        linear-gradient(
            135deg,
            rgba(255, 250, 242, 0.98),
            rgba(243, 231, 214, 0.96)
        );

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    box-shadow:
        0 14px 30px rgba(79, 7, 14, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 0 0 4px rgba(255, 243, 223, 0.12);

    opacity: 1;
    animation: none;
}

.hero h1 {
    max-width: 820px;
    margin: 0 auto;

    color: #fff3df;

    font-family: "Pacifico", cursive;
    font-size: clamp(62px, 7.2vw, 100px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0.3px;

    text-shadow:
        0 3px 0 #d72b35,
        0 0 16px rgba(215, 43, 53, 0.48),
        0 10px 25px rgba(0, 0, 0, 0.45);

    opacity: 1;
    animation: none;
}

.hero-text {
    max-width: 720px;
    margin: 24px auto 0;
    padding: 0;

    color: #fffaf2;
    background: transparent;

    border-radius: 0;

    font-size: 23px;
    font-weight: 600;
    line-height: 1.55;

    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.82),
        0 5px 16px rgba(0, 0, 0, 0.42);

    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    opacity: 1;
    animation: none;
}

/* =========================
   HERO BUTTON
========================= */

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    font-weight: 800;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.primary-button {
    margin-top: 31px;
    padding: 14px 28px;

    border: 1px solid rgba(243, 231, 214, 0.85);
    border-radius: 999px;

    color: var(--dark-red);
    background:
        linear-gradient(
            135deg,
            #fffaf2,
            #f3e7d6
        );

    font-size: 18px;

    box-shadow:
        0 13px 28px rgba(79, 7, 14, 0.26);

    opacity: 1;
    animation: none;
}

.primary-button:hover {
    color: var(--cream);
    background:
        linear-gradient(
            135deg,
            var(--red),
            var(--dark-red)
        );

    transform: translateY(-4px);

    box-shadow:
        0 16px 30px rgba(102, 10, 18, 0.32);
}

.primary-button span,
.secondary-button span {
    transition: transform 0.25s ease;
}

.primary-button:hover span,
.secondary-button:hover span {
    transform: translateX(6px);
}

.hero-background-text {
    position: absolute;
    right: 0;
    bottom: -22px;
    z-index: 1;

    color: rgba(255, 245, 230, 0.055);

    font-size: clamp(90px, 14vw, 200px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -5px;

    white-space: nowrap;
    pointer-events: none;
}

/* =========================
   GENERAL HEADING
========================= */

.eyebrow {
    color: var(--red);

    font-size: 16px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading {
    max-width: 730px;

    margin: 0 auto 48px;

    text-align: center;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
    margin-top: 9px;

    font-family: "Knewave", cursive;

    font-size:
        clamp(40px, 5vw, 66px);

    font-weight: 400;
    line-height: 1.09;
}

.section-heading p:last-child {
    max-width: 620px;

    margin: 0 auto;

    color: var(--grey);

    font-size: 19px;
    line-height: 1.55;
}

.title-line {
    width: 84px;
    height: 6px;

    margin: 20px 0 25px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--red),
            var(--yellow),
            var(--green)
        );
}

.title-line.centered {
    margin-left: auto;
    margin-right: auto;
}

/* =========================
   ABOUT
========================= */

.about {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 7% 14%,
            rgba(215, 43, 53, 0.07) 0,
            rgba(215, 43, 53, 0.07) 95px,
            transparent 96px
        ),
        radial-gradient(
            circle at 94% 88%,
            rgba(233, 179, 61, 0.14) 0,
            rgba(233, 179, 61, 0.14) 135px,
            transparent 136px
        ),
        linear-gradient(
            135deg,
            #f4e6d4,
            #fffaf3 52%,
            #efddc5
        );
}

.about::after {
    content: "CHE'GU";

    position: absolute;
    right: -17px;
    bottom: -28px;

    color:
        rgba(215, 43, 53, 0.04);

    font-size:
        clamp(88px, 15vw, 200px);

    font-weight: 800;
    line-height: 1;

    pointer-events: none;
}

.about-decoration {
    position: absolute;
    top: 90px;
    left: -130px;

    width: 295px;
    height: 145px;

    border:
        3px solid
        rgba(215, 43, 53, 0.11);

    border-radius:
        100% 15% 100% 15%;

    transform: rotate(-28deg);

    animation:
        decorationFloating
        7s ease-in-out infinite;

    pointer-events: none;
}

.about-grid {
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;

    align-items: center;

    gap: 55px;
}

.about-image-wrap {
    position: relative;

    width: 100%;
    max-width: 650px;

    display: flex;
    justify-content: center;

    margin: 0 auto;
}

.polaroid-showcase {
    position: relative;

    width: min(560px, 96%);
    height: 560px;
}

.polaroid-card {
    position: absolute;
    z-index: 2;

    width: 260px;

    padding: 14px 14px 18px;

    border-radius: 10px;

    background: #fffdf8;

    box-shadow:
        0 24px 48px rgba(68, 36, 22, 0.18);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.polaroid-card-main {
    top: 42px;
    left: 50%;
    z-index: 4;

    width: 315px;

    transform:
        translateX(-50%)
        rotate(-2deg);
}

.polaroid-card-left {
    left: 4px;
    bottom: 38px;

    transform: rotate(-9deg);
}

.polaroid-card-right {
    right: 2px;
    bottom: 46px;

    transform: rotate(8deg);
}

.polaroid-card:hover {
    z-index: 8;

    box-shadow:
        0 30px 62px rgba(68, 36, 22, 0.25);
}

.polaroid-card-main:hover {
    transform:
        translateX(-50%)
        translateY(-10px)
        rotate(0deg)
        scale(1.02);
}

.polaroid-card-left:hover {
    transform:
        translateY(-10px)
        rotate(-4deg)
        scale(1.03);
}

.polaroid-card-right:hover {
    transform:
        translateY(-10px)
        rotate(3deg)
        scale(1.03);
}

.polaroid-image {
    width: 100%;
    aspect-ratio: 4 / 5;

    overflow: hidden;

    border-radius: 6px;

    background: var(--cream);
}

.polaroid-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.polaroid-card:hover .polaroid-image img {
    transform: scale(1.06);
    filter: saturate(1.08);
}

.polaroid-card figcaption {
    padding-top: 13px;

    color: var(--dark-red);

    font-family: "Pacifico", cursive;
    font-size: 24px;
    line-height: 1.15;
    text-align: center;
}

.polaroid-card-left figcaption,
.polaroid-card-right figcaption {
    font-size: 20px;
}

.polaroid-sticker {
    position: absolute;
    right: 18px;
    top: 20px;
    z-index: 9;

    width: 105px;
    height: 105px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border:
        5px solid
        rgba(255, 250, 242, 0.95);

    border-radius: 50%;

    color: var(--white);
    background:
        linear-gradient(
            145deg,
            var(--red),
            var(--dark-red)
        );

    text-align: center;

    box-shadow:
        0 16px 32px rgba(144, 24, 32, 0.28);

    animation:
        labelFloating
        4s ease-in-out infinite;
}

.polaroid-sticker strong {
    font-size: 30px;
    line-height: 1;
}

.polaroid-sticker span {
    width: 72px;

    margin-top: 5px;

    font-size: 12px;
    line-height: 1.1;
}

.polaroid-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.polaroid-decoration-one {
    left: 38px;
    top: 38px;

    width: 90px;
    height: 90px;

    background:
        rgba(233, 179, 61, 0.16);
}

.polaroid-decoration-two {
    right: 42px;
    bottom: 36px;

    width: 118px;
    height: 118px;

    border:
        24px solid
        rgba(102, 122, 76, 0.10);
}

.about-copy > p:not(.eyebrow) {
    margin-bottom: 16px;

    color: var(--grey);

    font-size: 19px;
    line-height: 1.55;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 22px;

    margin: 34px 0 14px;
}

.about-feature-card {
    position: relative;

    min-height: 88px;

    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;

    gap: 14px;

    padding: 8px 0 16px;

    border-bottom:
        2px solid
        rgba(215, 43, 53, 0.14);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.about-feature-card:nth-child(2) {
    border-bottom-color:
        rgba(233, 179, 61, 0.28);
}

.about-feature-card:nth-child(3) {
    border-bottom-color:
        rgba(102, 122, 76, 0.28);
}

.about-feature-card::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -2px;

    width: 0;
    height: 2px;

    border-radius: 999px;

    background: var(--red);

    transition: width 0.35s ease;
}

.about-feature-card:nth-child(2)::after {
    background: var(--yellow);
}

.about-feature-card:nth-child(3)::after {
    background: var(--green);
}

.about-feature-card:hover {
    transform: translateY(-4px);
}

.about-feature-card:hover::after {
    width: 100%;
}

.about-feature-number {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    flex-shrink: 0;

    border-radius: 50%;

    color: var(--red);
    background: transparent;

    border:
        2px solid
        rgba(215, 43, 53, 0.28);

    font-family: "Knewave", cursive;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;

    box-shadow: none;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.about-feature-card:nth-child(2) .about-feature-number {
    color: #ad7411;

    border-color:
        rgba(233, 179, 61, 0.48);
}

.about-feature-card:nth-child(3) .about-feature-number {
    color: var(--green);

    border-color:
        rgba(102, 122, 76, 0.44);
}

.about-feature-card:hover .about-feature-number {
    color: var(--white);
    background: var(--red);

    transform: rotate(-5deg) scale(1.04);
}

.about-feature-card:nth-child(2):hover .about-feature-number {
    color: var(--dark);
    background: var(--yellow);
}

.about-feature-card:nth-child(3):hover .about-feature-number {
    color: var(--white);
    background: var(--green);
}

.about-feature-title {
    position: relative;

    max-width: none;

    color: var(--dark);

    font-size: 20px;
    font-weight: 800;
    line-height: 1.15;
}

.secondary-button {
    margin-top: 19px;
    padding: 13px 25px;

    border-radius: 999px;

    color: var(--white);
    background: var(--red);

    font-size: 18px;

    box-shadow:
        0 9px 21px
        rgba(215, 43, 53, 0.20);
}

.secondary-button:hover {
    background: var(--green);

    transform: translateY(-3px);
}

@media screen and (max-width: 560px) {
    .about-features {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .about-feature-card {
        min-height: 76px;

        grid-template-columns: 52px 1fr;

        gap: 13px;

        padding: 8px 0 14px;
    }

    .about-feature-number {
        width: 50px;
        height: 50px;

        font-size: 19px;
    }

    .about-feature-title {
        font-size: 19px;
    }
}




@media screen and (max-width: 560px) {
    .polaroid-showcase {
        width: min(330px, 94%);
        height: 430px;
    }

    .polaroid-card {
        width: 165px;

        padding: 9px 9px 12px;
    }

    .polaroid-card-main {
        top: 28px;

        width: 205px;
    }

    .polaroid-card-left {
        left: -2px;
        bottom: 30px;
    }

    .polaroid-card-right {
        right: -2px;
        bottom: 36px;
    }

    .polaroid-card figcaption {
        padding-top: 9px;

        font-size: 17px;
    }

    .polaroid-card-main figcaption {
        font-size: 21px;
    }

    .polaroid-sticker {
        right: -8px;
        top: 14px;

        width: 86px;
        height: 86px;
    }

    .polaroid-sticker strong {
        font-size: 25px;
    }

    .polaroid-sticker span {
        width: 62px;

        font-size: 10px;
    }
}

/* =========================
   PRODUCTS
========================= */

.products {
    position: relative;

    overflow: hidden;

    background-color:
        var(--light-cream);

    background-image:
        radial-gradient(
            circle at 5% 6%,
            rgba(215, 43, 53, 0.06) 0,
            rgba(215, 43, 53, 0.06) 85px,
            transparent 86px
        ),
        radial-gradient(
            circle at 95% 93%,
            rgba(233, 179, 61, 0.14) 0,
            rgba(233, 179, 61, 0.14) 120px,
            transparent 121px
        ),
        radial-gradient(
            rgba(102, 122, 76, 0.07) 1.2px,
            transparent 1.2px
        );

    background-size:
        auto,
        auto,
        29px 29px;

    background-repeat:
        no-repeat,
        no-repeat,
        repeat;
}

.products > .container {
    position: relative;
    z-index: 3;

    width: min(1460px, 95%);
    max-width: none;
}

.products-shape {
    position: absolute;

    pointer-events: none;
}

.products-shape-one {
    top: 350px;
    left: -140px;

    width: 320px;
    height: 155px;

    border:
        3px solid
        rgba(215, 43, 53, 0.08);

    border-radius:
        100% 15% 100% 15%;

    transform: rotate(-28deg);
}

.products-shape-two {
    right: -150px;
    bottom: 330px;

    width: 330px;
    height: 330px;

    border:
        48px solid
        rgba(233, 179, 61, 0.07);

    border-radius: 50%;

    animation:
        rotateDecoration
        30s linear infinite;
}

/* FILTER */

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 10px;
}

.filter-button {
    display: flex;
    align-items: center;

    gap: 9px;

    padding: 10px 18px;

    border: 1px solid var(--border);
    border-radius: 999px;

    color: var(--dark);

    background:
        rgba(255, 255, 255, 0.82);

    font-size: 16px;
    font-weight: 800;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.filter-button span {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--cream);

    font-size: 12px;
}

.filter-button:hover,
.filter-button.active {
    color: var(--dark-red);
    background: var(--cream);
    border-color: var(--cream);

    transform: translateY(-3px);
}

.filter-button:hover span,
.filter-button.active span {
    color: var(--red);
    background: var(--white);
}

.search-message {
    min-height: 24px;

    margin: 18px 0 32px;

    color: var(--brown);

    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

/* PRODUCT CATEGORY */

.category-block {
    margin-top: 75px;
}

.category-heading {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 28px;
}

.category-heading h3 {
    font-family: "Knewave", cursive;

    font-size:
        clamp(34px, 4vw, 49px);

    font-weight: 400;
}

.category-heading span {
    padding: 6px 14px;

    border-radius: 999px;

    color: var(--white);
    background: var(--green);

    font-size: 15px;
    font-weight: 800;
}

.category-heading::after {
    content: "";

    flex: 1;
    height: 4px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--yellow),
            transparent
        );
}



/* PRODUCT GRID */

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}

/* PRODUCT CARD */

.product-card {
    position: relative;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 19px;

    background:
        rgba(255, 255, 255, 0.96);

    box-shadow:
        0 11px 28px
        rgba(65, 42, 27, 0.07);

    transition:
        transform 0.35s
        cubic-bezier(0.22, 1, 0.36, 1),

        border-color 0.35s ease,

        box-shadow 0.35s ease;
}

.product-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--red),
            var(--yellow),
            var(--green)
        );

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.35s ease;
}

.product-card::after {
    content: "";

    position: absolute;
    top: -55%;
    left: -125%;
    z-index: 4;

    width: 72%;
    height: 210%;

    background:
        linear-gradient(
            110deg,
            transparent,
            rgba(255, 255, 255, 0.44),
            transparent
        );

    transform: rotate(13deg);

    transition: left 0.7s ease;

    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-11px);

    border-color:
        rgba(215, 43, 53, 0.35);

    box-shadow: var(--shadow-large);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover::after {
    left: 145%;
}

.product-image {
    position: relative;

    height: 280px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 27px;

    background:
        radial-gradient(
            circle,
            #fff9ee,
            #ead8c0
        );
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.product-card:hover .product-image img {
    transform:
        scale(1.07)
        rotate(-1deg);

    filter: saturate(1.09);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;

    padding: 6px 11px;

    border-radius: 999px;

    color: var(--white);
    background: var(--red);

    font-size: 12px;
    font-weight: 800;

    box-shadow:
        0 7px 15px
        rgba(215, 43, 53, 0.20);
}

.product-content {
    padding: 24px;
}

.product-type {
    color: var(--red);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-content h4 {
    margin: 6px 0 10px;

    font-size: 28px;
}

.product-content p {
    min-height: 52px;

    color: var(--grey);

    font-size: 17px;
    line-height: 1.45;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 21px;
}

.product-footer strong {
    font-size: 24px;
}

.product-footer a {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 9px 17px;

    border-radius: 999px;

    color: var(--white);
    background: var(--red);

    font-size: 15px;
    font-weight: 800;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.product-footer a:hover {
    background: var(--green);

    transform: translateY(-3px);
}

.product-card.hidden-product,
.category-block.hidden-category {
    display: none;
}

.product-card.product-appear {
    animation:
        productAppear
        0.45s ease both;
}

/* =========================
   HOW TO USE
========================= */

.how-to-use {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 14%,
            rgba(215, 43, 53, 0.07) 0,
            rgba(215, 43, 53, 0.07) 90px,
            transparent 91px
        ),
        radial-gradient(
            circle at 93% 88%,
            rgba(233, 179, 61, 0.15) 0,
            rgba(233, 179, 61, 0.15) 125px,
            transparent 126px
        ),
        radial-gradient(
            rgba(102, 122, 76, 0.06) 1px,
            transparent 1px
        ),
        var(--light-cream);

    background-size:
        auto,
        auto,
        30px 30px;
}

.how-to-use::after {
    content:
        "MUDAH • CEPAT • SEDAP";

    position: absolute;
    right: -10px;
    bottom: -16px;

    color:
        rgba(215, 43, 53, 0.04);

    font-size:
        clamp(54px, 9vw, 122px);

    font-weight: 800;
    line-height: 1;

    white-space: nowrap;

    pointer-events: none;
}

.how-to-use > .container {
    position: relative;
    z-index: 3;
}

.how-shape {
    position: absolute;

    pointer-events: none;
}

.how-shape-one {
    top: 80px;
    left: -130px;

    width: 290px;
    height: 140px;

    border:
        3px solid
        rgba(215, 43, 53, 0.09);

    border-radius:
        100% 15% 100% 15%;

    transform: rotate(-28deg);
}

.how-shape-two {
}

.how-shape-two {
    right: -100px;
    bottom: -100px;

    width: 250px;
    height: 250px;

    border:
        35px solid
        rgba(233, 179, 61, 0.07);

    border-radius: 50%;
}

.steps-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;

    margin-top: 48px;
}

.steps-grid::before {
    content: "";

    position: absolute;
    top: 75px;
    left: 16%;
    z-index: 0;

    width: 68%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--red),
            var(--yellow),
            var(--green)
        );
}

.step-card {
    position: relative;
    z-index: 1;

    min-height: 310px;

    padding: 32px 27px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.95);

    box-shadow: var(--shadow-small);

    text-align: center;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.step-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--red),
            var(--yellow),
            var(--green)
        );

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.35s ease;
}

.step-card:hover {
    transform: translateY(-10px);

    border-color:
        rgba(215, 43, 53, 0.30);

    box-shadow: var(--shadow-large);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-number {
    position: absolute;
    top: 17px;
    left: 20px;

    color:
        rgba(215, 43, 53, 0.17);

    font-family:
        "Knewave", cursive;

    font-size: 45px;
    line-height: 1;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.step-card:hover .step-number {
    color:
        rgba(215, 43, 53, 0.34);

    transform:
        translateY(-4px)
        rotate(-4deg);
}

.step-icon {
    width: 86px;
    height: 86px;

    display: grid;
    place-items: center;

    margin: 15px auto 25px;

    border: 8px solid #f2e7d7;
    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #fffaf2,
            #ead8bc
        );

    font-size: 38px;

    box-shadow:
        0 10px 22px
        rgba(73, 45, 25, 0.10);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.step-card:hover .step-icon {
    border-color:
        rgba(233, 179, 61, 0.40);

    transform:
        translateY(-5px)
        rotate(5deg)
        scale(1.05);
}

.step-card h3 {
    margin-bottom: 11px;

    font-size: 27px;
}

.step-card p {
    max-width: 290px;

    margin: 0 auto;

    color: var(--grey);

    font-size: 17px;
    line-height: 1.55;
}

/* =========================
   CONTACT
========================= */

.contact {
    position: relative;

    overflow: hidden;

    color: var(--white);

    background:
        radial-gradient(
            circle at 12% 25%,
            rgba(233, 179, 61, 0.20),
            transparent 260px
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(32, 24, 19, 0.18),
            transparent 300px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.025) 0,
            rgba(255, 255, 255, 0.025) 10px,
            transparent 10px,
            transparent 24px
        ),
        linear-gradient(
            135deg,
            var(--red),
            var(--dark-red)
        );
}

.contact::before {
    content:
        "PES • SAMBAL • SOS";

    position: absolute;
    left: -8px;
    bottom: -22px;

    color:
        rgba(255, 255, 255, 0.055);

    font-size:
        clamp(68px, 11vw, 150px);

    font-weight: 800;
    line-height: 1;

    white-space: nowrap;

    pointer-events: none;
}

.contact-grid {
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 65px;
}

.contact-copy .eyebrow {
    color: #ffe18a;
}

.contact-copy > p:last-child {
    max-width: 530px;

    margin-top: 20px;

    color:
        rgba(255, 255, 255, 0.82);

    font-size: 19px;
    line-height: 1.55;
}

.contact-links {
    display: grid;
    gap: 13px;
}

.contact-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 21px;

    border-radius: 14px;

    color: var(--dark);
    background: var(--white);

    box-shadow:
        0 10px 23px
        rgba(0, 0, 0, 0.12);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.contact-links a:hover {
    background: var(--cream);

    transform: translateX(7px);
}

.contact-links small {
    display: block;

    margin-bottom: 2px;

    color: var(--grey);

    font-size: 13px;
}

.contact-links strong {
    font-size: 21px;
}

.contact-links > a > span {
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    transition: transform 0.25s ease;
}

.contact-links a:hover > span {
    transform: translateX(5px);
}

/* =========================
   FOOTER
========================= */

.site-footer {
    position: relative;

    padding: 63px 0 20px;

    overflow: hidden;

    color: var(--white);

    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(215, 43, 53, 0.15),
            transparent 270px
        ),
        #120d09;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 55px;
}

.footer-logo {
    display: inline-flex;
}

.footer-logo img {
    width: 105px;
    height: auto;

    object-fit: contain;
}

.footer-grid > div:first-child p {
    margin-top: 14px;
}

.site-footer h3 {
    margin-bottom: 14px;

    font-size: 21px;
}

.site-footer p,
.site-footer a:not(.footer-logo) {
    display: block;

    margin-bottom: 8px;

    color: #b2aaa3;

    font-size: 17px;

    transition: color 0.2s ease;
}

.site-footer a:not(.footer-logo):hover {
    color: var(--yellow);
}

.copyright {
    margin-top: 42px;
    padding-top: 20px;

    border-top: 1px solid #362c25;

    color: #7d756f;

    text-align: center;
}

/* =========================
   SCROLL ANIMATION
========================= */

.js .reveal {
    opacity: 0;

    transform: translateY(42px);

    transition:
        opacity 0.75s ease,
        transform 0.75s
        cubic-bezier(0.22, 1, 0.36, 1);

    transition-delay:
        var(--delay, 0ms);
}

.js .reveal-left {
    transform: translateX(-45px);
}

.js .reveal-right {
    transform: translateX(45px);
}

.js .reveal.is-visible {
    opacity: 1;

    transform: translate(0, 0);
}

/* =========================
   KEYFRAMES
========================= */

@keyframes heroLabelEnter {
    from {
        opacity: 0;

        transform:
            translateY(-25px)
            rotate(-3deg);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            rotate(0deg);
    }
}

@keyframes heroTitleEnter {
    from {
        opacity: 0;

        transform:
            translateY(45px)
            scale(0.95);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;

        transform:
            translateY(30px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}

@keyframes labelFloating {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes productFloating {
    0%,
    100% {
        transform:
            translateY(0)
            rotate(-2deg);
    }

    50% {
        transform:
            translateY(-16px)
            rotate(2deg);
    }
}

@keyframes decorationFloating {
    0%,
    100% {
        transform:
            translateY(0)
            rotate(-28deg);
    }

    50% {
        transform:
            translateY(-15px)
            rotate(-22deg);
    }
}

@keyframes redGlowMove {
    from {
        transform:
            translate(0, 0)
            scale(1);
    }

    to {
        transform:
            translate(75px, 40px)
            scale(1.12);
    }
}

@keyframes rotateDecoration {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes heroBackgroundMove {
    from {
        background-position:
            center center;
    }

    to {
        background-position:
            center 45%;
    }
}

@keyframes productAppear {
    from {
        opacity: 0;

        transform:
            translateY(18px)
            scale(0.97);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}

@media screen and (min-width: 1280px) {
    .products {
        overflow: hidden;
    }

    .category-block {
        margin-top: 68px;
    }

    .category-heading {
        margin-bottom: 24px;
    }

    .product-card {
        border-radius: 20px;
    }

    .product-content {
        padding: 26px 26px 24px;
    }

    .product-content h4 {
        font-size: 28px;
    }
}

/* =========================
   SMALL DESKTOP
========================= */

@media screen and (max-width: 1050px) {

    .nav-menu {
        gap: 18px;
    }

    .header-search {
        width: 185px;
    }

    .product-1 {
        width: 170px;
    }

    .product-2 {
        width: 180px;
    }

    .product-3 {
        width: 165px;
    }

    .product-4 {
        width: 155px;
    }

    .product-5 {
        width: 165px;
        right: 125px;
    }
}

/* =========================
   TABLET
========================= */

@media screen and (max-width: 920px) {

    .navbar {
        gap: 12px;
    }

    .menu-button {
        position: relative;
        z-index: 1002;

        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 78px;
        left: -100%;
        z-index: 1001;

        width: 100%;
        height: calc(100vh - 78px);

        flex-direction: column;
        justify-content: flex-start;
        align-items: center;

        gap: 24px;

        padding-top: 55px;

        background:
            radial-gradient(
                circle at 90% 10%,
                rgba(215, 43, 53, 0.10),
                transparent 190px
            ),
            var(--cream);

        font-family:
            "Knewave", cursive;

        font-size: 29px;

        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        gap: 55px;
    }

    .about-image-wrap {
        width: 100%;
        max-width: 760px;
        margin: 0 auto;
    }

    .about-image-box {
        height: 500px;
    }

    .product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .steps-grid {
        max-width: 680px;

        grid-template-columns: 1fr;

        margin-left: auto;
        margin-right: auto;
    }

    .steps-grid::before {
        display: none;
    }

    .step-card {
        min-height: auto;
    }

    .footer-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .product-1 {
        width: 150px;
    }

    .product-2 {
        width: 160px;
    }

    .product-3 {
        width: 145px;
    }

    .product-4 {
        width: 135px;
    }

    .product-5 {
        width: 145px;
        right: 90px;
    }
}

/* =========================
   PHONE
========================= */

@media screen and (max-width: 650px) {

    .container {
        width: 93%;
    }

    .section-padding {
        padding: 72px 0;
    }

    .navbar {
        min-height: 70px;

        gap: 7px;
    }

    .brand-logo img {
        width: 77px;
        height: 48px;
    }

    .header-search {
        width: 137px;
        height: 39px;

        margin-left: auto;
    }

    .header-search input {
        padding-left: 12px;

        font-size: 12px;
    }

    .header-search button {
        width: 39px;
        height: 39px;

        flex-basis: 39px;
    }

    .header-search svg {
        width: 17px;
        height: 17px;
    }

    .menu-button {
        width: 39px;
        height: 39px;
    }

    .menu-button span {
        width: 24px;
    }

    .nav-menu {
        top: 70px;

        height:
            calc(100vh - 70px);

        padding-top: 45px;

        font-size: 26px;
    }

    /* HERO PHONE */

    .hero {
        min-height: 630px;
        padding: 88px 0 40px;

        background-image:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.22) 0%,
                rgba(0, 0, 0, 0.48) 100%
            ),
            var(--hero-bg);

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

        animation: none;
    }

    .hero-content {
        width: 92%;
        max-width: 100%;

        margin: 0 auto;
        padding: 0;

        text-align: center;
    }

    .hero-label {
        margin-bottom: 18px;
        padding: 11px 19px;

        font-size: 18px;
        letter-spacing: 0.9px;

        box-shadow:
            0 10px 20px rgba(79, 7, 14, 0.20),
            inset 0 1px 0 rgba(255, 255, 255, 0.94);
    }

    .hero h1 {
        max-width: 100%;

        font-size: 42px;
        line-height: 1.08;
        letter-spacing: 0.2px;
    }

    .hero-text {
        max-width: 94%;

        margin: 18px auto 0;
        padding: 0;

        font-size: 17px;
        font-weight: 600;
        line-height: 1.48;
    }

    .primary-button {
        margin-top: 24px;
        padding: 12px 22px;

        font-size: 16px;
    }

    .hero-background-text {
        right: -4px;
        bottom: -3px;

        font-size: 60px;
        letter-spacing: -2px;
    }

    .hero::after {
        bottom: 30px;
        width: 90px;
    }

    /* FLOATING PRODUCT PHONE */

    .floating-product {
        display: none !important;
    }

    /* HEADING PHONE */

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .about-copy h2,
    .contact-copy h2 {
        font-size: 40px;
    }

    .section-heading p:last-child,
    .about-copy > p:not(.eyebrow),
    .contact-copy > p:last-child {
        font-size: 17px;
    }

    /* ABOUT PHONE */

    .about-image-wrap {
        width: 100%;
        margin: 0 auto;
    }

    .about-image-box {
        height: 400px;
        border-radius: 24px 8px;
    }

    .about-badge {
        right: 12px;
        bottom: 12px;

        width: 94px;
        height: 94px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    /* PRODUCT PHONE — LEBIH KEMAS */

    .filter-buttons {
        justify-content: flex-start;

        gap: 8px;
    }

    .filter-button {
        padding: 8px 13px;

        font-size: 14px;
    }

    .category-block {
        margin-top: 54px;
    }

    .category-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 9px;

        margin-bottom: 20px;
    }

    .category-heading::after {
        width: 100%;

        flex: none;
    }

    .category-heading h3 {
        font-size: 32px;
    }

    .category-heading span {
        padding: 5px 12px;

        font-size: 13px;
    }

    .product-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .product-card {
        width: 100%;
        max-width: 430px;

        margin: 0 auto;

        border-radius: 22px;

        box-shadow:
            0 12px 28px
            rgba(65, 42, 27, 0.09);
    }

    .product-image {
        height: 215px;

        padding: 15px;

        border-bottom:
            1px solid
            rgba(215, 43, 53, 0.08);
    }

    .product-image img {
        object-fit: contain;
    }

    .product-badge {
        top: 12px;
        left: 12px;

        padding: 5px 10px;

        font-size: 11px;
    }

    .product-content {
        padding: 18px;
    }

    .product-type {
        font-size: 12px;
        letter-spacing: 0.8px;
    }

    .product-content h4 {
        margin: 5px 0 8px;

        font-size: 26px;
        line-height: 1.15;
    }

    .product-content p {
        min-height: auto;

        font-size: 16px;
        line-height: 1.45;
    }

    .product-footer {
        margin-top: 17px;
    }

    .product-footer strong {
        font-size: 23px;
    }

    .product-footer a {
        gap: 6px;

        padding: 9px 17px;

        font-size: 15px;
    }

    /* CONTACT PHONE */

    .contact::before {
        bottom: -5px;

        font-size: 48px;
    }

    /* FOOTER PHONE */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .footer-logo img {
        width: 92px;
    }

    /* ANIMATION PHONE */

    .js .reveal,
    .js .reveal-left,
    .js .reveal-right {
        transform: translateY(28px);
    }
}

/* =========================
   SMALL PHONE
========================= */

@media screen and (max-width: 390px) {

    .product-image {
        height: 195px;

        padding: 12px;
    }

    .product-content {
        padding: 16px;
    }

    .product-content h4 {
        font-size: 24px;
    }

    .product-content p {
        font-size: 15px;
    }

    .product-footer strong {
        font-size: 21px;
    }

    .product-footer a {
        padding: 8px 15px;

        font-size: 14px;
    }

    .brand-logo img {
        width: 68px;
    }

    .header-search {
        width: 120px;
    }

    .header-search input {
        font-size: 11px;
    }

    .hero h1 {
        font-size: 38px;
        letter-spacing: 0.2px;
    }

    .hero-text {
        font-size: 16px;
    }

    .product-1 {
        width: 72px;
    }

    .product-2 {
        width: 75px;
    }

    .product-3 {
        width: 70px;
    }

    .product-4 {
        width: 66px;
    }

    .product-5 {
        width: 72px;
        right: 52px;
    }
}

/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

        scroll-behavior:
            auto !important;
    }

    .js .reveal {
        opacity: 1;

        transform: none;
    }
}

/* =========================
   ABOUT IMAGE FINAL SAFETY
========================= */

.about-image-box {
    isolation: isolate;
}

.about-image-box > img {
    max-width: none;
}

.about-image-box .about-badge {
    max-width: calc(100% - 24px);
}

/* ==================================================
   FINAL MOBILE PRODUCT FIX
   Kekalkan desktop/laptop, phone sahaja 2 kolum
================================================== */

@media screen and (max-width: 650px) {

    .products > .container {
        width: 93%;
        max-width: none;
    }

    .product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 14px;
    }

    .product-card {
        width: 100%;
        max-width: none;

        display: flex;
        flex-direction: column;

        margin: 0;

        border-radius: 18px;

        box-shadow:
            0 10px 24px
            rgba(65, 42, 27, 0.09);
    }

    .product-image {
        height: 148px;

        padding: 10px;
    }

    .product-image img {
        width: 100%;
        height: 100%;

        object-fit: contain;
    }

    .product-badge {
        top: 9px;
        left: 9px;

        padding: 4px 8px;

        font-size: 9px;
    }

    .product-content {
        flex: 1;

        display: flex;
        flex-direction: column;

        padding: 13px;
    }

    .product-type {
        font-size: 10px;
        letter-spacing: 0.7px;
    }

    .product-content h4 {
        margin: 4px 0 7px;

        font-size: 20px;
        line-height: 1.12;
    }

    .product-content p {
        min-height: auto;

        font-size: 13px;
        line-height: 1.4;
    }

    .product-footer {
        margin-top: auto;
        padding-top: 14px;

        gap: 7px;
    }

    .product-footer strong {
        font-size: 18px;
        white-space: nowrap;
    }

    .product-footer a {
        gap: 4px;

        padding: 7px 10px;

        font-size: 12px;
        white-space: nowrap;
    }
}

@media screen and (max-width: 390px) {

    .product-grid {
        gap: 10px;
    }

    .product-image {
        height: 125px;

        padding: 8px;
    }

    .product-content {
        padding: 11px;
    }

    .product-content h4 {
        font-size: 18px;
    }

    .product-content p {
        font-size: 12px;
    }

    .product-footer {
        gap: 5px;
        padding-top: 12px;
    }

    .product-footer strong {
        font-size: 16px;
    }

    .product-footer a {
        padding: 6px 9px;

        font-size: 11px;
    }
}

/* ==================================================
   FINAL PRODUCT IMAGE — SIZE SAMA, CROP JIKA PERLU
   Untuk Pes, Sambal dan Sos
================================================== */

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image {
    position: relative;

    width: 100%;
    height: 280px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle,
            #fff9ee,
            #ead8c0
        );
}

.product-image img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;

    display: block;

    object-fit: cover !important;
    object-position: center center;

    transform: none !important;

    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04) !important;
    filter: saturate(1.04);
}

.product-content {
    flex: 1;

    display: flex;
    flex-direction: column;
}

.product-footer {
    margin-top: auto;
}

/* Berat product */
.product-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
    flex-wrap: wrap;
}

.product-weight {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 6px 12px;

    border: 1px solid rgba(215, 43, 53, 0.16);
    border-radius: 999px;

    color: var(--red);
    background: rgba(215, 43, 53, 0.07);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.product-content h4 {
    margin-top: 10px;
}

/* Laptop besar */
@media screen and (min-width: 1280px) {
    .product-image {
        height: 290px;
    }
}

/* Phone — kekalkan 2 produk satu baris */
@media screen and (max-width: 650px) {
    .product-image {
        height: 160px;
    }

    .product-meta-top {
        align-items: flex-start;
        flex-direction: column;

        gap: 6px;
    }

    .product-weight {
        padding: 5px 10px;

        font-size: 10px;
    }
}

/* Small phone */
@media screen and (max-width: 390px) {
    .product-image {
        height: 140px;
    }

    .product-weight {
        padding: 4px 8px;

        font-size: 9px;
    }
}

/* ==================================================
   SOS SAHAJA — TAK CROP
================================================== */

.product-card[data-category="sos"] .product-image {
    padding: 10px;
}

.product-card[data-category="sos"] .product-image img {
    object-fit: contain !important;
    object-position: center center;
    transform: none !important;
}

.product-card[data-category="sos"]:hover .product-image img {
    transform: none !important;
}

/* ==================================================
   SOS SAHAJA — TAK CROP & KOTAK IKUT SAIZ GAMBAR
================================================== */

.product-card[data-category="sos"] .product-image {
    height: auto !important;
    min-height: 0 !important;

    display: block;

    padding: 10px;
    overflow: visible;
}

.product-card[data-category="sos"] .product-image img {
    width: 100%;
    height: auto !important;
    max-width: 100%;
    max-height: none !important;

    display: block;

    object-fit: contain !important;
    object-position: center center;

    transform: none !important;
}

.product-card[data-category="sos"]:hover .product-image img {
    transform: none !important;
}

@media screen and (max-width: 650px) {
    .product-card[data-category="sos"] .product-image {
        height: auto !important;
        padding: 8px;
    }

    .product-card[data-category="sos"] .product-image img {
        height: auto !important;
        max-height: none !important;
    }
}

@media screen and (max-width: 390px) {
    .product-card[data-category="sos"] .product-image {
        height: auto !important;
        padding: 6px;
    }
}

/* =========================
   LOCATION / GOOGLE MAPS
   SPLIT LAYOUT
========================= */

.location {
    position: relative;

    padding: 90px 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f3eadf,
            #fffaf2
        );
}

.location-container {
    width: min(1500px, 96%);
}

.location-card {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    min-height: 560px;

    overflow: hidden;

    border:
        1px solid
        rgba(129, 85, 59, 0.14);

    border-radius: 26px;

    background: var(--white);

    box-shadow:
        0 25px 60px
        rgba(65, 42, 27, 0.14);
}

.location-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        clamp(55px, 7vw, 105px)
        clamp(38px, 6vw, 95px);

    background:
        linear-gradient(
            145deg,
            #f2e9de,
            #fffaf2
        );
}

.location-eyebrow {
    margin-bottom: 12px;

    color: var(--red);

    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.location-copy h2 {
    margin: 0 0 26px;

    color: var(--dark-red);

    font-family:
        "Barlow Condensed",
        Arial,
        sans-serif;

    font-size:
        clamp(52px, 5vw, 76px);

    font-weight: 700;
    line-height: 0.98;
}

.location-address {
    max-width: 520px;

    margin-bottom: 12px;

    color: var(--dark);

    font-size: 22px;
    line-height: 1.55;
}

.location-address strong {
    display: block;

    margin-top: 3px;

    font-weight: 600;
}

.location-description {
    max-width: 500px;

    color: var(--grey);

    font-size: 18px;
    line-height: 1.55;
}

.directions-button {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 30px;
    padding: 14px 23px;

    border: 2px solid var(--red);
    border-radius: 999px;

    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--red),
            var(--dark-red)
        );

    font-size: 17px;
    font-weight: 800;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.directions-button span,
.map-open-link span {
    transition: transform 0.25s ease;
}

.directions-button:hover {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);

    transform: translateY(-3px);
}

.directions-button:hover span,
.map-open-link:hover span {
    transform: translateX(5px);
}

.location-map {
    min-width: 0;

    display: flex;
    flex-direction: column;

    background: var(--white);
}

.map-frame {
    width: 100%;
    min-height: 500px;

    flex: 1;

    overflow: hidden;

    background: var(--cream);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;

    display: block;

    border: 0;
}

.map-open-link {
    min-height: 60px;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 0 24px;

    border-top: 1px solid var(--border);

    color: var(--dark-red);
    background: var(--white);

    font-size: 16px;
    font-weight: 800;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.map-open-link:hover {
    color: var(--red);
    background: #fffaf2;
}

/* TABLET */
@media screen and (max-width: 920px) {
    .location {
        padding: 72px 0;
    }

    .location-card {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .location-copy {
        min-height: 400px;

        padding: 60px 48px;
    }

    .map-frame,
    .map-frame iframe {
        min-height: 440px;
    }
}

/* PHONE */
@media screen and (max-width: 650px) {
    .location {
        padding: 55px 0;
    }

    .location-container {
        width: 93%;
    }

    .location-card {
        border-radius: 20px;
    }

    .location-copy {
        min-height: auto;

        padding: 44px 24px;
    }

    .location-eyebrow {
        font-size: 13px;
    }

    .location-copy h2 {
        margin-bottom: 20px;

        font-size: 48px;
    }

    .location-address {
        font-size: 18px;
        line-height: 1.45;
    }

    .location-description {
        font-size: 16px;
    }

    .directions-button {
        margin-top: 24px;
        padding: 12px 18px;

        font-size: 15px;
    }

    .map-frame,
    .map-frame iframe {
        min-height: 340px;
    }

    .map-open-link {
        min-height: 54px;

        padding: 0 18px;

        font-size: 14px;
    }
}

/* SMALL PHONE */
@media screen and (max-width: 390px) {
    .location-copy {
        padding: 38px 20px;
    }

    .location-copy h2 {
        font-size: 43px;
    }

    .location-address {
        font-size: 17px;
    }

    .map-frame,
    .map-frame iframe {
        min-height: 300px;
    }
}

/* ==================================================
   LOCATION FINAL — TEMA CHE'GU
================================================== */

.location-copy h2,
.map-open-link {
    color: var(--dark-red);
}

.location-copy {
    background:
        radial-gradient(
            circle at 12% 16%,
            rgba(215, 43, 53, 0.08),
            transparent 180px
        ),
        linear-gradient(
            145deg,
            #f3e7d6,
            #fffaf2
        );
}

.directions-button {
    border-color: var(--red);
    border-radius: 999px;

    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--red),
            var(--dark-red)
        );

    box-shadow:
        0 10px 24px
        rgba(144, 24, 32, 0.18);
}

.directions-button:hover {
    color: var(--dark-red);
    background: var(--cream);
    border-color: var(--cream);
}

.map-open-link:hover {
    color: var(--red);
}

/* ==================================================
   UPDATE — SOS CILI FULL BOX + MUST TRY BADGE
================================================== */

/* Must Try badge — kuning */
.badge-must-try {
    background: linear-gradient(135deg, #ffd84d, #f4be1f) !important;
    color: #3c2a00 !important;
    border: 1px solid rgba(155, 111, 0, 0.18);
    box-shadow: 0 10px 24px rgba(244, 190, 31, 0.28);
}

/* Sos Cili sahaja penuh satu kotak */
.product-card.sos-full-card[data-category="sos"] .product-image {
    height: 280px !important;
    min-height: 280px !important;
    padding: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.product-card.sos-full-card[data-category="sos"] .product-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
}

.product-card.sos-full-card[data-category="sos"]:hover .product-image img {
    transform: scale(1.03) !important;
}

@media screen and (min-width: 1280px) {
    .product-card.sos-full-card[data-category="sos"] .product-image {
        height: 290px !important;
        min-height: 290px !important;
    }
}

@media screen and (max-width: 650px) {
    .product-card.sos-full-card[data-category="sos"] .product-image {
        height: 160px !important;
        min-height: 160px !important;
    }

    .badge-must-try {
        font-size: 10px !important;
        padding: 8px 12px !important;
    }
}

@media screen and (max-width: 390px) {
    .product-card.sos-full-card[data-category="sos"] .product-image {
        height: 145px !important;
        min-height: 145px !important;
    }
}

/* ==================================================
   PREMIUM PRODUCT BADGES — POPULAR & MUST TRY
================================================== */

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 8;

    min-height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 9px 16px;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, 0.46);

    border-radius: 999px;

    color: var(--white);
    background:
        linear-gradient(
            135deg,
            #ef3b46 0%,
            var(--red) 48%,
            var(--dark-red) 100%
        );

    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.45px;
    text-transform: uppercase;

    box-shadow:
        0 12px 26px rgba(144, 24, 32, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.38);

    isolation: isolate;

    animation:
        premiumBadgeFloat
        3.4s ease-in-out infinite;
}

.product-badge::before {
    content: "✦";

    position: relative;
    z-index: 2;

    font-size: 13px;
    line-height: 1;
}

.product-badge::after {
    content: "";

    position: absolute;
    top: -40%;
    left: -85%;
    z-index: 1;

    width: 42%;
    height: 180%;

    background:
        linear-gradient(
            110deg,
            transparent,
            rgba(255, 255, 255, 0.72),
            transparent
        );

    transform: rotate(15deg);

    animation:
        premiumBadgeShine
        3.8s ease-in-out infinite;

    pointer-events: none;
}

.product-badge {
    text-shadow:
        0 1px 2px rgba(79, 7, 14, 0.28);
}

/* MUST TRY — GOLD PREMIUM */
.badge-must-try {
    min-height: 43px;

    padding: 11px 19px;

    border:
        1px solid
        rgba(255, 250, 210, 0.78);

    color: #4d3300 !important;
    background:
        linear-gradient(
            135deg,
            #fff4a8 0%,
            #ffd84d 34%,
            #f4be1f 68%,
            #d99b00 100%
        ) !important;

    font-size: 15px;
    letter-spacing: 0.6px;

    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.62);

    box-shadow:
        0 14px 30px rgba(213, 156, 0, 0.34),
        0 0 0 4px rgba(255, 216, 77, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);

    animation:
        premiumMustTryFloat
        3s ease-in-out infinite;
}

.badge-must-try::before {
    content: "★";

    font-size: 15px;
    color: #8a5a00;
}

.product-card:hover .product-badge {
    transform:
        translateY(-3px)
        scale(1.04);
}

@keyframes premiumBadgeFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes premiumMustTryFloat {
    0%,
    100% {
        transform:
            translateY(0)
            rotate(-1deg);
    }

    50% {
        transform:
            translateY(-4px)
            rotate(1deg);
    }
}

@keyframes premiumBadgeShine {
    0%,
    58% {
        left: -85%;
    }

    78%,
    100% {
        left: 135%;
    }
}

@media screen and (max-width: 650px) {
    .product-badge {
        top: 9px;
        left: 9px;

        min-height: 30px;

        gap: 5px;

        padding: 7px 11px;

        font-size: 10px;
        letter-spacing: 0.3px;
    }

    .product-badge::before {
        font-size: 10px;
    }

    .badge-must-try {
        min-height: 33px;

        padding: 8px 12px !important;

        font-size: 11px !important;
        letter-spacing: 0.35px;
    }

    .badge-must-try::before {
        font-size: 11px;
    }
}

@media screen and (max-width: 390px) {
    .product-badge {
        top: 7px;
        left: 7px;

        min-height: 27px;

        padding: 6px 9px;

        font-size: 9px;
    }

    .badge-must-try {
        min-height: 30px;

        padding: 7px 10px !important;

        font-size: 10px !important;
    }
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials {
    background:
        radial-gradient(circle at 10% 20%, rgba(215,43,53,.07), transparent 210px),
        linear-gradient(135deg, #fffaf2, #f3e7d6);
}

.testimonial-grid,
.retailer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.testimonial-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-small);
}

.testimonial-stars {
    margin-bottom: 18px;
    color: var(--yellow);
    font-size: 21px;
    letter-spacing: 3px;
}

.testimonial-card p {
    min-height: 96px;
    color: var(--grey);
    font-size: 18px;
    line-height: 1.55;
}

.testimonial-card strong {
    display: block;
    margin-top: 20px;
    font-size: 20px;
}

.testimonial-card small {
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
}

/* =========================
   RETAILERS
========================= */

.retailers {
    background: var(--light-cream);
}

.retailer-card {
    min-height: 150px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-small);
}

.retailer-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--cream);
    font-size: 25px;
}

.retailer-card h3 {
    margin-bottom: 6px;
    font-size: 25px;
}

.retailer-card p {
    color: var(--grey);
    font-size: 17px;
    line-height: 1.4;
}

/* =========================
   HALAL STRIP
========================= */

.halal-strip {
    padding: 58px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 20%, rgba(233,179,61,.22), transparent 230px),
        linear-gradient(135deg, var(--green), #3e5130);
}

.halal-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.halal-logo-wrap {
    width: 130px;
    height: 130px;
    flex: 0 0 130px;
    display: grid;
    place-items: center;
    padding: 10px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 18px 38px rgba(0,0,0,.18);
}

.halal-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.halal-fallback {
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--green);
    border-radius: 50%;
    color: var(--green);
    text-align: center;
}

.halal-fallback span {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.halal-fallback small {
    margin-top: 5px;
    font-size: 10px;
    font-weight: 900;
}

.halal-copy {
    max-width: 600px;
}

.halal-copy .eyebrow {
    color: #ffe18a;
}

.halal-copy h2 {
    margin: 5px 0 10px;
    font-family: "Knewave", cursive;
    font-size: 46px;
    font-weight: 400;
}

.halal-copy p:last-child {
    color: rgba(255,255,255,.82);
    font-size: 17px;
    line-height: 1.5;
}

@media screen and (max-width: 920px) {
    .testimonial-grid,
    .retailer-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 650px) {
    .testimonial-card {
        padding: 23px;
    }

    .testimonial-card p {
        min-height: auto;
        font-size: 16px;
    }

    .retailer-card {
        min-height: 125px;
        padding: 20px;
    }

    .halal-inner {
        flex-direction: column;
        text-align: center;
    }

    .halal-logo-wrap {
        width: 112px;
        height: 112px;
        flex-basis: 112px;
    }

    .halal-copy h2 {
        font-size: 38px;
    }
}

/* =========================
   FOOTER CTA — DAPATKAN CHE'GU
========================= */

.footer-cta-column {
    display: flex;
    flex-direction: column;
}

.footer-cta-link {
    min-height: 78px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    margin-top: 6px;
    margin-bottom: 0 !important;
    padding: 16px 18px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;

    color: var(--white) !important;
    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.02)
        );

    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.16);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease !important;
}

.footer-cta-link:hover {
    transform: translateY(-3px);

    border-color: rgba(233, 179, 61, 0.42);

    color: var(--white) !important;

    background:
        linear-gradient(
            135deg,
            rgba(215, 43, 53, 0.22),
            rgba(233, 179, 61, 0.10)
        );

    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.22);
}

.footer-cta-text small {
    display: block;
    margin-bottom: 5px;
    color: #b2aaa3;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.footer-cta-text strong {
    display: block;
    color: var(--white);
    font-size: 22px;
    line-height: 1.15;
}

.footer-cta-logo {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--red),
            var(--dark-red)
        );

    font-size: 24px;
    font-weight: 900;

    box-shadow:
        0 10px 24px rgba(144, 24, 32, 0.28);
}

@media screen and (max-width: 650px) {
    .footer-cta-link {
        min-height: 70px;
        padding: 14px 16px;
        border-radius: 16px;
    }

    .footer-cta-text strong {
        font-size: 20px;
    }

    .footer-cta-logo {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        font-size: 22px;
    }
}

/* =========================
   FOOTER UPDATE — RETAIL + HALAL LOGO
========================= */

.footer-grid.footer-grid-5 {
    grid-template-columns: 1.45fr 0.9fr 1fr 1fr 0.7fr;
    align-items: start;
    gap: 44px;
}

.footer-brand p {
    margin-top: 14px;
}

.footer-links-block,
.footer-retail-block,
.footer-contact-block {
    display: flex;
    flex-direction: column;
}

.footer-retail-block p,
.footer-contact-block p,
.footer-links-block a {
    margin-bottom: 8px;
}

.footer-halal-block {
    width: 120px;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-left: auto;
    padding: 8px;

    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.20);
}

.footer-halal-block img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-halal-fallback {
    width: 100%;
    height: 100%;

    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 3px solid #111;
    border-radius: 6px;

    color: #111;
    text-align: center;
    background: #fff;
}

.footer-halal-fallback span {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.footer-halal-fallback small {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

@media screen and (max-width: 1050px) {
    .footer-grid.footer-grid-5 {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
    }

    .footer-halal-block {
        grid-column: span 1;
        width: 100px;
        height: 100px;
    }
}

@media screen and (max-width: 850px) {
    .footer-grid.footer-grid-5 {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-halal-block {
        margin-left: 0;
        width: 96px;
        height: 96px;
    }
}

@media screen and (max-width: 650px) {
    .footer-grid.footer-grid-5 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-halal-block {
        width: 92px;
        height: 92px;
    }
}


/* ==================================================
   SOS UPDATE — BUANG RUANG DALAM KOTAK, FOLLOW GAMBAR
================================================== */

.product-card[data-category="sos"] .product-image,
.product-card.sos-full-card[data-category="sos"] .product-image {
    height: auto !important;
    min-height: unset !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0 !important;

    display: block !important;
    overflow: hidden !important;
    background: transparent !important;
}

.product-card[data-category="sos"] .product-image img,
.product-card.sos-full-card[data-category="sos"] .product-image img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    display: block !important;
    margin: 0 !important;

    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
}

.product-card[data-category="sos"]:hover .product-image img,
.product-card.sos-full-card[data-category="sos"]:hover .product-image img {
    transform: none !important;
}

/* ==================================================
   FINAL PRODUCT IMAGE STYLE — SEMUA IKUT GAMBAR
================================================== */

.product-card .product-image,
.product-card.sos-full-card .product-image {
    position: relative !important;

    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;

    display: block !important;

    padding: 0 !important;
    margin: 0 !important;

    overflow: hidden !important;
    line-height: 0 !important;

    background: transparent !important;
}

.product-card .product-image img,
.product-card.sos-full-card .product-image img {
    width: 100% !important;
    height: auto !important;

    max-width: 100% !important;
    max-height: none !important;

    display: block !important;

    margin: 0 !important;

    object-fit: contain !important;
    object-position: center center !important;

    transform: none !important;
}

.product-card:hover .product-image img,
.product-card.sos-full-card:hover .product-image img {
    transform: none !important;
    filter: saturate(1.02);
}

.product-card .product-badge {
    line-height: 1 !important;
}

/* Pastikan hasil search sentiasa kelihatan */
.product-card.search-result-visible {
    opacity: 1 !important;
    transform: none !important;
}

.category-block.search-result-visible,
.category-block.search-result-visible .category-heading {
    opacity: 1 !important;
    transform: none !important;
}