/* Template Section: 00-desktop-global-style */
/* =====================================================
   IOS STORE DESKTOP GLOBAL
===================================================== */

:root {
    --iosd-bg: #f5f5f7;
    --iosd-surface: #ffffff;
    --iosd-surface-soft: #f0f0f2;

    --iosd-text: #111114;
    --iosd-muted: #6e6e73;
    --iosd-muted-light: #8b8b92;

    --iosd-border: rgba(17, 17, 20, 0.08);
    --iosd-border-strong: rgba(17, 17, 20, 0.14);

    --iosd-radius-sm: 14px;
    --iosd-radius-md: 20px;
    --iosd-radius-lg: 28px;

    --iosd-shadow-sm:
        0 6px 18px rgba(20, 20, 30, 0.05);

    --iosd-shadow-md:
        0 14px 36px rgba(20, 20, 30, 0.08);

    --iosd-shadow-lg:
        0 28px 70px rgba(20, 20, 30, 0.13);

    --iosd-container: 1280px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;

    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    overflow-x: hidden;

    background: var(--iosd-bg);
    color: var(--iosd-text);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a,
button,
input,
select,
textarea {
    font: inherit;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.ios-site-main {
    position: relative;

    width: 100%;
    min-height: 70vh;

    overflow: hidden;

    background: var(--iosd-bg);
}

.iosd-container {
    width: calc(100% - 64px);
    max-width: var(--iosd-container);

    margin-right: auto;
    margin-left: auto;
}

.iosd-visually-hidden {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;
    clip: rect(0, 0, 0, 0);

    white-space: nowrap;
    border: 0;
}

@media (max-width: 1100px) {
    .iosd-container {
        width: calc(100% - 40px);
    }
}

/* Template Section: 20-navbar-desktop-white */
/* =====================================================
   IOS STORE NAVBAR
===================================================== */

.iosd-navbar,
.iosd-navbar *,
.iosd-navbar *::before,
.iosd-navbar *::after{
    box-sizing:border-box;
}

.iosd-navbar{
    position:sticky;
    top:0;
    z-index:9999;

    width:100%;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);

    border-bottom:1px solid var(--iosd-border);

    transition:.25s;
}

.iosd-navbar.is-scrolled{

    background:rgba(255,255,255,.96);

    box-shadow:0 8px 24px rgba(0,0,0,.06);

}

.iosd-navbar__container{

    width:calc(100% - 48px);
    max-width:1440px;

    min-height:78px;

    margin:auto;

    display:grid;

    grid-template-columns:
        220px
        1fr
        auto;

    align-items:center;

    gap:24px;

}

.iosd-navbar__brand{

    display:flex;
    align-items:center;

    text-decoration:none;

}

.iosd-navbar__logo{

    height:44px;

    width:auto;

    display:block;

    transition:.25s;

}

.iosd-navbar__brand:hover
.iosd-navbar__logo{

    transform:scale(1.03);

}

.iosd-navbar__navigation{

    justify-self:center;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:2px;

    padding:5px;

    background:#f1f1f3;

    border:1px solid var(--iosd-border);

    border-radius:999px;

}

.iosd-navbar__navigation a{

    display:flex;
    align-items:center;
    justify-content:center;

    min-height:39px;

    padding:0 15px;

    border-radius:999px;

    color:#595960;

    font-size:12px;
    font-weight:700;

    white-space:nowrap;

    text-decoration:none;

    transition:.2s;

}

.iosd-navbar__navigation a:hover{

    background:#fff;

    color:var(--iosd-text);

}

.iosd-navbar__navigation a.is-active{

    background:#fff;

    color:var(--iosd-text);

    box-shadow:
        0 4px 13px rgba(0,0,0,.08);

}

.iosd-navbar__actions{

    justify-self:end;

    display:flex;
    align-items:center;

    gap:10px;

}

.iosd-navbar__search{

    width:43px;
    height:43px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid var(--iosd-border);

    border-radius:14px;

    background:#fff;

    color:var(--iosd-text);

    text-decoration:none;

    transition:.2s;

}

.iosd-navbar__search svg{

    width:18px;
    height:18px;

    fill:none;

    stroke:currentColor;

    stroke-width:1.7;

    stroke-linecap:round;

    stroke-linejoin:round;

}

.iosd-navbar__search:hover{

    background:#f3f3f3;

    transform:translateY(-1px);

}

.iosd-navbar__button{

    display:flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    min-height:43px;

    padding:0 18px;

    border-radius:999px;

    background:#111;

    color:#fff;

    font-size:10px;
    font-weight:700;

    text-decoration:none;

    transition:.25s;

}

.iosd-navbar__button:hover{

    background:#2b2b2b;

    transform:translateY(-2px);

}

.iosd-navbar__button b{

    font-size:16px;
    font-weight:400;

}

@media(max-width:1120px){

    .iosd-navbar__container{

        grid-template-columns:
            170px
            1fr
            auto;

    }

    .iosd-navbar__navigation a{

        padding:0 10px;

        font-size:10px;

    }

}

@media(max-width:920px){

    .iosd-navbar__container{

        width:calc(100% - 24px);

        gap:12px;

    }

    .iosd-navbar__logo{

        height:38px;

    }

    .iosd-navbar__navigation{

        overflow:auto;

        scrollbar-width:none;

    }

    .iosd-navbar__navigation::-webkit-scrollbar{

        display:none;

    }

    .iosd-navbar__navigation a{

        font-size:9px;

        padding:0 8px;

    }

    .iosd-navbar__search{

        display:none;

    }

}

@media(max-width:768px){

    .iosd-navbar__button{

        display:none;

    }

}

/* Template Section: 90-footer-desktop-white */
/* =====================================================
   IOS STORE DESKTOP FOOTER
===================================================== */

.iosd-footer,
.iosd-footer *,
.iosd-footer *::before,
.iosd-footer *::after {
    box-sizing: border-box;
}

.iosd-footer {
    width: 100%;

    border-top: 1px solid var(--iosd-border);

    background: #ffffff;
}

.iosd-footer__container {
    width: calc(100% - 64px);
    max-width: var(--iosd-container);

    margin-right: auto;
    margin-left: auto;
}

/* =====================================================
   TRUST BAR
===================================================== */

.iosd-footer__trust {
    border-bottom: 1px solid var(--iosd-border);

    background: #f5f5f7;
}

.iosd-footer__trust
.iosd-footer__container {
    min-height: 110px;

    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
}

.iosd-footer__trust-item {
    min-width: 0;

    padding: 22px 24px;

    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 13px;

    border-right: 1px solid var(--iosd-border);
}

.iosd-footer__trust-item:first-child {
    border-left: 1px solid var(--iosd-border);
}

.iosd-footer__trust-icon {
    width: 44px;
    height: 44px;
    flex: none;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--iosd-border);
    border-radius: 14px;

    background: #ffffff;
    color: var(--iosd-text);

    font-size: 9px;
    font-weight: 850;

    box-shadow:
        0 6px 15px rgba(20, 20, 30, 0.045);
}

