

:root {
    --sorai-primary: #c93424;
    --sorai-primary-dark: #a92318;
    --sorai-primary-light: #e65f50;

    --sorai-pink-soft: #fff3f1;

    --sorai-heading: #332725;
    --sorai-text: #514541;
    --sorai-muted: #837570;

    --sorai-border: #eedfdb;
    --sorai-white: #ffffff;

    --sorai-shadow-sm: 0 8px 24px rgba(70, 43, 36, 0.07);
    --sorai-shadow-md: 0 15px 38px rgba(70, 43, 36, 0.12);

    --sorai-header-height: 90px;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    min-width: 320px;

    scroll-behavior: smooth;
}

body.sorai-product-body {
    width: 100%;
    min-width: 320px;

    margin: 0;

    /* INI YANG MENJAMIN HERO DI BAWAH HEADER */
    padding-top: var(--sorai-header-height) !important;

    overflow-x: hidden;

    color: var(--sorai-text);

    background-color: var(--sorai-white);
}

img {
    display: block;
    max-width: 100%;
}

a,
a:hover {
    text-decoration: none;
}


/* =========================================================
   HEADER FINAL
========================================================= */

.sorai-product-header {
    position: fixed !important;

    top: 0;
    right: 0;
    left: 0;

    z-index: 99999;

    width: 100%;
    height: var(--sorai-header-height);

    background-color: rgba(255, 255, 255, 0.99);

    box-shadow: 0 5px 24px rgba(57, 39, 34, 0.07);
}

.sorai-product-navbar {
    width: 100%;
    height: var(--sorai-header-height);

    min-height: var(--sorai-header-height);

    margin: 0;

    padding: 0;

    border: 0;
    border-bottom: 1px solid rgba(201, 52, 36, 0.08);

    background-color: transparent;
}

.sorai-product-navbar-container {
    display: flex;

    width: calc(100% - 64px);
    max-width: 1480px;

    height: var(--sorai-header-height);

    min-height: var(--sorai-header-height);

    flex-wrap: nowrap;
    align-items: center;

    margin-right: auto;
    margin-left: auto;

    padding-right: 0;
    padding-left: 0;
}


/* =========================================================
   LOGO
========================================================= */

.sorai-product-logo {
    display: flex !important;

    width: 165px;
    height: 64px;

    flex: 0 0 165px;

    align-items: center;
    justify-content: flex-start;

    margin: 0 26px 0 0 !important;

    padding: 0 !important;

    overflow: visible;
}

.sorai-product-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: left center;
}


/* =========================================================
   COLLAPSE DESKTOP
========================================================= */

@media (min-width: 992px) {

    .sorai-product-navbar .navbar-collapse {
        display: flex !important;

        min-width: 0;

        flex: 1 1 auto;

        align-items: center;

        margin: 0;
        padding: 0;
    }

    .sorai-product-menu {
        display: flex;

        min-width: 0;

        flex: 1 1 auto;

        flex-direction: row;
        flex-wrap: nowrap;

        align-items: center;
        justify-content: flex-start;

        gap: 4px;

        margin: 0;
        padding: 0;
    }

    .sorai-product-menu > .nav-item {
        display: flex;

        flex: 0 0 auto;

        align-items: center;
    }

    .sorai-product-menu > .nav-item > .nav-link {
        position: relative;

        display: flex;

        min-height: var(--sorai-header-height);

        align-items: center;
        justify-content: center;

        padding: 0 8px !important;

        color: var(--sorai-heading);

        font-size: 11px;
        font-weight: 700;

        letter-spacing: 0.2px;

        text-transform: uppercase;

        white-space: nowrap;
    }

    .sorai-product-menu > .nav-item > .nav-link::after {
        position: absolute;

        right: 8px;
        bottom: 22px;
        left: 8px;

        height: 2px;

        border: 0;

        background-color: var(--sorai-primary);

        content: "";

        opacity: 0;

        transform: scaleX(0);

        transform-origin: center;

        transition:
            opacity 0.2s ease,
            transform 0.2s ease;
    }

    .sorai-product-menu > .nav-item.active > .nav-link,
    .sorai-product-menu > .nav-item:hover > .nav-link {
        color: var(--sorai-primary);
    }

    .sorai-product-menu > .nav-item.active > .nav-link::after,
    .sorai-product-menu > .nav-item:hover > .nav-link::after {
        opacity: 1;

        transform: scaleX(1);
    }
}


