/* global setting */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

html,
body {
    height: 100%;
}

:root {
    --surface-secondary: #f3f4f6;
    --surface-brand: #afb35b;
    --surface-danger: #dc2626;
    --surface-brand-secondary: #f8f7ed;
    --surface-brand-tertiary: #979c46;
    --brand-primary: #f8f7ed;
    --typography-primary: #030712;
    --typography-secondary: #4a5565;
    --typography-tertiary: #9ca3af;
    --typography-reverse: #ffffff;
    --typography-brand: #979c46;
    --typography-warning: #ca8a04;
    --typography-danger: #dc2626;
    --icon-primary: #030712;
    --icon-reverse: #ffffff;
    --icon-brand: #979c46;
    --icon-tertiary: #9ca3af;
    --stroke-primary: #e5e7eb;
    --stroke-secondary: #d1d5db;
    --stroke-brand: #979c46;
    --stroke-danger: #dc2626;
    /* py-1 = 0.25rem */
}
body {
    height: 100%;
}
.my-font {
    font-family: "Poppins", sans-serif;
}

p .bold {
    font-weight: 600 !important;
}
span .bold {
    font-weight: 600 !important;
}
p .medium {
    font-weight: 500 !important;
}
a {
    text-decoration: none;
    color: var(--typography-brand);
    font-weight: 500 !important;
}
.dotted {
    border: none;
    border-top: 2px dotted var(--stroke-secondary);
    opacity: 1;
}
.dotted .list-group-item {
    border: none;
    border-bottom: 1px dotted var(--surface-brand-secondary);
}

.dotted .list-group-item:last-child {
    border-bottom: none;
}
.text-brand {
    color: var(--typography-brand);
}
.text-secondary {
    color: var(--typography-secondary);
}
.text-tertiary {
    color: var(--typography-tertiary);
}
.sticky {
    position: sticky;
    top: 40px;
    align-self: flex-start;
    height: fit-content;
}
/* partial */
/* input start */
.search-wrapper {
    border: 1px solid var(--stroke-primary);
    background-color: #fff;
    border-radius: 999px; /* pill shape */
    padding: 0.25rem 0.75rem;
    align-items: center;
}

/* icon */
.search-icon {
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 1.2rem;
}

/* input */
.search-input {
    border: none;
    box-shadow: none;
    outline: none;
    padding-left: 0.5rem;
    font-size: 1rem;
}

/* hilangkan border saat focus */
.search-input:focus {
    box-shadow: none;
    border: none;
}

/* optional hover */
.search-wrapper:focus-within {
    box-shadow: 0 0 0 1px var(--stroke-primary);
}

/* .input-icon {
  position: absolute;
  top: 63%;
  left: 7%;
  transform: translateY(-70%);
  color: #9CA3AF;
  pointer-events: none;
}
.input-rounded{
  border-radius: 50px !important;
} */
/* input end */
/* badge chip */
/* .badge-true{
    color: var(--typography-brand);
    background-color: var(--brand-primary);
    font-weight: 500 !important;
    border-radius: 9999px !important;
}
.badge-false{
  color: var(--typography-secondary);
  background-color: var(--surface-secondary);
  border-radius: 9999px !important;
} */
/* badge chip end */
/* chip start */
.chip {
    color: var(--typography-secondary);
    background-color: var(--surface-secondary);
    border-radius: 30px;
    padding: 0.5rem 1.25rem;
    scroll-snap-align: start;
}
.chip:hover {
    border-radius: 30px;
    background-color: var(--surface-secondary);
    color: var(--typography-brand);
}
.chip-active {
    background-color: var(--brand-primary);
    color: var(--typography-brand);
}
.chip-scroll {
    display: flex; /* PENTING */
    /* justify-content: center; */
    gap: 0.5rem;
    white-space: nowrap; /* BIKIN TIDAK TURUN */
}
/* chip end */
/* status chip start */
.status{
    border-radius: 4px;
    padding-left: 8px;
    padding-right: 8px;
}
.status-processed{
    background: #FEF9C3;
    color: var(--typography-warning);
}
.status-deliver{
    background: #DBEAFE;
    color: #3B82F6;
}
.status-done{
    background: var(--surface-brand-secondary);
    color: var(--typography-brand);
}
.status-failed{
    background: #FEF2F2;
    color: var(--typography-danger);
}
/* status chip end */
/* button */
.btn-primary-enable {
    background-color: var(--surface-brand);
    color: var(--icon-reverse);
    border-radius: 9999px !important;
    padding: 0.5rem 0.75rem;
}
.btn-primary-enable:hover {
    background-color: var(--surface-brand-tertiary);
    color: var(--typography-reverse);
}
.btn-outline-primary-enable {
    border: 1px solid var(--surface-brand);
    color: var(--surface-brand);
    border-radius: 9999px !important;
    padding: 0.5rem 0.75rem;
}
.btn-outline-primary-enable:hover {
    background-color: var(--surface-brand);
    color: var(--typography-reverse);
}
.btn-primary-disable {
    background-color: var(--surface-secondary);
    color: var(--typography-tertiary);
    border-radius: 9999px !important;
    padding: 0.5rem 0.75rem;
}
.btn-primary-disable:disabled,
.btn-primary-disable.disabled {
    background-color: var(--surface-secondary);
    color: var(--typography-tertiary);
    border-color: #e5e7eb !important;
    opacity: 1 !important;
    cursor: not-allowed;
}