.iosd-footer__trust-item strong {
    display: block;

    color: var(--iosd-text);

    font-size: 10px;
    font-weight: 770;
    line-height: 1.4;
}

.iosd-footer__trust-item span {
    display: block;

    margin-top: 4px;

    color: var(--iosd-muted);

    font-size: 8px;
    line-height: 1.45;
}

/* =====================================================
   FOOTER MAIN
===================================================== */

.iosd-footer__main {
    padding: 58px 0;
}

.iosd-footer__main
.iosd-footer__container {
    display: grid;
    grid-template-columns:
        minmax(300px, 1.55fr)
        repeat(3, minmax(140px, 0.7fr));

    gap: 58px;
}

.iosd-footer__profile {
    max-width: 420px;
}

.iosd-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--iosd-text);
    text-decoration: none;
}

.iosd-footer__brand-mark {
    width: 43px;
    height: 43px;
    flex: none;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #303035,
            #09090b
        );

    color: #ffffff;

    font-size: 12px;
    font-weight: 850;

    box-shadow:
        0 9px 21px rgba(17, 17, 20, 0.19);
}

.iosd-footer__brand > span:last-child {
    min-width: 0;
}

.iosd-footer__brand strong {
    display: block;

    font-size: 20px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.65px;
}

.iosd-footer__brand small {
    display: block;

    margin-top: 6px;

    color: var(--iosd-muted);

    font-size: 8px;
    font-weight: 650;
}

.iosd-footer__profile > p {
    max-width: 380px;

    margin: 21px 0 23px;

    color: var(--iosd-muted);

    font-size: 10px;
    line-height: 1.75;
}

.iosd-footer__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.iosd-footer__contact a {
    min-height: 42px;

    padding: 8px 13px;

    display: inline-flex;
    flex-direction: column;
    justify-content: center;

    border: 1px solid var(--iosd-border);
    border-radius: 14px;

    background: #f5f5f7;
    color: var(--iosd-text);

    font-size: 8px;
    font-weight: 750;
    line-height: 1.3;
    text-decoration: none;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.iosd-footer__contact a span {
    display: block;

    margin-top: 3px;

    color: var(--iosd-muted);

    font-size: 8px;
    font-weight: 650;
}

.iosd-footer__contact a:hover {
    background: #ececef;

    transform: translateY(-1px);
}

/* =====================================================
   FOOTER COLUMNS
===================================================== */

.iosd-footer__column {
    min-width: 0;
}

.iosd-footer__column > strong {
    display: block;

    margin-bottom: 19px;

    color: var(--iosd-text);

    font-size: 9px;
    font-weight: 820;
    line-height: 1;
    letter-spacing: 1.05px;
    text-transform: uppercase;
}

.iosd-footer__column nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.iosd-footer__column nav a {
    color: var(--iosd-muted);

    font-size: 9px;
    font-weight: 650;
    line-height: 1.5;
    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.iosd-footer__column nav a:hover {
    color: var(--iosd-text);

    transform: translateX(2px);
}

.iosd-footer__store-note {
    margin-top: 21px;

    padding: 11px 12px;

    display: grid;
    grid-template-columns: 7px minmax(0, 1fr);
    align-items: start;
    gap: 9px;

    border: 1px solid var(--iosd-border);
    border-radius: 14px;

    background: #f5f5f7;
}

.iosd-footer__store-note > span {
    width: 7px;
    height: 7px;

    margin-top: 3px;

    border-radius: 50%;

    background: #34a853;

    box-shadow:
        0 0 0 4px rgba(52, 168, 83, 0.1);
}

.iosd-footer__store-note p {
    margin: 0;

    color: var(--iosd-muted);

    font-size: 8px;
    line-height: 1.5;
}

/* =====================================================
   FOOTER BOTTOM
===================================================== */

.iosd-footer__bottom {
    border-top: 1px solid var(--iosd-border);
}

.iosd-footer__bottom
.iosd-footer__container {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    color: var(--iosd-muted-light);

    font-size: 8px;
}

.iosd-footer__bottom
.iosd-footer__container > div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.iosd-footer__bottom a {
    color: var(--iosd-muted);
    text-decoration: none;
}

.iosd-footer__bottom a:hover {
    color: var(--iosd-text);
}

/* =====================================================
   MEDIUM DESKTOP
===================================================== */

@media (max-width: 1120px) {
    .iosd-footer__container {
        width: calc(100% - 40px);
    }

    .iosd-footer__main
    .iosd-footer__container {
        grid-template-columns:
            minmax(260px, 1.25fr)
            repeat(3, minmax(115px, 0.7fr));

        gap: 34px;
    }

    .iosd-footer__trust-item {
        padding-right: 16px;
        padding-left: 16px;
    }
}

@media (max-width: 920px) {
    .iosd-footer__trust-item {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 9px;
    }

    .iosd-footer__trust-icon {
        width: 38px;
        height: 38px;
    }

    .iosd-footer__main
    .iosd-footer__container {
        gap: 25px;
    }
}

/* Section: 10 - Hero Mobile */
.home-hero,
.home-hero *,
.home-hero *::before,
.home-hero *::after {
    box-sizing: border-box;
}

.home-hero {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: #111114;
}

.home-hero__container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.home-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: #111114;
    outline: none;
}

.home-slider__viewport {
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
}

.home-slider__track {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.home-slider__slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 5;
    margin: 0;
    padding: 0;
    overflow: hidden;

    background-color: #111114;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.home-slider__slide::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    height: 110px;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
}

.home-slider__slide-link {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    padding: 0;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.home-slider__dots {
    position: absolute;
    z-index: 10;
    left: 50%;
    bottom: 20px;
    padding: 7px 9px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    background: rgba(10, 10, 13, 0.34);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateX(-50%);
}

.home-slider__dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.43);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: width 0.25s ease, background 0.25s ease;
}