/* =========================================================
   DROPDOWN KATEGORI
========================================================= */

.sorai-product-category-dropdown {
    min-width: 220px;

    padding: 8px;

    border: 1px solid var(--sorai-border);

    border-radius: 12px;

    background-color: #ffffff;

    box-shadow: var(--sorai-shadow-md);
}

.sorai-product-category-dropdown .dropdown-item {
    padding: 10px 12px;

    border-radius: 7px;

    color: var(--sorai-heading);

    font-size: 12px;
    font-weight: 600;
}

.sorai-product-category-dropdown .dropdown-item:hover {
    color: var(--sorai-primary);

    background-color: var(--sorai-pink-soft);
}


/* =========================================================
   LOGIN / REGISTER
========================================================= */

.sorai-product-login {
    color: var(--sorai-primary) !important;
}

.sorai-product-register {
    min-width: 82px !important;
    min-height: 44px !important;

    margin-left: 4px !important;

    padding: 0 16px !important;

    border-radius: 9px;

    color: #ffffff !important;

    background-color: var(--sorai-primary);

    box-shadow: 0 8px 20px rgba(201, 52, 36, 0.20);
}

.sorai-product-register::after {
    display: none !important;
}

.sorai-product-register:hover {
    color: #ffffff !important;

    background-color: var(--sorai-primary-dark);
}


/* =========================================================
   ACTIONS KANAN
========================================================= */

.sorai-product-actions {
    display: flex;

    flex: 0 0 auto;

    flex-direction: row;
    flex-wrap: nowrap;

    align-items: center;

    gap: 2px;

    margin: 0 0 0 10px;
    padding: 0;
}

.sorai-product-actions .nav-item {
    display: flex;

    align-items: center;
    justify-content: center;
}

.sorai-product-icon {
    display: inline-flex;

    width: 38px;
    height: 38px;

    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;

    border-radius: 50%;

    color: var(--sorai-heading);

    background-color: transparent;

    font-size: 16px;

    cursor: pointer;
}

.sorai-product-icon:hover {
    color: var(--sorai-primary);

    background-color: var(--sorai-pink-soft);
}


/* =========================================================
   ACCOUNT
========================================================= */

.sorai-product-account {
    margin-left: 4px;
}

.sorai-product-account-link {
    display: flex !important;

    min-height: 48px;

    align-items: center;

    gap: 7px;

    padding: 4px 0 4px 7px !important;
}

.sorai-product-avatar {
    display: inline-flex;

    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    align-items: center;
    justify-content: center;

    border: 2px solid #ffe5e1;

    border-radius: 50%;

    color: #ffffff;

    background-color: var(--sorai-primary);

    font-size: 12px;
    font-weight: 700;
}