.btn-primary-disable:hover {
    background-color: #e5e7eb !important;
    border-color: #e5e7eb !important;
}

.btn-secondary-enable {
    border: 1px solid var(--stroke-brand);
    color: var(--typography-brand);
    border-radius: 9999px !important;
    padding: 0.5rem 0.75rem;
}
.btn-secondary-enable:hover {
    background-color: var(--surface-brand-secondary);
    color: var(--typography-brand);
}
.btn-secondary-disable {
    border: 1px solid var(--stroke-primary);
    color: var(--typography-tertiary);
    border-radius: 9999px !important;
    padding: 0.5rem 0.75rem;
}
.btn-tertiary-enable {
    border: 1px solid var(--stroke-primary);
    color: var(--typography-primary);
    border-radius: 9999px !important;
    padding: 0.5rem 0.75rem;
}
.btn-tertiary-enable-small {
    border: 1px solid var(--stroke-primary);
    color: var(--typography-primary);
    border-radius: 9999px !important;
    padding: 1px 0.75rem;
}

.btn-tertiary-disable {
    border: 1px solid var(--stroke-primary);
    color: var(--typography-tertiary);
    border-radius: 9999px !important;
    padding: 0.5rem 0.75rem;
}
.btn-float{
    width:64px;
    height:64px;
    right:40px;
    bottom:40px;
    background:#A9B357;
    z-index:1050;
}
/* button end */
/* icon */
.icon-big {
    font-size: 30px;
    color: var(--icon-brand);
}
.icon-brand {
    color: var(--icon-brand);
}
.icon-color {
    color: var(--icon-reverse);
}
.icon-color-reverse {
    color: var(--icon-primary);
}
.icon-color-tertiary {
    color: var(--icon-tertiary);
}
svg {
    display: inline-block;
    vertical-align: middle;
    margin-top: -1px; /* slight tweak for optical centering */
}
.rotate-icon {
    transition: transform 0.3s ease;
}
.collapse.show + .rotate-icon,
[aria-expanded="true"] .rotate-icon {
    transform: rotate(180deg);
}
.list-group-item {
    border: none !important;
    border-bottom: 1px solid var(--stroke-primary) !important;
}
/* icon end */
/* card achievment, news, product */
.card-achievment {
    border: 1px solid var(--stroke-primary);
    max-width: 10.5rem;
}
.card-news {
    border: 1px solid var(--surface-primary);
    max-width: 24rem;
    display: flex;
    flex-direction: column;
}
.card-body-news {
    padding: 0.5rem 0;
    margin: 0;
    text-align: left;
}

.card-product {
    border: 1px solid var(--surface-primary);
    max-width: 24rem;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.card-product img {
    width: 100%;
    height: 14rem;
    object-fit: cover;
    display: block;
}
.card-size {
    height: fit-content;
    width: 42.5rem;
}
.card-striped {
    border: 1px dashed var(--stroke-secondary);
    border-radius: 16px;
    padding: 5rem 22rem;
    margin-top: 2rem;
}
/* card achievment, news, product end */
/* table */
.table-border {
    border-radius: 16px;
    overflow: hidden;
}
/* table end */
/* login start */
.login-bg {
    position: relative;
    padding: 4rem 0;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("assets/Background.png") no-repeat center center/cover;
    background-size: cover;
}
.toggle-password {
    position: absolute;
    top: 74%;
    right: 15px;
    cursor: pointer;
    transform: translateY(-50%);
    color: var(--typography-secondary);
    transition: color 0.3s ease, transform 0.3s ease;
}
.message-forgot-password {
    background-color: var(--surface-brand-secondary);
    color: var(--typography-brand);
}
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #9ca3af; /* warna teks */
    margin: 24px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e7eb; /* warna garis */
}

