/* Template Section: 00-mobile-theme */
:root {
    --ios-bg: #f5f5f7;
    --ios-surface: #ffffff;
    --ios-text: #111114;
    --ios-muted: #73737a;
    --ios-border: rgba(17, 17, 20, 0.08);
    --ios-radius: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ios-bg);
    color: var(--ios-text);

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

    -webkit-font-smoothing: antialiased;
}

body.ios-nav-lock {
    overflow: hidden;
}

.site-main {
    min-height: 60vh;
}

.ios-nav,
.ios-nav * {
    box-sizing: border-box;
}

.ios-nav {
    position: sticky;
    top: 0;
    z-index: 5000;

    width: 100%;
    padding-top: env(safe-area-inset-top);
}

.ios-nav__bar {
    position: relative;
    z-index: 3;

    height: 66px;
    padding: 0 16px;

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

    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid var(--ios-border);

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

.ios-nav__brand {
    min-width: 0;

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

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

.ios-nav__mark {
    width: 40px;
    height: 40px;
    flex: none;

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

    border-radius: 13px;
    background: #111114;
    color: #ffffff;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: -0.5px;

    box-shadow: 0 8px 22px rgba(17, 17, 20, 0.18);
}

.ios-nav__identity {
    min-width: 0;
    display: block;
}

.ios-nav__identity strong {
    display: block;

    color: var(--ios-text);
    font-size: 14px;
    line-height: 1.15;
    letter-spacing: -0.3px;
}

.ios-nav__identity small {
    display: block;
    margin-top: 3px;

    color: var(--ios-muted);
    font-size: 9px;
    line-height: 1.2;
}

.ios-nav__toggle {
    position: relative;

    width: 42px;
    height: 42px;
    flex: none;

    padding: 0;
    border: 1px solid var(--ios-border);
    border-radius: 14px;

    background: #ededf0;
    cursor: pointer;

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

.ios-nav__toggle:active {
    transform: scale(0.96);
}

.ios-nav__toggle span {
    position: absolute;
    left: 11px;

    width: 18px;
    height: 2px;

    border-radius: 999px;
    background: #111114;

    transition:
        top 0.25s ease,
        transform 0.25s ease;
}

.ios-nav__toggle span:first-child {
    top: 15px;
}

.ios-nav__toggle span:last-child {
    top: 23px;
}

.ios-nav.is-open .ios-nav__toggle span:first-child {
    top: 19px;
    transform: rotate(45deg);
}

.ios-nav.is-open .ios-nav__toggle span:last-child {
    top: 19px;
    transform: rotate(-45deg);
}

.ios-nav__backdrop {
    position: fixed;
    z-index: 1;
    inset: 0;

    width: 100%;
    height: 100%;

    padding: 0;
    border: 0;

    visibility: hidden;
    opacity: 0;

    background: rgba(10, 10, 13, 0.48);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.ios-nav.is-open .ios-nav__backdrop {
    visibility: visible;
    opacity: 1;
}

.ios-nav__menu {
    position: fixed;
    z-index: 2;

    top: calc(78px + env(safe-area-inset-top));
    left: 12px;
    right: 12px;

    max-height: calc(
        100vh - 94px - env(safe-area-inset-top)
    );

    padding: 14px;

    overflow-y: auto;
    overscroll-behavior: contain;

    visibility: hidden;
    opacity: 0;

    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 25px;

    background: rgba(249, 249, 251, 0.98);

    box-shadow:
        0 28px 70px rgba(10, 10, 14, 0.28),
        0 4px 15px rgba(10, 10, 14, 0.08);

    transform: translateY(-12px) scale(0.98);
    transform-origin: top center;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.ios-nav.is-open .ios-nav__menu {
    visibility: visible;
    opacity: 1;

    transform: translateY(0) scale(1);
}

.ios-nav__menu-head {
    min-height: 52px;
    padding: 4px 4px 13px;

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

    border-bottom: 1px solid var(--ios-border);
}

.ios-nav__menu-head small {
    display: block;
    margin-bottom: 3px;

    color: #85858c;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ios-nav__menu-head strong {
    display: block;

    color: var(--ios-text);
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

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

    padding: 0;
    border: 0;
    border-radius: 12px;

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

    background: #e8e8eb;
    color: var(--ios-text);

    font-size: 24px;
    line-height: 1;

    cursor: pointer;
}

.ios-nav__links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;

    padding: 13px 0;
}

.ios-nav__links a {
    min-width: 0;
    min-height: 68px;

    padding: 12px 13px;

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

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

    background: #ffffff;
    color: var(--ios-text);
    text-decoration: none;

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

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

.ios-nav__links a > span {
    min-width: 0;
}

.ios-nav__links a strong {
    display: block;

    color: inherit;
    font-size: 13px;
    line-height: 1.3;
}

.ios-nav__links a small {
    display: block;
    margin-top: 4px;

    color: #7b7b82;
    font-size: 10px;
    line-height: 1.35;
}

.ios-nav__links a > b {
    width: 30px;
    height: 30px;
    flex: none;

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

    border-radius: 10px;
    background: #ededf0;
    color: var(--ios-text);

    font-size: 15px;
    font-weight: 500;
}

.ios-nav__links a.is-active {
    border-color: #111114;
    background: #111114;
    color: #ffffff;
}

.ios-nav__links a.is-active small {
    color: rgba(255, 255, 255, 0.62);
}

.ios-nav__links a.is-active > b {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.ios-nav__menu-foot {
    padding: 14px 5px 4px;
    border-top: 1px solid var(--ios-border);
}

.ios-nav__menu-foot strong {
    display: block;

    color: var(--ios-text);
    font-size: 10px;
    letter-spacing: 0.5px;
}

.ios-nav__menu-foot p {
    margin: 5px 0 0;

    color: #7b7b82;
    font-size: 10px;
    line-height: 1.5;
}


/* ==========================================
   LOGO IMAGE
========================================== */

.iosd-navbar__logo{
    display:block;

    height:44px;      /* sesuaikan jika ingin lebih besar */
    width:auto;

    object-fit:contain;
    transition:transform .25s ease;
}

.iosd-navbar__brand:hover .iosd-navbar__logo{
    transform:scale(1.03);
}

/* Template Section: footer-mobile */
.ios-footer,
.ios-footer * {
    box-sizing: border-box;
}

.ios-footer {
    padding:
        28px
        16px
        calc(22px + env(safe-area-inset-bottom));

    background: #dedee2;
}

.ios-footer__inner {
    max-width: 520px;
    margin: 0 auto;
}

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

    margin-bottom: 18px;
}

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

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

    border-radius: 15px;
    background: #111114;
    color: #ffffff;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.ios-footer__brand small {
    display: block;
    margin-bottom: 3px;

    color: #717178;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.ios-footer__brand strong {
    display: block;

    color: #111114;
    font-size: 18px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.ios-footer__description {
    margin: 0;

    color: #4f4f55;
    font-size: 12px;
    line-height: 1.75;
}

.ios-footer__description strong {
    color: #111114;
}

.ios-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 20px;
    padding-bottom: 22px;

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

.ios-footer__links a {
    min-height: 37px;
    padding: 0 14px;

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

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

    background: rgba(255, 255, 255, 0.52);
    color: #111114;

    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.ios-footer__links a:active {
    background: #ffffff;
}

.ios-footer__bottom {
    padding-top: 18px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;

    color: #73737a;
    font-size: 10px;
    line-height: 1.45;
    text-align: center;
}

/* 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;
}