.sorai-product-account-name {
    display: inline-block;

    max-width: 100px;

    overflow: hidden;

    color: var(--sorai-heading);

    font-size: 12px;
    font-weight: 700;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.sorai-product-account-dropdown {
    min-width: 240px;

    padding: 9px;

    border: 1px solid var(--sorai-border);

    border-radius: 12px;

    box-shadow: var(--sorai-shadow-md);
}

.sorai-product-account-info {
    display: flex;

    flex-direction: column;

    padding: 9px 12px;
}

.sorai-product-account-info strong {
    color: var(--sorai-heading);

    font-size: 13px;
}

.sorai-product-account-info small {
    margin-top: 3px;

    color: var(--sorai-muted);

    font-size: 11px;
}

.sorai-product-account-dropdown .dropdown-item {
    padding: 9px 12px;

    border-radius: 7px;

    font-size: 12px;
}

.sorai-product-logout {
    color: #dc3545 !important;
}


/* =========================================================
   SEARCH PANEL
========================================================= */

.sorai-product-search-panel {
    position: absolute;

    top: 100%;
    right: 0;
    left: 0;

    z-index: 100000;

    visibility: hidden;

    width: 100%;

    background-color: var(--sorai-primary);

    box-shadow: 0 9px 22px rgba(78, 37, 29, 0.15);

    opacity: 0;

    transform: translateY(-8px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}

.sorai-product-search-panel.is-open {
    visibility: visible;

    opacity: 1;

    transform: translateY(0);
}

.sorai-product-search-form {
    display: flex;

    height: 58px;

    align-items: center;
}

.sorai-product-search-form input {
    min-width: 0;

    flex: 1 1 auto;

    height: 58px;

    padding: 0 15px;

    border: 0;
    outline: 0;

    color: #ffffff;

    background-color: transparent;

    font-size: 14px;
}

.sorai-product-search-form input::placeholder {
    color: rgba(255, 255, 255, 0.82);
}

.sorai-product-search-form button {
    display: inline-flex;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    border: 0;

    color: #ffffff;

    background-color: transparent;

    cursor: pointer;
}


/* =========================================================
   MAIN
========================================================= */

.sorai-product-main {
    position: relative;

    z-index: 1;

    width: 100%;

    padding-top: 0;
}


/* =========================================================
   HERO
========================================================= */

.product-hero {
    position: relative;

    width: calc(100% - 80px);
    max-width: 1280px;

    /*
       HEADER SUDAH DIKOMPENSASI OLEH body padding-top 90px.
       Jadi margin ini murni jarak visual, bukan penahan overlap.
    */
    margin: 28px auto 0;

    padding: 44px 50px 42px;

    overflow: hidden;

    border: 1px solid rgba(201, 52, 36, 0.10);

    border-radius: 22px;

    background:
        radial-gradient(
            circle at 91% 15%,
            rgba(255, 211, 204, 0.64),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #fffdfc 0%,
            #fff2ef 100%
        );

    box-shadow: 0 11px 32px rgba(87, 56, 48, 0.055);
}

.product-hero::before {
    position: absolute;

    top: -165px;
    right: -100px;

    width: 360px;
    height: 360px;

    border: 1px solid rgba(201, 52, 36, 0.08);

    border-radius: 50%;

    content: "";

    pointer-events: none;
}

.product-hero::after {
    position: absolute;

    right: 70px;
    bottom: -150px;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.28);

    content: "";

    pointer-events: none;
}

.product-hero-container {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 760px;
}

.product-hero-label {
    display: inline-flex;

    align-items: center;

    margin-bottom: 15px;

    padding: 7px 13px;

    border: 1px solid rgba(201, 52, 36, 0.13);

    border-radius: 30px;

    color: var(--sorai-primary);

    background-color: rgba(255, 255, 255, 0.82);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
}

.product-hero-label::before {
    width: 6px;
    height: 6px;

    margin-right: 7px;

    border-radius: 50%;

    background-color: var(--sorai-primary);

    content: "";
}

.product-hero h1 {
    max-width: 650px;

    margin: 0 0 13px;

    color: var(--sorai-heading);

    font-size: 40px;
    font-weight: 700;

    letter-spacing: -0.8px;

    line-height: 1.12;
}

.product-hero h1 span {
    color: var(--sorai-primary);
}

.product-hero p {
    max-width: 680px;

    margin: 0;

    color: var(--sorai-muted);

    font-size: 13px;

    line-height: 1.75;
}

.sorai-breadcrumb {
    display: flex;

    align-items: center;

    margin-top: 19px;

    font-size: 11px;
    font-weight: 600;
}

.sorai-breadcrumb a {
    color: var(--sorai-muted);
}

.sorai-breadcrumb a:hover {
    color: var(--sorai-primary);
}

.sorai-breadcrumb span {
    margin: 0 8px;

    color: #cab5b0;
}

.sorai-breadcrumb strong {
    color: var(--sorai-primary);
}


/* =========================================================
   PRODUCT PAGE
========================================================= */

.product-page {
    padding: 34px 0 78px;

    background-color: #ffffff;
}

.product-page-container {
    width: calc(100% - 80px);
    max-width: 1280px;

    margin-right: auto;
    margin-left: auto;
}

.product-page-container > .row {
    margin-right: -12px;
    margin-left: -12px;
}

.product-page-container > .row > [class*="col-"] {
    padding-right: 12px;
    padding-left: 12px;
}


/* =========================================================
   SIDEBAR
========================================================= */

.sorai-sidebar {
    position: sticky;

    top: calc(var(--sorai-header-height) + 20px);

    overflow: hidden;

    border: 1px solid var(--sorai-border);

    border-radius: 17px;

    background-color: #ffffff;

    box-shadow: var(--sorai-shadow-sm);
}

.sorai-sidebar-head {
    padding: 18px 20px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--sorai-primary-dark),
            var(--sorai-primary-light)
        );

    font-size: 13px;
    font-weight: 700;
}