.divider::before {
    margin-right: 12px;
}

.divider::after {
    margin-left: 12px;
}
/* login end */

/* === user start === */
/* homepage start */
.home-bg {
    position: relative;
    min-height: 100vh;
    background: url("/assets/Background.png") no-repeat center center / cover;
    color: white;
    display: flex;
    flex-direction: column;
}

.home-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); /* atur gelapnya */
    z-index: 1;
}

/* overlay gelap */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* navbar di atas */
.navbar {
    position: relative;
    z-index: 3;
}

.main-content {
    margin-top: 10vh;
    margin-bottom: 10vh;
    padding-top: 80px;
}
.main-content-body {
    padding: 0 16vw;
    margin-bottom: 5vh;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* maksimal 5 card */
    gap: 1.5rem;
    align-items: start;
}
.brand-content {
    background: var(--surface-secondary);
    padding: 8vh 15vw;
}
.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* maksimal 4 foto */
    gap: 1.5rem;
    align-items: center;
}
.brand-image {
    width: 80%;
}

/* HERO TEXT */
.hero-content {
    position: relative;
    z-index: 2;
    /* text-align: left; */
    padding-top: 300px;
    min-height: 100vh;
    /* margin-top: auto !important;  */
    padding-bottom: 4rem;
}

/* homepage end */
/* profile start */
.profile-tabs {
    border-bottom: 1px solid #eaeaea;
    gap: 24px;
    /* overflow-x: auto; */
    /* flex-wrap: nowrap; */
}

.profile-tabs .nav-link {
    border: none;
    background: none;
    color: #9ca3af;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.profile-tabs .nav-link.active {
    color: #8b9a2b; /* warna hijau gold */
    font-weight: 600;
}

.profile-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background-color: #8b9a2b;
    border-radius: 2px;
}

/* profile end */
/* === user end === */
/* cart */
.img-size {
    width: 11.5rem;
    height: 11.5rem;
    border-radius: 16px;
    object-fit: cover;
}
.img-size-small {
    width: 6.25rem;
    height: 6.25rem;
    border-radius: 16px;
    object-fit: cover;
}
.card-cart {
    width: 45rem;
}
.form-color {
    border: 1px solid var(--stroke-brand);
    border-radius: 8px;
    background-color: var(--surface-brand-secondary);
}
/* Control modal width */
.modal-dialog.modal-big {
    max-width: 40rem !important;
    width: 100%;
    margin: 2rem auto;
}
.modal-dialog.modal-small {
    max-width: 26.25rem !important;
    width: 100%;
    margin: auto;
}
.modal-content {
    padding: 12px;
}
/* Header spacing */
.header-card {
    background-color: var(--brand-primary);
    justify-content: center;
    text-align: center;
    width: 100%;
    border-bottom: none;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

/* cart end */
/* ribbon */
.ribbon-brand {
    width: auto;
    height: 2rem;
    line-height: 2rem;
    padding: 0 16px 0 16px;
    position: absolute;
    left: -8px;
    top: 20px;
    background: var(--stroke-brand);
    color: var(--typography-reverse);
    border-radius: 0.5rem 0.5rem 0.5rem 0;
}

/* top-left notch */
.ribbon-brand::before {
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    top: 0;
    left: 0.1px;
}

/* bottom-left notch */
.ribbon-brand::after {
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    bottom: -8.5px; /* push down */
    left: 0.1px;
    border-top: 9px solid black; /* triangle pointing up */
    border-left: 9px solid transparent;
}
.ribbon-danger {
    width: auto;
    height: 2rem;
    line-height: 2rem;
    padding: 0 16px 0 16px;
    position: absolute;
    left: -8px;
    top: 20px;
    background: var(--stroke-danger);
    color: var(--typography-reverse);
    border-radius: 0.5rem 0.5rem 0.5rem 0;
}

/* top-left notch */
.ribbon-danger::before {
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    top: 0;
    left: 0.1px;
}

/* bottom-left notch */
.ribbon-danger::after {
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    bottom: -8.5px; /* push down */
    left: 0.1px;
    border-top: 9px solid black; /* triangle pointing up */
    border-left: 9px solid transparent;
}
/* ribbon end */
/* quantity selector */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 2.75rem;
    width: 7rem;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 50px; /* rounded pill shape */
    font-weight: bold;
}