.home-slider__dots button.is-active {
    width: 24px;
    background: #ffffff;
}

@media (prefers-reduced-motion: reduce) {

    .home-slider__track,
    .home-slider__dots button {
        transition: none;
    }
}

/* Section: 20 - Pricelist CTA Mobile */
.home-price,
.home-price * {
    box-sizing: border-box;
}

.home-price {
    width: 100%; 

    background: #f5f5f7;
}

.home-price__container {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.home-price__card {
    position: relative;
    overflow: hidden;

    padding: 26px; 
    background:
        radial-gradient(
            circle at 105% -5%,
            rgba(255, 255, 255, 0.2),
            transparent 185px
        ),
        linear-gradient(
            145deg,
            #25252a,
            #08080a
        );

    color: #ffffff;

    box-shadow:
        0 22px 48px rgba(17, 17, 20, 0.23),
        0 3px 10px rgba(17, 17, 20, 0.07);
}

.home-price__card::after {
    content: "";

    position: absolute;
    right: -55px;
    bottom: -65px;

    width: 165px;
    height: 165px;

    border: 30px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.home-price__content {
    position: relative;
    z-index: 1;

    margin-bottom: 23px;
}

.home-price__eyebrow {
    display: block;
    margin-bottom: 7px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.15px;
    text-transform: uppercase;
}

.home-price h1 {
    max-width: 315px;
    margin: 0 0 11px;

    color: #ffffff;

    font-size: 28px;
    font-weight: 750;
    line-height: 1.07;
    letter-spacing: -1px;
}

.home-price p {
    max-width: 340px;
    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 12px;
    line-height: 1.65;
}

.home-price__button {
    position: relative;
    z-index: 1;

    min-height: 45px;
    padding: 0 17px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 999px;

    background: #ffffff;
    color: #111114;

    font-size: 12px;
    font-weight: 750;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.home-price__button:active {
    transform: scale(0.98);
    background: #eeeeef;
}

.home-price__button b {
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
}

/* Section: 30 - Kategori Produk Mobile */
.home-category,
.home-category * {
    box-sizing: border-box;
}

.home-category {
    width: 100%;
    padding: 20px 16px 26px;

    background: #f5f5f7;
}

.home-category__container {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.home-category__heading {
    margin-bottom: 17px;
}

.home-category__eyebrow {
    display: block;
    margin-bottom: 6px;

    color: #85858c;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.15px;
    text-transform: uppercase;
}

.home-category__heading h2 {
    margin: 0;

    color: #111114;

    font-size: 23px;
    font-weight: 750;
    line-height: 1.15;
    letter-spacing: -0.75px;
}

.home-category__heading p {
    margin: 7px 0 0;

    color: #717178;

    font-size: 12px;
    line-height: 1.55;
}

.home-category__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.home-category__item {
    min-width: 0;
    padding: 9px 9px 14px;

    display: block;

    overflow: hidden;

    border: 1px solid rgba(17, 17, 20, 0.07);
    border-radius: 22px;

    background: #ffffff;
    color: #111114;

    text-decoration: none;

    box-shadow:
        0 9px 24px rgba(20, 20, 30, 0.055),
        0 2px 5px rgba(20, 20, 30, 0.025);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.home-category__item:active {
    transform: scale(0.975);

    box-shadow:
        0 5px 14px rgba(20, 20, 30, 0.05);
}

.home-category__image {
    position: relative;

    width: 100%;
    aspect-ratio: 1 / 1;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 17px;

    background:
        radial-gradient(
            circle at 50% 20%,
            #ffffff 0%,
            #eeeeef 75%
        );
}

.home-category__image::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    box-shadow:
        inset 0 0 0 1px rgba(17, 17, 20, 0.025);
}

.home-category__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: transform 0.25s ease;
}

.home-category__item:active .home-category__image img {
    transform: scale(0.96);
}

.home-category__info {
    min-width: 0;

    padding: 11px 4px 0;

    text-align: left;
}

.home-category__info strong {
    display: block;

    overflow: hidden;

    color: #111114;

    font-size: 13px;
    font-weight: 750;
    line-height: 1.3;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.home-category__info span {
    display: block;

    margin-top: 4px;

    color: #86868d;

    font-size: 9px;
    font-weight: 600;
    line-height: 1.3;
}

/* Section: 40 - Keunggulan Toko Mobile */
/* =====================================================
   BENEFIT MOBILE FINAL
===================================================== */

.home-benefit,
.home-benefit * {
    box-sizing: border-box;
}

.home-benefit {
    width: 100%;
    padding: 22px 16px 30px;
    background: #f5f5f7;
}

.home-benefit__container {
    max-width: 520px;
    margin: 0 auto;
}

/* Heading */

.home-benefit__heading {
    margin-bottom: 20px;
}

.home-benefit__eyebrow {
    display: block;
    margin-bottom: 6px;

    color: #85858c;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.home-benefit__heading h2 {
    margin: 0;

    color: #111114;

    font-size: 23px;
    font-weight: 760;
    line-height: 1.15;
}

.home-benefit__heading p {
    margin-top: 8px;

    color: #717178;

    font-size: 12px;
    line-height: 1.6;
}

/* Grid */

.home-benefit__grid {
    display: grid;
    gap: 16px;
}

/* Card */

.home-benefit__item {

    position: relative;

    display: grid;
    grid-template-columns: 96px 1fr;

    align-items: center;

    column-gap: 18px;

    padding: 26px 22px;

    border-radius: 28px;

    border: 1px solid rgba(17, 17, 20, .06);

    background: #fff;

    overflow: hidden;

    box-shadow:
        0 10px 28px rgba(0, 0, 0, .06);
}

/* Decoration */

.home-benefit__item::after {

    content: "";

    position: absolute;

    right: -55px;
    bottom: -55px;

    width: 190px;
    height: 190px;

    border: 18px solid rgba(17, 17, 20, .025);

    border-radius: 50%;
}

/* Number */

.home-benefit__number {

    position: absolute;

    top: 20px;
    right: 22px;

    color: #b8b8bd;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

/* Icon */

.home-benefit__icon {

    width: 82px;
    height: 82px;

    margin-left: 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 24px;

    background: linear-gradient(145deg,
            #2d2d33,
            #0a0a0d);

    box-shadow:
        0 18px 32px rgba(0, 0, 0, .20);
}

.home-benefit__icon svg {

    width: 34px;
    height: 34px;

    display: block;
}

.home-benefit__icon svg,
.home-benefit__icon svg * {

    fill: none;

    stroke: #ffffff;

    stroke-width: 2;

    stroke-linecap: round;

    stroke-linejoin: round;
}

/* Content */

.home-benefit__content {

    min-height: 82px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-top: 2px;
}

.home-benefit__content strong {

    display: block;

    margin-bottom: 10px;

    color: #111114;

    font-size: 17px;
    font-weight: 760;

    line-height: 1.3;
}

.home-benefit__content p {

    margin: 0;

    color: #77777e;

    font-size: 11px;

    line-height: 1.75;
}

/* Section: 50 - Lokasi Toko Mobile */
/* =====================================================
   IOS STORE LOCATION
   Mobile-first, vertikal, lebar sama dengan section lain
===================================================== */

.ios-location,
.ios-location *,
.ios-location *::before,
.ios-location *::after {
    box-sizing: border-box;
}

.ios-location {
    width: 100%;
    max-width: 100%;

    padding: 24px 16px 32px;

    overflow-x: hidden;

    background: #f5f5f7;
}

.ios-location__container {
    width: 100%;
    max-width: 520px;
    min-width: 0;

    margin-right: auto;
    margin-left: auto;
}

/* =====================================================
   HEADING
===================================================== */

.ios-location__heading {
    width: 100%;
    max-width: 100%;

    margin-bottom: 18px;
}

.ios-location__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    max-width: 100%;
    margin-bottom: 7px;

    color: #85858c;

    font-size: 9px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1.15px;
    text-transform: uppercase;
}

.ios-location__eyebrow::before {
    content: "";

    width: 18px;
    height: 2px;
    flex: none;

    border-radius: 999px;

    background: #111114;
}

.ios-location__heading h2 {
    max-width: 100%;

    margin: 0;

    overflow-wrap: anywhere;

    color: #111114;

    font-size: 23px;
    font-weight: 750;
    line-height: 1.15;
    letter-spacing: -0.75px;
}

.ios-location__heading p {
    max-width: 420px;

    margin: 7px 0 0;

    overflow-wrap: anywhere;

    color: #717178;

    font-size: 12px;
    line-height: 1.55;
}

/* =====================================================
   STORE LIST
===================================================== */

.ios-location__list {
    width: 100%;
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* =====================================================
   STORE CARD
===================================================== */

.ios-location__card {
    position: relative;

    width: 100%;
    max-width: 100%;
    min-width: 0;

    padding: 16px;

    overflow: hidden;

    border: 1px solid rgba(17, 17, 20, 0.075);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fafafc
        );

    box-shadow:
        0 10px 28px rgba(20, 20, 30, 0.065),
        0 2px 6px rgba(20, 20, 30, 0.025);
}

.ios-location__card-accent {
    position: absolute;

    top: 0;
    left: 18px;
    right: 18px;

    height: 3px;

    border-radius: 0 0 999px 999px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #111114 28%,
            #111114 72%,
            transparent
        );
}

/* =====================================================
   STORE IDENTITY
===================================================== */

.ios-location__identity {
    width: 100%;
    min-width: 0;

    padding-bottom: 15px;

    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 11px;

    border-bottom: 1px solid rgba(17, 17, 20, 0.07);
}

.ios-location__store-icon {
    width: 46px;
    height: 46px;
    flex: none;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        radial-gradient(
            circle at 30% 15%,
            #36363b,
            #0c0c0f
        );

    color: #ffffff;

    box-shadow:
        0 9px 21px rgba(17, 17, 20, 0.19);
}

.ios-location__store-icon svg {
    display: block;

    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ios-location__identity-content {
    width: 100%;
    min-width: 0;

    overflow: hidden;
}

.ios-location__branch {
    display: block;

    max-width: 100%;
    margin-bottom: 4px;

    overflow-wrap: anywhere;

    color: #88888f;

    font-size: 8px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ios-location__identity h3 {
    max-width: 100%;

    margin: 0 0 7px;

    overflow-wrap: anywhere;

    color: #111114;

    font-size: 15px;
    font-weight: 760;
    line-height: 1.3;
    letter-spacing: -0.35px;
}

.ios-location__status {
    min-height: 24px;
    max-width: 100%;

    padding: 0 9px;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    border: 1px solid rgba(47, 160, 83, 0.15);
    border-radius: 999px;

    background: rgba(47, 160, 83, 0.075);
    color: #247a43;

    font-size: 7px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.ios-location__status i {
    width: 6px;
    height: 6px;
    flex: none;

    border-radius: 50%;

    background: #34a853;

    box-shadow:
        0 0 0 3px rgba(52, 168, 83, 0.11);
}

/* =====================================================
   STORE INFORMATION
===================================================== */

.ios-location__information {
    width: 100%;
    min-width: 0;

    padding: 15px 0;

    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
}

.ios-location__info {
    width: 100%;
    min-width: 0;
    min-height: 58px;

    padding: 9px;

    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
    gap: 9px;

    overflow: hidden;

    border: 1px solid rgba(17, 17, 20, 0.055);
    border-radius: 15px;

    background: #f5f5f7;
}

.ios-location__info-icon {
    width: 36px;
    height: 36px;
    flex: none;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #ffffff;
    color: #111114;

    box-shadow:
        0 4px 12px rgba(20, 20, 30, 0.05);
}

.ios-location__info-icon svg {
    display: block;

    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ios-location__info-content {
    width: 100%;
    min-width: 0;

    overflow: hidden;
}

.ios-location__info-content small {
    display: block;

    max-width: 100%;
    margin-bottom: 4px;

    overflow-wrap: anywhere;

    color: #88888f;

    font-size: 8px;
    font-weight: 750;
    line-height: 1.3;
    letter-spacing: 0.55px;
    text-transform: uppercase;
}

.ios-location__info-content strong,
.ios-location__info-content a {
    display: block;

    width: 100%;
    max-width: 100%;

    overflow-wrap: anywhere;
    word-break: normal;

    color: #202024;

    font-size: 10px;
    font-weight: 690;
    line-height: 1.5;
    text-decoration: none;
}

/* =====================================================
   ACTION BUTTONS
===================================================== */

.ios-location__actions {
    width: 100%;
    min-width: 0;

    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
}

.ios-location__button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 45px;

    padding: 8px 12px;

    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) 17px;
    align-items: center;
    gap: 8px;

    overflow: hidden;

    border-radius: 14px;

    font-size: 10px;
    font-weight: 780;
    line-height: 1.25;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.ios-location__button svg {
    display: block;

    width: 18px;
    height: 18px;
    flex: none;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ios-location__button span {
    min-width: 0;
    max-width: 100%;

    overflow-wrap: anywhere;

    text-align: center;
}

.ios-location__button b {
    width: 17px;

    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    text-align: right;
}

.ios-location__button--maps {
    background: #111114;
    color: #ffffff;

    box-shadow:
        0 8px 19px rgba(17, 17, 20, 0.16);
}

.ios-location__button--whatsapp {
    border: 1px solid rgba(17, 17, 20, 0.085);

    background: #efeff1;
    color: #111114;
}

.ios-location__button:active {
    transform: scale(0.985);
}

/* =====================================================
   NOTICE
===================================================== */

.ios-location__notice {
    width: 100%;
    max-width: 100%;
    min-width: 0;

    margin-top: 14px;
    padding: 11px 12px;

    display: grid;
    grid-template-columns: 27px minmax(0, 1fr);
    align-items: center;
    gap: 9px;

    overflow: hidden;

    border: 1px solid rgba(17, 17, 20, 0.055);
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.72);
}

.ios-location__notice > span {
    width: 27px;
    height: 27px;
    flex: none;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #e9e9ec;
    color: #55555c;

    font-size: 10px;
    font-weight: 850;
}

.ios-location__notice p {
    min-width: 0;
    max-width: 100%;

    margin: 0;

    overflow-wrap: anywhere;

    color: #7c7c83;

    font-size: 9px;
    line-height: 1.5;
}

/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 350px) {
    .ios-location {
        padding-right: 16px;
        padding-left: 16px;
    }

    .ios-location__card {
        padding: 14px;
        border-radius: 19px;
    }

    .ios-location__identity {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 9px;
    }

    .ios-location__store-icon {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .ios-location__identity h3 {
        font-size: 14px;
    }

    .ios-location__info {
        grid-template-columns: 33px minmax(0, 1fr);
        gap: 8px;
        padding: 8px;
    }

    .ios-location__info-icon {
        width: 33px;
        height: 33px;
    }

    .ios-location__button {
        padding-right: 9px;
        padding-left: 9px;

        font-size: 9px;
    }
}

/* =====================================================
   MOBILE LEBAR / TABLET
   Container tetap 520px agar sama dengan section lainnya
===================================================== */

@media (min-width: 480px) {
    .ios-location__card {
        padding: 20px;
    }

    .ios-location__identity {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 13px;
    }

    .ios-location__store-icon {
        width: 50px;
        height: 50px;

        border-radius: 16px;
    }

    .ios-location__identity h3 {
        font-size: 17px;
    }

    .ios-location__info-content strong,
    .ios-location__info-content a {
        font-size: 11px;
    }
}

@media (min-width: 640px) {
    .ios-location {
        padding-top: 36px;
        padding-bottom: 42px;
    }

    .ios-location__container {
        max-width: 520px;
    }

    .ios-location__card {
        padding: 22px;
    }

    .ios-location__information {
        grid-template-columns: minmax(0, 1fr);
    }

    .ios-location__actions {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Hover hanya untuk perangkat yang mendukung mouse */
@media (hover: hover) and (pointer: fine) {
    .ios-location__card {
        transition:
            transform 0.25s ease,
            box-shadow 0.25s ease,
            border-color 0.25s ease;
    }

    .ios-location__card:hover {
        border-color: rgba(17, 17, 20, 0.13);

        box-shadow:
            0 18px 42px rgba(20, 20, 30, 0.1),
            0 3px 9px rgba(20, 20, 30, 0.035);

        transform: translateY(-2px);
    }

    .ios-location__button--maps:hover {
        background: #28282d;

        box-shadow:
            0 11px 25px rgba(17, 17, 20, 0.2);
    }

    .ios-location__button--whatsapp:hover {
        background: #e6e6e9;
    }
}

/* Section: 00 - Home Desktop Base */
/* =====================================================
   HOME DESKTOP BASE
===================================================== */

.home-d-section,
.home-d-section *,
.home-d-section *::before,
.home-d-section *::after {
    box-sizing: border-box;
}

.home-d-section {
    width: 100%;
    max-width: 100%;

    overflow: hidden;

    background: #f5f5f7;
}

.home-d-container {
    width: calc(100% - 64px);
    max-width: var(--iosd-container, 1280px);

    margin-right: auto;
    margin-left: auto;
}

.home-d-heading {
    width: 100%;

    margin-bottom: 26px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.home-d-heading__content {
    max-width: 680px;
}

.home-d-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 10px;

    color: #85858c;

    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1.35px;
    text-transform: uppercase;
}

.home-d-eyebrow::before {
    content: "";

    width: 23px;
    height: 2px;

    border-radius: 999px;

    background: #111114;
}

.home-d-heading h2 {
    max-width: 680px;

    margin: 0;

    color: #111114;

    font-size: clamp(34px, 3.4vw, 48px);
    font-weight: 780;
    line-height: 1.04;
    letter-spacing: -1.65px;
}

.home-d-heading p {
    max-width: 590px;

    margin: 13px 0 0;

    color: #717178;

    font-size: 13px;
    line-height: 1.7;
}

.home-d-link {
    min-height: 44px;

    padding: 0 17px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: 1px solid rgba(17, 17, 20, 0.09);
    border-radius: 999px;

    background: #ffffff;
    color: #111114;

    box-shadow:
        0 7px 18px rgba(20, 20, 30, 0.055);

    font-size: 10px;
    font-weight: 760;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.home-d-link b {
    font-size: 16px;
    font-weight: 400;
}

.home-d-link:hover {
    background: #efeff1;

    transform: translateY(-2px);

    box-shadow:
        0 11px 24px rgba(20, 20, 30, 0.08);
}

@media (max-width: 1120px) {
    .home-d-container {
        width: calc(100% - 40px);
    }

    .home-d-heading {
        gap: 25px;
    }

    .home-d-heading h2 {
        font-size: 38px;
    }
}

@media (max-width: 880px) {
    .home-d-container {
        width: calc(100% - 32px);
    }

    .home-d-heading h2 {
        font-size: 32px;
    }
}

/* Section: 10 - Hero Desktop */
.home-d-hero,
.home-d-hero *,
.home-d-hero *::before,
.home-d-hero *::after {
    box-sizing: border-box;
}

.home-d-hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: #111114;
}

.home-d-hero__slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: #111114;
    outline: none;
}

.home-d-hero__viewport {
    width: 100%;
    overflow: hidden;
}

.home-d-hero__track {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-d-hero__slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    aspect-ratio: 2.4 / 1;
    margin: 0;
    padding: 0;
    overflow: hidden;

    background-color: #111114;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.home-d-hero__slide::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
}

.home-d-hero__slide-link {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    padding: 0;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.home-d-hero__arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    width: 47px;
    height: 47px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 16, 20, 0.34);
    color: #ffffff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
    transform: translateY(-50%);
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.home-d-hero__arrow:hover {
    background: rgba(16, 16, 20, 0.67);
    transform: translateY(-50%) scale(1.07);
}

.home-d-hero__arrow--previous {
    left: 24px;
}

.home-d-hero__arrow--next {
    right: 24px;
}

.home-d-hero__dots {
    position: absolute;
    z-index: 10;
    left: 50%;
    bottom: 22px;
    padding: 7px 9px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(10, 10, 13, 0.31);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateX(-50%);
}

.home-d-hero__dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.43);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.home-d-hero__dots button.is-active {
    width: 25px;
    background: #ffffff;
}

@media (max-width: 1120px) {
    .home-d-hero__arrow--previous {
        left: 14px;
    }

    .home-d-hero__arrow--next {
        right: 14px;
    }

    .home-d-hero__arrow {
        width: 41px;
        height: 41px;
        font-size: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .home-d-hero__track,
    .home-d-hero__dots button {
        transition: none;
    }
}

/* Section: 20 - Pricelist CTA Desktop */
/* =====================================================
   PRICELIST CTA DESKTOP
===================================================== */

.home-d-price {
    padding: 18px 0 58px;
}

.home-d-price__card {
    position: relative;

    width: 100%;
    min-height: 275px;

    padding: 46px 50px;

    display: grid;
    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(260px, 0.6fr);

    align-items: center;
    gap: 60px;

    overflow: hidden;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 96% 5%,
            rgba(255, 255, 255, 0.16),
            transparent 260px
        ),
        linear-gradient(
            135deg,
            #28282d,
            #08080a
        );

    color: #ffffff;

    box-shadow:
        0 22px 50px rgba(17, 17, 20, 0.22),
        0 3px 10px rgba(17, 17, 20, 0.06);
}

.home-d-price__card::after {
    content: "";

    position: absolute;

    right: -75px;
    bottom: -100px;

    width: 250px;
    height: 250px;

    border: 42px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.home-d-price__content {
    position: relative;
    z-index: 2;

    max-width: 720px;
}

.home-d-price__eyebrow {
    display: block;

    margin-bottom: 10px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.35px;
    text-transform: uppercase;
}

.home-d-price h2 {
    max-width: 690px;

    margin: 0;

    color: #ffffff;

    font-size: clamp(35px, 3.5vw, 48px);
    font-weight: 770;
    line-height: 1.04;
    letter-spacing: -1.7px;
}

.home-d-price p {
    max-width: 600px;

    margin: 15px 0 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;
    line-height: 1.7;
}

.home-d-price__tags {
    margin-top: 22px;

    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.home-d-price__tags span {
    min-height: 29px;

    padding: 0 11px;

    display: inline-flex;
    align-items: center;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.065);
    color: rgba(255, 255, 255, 0.66);

    font-size: 8px;
    font-weight: 690;
}

.home-d-price__action {
    position: relative;
    z-index: 2;

    padding: 24px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.065);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.home-d-price__action > span {
    display: block;

    margin-bottom: 15px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 9px;
    line-height: 1.5;
}

.home-d-price__action a {
    min-height: 49px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    border-radius: 15px;

    background: #ffffff;
    color: #111114;

    font-size: 10px;
    text-decoration: none;

    box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.19);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.home-d-price__action a strong {
    font-weight: 780;
}

.home-d-price__action a b {
    font-size: 18px;
    font-weight: 400;
}

.home-d-price__action a:hover {
    background: #eeeeef;

    transform: translateY(-2px);
}

@media (max-width: 960px) {
    .home-d-price__card {
        padding: 40px;

        grid-template-columns:
            minmax(0, 1.25fr)
            minmax(230px, 0.75fr);

        gap: 35px;
    }

    .home-d-price h2 {
        font-size: 37px;
    }
}

/* Section: 30 - Kategori Produk Desktop */
/* =====================================================
   CATEGORY DESKTOP
===================================================== */

.home-d-category {
    padding: 54px 0 62px;
}

.home-d-category__grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.home-d-category__item {
    min-width: 0;

    padding: 13px 13px 17px;

    display: block;

    overflow: hidden;

    border: 1px solid rgba(17, 17, 20, 0.07);
    border-radius: 25px;

    background: #ffffff;
    color: #111114;

    box-shadow:
        0 10px 27px rgba(20, 20, 30, 0.055),
        0 2px 6px rgba(20, 20, 30, 0.025);

    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.home-d-category__image {
    position: relative;

    width: 100%;
    aspect-ratio: 1.35 / 1;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 19px;

    background:
        radial-gradient(
            circle at 50% 22%,
            #ffffff,
            #eeeeF1 78%
        );
}

.home-d-category__image::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    box-shadow:
        inset 0 0 0 1px
        rgba(17, 17, 20, 0.025);
}

.home-d-category__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform 0.35s ease;
}

.home-d-category__content {
    min-width: 0;

    padding: 16px 5px 1px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.home-d-category__content > div {
    min-width: 0;
}

.home-d-category__content strong {
    display: block;

    color: #111114;

    font-size: 15px;
    font-weight: 770;
    line-height: 1.3;
}

.home-d-category__content span {
    display: block;

    margin-top: 4px;

    color: #85858c;

    font-size: 9px;
    line-height: 1.4;
}

.home-d-category__content > b {
    width: 37px;
    height: 37px;
    flex: none;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #f0f0f2;
    color: #111114;

    font-size: 17px;
    font-weight: 400;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.home-d-category__item:hover {
    border-color: rgba(17, 17, 20, 0.13);

    box-shadow:
        0 18px 40px rgba(20, 20, 30, 0.09),
        0 3px 8px rgba(20, 20, 30, 0.03);

    transform: translateY(-4px);
}

.home-d-category__item:hover
.home-d-category__image img {
    transform: scale(1.04);
}

.home-d-category__item:hover
.home-d-category__content > b {
    background: #111114;
    color: #ffffff;
}

@media (max-width: 940px) {
    .home-d-category__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

/* Section: 40 - Keunggulan Toko Desktop */
/* =====================================================
   BENEFIT DESKTOP
===================================================== */

.home-d-benefit {
    padding: 58px 0 66px;
    background: linear-gradient(180deg, #f5f5f7 0%, #eeeef1 100%);
}

.home-d-benefit__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-d-benefit__item {
    position: relative;

    min-width: 0;
    min-height: 255px;

    padding: 26px;

    overflow: hidden;

    border: 1px solid rgba(17, 17, 20, .07);
    border-radius: 24px;

    background: linear-gradient(145deg, #ffffff, #fafafc);

    box-shadow:
        0 10px 27px rgba(20, 20, 30, .05),
        0 2px 6px rgba(20, 20, 30, .02);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.home-d-benefit__item:hover {
    transform: translateY(-5px);

    border-color: rgba(17, 17, 20, .12);

    box-shadow:
        0 18px 40px rgba(20, 20, 30, .08);
}

.home-d-benefit__number {
    position: absolute;
    top: 22px;
    right: 22px;

    color: #b0b0b6;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* =====================================================
   ICON
===================================================== */

.home-d-benefit__icon {
    width: 68px;
    height: 68px;

    margin-bottom: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background: linear-gradient(145deg, #303035, #09090b);

    box-shadow:
        0 14px 28px rgba(17, 17, 20, .22);
}

/* SVG */

.home-d-benefit__icon svg {
    width: 30px;
    height: 30px;

    display: block;
}

/* Semua elemen SVG menjadi putih */

.home-d-benefit__icon svg,
.home-d-benefit__icon svg * {
    fill: none !important;
    stroke: #ffffff !important;
    stroke-width: 2 !important;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

/* =====================================================
   CONTENT
===================================================== */

.home-d-benefit__item strong {
    display: block;

    color: #111114;

    font-size: 17px;
    font-weight: 760;
    line-height: 1.35;
}

.home-d-benefit__item p {
    margin: 10px 0 0;

    color: #797980;

    font-size: 11px;
    line-height: 1.7;
}

/* =====================================================
   DECORATION
===================================================== */

.home-d-benefit__item::after {
    content: "";

    position: absolute;

    right: -50px;
    bottom: -65px;

    width: 130px;
    height: 130px;

    border: 22px solid rgba(17, 17, 20, .025);
    border-radius: 50%;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width:970px) {

    .home-d-benefit__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-d-benefit__item {
        min-height: 220px;
        padding: 22px;
    }

    .home-d-benefit__icon {
        width: 60px;
        height: 60px;

        margin-bottom: 26px;

        border-radius: 18px;
    }

    .home-d-benefit__icon svg {
        width: 26px;
        height: 26px;
    }

    .home-d-benefit__item strong {
        font-size: 15px;
    }

    .home-d-benefit__item p {
        font-size: 10px;
    }

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width:576px) {

    .home-d-benefit__grid {
        grid-template-columns: 1fr;
    }

    .home-d-benefit__item {
        min-height: auto;
    }

}

/* Section: 50 - Lokasi Toko Desktop */
/* =====================================================
   STORE LOCATION DESKTOP
===================================================== */

.home-d-store {
    padding: 62px 0 72px;
}

.home-d-store__grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.home-d-store__card {
    position: relative;

    min-width: 0;

    padding: 25px;

    overflow: hidden;

    border: 1px solid rgba(17, 17, 20, 0.075);
    border-radius: 27px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fafafc
        );

    box-shadow:
        0 13px 33px rgba(20, 20, 30, 0.065),
        0 2px 7px rgba(20, 20, 30, 0.025);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.home-d-store__card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 25px;
    right: 25px;

    height: 3px;

    border-radius: 0 0 999px 999px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #111114 30%,
            #111114 70%,
            transparent
        );
}

.home-d-store__top {
    padding-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-bottom: 1px solid rgba(17, 17, 20, 0.07);
}

.home-d-store__identity {
    min-width: 0;

    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
}

.home-d-store__icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #343439,
            #0a0a0d
        );

    color: #ffffff;

    box-shadow:
        0 11px 25px rgba(17, 17, 20, 0.19);
}

.home-d-store__icon svg {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-d-store__identity small {
    display: block;

    margin-bottom: 5px;

    color: #88888f;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.05px;
    text-transform: uppercase;
}

.home-d-store__identity h3 {
    margin: 0;

    color: #111114;

    font-size: 17px;
    font-weight: 770;
    line-height: 1.3;
    letter-spacing: -0.45px;
}

.home-d-store__status {
    min-height: 29px;

    padding: 0 10px;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    border: 1px solid rgba(47, 160, 83, 0.15);
    border-radius: 999px;

    background: rgba(47, 160, 83, 0.075);
    color: #247a43;

    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-d-store__status i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #34a853;

    box-shadow:
        0 0 0 4px rgba(52, 168, 83, 0.1);
}

.home-d-store__details {
    padding: 20px 0;

    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(160px, 0.65fr);

    gap: 11px;
}

.home-d-store__detail {
    min-width: 0;
    min-height: 85px;

    padding: 14px;

    border: 1px solid rgba(17, 17, 20, 0.055);
    border-radius: 17px;

    background: #f5f5f7;
}

.home-d-store__detail small {
    display: block;

    margin-bottom: 7px;

    color: #88888f;

    font-size: 8px;
    font-weight: 760;
    letter-spacing: 0.65px;
    text-transform: uppercase;
}

.home-d-store__detail strong,
.home-d-store__detail a {
    display: block;

    overflow-wrap: anywhere;

    color: #202024;

    font-size: 10px;
    font-weight: 690;
    line-height: 1.55;
    text-decoration: none;
}

.home-d-store__actions {
    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(0, 0.8fr);

    gap: 9px;
}

.home-d-store__button {
    min-width: 0;
    min-height: 47px;

    padding: 0 15px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: 1px solid rgba(17, 17, 20, 0.085);
    border-radius: 15px;

    background: #efeff1;
    color: #111114;

    font-size: 9px;
    font-weight: 770;
    line-height: 1;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.home-d-store__button b {
    margin-left: auto;

    font-size: 17px;
    font-weight: 400;
}

.home-d-store__button--primary {
    border-color: #111114;

    background: #111114;
    color: #ffffff;

    box-shadow:
        0 9px 21px rgba(17, 17, 20, 0.17);
}

.home-d-store__button:hover {
    background: #e5e5e8;

    transform: translateY(-2px);
}

.home-d-store__button--primary:hover {
    background: #29292e;

    box-shadow:
        0 13px 27px rgba(17, 17, 20, 0.21);
}

.home-d-store__notice {
    margin-top: 16px;

    padding: 12px 14px;

    display: grid;
    grid-template-columns: 29px minmax(0, 1fr);
    align-items: center;
    gap: 10px;

    border: 1px solid rgba(17, 17, 20, 0.055);
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.7);
}

.home-d-store__notice > span {
    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #e9e9ec;
    color: #55555c;

    font-size: 10px;
    font-weight: 850;
}

.home-d-store__notice p {
    margin: 0;

    color: #7c7c83;

    font-size: 9px;
    line-height: 1.5;
}

.home-d-store__card:hover {
    border-color: rgba(17, 17, 20, 0.13);

    box-shadow:
        0 20px 46px rgba(20, 20, 30, 0.1),
        0 3px 9px rgba(20, 20, 30, 0.035);

    transform: translateY(-4px);
}

@media (max-width: 1050px) {
    .home-d-store__details {
        grid-template-columns:
            minmax(0, 1fr);
    }

    .home-d-store__detail {
        min-height: auto;
    }
}

@media (max-width: 880px) {
    .home-d-store__grid {
        grid-template-columns:
            minmax(0, 1fr);
    }

    .home-d-store__details {
        grid-template-columns:
            minmax(0, 1.3fr)
            minmax(170px, 0.7fr);
    }
}

/* ==========================================
   COMING SOON STORE
========================================== */

.home-d-store__card--coming-soon {
    opacity: .95;
}

.home-d-store__status--coming {
    color: #f59e0b;
}

.home-d-store__status--coming i {
    background: #f59e0b;
}

.home-d-store__button--disabled {
    width: 100%;
    cursor: not-allowed;
    pointer-events: none;
    opacity: .7;
}