.sorai-category-list {
    margin: 0;
    padding: 12px;

    list-style: none;
}

.sorai-category-list li {
    margin: 2px 0;
}

.sorai-category-list a {
    display: flex;

    min-height: 42px;

    align-items: center;
    justify-content: space-between;

    padding: 10px 12px;

    border-radius: 8px;

    color: var(--sorai-text);

    font-size: 12px;
    font-weight: 600;
}

.sorai-category-list a::after {
    color: #ccb3ad;

    content: "›";

    font-size: 18px;
}

.sorai-category-list a:hover,
.sorai-category-list a.active {
    color: var(--sorai-primary);

    background-color: var(--sorai-pink-soft);
}

.sidebar-note {
    margin: 0 12px 14px;

    padding: 14px;

    border: 1px solid #f2e3e0;

    border-radius: 11px;

    background-color: var(--sorai-pink-soft);
}

.sidebar-note strong {
    display: block;

    margin-bottom: 5px;

    color: var(--sorai-heading);

    font-size: 12px;
}

.sidebar-note p {
    margin: 0;

    color: var(--sorai-muted);

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   TOOLBAR
========================================================= */

.product-toolbar {
    display: flex;

    min-height: 68px;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 23px;

    padding: 13px 18px;

    border: 1px solid var(--sorai-border);

    border-radius: 15px;

    background-color: #ffffff;

    box-shadow: var(--sorai-shadow-sm);
}

.toolbar-title h2 {
    margin: 0 0 3px;

    color: var(--sorai-heading);

    font-size: 18px;
    font-weight: 700;
}

.toolbar-title p {
    margin: 0;

    color: var(--sorai-muted);

    font-size: 11px;
}

.toolbar-search-button {
    display: inline-flex;

    min-height: 40px;

    align-items: center;
    justify-content: center;

    padding: 8px 15px;

    border: 1px solid var(--sorai-border);

    border-radius: 9px;

    color: var(--sorai-primary);

    background-color: var(--sorai-pink-soft);

    font-size: 11px;
    font-weight: 700;

    cursor: pointer;
}

.toolbar-search-button span {
    margin-right: 7px;
}

.toolbar-search-button:hover {
    border-color: var(--sorai-primary);

    color: #ffffff;

    background-color: var(--sorai-primary);
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-grid-item {
    margin-bottom: 24px;
}

.sorai-product-card {
    position: relative;

    height: 100%;

    overflow: hidden;

    border: 1px solid var(--sorai-border);

    border-radius: 17px;

    background-color: #ffffff;

    box-shadow: var(--sorai-shadow-sm);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.sorai-product-card:hover {
    border-color: #e0c5bf;

    box-shadow: var(--sorai-shadow-md);

    transform: translateY(-5px);
}

.product-image-wrapper {
    position: relative;

    width: 100%;
    height: 255px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #fff8f6,
            #f8ebe8
        );
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.4s ease;
}

.sorai-product-card:hover .product-image-wrapper img {
    transform: scale(1.045);
}

.product-status {
    position: absolute;

    top: 12px;
    left: 12px;

    display: inline-flex;

    align-items: center;

    padding: 6px 9px;

    border-radius: 30px;

    color: var(--sorai-primary);

    background-color: rgba(255, 255, 255, 0.92);

    box-shadow: 0 5px 15px rgba(87, 56, 48, 0.08);

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
}

.product-status::before {
    width: 5px;
    height: 5px;

    margin-right: 6px;

    border-radius: 50%;

    background-color: var(--sorai-primary);

    content: "";
}

.product-card-body {
    padding: 17px;
}

.product-category {
    display: inline-block;

    margin-bottom: 7px;

    color: var(--sorai-primary);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.5px;

    text-transform: uppercase;
}

.product-name {
    min-height: 42px;

    margin: 0 0 9px;

    color: var(--sorai-heading);

    font-size: 15px;
    font-weight: 700;

    line-height: 1.4;
}

.product-price {
    margin-bottom: 14px;

    color: var(--sorai-primary);

    font-size: 17px;
    font-weight: 700;
}

.product-card-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-top: 13px;

    border-top: 1px solid #f0e5e2;
}

.product-detail-button {
    display: inline-flex;

    min-height: 38px;

    align-items: center;
    justify-content: center;

    padding: 8px 13px;

    border-radius: 8px;

    color: #ffffff !important;

    background-color: var(--sorai-primary);

    font-size: 10px;
    font-weight: 700;
}

.product-detail-button span {
    margin-left: 7px;
}

.product-detail-button:hover {
    color: #ffffff !important;

    background-color: var(--sorai-primary-dark);
}

.product-card-icon {
    display: flex;

    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--sorai-primary);

    background-color: var(--sorai-pink-soft);

    font-size: 14px;
}