.btn-qty {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 4px;
    font-size: 24px;
    color: var(--icon-brand);
    transition: color 0.2s;
}

.btn-qty:hover {
    color: #000;
}

#qty {
    flex: 1;
    text-align: center;
}
/* quantity selector end */
/* toast */
.toast {
    max-width: 36.25rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    border: 1px solid var(--stroke-primary);
    color: var(--typography-primary);
    background: #fff;
}

/* toast end */
/* navbar */
/* .navbar-transparent {
    background: linear-gradient( to bottom,#575757 16%, rgba(175, 179, 91, 0) 100% ) !important;
    width: 100%;
    height: 5rem;
    z-index: 100;
    display: flex;
    align-items: center;
} */
/* payment */
/* Address card box */
.modal-medium {
    width: 42.5rem;
}
.address-card {
    border: 1px solid var(--stroke-primary);
    border-radius: 12px;
    background-color: #fff;
    padding: 1rem 1.25rem;
    transition: 0.2s;
}

.address-card:hover {
    border-color: var(--stroke-brand);
}

/* Radio button color */
.radio-brand:checked {
    background-color: var(--icon-brand);
    color: var(--icon-brand);
    border-color: var(--surface-brand);
}

.radio-brand:focus {
    box-shadow: 0 0 0 0.15rem rgba(175, 179, 91, 0.25);
}

/* Dot menu spacing */
.dot-menu {
    cursor: pointer;
    padding-left: 8px;
}
/* form address */
.input-counter {
    position: relative;
    display: inline-block;
    width: 100%;
}

.input-counter input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ddd;
    height: 45px;
    font-size: 14px;
    padding-right: 4rem; /* ruang untuk counter di kanan */
    box-sizing: border-box;
}

.input-counter .counter {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 12px;
    pointer-events: none; /* biar tidak ganggu klik input */
    background-color: transparent;
}
.textarea-counter {
    position: relative;
    display: inline-block;
    width: 100%;
}

.textarea-counter textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    padding: 0.75rem 3.5rem 2rem 1rem; /* add padding-bottom for space */
    box-sizing: border-box;
    resize: none; /* optional: prevent manual resize */
}

.textarea-counter .counter {
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
    color: #9ca3af;
    font-size: 12px;
    pointer-events: none;
    background-color: transparent;
}

/* form address end */
/* payment end */
/* Navbar start */
/* .navbar-transparent .navbar-brand,
.navbar-transparent .nav-link {
    color: var(--typography-reverse) !important;
}
.navbar-main {
  background-color: #ffffff;
  width: 100%;
  min-height: 5rem;           
  z-index: 100;
}
.navbar-main .navbar-brand,
.navbar-main .nav-link {
    color: var(--typography-primary) !important;
}

.navbar-transparent .nav-link:hover {
    color: var(--typography-brand) !important;
}
.margin-body{
  margin-bottom: 5rem;
}
.navbar-brand img {
    height: 120px;    
    width: auto;
    object-fit: contain;
    display: block;
    margin-top: 20px;
}
.logo-image{
    position: relative;
  top: 20px;  
} */
.navbar-main {
    background-color: #fff;
    padding: 1rem 0;
    position: relative;
    z-index: 100;
}

/* ===== LOGO OFFSET ===== */
.navbar-logo {
    height: 118px;
    position: relative;
    top: 12px; /* OFFSET KE BAWAH */
}

/* ===== NAV LINK ===== */
.navbar-main .nav-link {
    color: var(--typography-primary);
    font-weight: 500;
}