/* =========================================================
   EMPTY
========================================================= */

.sorai-empty {
    width: 100%;

    padding: 55px 25px;

    border: 1px dashed #ddc5c0;

    border-radius: 17px;

    background-color: #ffffff;

    text-align: center;
}

.sorai-empty > span {
    display: flex;

    width: 60px;
    height: 60px;

    align-items: center;
    justify-content: center;

    margin: 0 auto 15px;

    border-radius: 50%;

    color: var(--sorai-primary);

    background-color: var(--sorai-pink-soft);

    font-size: 23px;
}

.sorai-empty h4 {
    margin: 0 0 7px;

    color: var(--sorai-heading);

    font-size: 17px;
    font-weight: 700;
}

.sorai-empty p {
    margin: 0;

    color: var(--sorai-muted);

    font-size: 12px;
}


/* =========================================================
   FOOTER
========================================================= */

.sorai-footer {
    padding: 65px 0 25px;

    color: #c7bebb;

    background:
        linear-gradient(
            145deg,
            #2b211f,
            #1f1816
        );
}

.sorai-container {
    width: calc(100% - 80px);
    max-width: 1280px;

    margin-right: auto;
    margin-left: auto;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.3fr 1fr 1fr;

    gap: 48px;
}

.footer-logo {
    width: 175px;
    height: 70px;

    margin-bottom: 19px;

    overflow: hidden;

    border-radius: 10px;

    background-color: #ffd9d4;
}

.footer-logo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.footer-column h4 {
    margin-bottom: 19px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
}

.footer-column p {
    color: #c7bebb;

    font-size: 13px;

    line-height: 1.75;
}

.footer-links {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: #c7bebb;

    font-size: 13px;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;

    gap: 10px;
}

.footer-social a {
    display: flex;

    width: 39px;
    height: 39px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background-color: rgba(255, 255, 255, 0.10);
}

.footer-social a:hover {
    color: #ffffff;

    background-color: var(--sorai-primary);
}

.footer-bottom {
    margin-top: 42px;

    padding-top: 23px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    color: #978c88;

    font-size: 12px;

    text-align: center;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (min-width: 992px) and (max-width: 1299px) {

    .sorai-product-navbar-container {
        width: calc(100% - 30px);
    }

    .sorai-product-logo {
        width: 135px;
        height: 54px;

        flex-basis: 135px;

        margin-right: 14px !important;
    }

    .sorai-product-menu {
        gap: 1px;
    }

    .sorai-product-menu > .nav-item > .nav-link {
        padding-right: 5px !important;
        padding-left: 5px !important;

        font-size: 9.5px;
    }

    .sorai-product-register {
        min-width: 70px !important;

        padding-right: 10px !important;
        padding-left: 10px !important;

        font-size: 9px !important;
    }

    .sorai-product-actions {
        margin-left: 5px;
    }

    .sorai-product-icon {
        width: 34px;
        height: 34px;

        font-size: 14px;
    }

    .sorai-product-account-name {
        display: none;
    }

    .product-hero,
    .product-page-container,
    .sorai-container {
        width: calc(100% - 60px);
        max-width: 1140px;
    }

    .product-hero {
        margin-top: 24px;

        padding: 38px 42px 36px;
    }

    .product-hero h1 {
        font-size: 36px;
    }

    .product-image-wrapper {
        height: 225px;
    }
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 991px) {

    :root {
        --sorai-header-height: 76px;
    }

    body.sorai-product-body {
        padding-top: var(--sorai-header-height) !important;
    }

    .sorai-product-header,
    .sorai-product-navbar {
        height: var(--sorai-header-height);
        min-height: var(--sorai-header-height);
    }

    .sorai-product-navbar-container {
        width: calc(100% - 24px);
        height: var(--sorai-header-height);
        min-height: var(--sorai-header-height);

        flex-wrap: wrap;
    }

    .sorai-product-logo {
        width: 140px;
        height: 56px;

        flex-basis: 140px;

        margin-right: 0 !important;
    }

    .sorai-product-toggler {
        margin-left: auto;

        padding: 8px;

        border: 0;

        border-radius: 7px;

        background-color: var(--sorai-pink-soft);
    }

    .sorai-product-navbar .navbar-collapse {
        position: absolute;

        top: var(--sorai-header-height);
        right: 12px;
        left: 12px;

        z-index: 100001;

        max-height: calc(100vh - var(--sorai-header-height) - 20px);

        padding: 12px;

        overflow-y: auto;

        border: 1px solid var(--sorai-border);

        border-radius: 12px;

        background-color: #ffffff;

        box-shadow: var(--sorai-shadow-md);
    }

    .sorai-product-menu {
        display: block;

        width: 100%;

        margin: 0;
        padding: 0;
    }

    .sorai-product-menu .nav-item {
        display: block;

        width: 100%;
    }

    .sorai-product-menu .nav-link {
        display: block;

        width: 100%;

        padding: 10px 12px !important;

        border-radius: 7px;

        color: var(--sorai-heading);

        font-size: 12px;
        font-weight: 700;
    }

    .sorai-product-menu .nav-item.active > .nav-link,
    .sorai-product-menu .nav-link:hover {
        color: var(--sorai-primary);

        background-color: var(--sorai-pink-soft);
    }

    .sorai-product-register {
        display: inline-flex !important;

        width: auto !important;

        min-height: 40px !important;

        margin: 5px 0 !important;
    }

    .sorai-product-actions {
        width: 100%;

        justify-content: flex-start;

        margin: 8px 0 0;

        padding-top: 8px;

        border-top: 1px solid var(--sorai-border);
    }

    .sorai-product-account-name {
        display: inline-block;
    }

    .sorai-product-account-dropdown {
        position: static !important;

        width: 100%;

        margin-top: 5px;
    }

    .product-hero {
        width: calc(100% - 40px);

        margin-top: 20px;

        padding: 34px 30px 32px;

        border-radius: 18px;
    }

    .product-page-container,
    .sorai-container {
        width: calc(100% - 40px);
    }

    .product-hero h1 {
        font-size: 32px;
    }

    .sorai-sidebar {
        position: static;

        margin-bottom: 24px;
    }

    .product-image-wrapper {
        height: 270px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .product-hero,
    .product-page-container,
    .sorai-container {
        width: calc(100% - 16px);
    }

    .product-hero {
        margin-top: 14px;

        padding: 29px 24px 27px;

        border-radius: 14px;
    }

    .product-hero h1 {
        font-size: 29px;
    }

    .product-hero p {
        font-size: 12px;
    }

    .product-page {
        padding: 28px 0 55px;
    }

    .product-toolbar {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }

    .toolbar-search-button {
        width: 100%;
    }

    .product-image-wrapper {
        height: 280px;
    }

    .sorai-footer {
        padding: 35px 0 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .footer-logo {
        width: 130px;
        height: 52px;
    }

    .footer-column h4 {
        margin-bottom: 10px;

        font-size: 14px;
    }

    .footer-column p,
    .footer-links a {
        font-size: 12px;
    }

    .footer-social a {
        width: 34px;
        height: 34px;
    }

    .footer-bottom {
        margin-top: 25px;

        padding-top: 15px;

        font-size: 10px;
    }
}


/* =========================================================
   HP KECIL
========================================================= */

@media (max-width: 370px) {

    .product-hero,
    .product-page-container,
    .sorai-container {
        width: calc(100% - 12px);
    }

    .product-hero {
        padding-right: 18px;
        padding-left: 18px;
    }

    .product-hero h1 {
        font-size: 25px;
    }

    .product-image-wrapper {
        height: 250px;
    }
    .sidebar-admin-button {
    background: #25d366;
    color: #ffffff !important;
}

.product-page .product-custom-button {
    background: #25d366;
}

.product-page .product-custom-button:hover {
    background: #1faf55;
}
}