.navbar-main .nav-link.active {
    font-weight: 600;
}
/* === DEFAULT: TRANSPARENT + GRADIENT === */
.navbar-gradient {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(
        180deg,
        rgba(87, 87, 87, 0.8) 16%,
        rgba(87, 87, 87, 0) 100%
    );

    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* text white */
.navbar-gradient .nav-link,
.navbar-gradient .navbar-brand,
.navbar-gradient i {
    color: #fff !important;
}

/* === SOLID MODE (AFTER SCROLL) === */
.navbar-solid {
    background: #ffffff !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

/* text black when solid */
.navbar-solid .nav-link,
.navbar-solid .navbar-brand,
.navbar-solid i {
    color: var(--typography-primary) !important;
}
/* navbar end */
.logo-size {
    height: 120px; /* keep large size */
    width: auto;
    object-fit: contain;
    display: block;
}
.img-detail {
    width: 42.5rem;
    height: 42.5rem;
    border-radius: 16px;
    object-fit: cover;
}
/* footer */
.footer {
    background-color: var(--surface-secondary);
    padding: 2rem 1rem;
    /* width: 100%; */
}
.footer a {
    display: block;
    margin-bottom: 5px;
    color: var(--typography-secondary);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* maksimal 5 card */
    gap: 1.5rem;
    align-items: start;
}
/* footer end */
/* dekstop only */
@media (min-width: 1025px) {
    /* font */
    p,
    span {
        font-size: 16px;
        line-height: 150%;
        font-weight: 400;
    }
    h6 {
        font-size: 20px;
        line-height: 150%;
    }
    h5 {
        font-size: 24px;
        line-height: 140%;
    }
    h4 {
        font-size: 28px;
        line-height: 140%;
        font-weight: 600;
    }
    h3 {
        font-size: 32px;
        line-height: 140%;
        font-weight: 600;
    }
    h2 {
        font-size: 40px;
        line-height: 140%;
        font-weight: 600;
    }
    h1 {
        font-size: 48px;
        line-height: 140%;
        font-weight: 600;
    }
    .card-achievment {
        border: 1px solid var(--stroke-primary);
        max-width: 17.5rem;
    }
    .footer .row {
        flex-direction: row;
    }

    .footer .col {
        flex: 1;
        margin-bottom: 0;
    }

    .footer .col:last-child {
        text-align: left;
    }
    /* === user start ===
  /* home start */
    /* .product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); 
  gap: 1.5rem;
  align-items: start;
}
.brand-content{
  background: var(--surface-secondary);
  padding:8vh 15vw;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}
.brand-image{
  width: 80%;
} */
    /* home end */
    /* === user end === */
}
/* edit product start */
.thumb {
    position: relative;
    width: 110px;
    height: 110px;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    overflow: hidden;
    display: inline-block;
}
.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumb .btn-remove-existing,
.thumb .btn-remove-new {
    position: absolute;
    top: 4px;
    right: 4px;
    line-height: 1;
    padding: 0 6px;
    border-radius: 50%;
}

/* Payment Page::Start */
.address-card {
    border: 1px solid #e5e7eb;
    padding: 12px;
    border-radius: 24px;
}
.address-card:hover {
    border-color: #e5e7eb !important;
}
/* Agar menu aksi muncul di atas kartu */
.address-card-wrapper {
    position: relative;
}

.address-actions-menu {
    position: absolute;
    right: 10px;
    top: 80px;
    z-index: 1050;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    /* Sembunyi secara default */
    min-width: 120px;
    border: 1px solid #eee;
}

.address-actions-menu .action-item {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.address-actions-menu .action-item:hover {
    background-color: #f8f9fa;
}

.address-actions-menu .action-item.delete {
    color: #dc3545;
    border-top: 1px solid #eee;
}
/* Payment Page::End */

/* edit product end */
/* tablet only */
@media (min-width: 601px) and (max-width: 1024px) {
    p,
    span {
        font-size: 16px;
        line-height: 150%;
        font-weight: 400;
    }
    .card-achievment {
        border: 1px solid var(--stroke-primary);
        max-width: 17.5rem;
    }

    /* page detail */
    .img-detail {
        width: 30rem;
        height: 30rem;
        border-radius: 16px;
        object-fit: cover;
    }
    .card-size {
        height: fit-content;
        width: 30rem;
    }
    /* page detail end*/
    /* cart */
    .modal-dialog.modal-small {
        max-width: 90% !important;
    }
    /* cart end */
    /* home start */
    .brand-image {
        width: 80%;
    }
    .product-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* maksimal 5 card */
        gap: 1rem;
        align-items: start;
    }
    /* home end */
    /* footer start */
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* maksimal 5 card */
        gap: 1.5rem;
        align-items: start;
    }
    /* footer end */
}

/* mobile only */
@media (max-width: 600px) {
    small {
        font-size: 12px;
        line-height: 150%;
    }
    p,
    span {
        font-size: 14px;
        line-height: 150%;
        font-weight: 400;
    }
    h6 {
        font-size: 16px;
        line-height: 150%;
    }
    h5 {
        font-size: 20px;
        line-height: 120%;
    }
    h4 {
        font-size: 24px;
        line-height: 140%;
        font-weight: 600;
    }
    h3 {
        font-size: 28px;
        line-height: 140%;
        font-weight: 600;
    }
    h2 {
        font-size: 32px;
        line-height: 130%;
        font-weight: 600;
    }
    h1 {
        font-size: 40px;
        line-height: 140%;
        font-weight: 600;
    }
    /* button */
    .btn-primary-enable {
        padding: 0.25rem 0.75rem;
    }
    .btn-primary-disable {
        padding: 0.25rem 0.75rem;
    }
    .btn-secondary-enable {
        padding: 0.25rem 0.75rem;
    }

    .btn-secondary-disable {
        padding: 0.25rem 0.75rem;
    }
    .btn-tertiary-enable {
        padding: 0.25rem 0.75rem;
    }

    .btn-tertiary-disable {
        padding: 0.25rem 0.75rem;
    }
    /* button end */
    /* navbar start */
    .navbar-brand img {
        height: 80px; /* keep large size */
        width: auto;
        object-fit: contain;
        display: block;
        margin-top: 30px; /* shift up so the middle aligns with nav links */
    }
    /* navbar end */
    /* home start */
    .main-content-body {
        padding: 0 5vw;
        margin-bottom: 5vh;
    }
    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* maksimal 5 card */
        gap: 0.25rem;
        align-items: start;
    }
    .brand-content {
        background: var(--surface-secondary);
        padding: 1rem 2rem;
    }
    .brand-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* maksimal 4 foto */
        gap: 0.25rem;
        align-items: center;
    }
    .brand-image {
        width: 50%;
    }
    /* home end */
    /* card product */
    .card-product {
        max-width: 10.5rem;
    }
    .card-product img {
        width: 10.5rem;
        height: 10.5rem;
        object-fit: cover;
        display: block;
    }
    /* card product end */
    /* page detail */
    .img-detail {
        width: 25rem;
        height: 25rem;
        border-radius: 16px;
        object-fit: cover;
    }
    .card-size {
        height: fit-content;
        width: 25rem;
    }
    /* page detail end*/
    /* cart */
    .card-cart {
        width: 20rem;
    }
    .img-size {
        width: 5rem;
        height: 5rem;
        border-radius: 16px;
        object-fit: cover;
    }
    .img-size-small {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 16px;
        object-fit: cover;
    }
    .modal-small .modal-dialog {
        width: 5rem;
        margin: auto;
    }

    .modal-header {
        background-color: var(--brand-primary);
        justify-content: center;
        text-align: center;
        width: 96%;
        border-bottom: none;
        margin: 0.5rem;
    }
    /* cart end */
    /* catalogue start */
    .chip-scroll {
        overflow-x: auto; /* scroll kanan kiri */
        overflow-y: hidden; /* no atas bawah */
        -webkit-overflow-scrolling: touch; /* smooth iOS */
    }
    .chip-scroll::-webkit-scrollbar {
        display: none;
    }

    .chip-scroll {
        -ms-overflow-style: none; /* IE & Edge */
        scrollbar-width: none; /* Firefox */
        scroll-snap-type: x mandatory;
    }
    /* catalogue end */
    /* footer start*/
    .footer {
        background-color: var(--surface-secondary);
        padding: 2rem 1rem;
        text-align: left; /* left content for mobile */
    }

    .footer .row {
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .footer .col {
        margin-bottom: 1.5rem;
    }

    .footer a {
        display: block;
        margin-bottom: 5px;
        color: var(--typography-primary);
        text-decoration: none;
    }

    .footer a:hover {
        text-decoration: underline;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* maksimal 5 card */
        gap: 1.5rem;
        align-items: start;
    }
    .logo-size {
        height: 80px; /* keep large size */
        width: auto;
        object-fit: contain;
        display: block;
    }
    /* footer end */
}
@media (max-width: 991.98px) {
    /* collapse jadi card */
    .navbar-collapse {
        background: #fff;
        padding: 1rem 1.25rem;
        margin-top: 1rem;
        border-radius: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    /* menu ke kiri */
    .navbar-nav {
        text-align: left;
    }

    /* menu ke kiri */
    .navbar-nav {
        text-align: left;
    }

    /* logo jangan offset di mobile */
    .navbar-logo {
        top: 0;
        height: 80px;
    }
    /* transparent navbar start */
    .navbar-collapse {
        background: inherit;
        padding: 1rem;
        border-radius: 0 0 12px 12px;
    }
    /* transparent navbar end */

    
}
