/* ==============================
   CSS VARIABLES & ROOT STYLES
   ============================== */
:root {
  color-scheme: light dark;
  /* Color System */
  --main: light-dark(#4E9C9C, #4E9C9C);
  --main1: light-dark(rgba(255, 255, 255, 0.025), rgba(78, 156, 156, 0.025), );
  --main2: light-dark(rgba(255, 255, 255, 0.1), rgba(78, 156, 156, 0.1));
  --main3: light-dark(rgba(255, 255, 255, 0.25), rgba(78, 156, 156, 0.25));
  --main5: light-dark(rgba(255, 255, 255, 0.5)rgba(78, 156, 156, 0.5));

  --sec: light-dark(#336666, #336666);
  --ter: light-dark(#eee, #111);

  --light: light-dark(#000, #e0e0e0);
  --light1: light-dark(rgba(0, 0, 0, 0.025), rgba(255, 255, 255, 0.025));
  --light2: light-dark(rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.1));
  --light3: light-dark(rgba(0, 0, 0, 0.25), rgba(255, 255, 255, 0.25));
  --light5: light-dark(rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.5));
  --light7: light-dark(rgba(0, 0, 0, 0.75), rgba(255, 255, 255, 0.75));
  --light9: light-dark(rgba(0, 0, 0, 0.9), rgba(255, 255, 255, 0.9));

  --dark: light-dark(rgb(238, 238, 238), rgb(18, 18, 18));
  --dark1: light-dark(rgba(255, 255, 255, 0.025), rgba(0, 0, 0, 0.025));
  --dark2: light-dark(rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
  --dark3: light-dark(rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0.25));
  --dark5: light-dark(rgba(255, 255, 255, 0.5), rgba(0, 0, 0, 0.5));
  --dark7: light-dark(rgba(255, 255, 255, 0.75), rgba(0, 0, 0, 0.5));
  --dark9: light-dark(rgba(255, 255, 255, 0.9), rgba(0, 0, 0, 0.9));

  --grey: light-dark(#888888, #eeeeee);

  /* Typography */
  --font-primary: 'Helvetica', 'Roboto', sans-serif;
  --font-heading: 'harabara', sans-serif;
  --font-accent: 'arka', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 5rem;
  --space-xxl: 10rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 15px;
  --radius-xl: 20px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Z-index layers */
  --z-dropdown: 1000;
  --z-modal: 2000;
  --z-tooltip: 3000;
}

/* ==============================
   CSS RESET & BASE STYLES
   ============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html[data-theme="light"] {
  color-scheme: light;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--ter);
  font-family: var(--font-primary);
  color: var(--light);
  line-height: 1.5;
}

.bsof {
  overflow: hidden;
}

a {
  cursor: pointer;
}

/* ==============================
   TYPOGRAPHY
   ============================== */
@font-face {
  font-family: 'harabara';
  font-display: swap;
  src: url(../fonts/Harabara.woff2) format('woff2'),
    url(../fonts/Harabara.woff) format('woff');
}

@font-face {
  font-family: 'arka';
  font-display: swap;
  src: url(../fonts/arka.woff2) format('woff2'),
    url(../fonts/arka.woff) format('woff');
}

@font-face {
  font-family: 'Material Icons';
  font-display: block;
  src: url(../fonts/MaterialIcons-Regular.woff2) format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
}

/* Heading Scale */
h1,
h2,
h3,
h4,
h5,
.brand-logo,
.speech-bubble {
  font-family: var(--font-heading);
  letter-spacing: 2px;
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: var(--space-sm);
}

h5 {
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  margin-bottom: var(--space-sm);
}

/* Text Utilities */
.smaller-text {
  font-size: 0.75rem !important;
}

.small-text {
  font-size: 0.875rem !important;
}

.large-text {
  font-size: clamp(2rem, 8vw, 4rem);
}

/* ==============================
   COLOR UTILITIES
   ============================== */
/* Background Colors */
.main-bg {
  background-color: var(--main) !important;
}

.sec-bg {
  background-color: var(--sec) !important;
}

.ter-bg {
  background-color: var(--ter) !important;
}

.light-bg {
  background-color: var(--light) !important;
}

.dark-bg {
  background-color: var(--dark) !important;
}

.grey-bg {
  background-color: var(--grey);
}

/* Text Colors */
.main-text {
  color: var(--main);
}

.sec-text {
  color: var(--sec);
}

.ter-text {
  color: var(--ter);
}

.light-text {
  color: var(--light);
}

.dark-text {
  color: var(--dark);
}

.grey-text {
  color: var(--grey);
}

/* ==============================
   LAYOUT & SPACING UTILITIES
   ============================== */
/* Margin Utilities */
.m0,
.no-margin {
  margin: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mt1 {
  margin-top: var(--space-xs);
}

.mt2 {
  margin-top: var(--space-sm);
}

.mt3 {
  margin-top: var(--space-md);
}

.mt4 {
  margin-top: var(--space-lg);
}

.mt5 {
  margin-top: var(--space-xl);
}

.mt6 {
  margin-top: var(--space-xxl);
}

.mb1 {
  margin-bottom: var(--space-xs);
}

.mb2 {
  margin-bottom: var(--space-sm);
}

.mb3 {
  margin-bottom: var(--space-md);
}

.mb4 {
  margin-bottom: var(--space-lg);
}

.mb5 {
  margin-bottom: var(--space-xl);
}

.mb6 {
  margin-bottom: var(--space-xxl);
}

.m10 {
  margin: 10px;
}

.mr10 {
  margin-right: 10px;
}

/* Padding Utilities */
.p0,
.no-padding {
  padding: 0 !important;
}

/* Display Utilities */
.nowrap {
  white-space: nowrap;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==============================
   COMPONENT STYLES
   ============================== */

/* === LINKS & INTERACTIVE ELEMENTS === */
a {
  color: var(--light);
  text-decoration: none;
  transition: color var(--transition-normal);
}

a:hover,
a:focus-visible {
  color: var(--main);
  /*outline: 2px solid var(--main);*/
  /*outline-offset: 2px;*/
}

a:has(> i.material-icons) {
  outline: none !important;
}

a:has(> i.material-icons):hover,
a:has(> i.material-icons):focus-visible {
  outline: none !important;
}

.active-link,
.active-link i {
  color: var(--main) !important;
}

.container {
  width: 90%;
}

.italic {
  font-style: italic;
}

/* === BUTTONS === */
.btn-flat {
  color: var(--light);
}

.btn,
.btn-large,
.btn-small,
.btn-floating {
  background-color: var(--main);
  color: var(--dark) !important;
  border: none;
  transition: all var(--transition-normal);
}

.btn:hover,
.btn-large:hover,
.btn-small:hover,
.btn-floating:hover {
  background-color: var(--dark);
  color: var(--main) !important;
  transform: translateY(-1px);
}

.btn:focus,
.btn-large:focus,
.btn-small:focus,
.btn-floating:focus {
  background-color: var(--main);
}

.fixed-action-btn {
  position: fixed;
  bottom: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  /* stack vertically */
  gap: 10px;
  /* spacing between buttons */
  z-index: 1000;
}

.btn-floating i {
  color: var(--dark);
}

.btn-floating i:hover {
  color: var(--light);
}

/* === CHIPS === */
a.chip {
  padding: 0 8px;
}

a.chip>i {
  padding-top: 4px;
  margin-right: 8px;
}

.chip {
  background-color: var(--dark5);
  color: var(--light);
  border: 1px solid var(--dark5);
  transition: all var(--transition-normal);
  /*position: relative;*/
}

.chip:focus {
  background-color: var(--main);
  color: var(--dark);
}

.chip:hover {
  background-color: var(--main5);
  color: var(--dark);
  border-color: var(--dark);
}

.chip-small {
  font-size: 0.8rem;
  height: 20px;
  line-height: 20px;
  padding: 0 8px;
}

/*.chip>i {
  float: left;
  margin: 4px 8px -4px -5px;
  height: 32px;
  width: 18px;
  border-radius: 50%;
}*/
/*=============================== Login Form  ===============================*/
#bs-login-form {
  background-color: var(--light2);
  box-shadow: none;
  /*overflow: hidden;*/
  border-radius: 15px;
  margin-top: 100px;
  width: 80%;
  padding: 0 30px;
  padding-top: 30px;
  position: absolute;
  top: 0;
  left: 10%;
}

#bs-login-form .input-field {
  padding: 0px 30px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 92px;
  position: relative;
  z-index: 1;
  height: 45px;
  width: 100%;
}

@media only screen and (max-width : 599px) {
  #bs-login-form .input-field {
    height: 42px;
  }
}

#bs-login-form input {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  border: none;
  background: transparent;
  outline: none;
  padding: 0px;
  width: 100%;
  color: rgba(255, 255, 255, 0.9);
  caret-color: rgb(255, 59, 92);
  appearance: textfield;
}

#bs-login-form .toggle-password {
  color: rgba(255, 255, 255, 0.5);
  float: right;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  z-index: 2;
}

#bs-login-form .toggle-password:hover,
#bs-login-form .toggle-password:focus {
  color: rgba(255, 255, 255, 0.9);
}

/* === FORMS & INPUTS === */
.input-field {
  position: relative;
}

input:not([type]),
input[type=text]:not(.browser-default),
input[type=password]:not(.browser-default),
input[type=email]:not(.browser-default),
input[type=url]:not(.browser-default),
input[type=time]:not(.browser-default),
input[type=date]:not(.browser-default),
input[type=datetime]:not(.browser-default),
input[type=datetime-local]:not(.browser-default),
input[type=tel]:not(.browser-default),
input[type=number]:not(.browser-default),
input[type=search]:not(.browser-default),
textarea.materialize-textarea {
  color: #444;
  background-color: #fff;
  font-size: 1rem;
}

input:not([type]):focus:not([readonly]),
input[type=text]:not(.browser-default):focus:not([readonly]),
input[type=password]:not(.browser-default):focus:not([readonly]),
input[type=email]:not(.browser-default):focus:not([readonly]),
input[type=url]:not(.browser-default):focus:not([readonly]),
input[type=time]:not(.browser-default):focus:not([readonly]),
input[type=date]:not(.browser-default):focus:not([readonly]),
input[type=datetime]:not(.browser-default):focus:not([readonly]),
input[type=datetime-local]:not(.browser-default):focus:not([readonly]),
input[type=tel]:not(.browser-default):focus:not([readonly]),
input[type=number]:not(.browser-default):focus:not([readonly]),
input[type=search]:not(.browser-default):focus:not([readonly]),
textarea.materialize-textarea:focus:not([readonly]) {
  border-bottom: 1px solid var(--ter);
  -webkit-box-shadow: 0 1px 0 0 var(--ter);
  box-shadow: 0 1px 0 0 var(--ter);
}

input:not([type]):focus:not([readonly])+label,
input[type=text]:not(.browser-default):focus:not([readonly])+label,
input[type=password]:not(.browser-default):focus:not([readonly])+label,
input[type=email]:not(.browser-default):focus:not([readonly])+label,
input[type=url]:not(.browser-default):focus:not([readonly])+label,
input[type=time]:not(.browser-default):focus:not([readonly])+label,
input[type=date]:not(.browser-default):focus:not([readonly])+label,
input[type=datetime]:not(.browser-default):focus:not([readonly])+label,
input[type=datetime-local]:not(.browser-default):focus:not([readonly])+label,
input[type=tel]:not(.browser-default):focus:not([readonly])+label,
input[type=number]:not(.browser-default):focus:not([readonly])+label,
input[type=search]:not(.browser-default):focus:not([readonly])+label,
textarea.materialize-textarea:focus:not([readonly])+label {
  color: var(--grey);
}

.input-field>label:not(.label-icon).active {
  transform: translateY(-16px) translateX(10px) scale(0.8);
}

.input-field .prefix.active {
  color: var(--main);
}

.input-field .prefix {
  cursor: pointer;
}

input:not([type]),
input[type=text]:not(.browser-default),
input[type=password]:not(.browser-default),
input[type=email]:not(.browser-default),
input[type=url]:not(.browser-default),
input[type=time]:not(.browser-default),
input[type=date]:not(.browser-default),
input[type=datetime]:not(.browser-default),
input[type=datetime-local]:not(.browser-default),
input[type=tel]:not(.browser-default),
input[type=number]:not(.browser-default),
input[type=search]:not(.browser-default),
textarea.materialize-textarea {
  /*background-color: #1e1e1e;  */
  background-color: transparent;
  color: #e0e0e0;
}

input:not([type]):focus:not([readonly]),
input[type=text]:not(.browser-default):focus:not([readonly]),
input[type=password]:not(.browser-default):focus:not([readonly]),
input[type=email]:not(.browser-default):focus:not([readonly]),
input[type=url]:not(.browser-default):focus:not([readonly]),
input[type=time]:not(.browser-default):focus:not([readonly]),
input[type=date]:not(.browser-default):focus:not([readonly]),
input[type=datetime]:not(.browser-default):focus:not([readonly]),
input[type=datetime-local]:not(.browser-default):focus:not([readonly]),
input[type=tel]:not(.browser-default):focus:not([readonly]),
input[type=number]:not(.browser-default):focus:not([readonly]),
input[type=search]:not(.browser-default):focus:not([readonly]),
textarea.materialize-textarea:focus:not([readonly]) {
  border-bottom: 1px solid var(--main);
  box-shadow: 0 1px 0 0 var(--main);
}

input:not([type]):focus:not([readonly])+label,
input[type=text]:not(.browser-default):focus:not([readonly])+label,
input[type=password]:not(.browser-default):focus:not([readonly])+label,
input[type=email]:not(.browser-default):focus:not([readonly])+label,
input[type=url]:not(.browser-default):focus:not([readonly])+label,
input[type=time]:not(.browser-default):focus:not([readonly])+label,
input[type=date]:not(.browser-default):focus:not([readonly])+label,
input[type=datetime]:not(.browser-default):focus:not([readonly])+label,
input[type=datetime-local]:not(.browser-default):focus:not([readonly])+label,
input[type=tel]:not(.browser-default):focus:not([readonly])+label,
input[type=number]:not(.browser-default):focus:not([readonly])+label,
input[type=search]:not(.browser-default):focus:not([readonly])+label,
textarea.materialize-textarea:focus:not([readonly])+label {
  color: var(--main);
}

input:not([type]),
input[type="text"]:not(.browser-default),
input[type="password"]:not(.browser-default),
input[type="email"]:not(.browser-default),
textarea.materialize-textarea {
  background-color: transparent;
  color: var(--light);
  border: none;
  border-bottom: 2px solid var(--light1);
  transition: border-color var(--transition-normal);
  width: 100%;
}

input:focus:not([readonly]),
textarea.materialize-textarea:focus:not([readonly]) {
  border-bottom-color: var(--main);
  box-shadow: 0 1px 0 0 var(--main);
  outline: none;
}

/* default */
#cariData i.material-icons.prefix {
  color: var(--light2);
}

#cariData input.browser-default {
  color: var(--main);
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid var(--light1);
  margin-bottom: 10px;
}

/* hover input */
#cariData input.browser-default:hover {
  border-bottom: 2px solid var(--light);
}

/* saat input dihover, ubah icon (pakai parent hover) */
#cariData:hover i.material-icons.prefix {
  color: var(--light);
}

/* focus input */
#cariData input.browser-default:focus-visible {
  border-bottom: 2px solid var(--main);
  outline: none;
  box-shadow: none;
}

/* saat input fokus, ubah icon */
#cariData:has(input.browser-default:focus-visible) i.material-icons.prefix {
  color: var(--main);
}

input[type="text"].browser-default {
  color: var(--main);
  background-color: var(--dark);
  border: 0;
  border-bottom: 2px solid var(--light1);
}

input[type="text"].browser-default:focus-visible {
  border-bottom: 2px solid var(--main);
  box-shadow: 0;
  outline: 0;
  outline-offset: 2px;
}

input[type="text"].browser-default>i.material-icons:focus-visible {
  color: var(--main);
}

.select-wrapper input.select-dropdown:focus {
  border-bottom: 1px solid var(--main);
}

.select-wrapper .caret {
  fill: rgba(255, 255, 255, 0.87);
}

/* === NAVIGATION === */
#logo {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 100px;
  z-index: 998;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

#logo.hidden {
  opacity: 0;
  transform: translateY(-50px);
}

#logo.show {
  opacity: 1;
  transform: translateY(0);
}

#logo img,
#logo .logo-img {
  width: auto;
  height: 60px;
}

#right-menu {
  position: fixed;
  /*top:10px;*/
  right: 10px;
  /*z-index:100000;*/
  z-index: 999;
  background-color: var(--dark);
  border-radius: 50px;
  display: flex;
}

#right-menu>li>a {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  /*margin: 8px 4px;*/
  display: flex;
  align-items: center;
  justify-content: center;
}

#right-menu>li>a:hover {
  background-color: var(--dark1);
}

#right-menu>li>a>img {
  height: 40px;
  margin: 0px;
}

#right-menu .dots {
  position: absolute;
  top: 10px;
  right: 12px;
  display: inline-block;
  padding: 0;
  border-radius: 50%;
  margin: 0;
  block-size: .5rem;
  inline-size: .5rem;
  border-radius: 50%;
  background-color: #db3c31;
}

.list-order img {
  height: 60px;
}

/*=============================== ddnotification ===============================*/
#ddnotification li a {
  padding: 5px;
}

/* Notification badges */
.notification-dots {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  /*border: 2px solid white;*/
}

/*=============================== ddprofile ===============================*/
#ddprofile,
#ddnotification {
  width: 300px;
  color: var(--light);
}

.profile-container img {
  height: 100px;
}

#ddprofile .profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

/* Dropdown links */
#ddprofile li a {
  color: var(--light);
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
  padding: 20px;
  display: flex;
  align-items: center;
}

#ddprofile li:hover {
  background-color: transparent !important;
}

#ddprofile li a:hover {
  background-color: var(--dark2);
  color: var(--light);
}

#ddprofile li a i.material-icons {
  margin-right: 12px;
  font-size: 20px;
}

/*=============================== dropdown ===============================*/
.dropdown-content {
  background-color: var(--dark);
  z-index: 11000 !important;
  border-radius: 10px;
  border: 1px solid var(--light2);
  overflow: hidden;
  top: 80px !important;
}

.dropdown-content>li>a,
.dropdown-content>li>span>a,
.dropdown-content>li {
  color: var(--light);
}

.dropdown-content li:hover {
  background-color: var(--dark2);
}

.divider {
  background-color: var(--light2);
}

#bs-main {
  margin: 0;
  padding: 0;
}

#bs-main>.col {
  margin: 0;
  padding: 0;
}

#bs-main-mid {
  /*height:100vh;*/
  position: relative;
  overflow-x: hidden;
}

.timeline-container {
  position: relative;
}

/* Timeline for all sections */
#timeline {
  will-change: transform;
  touch-action: none;
  /* Prevent default gestures interfering */
  height: 100vh;
  width: 50vw;
  /*overflow-x: hidden;*/
  position: relative;
}

#timeline .section {
  position: relative;
  z-index: 1;
}

@media only screen and (max-width : 900px) {
  #timeline {
    width: 100vw;
  }
}

/* =============================== Section =============================== */
/* === SWIPER SLIDER === */
.swiper {
  height: 100vh;
  width: 100%;
}

/* Each slide full screen with image background */
.swiper-slide {
  background: var(--dark);
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  color: var(--light);
  text-shadow: 0 0 3px var(--light2);
}

/* === Section Content Overlay === */
.bump {
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  border-radius: 30px;
  clip: rect(-10px, 60px, 30px, 0px);
  background: var(--dark5);
}

.section-content {
  position: relative;
  background: var(--dark5);
  padding: 1rem 4rem;
  width: 100%;
  z-index: 2;
  margin: 0 auto;
  /*overflow: hidden;*/
  border: 0;
  /*  display: flex;
  flex-direction: column;
  justify-content: center;
*/
}

@keyframes pulse-once {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.pulse-3s {
  animation: pulse-once 1s ease-out;
  animation-iteration-count: 3;
  /* repeats 3 times = ~3 seconds */
}

.btn-order {
  position: absolute;
  top: -20px;
  right: 50%;
  transform: translateX(50%);
  width: 40px;
  height: 40px;
  line-height: 1;
  padding: 0;
  border-radius: 50%;
  background-color: var(--main);
}

.btn-order:hover {
  background-color: var(--sec);
}

.btn-order i {
  width: inherit;
  display: inline-block;
  text-align: center;
  color: var(--dark);
  font-size: 1.6rem;
  line-height: 40px;
}

.section-content h2 {
  margin: 0;
  font-size: 2rem;
}

.section-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0.5rem 0;
}

/* === Price Label === */
.section-content .hargax {
  top: 0;
  right: 4rem;
  font-size: 2.5rem;
  line-height: 1;
  font-family: 'harabara';
  letter-spacing: 4px;
  padding: 12px 0;
  position: absolute;
}

.section-content .harga-text {
  font-family: 'Fantasy', 'Helvetica', 'Roboto';
  font-size: 0.8rem;
  line-height: 1;
  padding: 0;
  margin: 0 5px;
  letter-spacing: normal;
  width: 20px;
  display: inline-block;
}

.section-content .juta {
  font-size: 1.5rem;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/* === Swiper Navigation Buttons === */
.swiper-button-prev,
.swiper-button-next {
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 10px;
  z-index: 10;
  border: none;
  transition: background var(--transition-normal, 0.3s);
}

/* Hover effect */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* Stack vertically (up/down buttons) */
.swiper-button-prev {
  top: 50%;
  transform: translateY(-100%);
}

.swiper-button-next {
  top: 52%;
  transform: translateY(0);
}

/* Custom arrow icons */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 24px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.4);
  text-shadow: none;
}

.swiper-button-prev::after {
  content: '▲';
  /* Up arrow */
  position: absolute;
  top: 8px;
}

.swiper-button-next::after {
  content: '▼';
  /* Down arrow */
}

/* === Pagination Bullets === */
.swiper-pagination-bullet {
  color: var(--light2);
  background-color: var(--dark2);
  transition: opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  opacity: 0.9;
  width: 44px;
  height: 44px;
  padding-top: 10px;
}

.swiper-pagination-bullet:hover {
  color: var(--dark);
  background-color: var(--light5);
}

.swiper-pagination-bullet-active {
  color: var(--main) !important;
  background-color: var(--light2) !important;
  opacity: 0.9 !important;
}

/* Position pagination vertically centered */
.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
  top: 50%;
}

/* === Variant for Top-aligned Slide === */
.swipe-top {
  justify-content: flex-start;
}

.swipe-top>.section-content {
  height: 100vh;
  align-content: center;
}

/* === Responsive Adjustments === */
@media only screen and (max-width: 599px) {

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .section-content {
    padding: 1rem 4rem;
  }

  .scleft {
    padding: 2rem 4rem 4rem 2rem;
  }

  .scharga {
    position: absolute;
    top: 2rem;
    right: 2rem;
  }

  .section-content .harga {
    right: 0;
    font-size: 2rem;
  }

  .section {
    width: 100vw;
  }
}

.scroll-down {
  content: '▼';
  /* down arrow */
  width: 100%;
  display: block;
  position: relative;
  left: 50%;
}

.peta-container>img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

aside {
  padding: 0;
  margin: 0
}

/* === SIDENAV === */
.sidenav {
  background-color: var(--dark);
  border-radius: var(--radius-lg);
  margin: 20px 0 0 20px;
  width: 275px;
}

.sidenav li a {
  padding: 0 20px;
  color: var(--light5);
  transition: all var(--transition-normal);
}

.sidenav li a:hover,
.sidenav li a:focus-visible {
  color: var(--main);
  background-color: var(--light1);
}

.container-sidenav-logo:hover,
.container-sidenav-logo a:hover {
  outline: none;
  background-color: transparent !important;
}

/*=============================== Slide Out Sidenav ===============================*/
#slide-out,
#slide-filter,
#slide-order {
  background-color: var(--dark);
  margin: 0;
  border-radius: 0;
}

/*=============================== Sidenav ===============================*/
@media only screen and (max-width : 599px) {
  .sidenav {
    margin-top: 100px;
  }
}

.sidenav {
  background-color: var(--dark);
  box-shadow: none;
  overflow: scroll;
  border-radius: 15px;
  margin-top: 0px;
  margin-left: 20px;
  width: 275px;
}

.sidenav li a {
  padding: 0 20px;
}

.sidenav li a,
.sidenav li>a>i.material-icons {
  color: var(--light5);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.sidenav li a:hover,
.sidenav li a:hover>i.material-icons {
  color: var(--main);
}

.sidenav li:hover {
  background-color: var(--light1);
}

.container-sidenav-logo {
  height: 120px;
}

.sidenav-logo {
  height: 100px;
  margin: 0 auto;
}

.sidenav-logo>a>img {
  height: 100px;
}

.sidenav-logo>a>span {
  margin-top: 14px;
}

.sidenav-search {
  margin: 20px;
}

/*=============================== BS Main Left Nav ===============================*/
@media only screen and (max-width : 599px) {
  #bs-main-left {
    margin-top: 50px;
  }
}

#bs-main-left {
  margin-top: 0;
}

.bsnav-search {
  padding: 20px;
}

.left-nav {
  position: relative;
  background-color: var(--ter);
  box-shadow: none;
  overflow: hidden;
  border-radius: 15px;
  /*margin-top:70px;*/
  margin-left: 7%;
  width: 86%;
  height: 90vh;
}

.left-nav:hover {
  overflow: auto;
  transition: all 0.3s ease;
}

.left-nav>li {
  float: left;
  line-height: 48px;
  width: 100%;
}

.left-nav>li>a {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  height: 48px;
  line-height: 48px;
  padding: 0 20px;
}

.left-nav>li:hover {
  background-color: var(--light2);
  border-radius: 10px;
}

.left-nav>li:hover>a,
.left-nav>li:hover>a>i.material-icons {
  color: var(--main);
}

.left-nav>li>a>i {
  float: left;
  height: 48px;
  line-height: 48px;
  margin: 0 32px 0 0;
  width: 24px;
}

.left-nav>li>a>i.right {
  margin: 0 0 0 32px;
}

.left-nav>li>a,
.left-nav>li>a>i.material-icons {
  color: var(--light);
}

.left-nav::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/*=============================== BS Main Right Nav ===============================*/

#bs-main-right .container {
  width: 90%;
  position: relative;
}

.morder {
  position: fixed;
  bottom: 0;
  right: 0;
  display: block;
}

.right-nav {
  position: relative;
  background-color: var(--light2);
  box-shadow: none;
  /*overflow:auto;*/
  border-radius: 15px;
  margin: 0 auto;
  margin-top: 100px;
  padding: 10px;
}

.right-nav>li {
  /*float:left;*/
  text-align: left;
  line-height: 48px;
  width: 100%;
  padding: 0 40px;
}

.right-nav>li>a {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  height: 48px;
  line-height: 48px;
  padding: 0 20px;
}

.right-nav>li:hover {
  background-color: var(--dark2);
}

.right-nav>li>a>i {
  float: left;
  height: 48px;
  line-height: 48px;
  margin: 0 32px 0 0;
  width: 24px;
}

.right-nav>li>a,
.right-nav>li>a>i.material-icons {
  color: var(--light);
}

/*=============================== BS Search Box ===============================*/
.bs-search-form {
  padding: 0px 16px;
  background: var(--light1);
  transition: background-color 0.3s ease;
  border-radius: 92px;
  position: relative;
  overflow: hidden;
  /*z-index: 1;*/
  height: 42px;
}

.bs-search-form:hover,
.bs-search-form:focus-within {
  background: var(--light2);
}

.bsnav-search:hover {
  background-color: transparent !important;
}

.bs-search-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  border: none;
  background: transparent;
  outline: none;
  padding: 0px;
  width: 89%;
  appearance: textfield;
  height: 40px;
}

.bs-search-form>input::placeholder {
  color: var(--light3);
  transition: color 0.3s ease;
}

.bs-search-form:hover>input::placeholder,
#bs-search-form:hover>i.material-icons,
#bs-search-form>input:focus::placeholder {
  color: var(--light);
}

.bs-search-form i.material-icons {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  /*z-index: 10;*/
  color: var(--light3);
  cursor: pointer;
}

/* === PRODUCT GRID === */
.vp-container {
  position: relative;
  height: 100px;
  overflow: hidden;
  padding: 1px !important;
  margin: 0 !important;
  transition: opacity var(--transition-normal);
  opacity: 0.5;
}

.vp-container:hover {
  opacity: 1;
}

.vp-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vp-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-align: right;
  letter-spacing: 3px;
  line-height: 0.8;
  color: var(--main);
  position: absolute;
  bottom: 5px;
  right: 5px;
}

/* === CARDS === */
.card {
  background-color: var(--light1);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-normal);
  box-shadow: none;
}

/* .card:hover { */
/*transform: translateY(-2px);*/
/* } */

/* === TABLES === */
.table-container {
  width: 100%;
  overflow: auto;
  margin-bottom: 10px;
  border-radius: 10px;
}

table {
  background-color: var(--dark);
  color: var(--light);
  width: 100%;
  border-collapse: collapse;
}

table.striped>tbody>tr:nth-child(odd) {
  background-color: var(--light1);
}

table.highlight>tbody>tr:hover {
  background-color: var(--light2);
}

/*table th:first-child {
  border-radius: 5px 0 0 0 !important;
}
table th:last-child {
  border-radius: 0 5px 0 0 !important;
}
table tr:last-child td:first-child {
  border-radius: 0 0 0 5px !important;
}
table tr:last-child td:last-child {
  border-radius: 0 0 5px 0 !important;
}
*/
/* === PAGINATION === */
.pagination li.active {
  background-color: var(--main);
}

.pagination li.active a {
  color: var(--dark) !important;
}

/* === MODALS === */
.modal {
  background-color: var(--dark);
}

.modal .modal-footer {
  background-color: var(--dark);
}

/* Make modal take full width/height on mobile */
#modalViewPhoto {
  max-width: 95%;
  height: auto;
}

/* #modalViewPhoto .modal-content { */
/*padding:20px;*/
/* } */

/* Ensure the image fits perfectly within modal */
#modalViewPhoto img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  /* Don't overflow viewport height */
  object-fit: contain;
  /* Keep aspect ratio */
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

/* === LOADING STATES === */

.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--light1);
  border-top: 2px solid var(--main);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* === SCROLL ANIMATIONS === */
.scroll-up {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 48px;
  cursor: pointer;
  animation: bounceArrow 1.5s infinite;
  transition: opacity var(--transition-slow);
}

@keyframes bounceArrow {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  40% {
    transform: translateY(-5px);
    opacity: 1;
  }

  60% {
    transform: translateY(-5px);
    opacity: 0.8;
  }
}

.scroll-up.hidden {
  opacity: 0;
  pointer-events: none;
}

/* === SCROLLBAR STYLING === */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background-color: var(--light1);
}

::-webkit-scrollbar-thumb {
  background-color: var(--light2);
  border-radius: var(--radius-lg);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--light1);
  transition: all 3s ease;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  /*input:-internal-autofill-selected{*/
  -webkit-box-shadow: inset 0px 50px 50px 50px #212121 !important;
  -webkit-text-fill-color: #fff;
  transition: background-color 99999s ease-in-out 0s;
}

.autocomplete-content li .highlight {
  color: var(--main);
}

/* ==============================
   RESPONSIVE DESIGN
   ============================== */
@media (max-width: 992px) {
  .nav-wrapper {
    margin: 0;
  }

  .brand-logo {
    left: 0;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  #timeline {
    width: 100vw;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1rem;
    --space-xl: 1.5rem;
    --space-xxl: 2rem;
  }

  .sidenav {
    margin: 10px;
    /*width: calc(100vw - 20px);*/
    width: calc(60vw);
  }

  .vp-container {
    height: 80px;
  }
}

/* ==============================
   ACCESSIBILITY IMPROVEMENTS
   ============================== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --main: #FFCC00;
    --sec: #FF6600;
    --light: #FFFFFF;
    --dark: #000000;
  }
}

/* ==============================
   PRINT STYLES
   ============================== */
@media print {

  .navbar-fixed,
  .fixed-action-btn,
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }

  .swiper-slide {
    height: auto !important;
    break-inside: avoid;
  }
}

/* ==============================
   UTILITY CLASSES
   ============================== */
/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Text Alignment */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

/* Border Radius */
.rounded-sm {
  border-radius: var(--radius-sm);
}

.rounded-md {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-full {
  border-radius: 50%;
}

/* Opacity */
.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

/* Shadows */
.shadow-sm {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shadow-md {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.shadow-lg {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Transitions */
.transition {
  transition: all var(--transition-normal);
}

.transition-fast {
  transition: all var(--transition-fast);
}

.transition-slow {
  transition: all var(--transition-slow);
}

/* Cursor */
.cursor-pointer {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

/* ==============================
   COMPONENT VARIATIONS
   ============================== */
/* WhatsApp Button */
.wa-btn {
  background-color: #009688 !important;
  color: #fff !important;
}

.wa-btn:hover {
  background-color: #1d7d74 !important;
}

.wa-btn>img {
  width: 30px;
  height: auto;
  float: left;
  left: -15px;
  top: 5px;
  margin: 5px 0;
  color: #fff;
}

.wa-btn>img:hover {
  filter: invert(100%);
}

/* Badge */
.badge.new {
  background-color: var(--main);
  color: var(--dark);
  border-radius: var(--radius-sm);
}

/* Copyright */
.copyright {
  color: var(--grey) !important;
  text-align: center !important;
  font-size: 0.875rem;
}

.copyright a {
  color: var(--grey) !important;
}

.copyright a:hover {
  color: var(--main) !important;
  outline: 0;
}

.copyright img {
  width: 100px;
  display: block;
  margin: 0 auto;
}

.version-indicator {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 111111111;
  font-size: 0.75rem;
  opacity: 0.5;
}

/* Add debug borders to see actual dimensions */
.debug * {
  outline: 1px solid red !important;
}

.debug .problematic-element {
  outline: 2px solid blue !important;
}

.element {
  box-sizing: border-box;
  width: 300px;
  padding: 20px;
  border: 2px solid black;
  background-size: cover;
  /* or use specific pixel values */
  background-size: 260px auto;
  /* Account for padding */
}

.img-container img {
  height: 40px;
  width: auto;
}

/*=============================== Produk Pilihan  ===============================*/
#vp-section {
  margin: 50px;
  margin-top: 100px;
}

.vp-container {
  position: relative;
  ;
  height: 100px;
  overflow: hidden;
  padding: 1px !important;
  margin: 0px !important;
  transition: opacity 1s;
  opacity: 0.5;
}

.vp-container:hover {
  opacity: 1;
}

.vp-container img {
  display: block;
  width: 100%;
  height: 100px;
  object-fit: cover;
  margin: auto;
}

.vp-title {
  font-family: 'harabara';
  font-size: 1.1rem;
  text-align: right;
  letter-spacing: 3px;
  line-height: 0.8;
  /*color:#fff;*/
  color: #ffcc00;
  opacity: 1;
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.vp-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  /*background-color: rgba(255, 204, 0, 0.8);*/
  background-color: rgba(0, 0, 0, 0.8);
  padding: 0 5px;
  font-family: 'harabara';
}

.vp-promo img {
  object-fit: contain;
}

.vp-diskon {
  font-size: 3rem;
}

.vp-deskripsi {
  font-size: 1rem;
  font-family: 'Roboto';
  color: #fff;
}

/*============================= Collection =============================*/
.collection {
  border: 1px solid var(--light2);
}

/*.collection, .collection .collection-item:first-child{
  border:0;
}*/
.collection .collection-item {
  border-bottom: 1px solid var(--light2);
}

.collection .collection-item {
  background-color: var(--dark1);
}

.secondary-content {
  color: var(--light);
  top: 50%;
  transform: translateY(50%);
}

/*============================= Pill Boxes Checkbox =============================*/
.pill-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0px;
}

.jcenter {
  justify-content: center;
}

.pill-checkboxes input[type="checkbox"] {
  display: none;
}

.pill-checkboxes [type="checkbox"]+span:not(.lever):before,
.pill-checkboxes input[type="checkbox"]:not(.filled-in)+span:not(.lever):after {
  /*opacity:0;*/
  width: 10px !important;
  height: 10px !important;
  margin: 0 !important;
  border-radius: 20px;
}

.pill-checkboxes input[type="checkbox"]+span:not(.lever) {
  padding-left: 12px;
  height: 10px;
  line-height: 10px;
  font-size: 0.8rem;

}

.pill-checkboxes label {
  cursor: pointer;
  padding: 0px 8px;
  border-radius: 50px;
  border: 2.5px solid var(--grey);
  color: var(--grey);
  font-weight: 500;
  font-size: 1rem;
  user-select: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pill-checkboxes input[type="checkbox"]:checked+label,
.pill-checkboxes input[type="checkbox"]:checked+span:not(.lever):before {
  background-color: var(--main);
  color: var(--main);
  box-shadow: 0 0 2px var(--dark);
  border-color: var(--main);
  transform: none;
  translate: none;
  border-radius: 20px;
  top: 0;
  left: 0;

}

/*============================= Pill Boxes Radio =============================*/
.pill-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0px;
}

.pill-radio.small [type="radio"]:not(:checked)+span,
.pill-radio.small [type="radio"]:checked+span {
  padding: 5px;
  font-weight: 400;
  font-size: .8rem;
  line-height: 1;
  margin-bottom: 0px;
}

.pill-radio.small [type="radio"]:not(:checked)+span {
  border: 1.5px solid var(--grey);
}

.pill-radio.small [type="radio"]:checked+span {
  border: 1.5px solid var(--main);
}

.pill-radio [type="radio"]:not(:checked)+span {
  cursor: pointer;
  padding: 15px;
  border-radius: 50px;
  background-color: var(--dark1);
  border: 2.5px solid var(--grey);
  color: var(--grey);
  font-weight: 500;
  font-size: 1rem;
  user-select: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  line-height: 0;
}

.pill-radio [type="radio"]:checked+span {
  cursor: pointer;
  padding: 15px;
  border-radius: 50px;
  background-color: var(--dark5);
  border: 2.5px solid var(--main);
  color: var(--main);
  font-weight: 500;
  font-size: 1rem;
  user-select: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  line-height: 0;
}

.pill-radio [type="radio"]:not(:checked)+span:before,
.pill-radio [type="radio"]:not(:checked)+span:after,
.pill-radio [type="radio"]:checked+span:before,
.pill-radio [type="radio"]:checked+span:after {
  display: none;
}

/*============================= Produk Item =============================*/
.filter input[name="cariProduk"] {
  width: 240px;
}

#list_produk {
  padding: 10px;
  margin: 0;
  transition: all .5s ease-in-out;
}

.loader {
  width: 100%;
  height: 100%;
  background-color: var(--dark1);
  visibility: hidden;
  opacity: 0;
}

.loader {
  opacity: 1;
  visibility: visible;
  transition: opacity .25s ease-in-out;
}

.equal-col {
  display: flex;
  flex-wrap: wrap;
}

#list_produk .produk_item {
  padding: 0
}

#list_produk .card {
  background-color: var(--dark1);
  margin: 10px;
  transition: all .5s ease-in-out;
}

#list_produk .card-content {
  position: relative;
  padding: 0;
}

#list_produk .produk-caption {
  padding: 10px;
}

#list_produk .img-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  /* horizontally center */
  align-items: center;
  /* vertically center */
}

#list_produk .card-content .removeFav {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 999;
  opacity: 0.1;
  transition: opacity .25s ease-in-out;
  cursor: pointer;
}

#list_produk .card-content:hover>.removeFav {
  opacity: 1;
}

#list_produk .title-card {
  position: absolute;
  bottom: 5px;
  right: 5px;
}

#list_produk .img-container img {
  height: 100% !important;
  width: auto !important;
  object-fit: contain;
  transition: all .25s ease-in-out;
}

#list_produk .img-container::after {
  content: '';
  background-color: var(--dark2);
  height: 300px;
  display: block;
  width: 100%;
  top: 0;
  position: absolute;
  left: 0;
  transition: all .25s ease-in-out;
}

#list_produk .img-container:hover>img {
  transform: scale(1.05);
}

#list_produk .img-container:hover::after {
  background-color: transparent;
}

#list_produk .btn-floating {
  position: absolute;
  right: 10px;
  bottom: 70px;
}

@media only screen and (max-width : 599px) {
  #list_produk .produk-caption {
    padding: 5px;
  }

  #list_produk .img-container {
    height: 200px;
  }

  #list_produk .btn-floating {
    position: absolute;
    right: 10px;
    bottom: 40px;
  }

  #list_produk .card {
    margin: 5px;
  }
}

/*============================= DASHBOARD =============================*/
#dashboard {
  margin: 20px;
}

@media only screen and (max-width : 599px) {
  #dashboard {
    margin: 100px 20px 20px 20px;
  }
}

/*============================= SUMMARY =============================*/
#summary {
  display: flex;
  flex-wrap: wrap;
}

#summary .col {
  display: flex;
  flex-direction: column;
}

#summary .card {
  width: 100%;
  display: flex;
  flex-direction: column;
}

#summary .card-content {
  flex: 1;
  max-height: 100px;
  overflow-y: hidden;
  padding: 12px;
  flex-direction: column;
}

#summary ul {
  margin: 0;
}

#summary ul li {
  white-space: nowrap;
}

#summary h1 {
  margin: 5px 0;
}

#summary .totalText {
  white-space: nowrap;
}

.underline::after {
  content: "";
  width: 40%;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 34px;
  left: 13px;
}

.underline2::after {
  content: "";
  width: 40%;
  height: 2px;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 34px;
  left: 13px;
}

.img-container img {
  height: 40px;
}

.muttm .img-container a {
  padding-top: 10px;
  height: 64px;
}

.muttm .circle {
  background-color: #fff;
}

#summary .card .card-content img.circle {
  height: 80px;
}

#recentUsers {
  margin-top: 0;
}

#recentUsers li {
  line-height: 1.4rem;
}

@media only screen and (max-width : 599px) {
  .section {
    position: relative;
  }

  #summary .card .card-content img.circle {
    height: 40px;
  }

  #recentUsers li {
    font-size: 11px;
  }
}

/*user_view*/
#userForm .foto-container,
#produkForm .foto-container,
#postForm .foto-container {
  height: 400px;
  width: 400px;
  padding: 20px;
  margin: 0 auto;
  overflow: hidden;
}

#userForm .foto-container img,
#produkForm .foto-container img,
#postForm .foto-container img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width : 599px) {

  #userForm .foto-container,
  #produkForm .foto-container,
  #postForm .foto-container {
    height: 260px;
    width: 260px;
  }
}

/*============================= MODAL =============================*/
.modal-full {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  top: 0 !important;
  left: 0 !important;
  transform: none !important;
}

.modal,
.modal .modal-footer {
  background-color: var(--dark);
}

/*============================= Preview Photo =============================*/
#previewContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.preview-item {
  position: relative;
  width: 120px;
  height: 90px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.preview-item:hover img {
  transform: scale(1.05);
}

.delete-photo-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: rgba(255, 0, 0, 0.8);
  border: none;
  border-radius: 50%;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transition: all 0.2s ease;
}

.delete-photo-btn:hover {
  background-color: rgba(255, 0, 0, 1);
}

.delete-photo-btn i.material-icons {
  font-size: 16px;
  color: white;
  line-height: 16px;
  user-select: none;
  pointer-events: none;
}

/*============================= Pengaturan =============================*/
#pengaturan {
  margin: 0 20px;
}

#pengaturan .title-collection {
  margin-left: 20px;
}

#pengaturan .collection {
  border-radius: 10px;
}

#pengaturan .collection-item {
  color: var(--light);
  border-bottom: 0px;
  padding: 20px;
}

#pengaturan a.collection-item:not(.active):hover {
  background-color: var(--light1);
  color: var(--main);
}

#pengaturan .container {
  width: 90%;
}

#pengaturan .foto-profil-container {
  height: 200px;
  text-align: center;
  margin: 20px;
}

#pengaturan .foto-profil-container img {
  border-radius: 50%;
  height: 100%;
}

.logo-container img {
  height: 150px;
  width: auto;
  cursor: pointer;
}

/*============================= AKUN =============================*/
@media only screen and (max-width : 599px) {

  #akun h1,
  #akun h5 {
    text-align: center;
  }
}

/*============================= SweetAlert2 =============================*/
.swal2-modal,
.swal2-popup {
  background: var(--dark) !important;
}

.swal2-title,
.swal2-html-container {
  color: var(--light) !important;
}

.swal2-confirm {
  background-color: var(--main) !important;
  color: var(--dark) !important;
}

.swal2-cancel {
  background-color: var(--sec) !important;
  color: var(--ter) !important;
}

/*============================= tabs =============================*/
.tabs {
  background-color: transparent;
}

.tabs .tab {
  text-transform: none;
}

.tabs .tab a {
  color: var(--light);
}

.tabs .tab a:hover {
  color: var(--light);
}

.tabs .tab a.active {
  color: var(--main);
}

.tabs .tab a:focus {
  background-color: var(--main2);
  color: var(--main);
}

.tabs .tab a:focus.active {
  background-color: transparent;
  color: var(--main);
}

.tabs .tab.disabled a,
.tabs .tab.disabled a:hover {
  color: var(--light5);
}

.tabs .indicator {
  background-color: var(--main);
  /* Change the indicator color */
  height: 3px;
  /* Change the indicator thickness */
}

/*============================= TEAM =============================*/
.team-img {
  border-radius: 50%;
  height: 100px;
  transition: all 0.3s ease;
}

.team-img:hover {
  transform: scale(105%);
}

.speech-bubble-container {
  position: relative;
  /* Essential for positioning the bubble and its pointer */
  width: 200px;
  /* Adjust as needed */
  margin: 50px;
  /* For demonstration */
}

.speech-bubble {
  background-color: #ffcc00;
  /* Light gray background */
  color: #000;
  font-size: 2rem;
  border: 10px solid #000;
  /* Light gray border */
  border-radius: 40px;
  /* Rounded corners */
  padding: 5px;
  position: relative;
  /* Essential for positioning the pseudo-element pointer */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
}

.speech-bubble::after {
  /* Pseudo-element for the pointer */
  content: '';
  position: absolute;
  border-width: 10px;
  /* Size of the pointer */
  border-style: solid;
  border-color: #ffcc00 transparent transparent transparent;
  /* Match bubble background and hide other borders */
  bottom: -20px;
  /* Position the pointer below the bubble */
  left: 90px;
  /* Adjust horizontal position */
}

.speech-bubble::before {
  /* Pseudo-element for the border of the pointer */
  content: '';
  position: absolute;
  border-width: 11px;
  /* Slightly larger than the pointer for the border */
  border-style: solid;
  border-color: #ccc transparent transparent transparent;
  /* Match bubble border */
  bottom: -22px;
  /* Position slightly below the pointer */
  left: 19px;
  /* Adjust horizontal position to align with pointer */
  z-index: -1;
  /* Place behind the main pointer */
}

/* Custom CSS for Quantity Counter */
.quantity-counter-group {
  /* Mimics the max-w-[8rem] from the original example */
  max-width: 128px;
  display: flex;
  /* Aligns the button and input horizontally */
  align-items: center;
  position: relative;
}

/* Style the buttons to look like part of the group */
.quantity-counter-group .btn-flat {
  height: 40px;
  /* Match input height */
  line-height: 40px;
  padding: 0 4px 0 4px;
  /* Standardize padding */
  box-shadow: none;
  background-color: var(--dark);
  /* Light gray background */
  border: 1px solid var(--light2);
  /* Light gray border */
  color: var(--light);
  /* Dark text color */
  transition: background-color 0.3s;
}

.quantity-counter-group .btn-flat:hover {
  background-color: var(--light3);
  /* Slightly darker hover */
}

/* Style the Decrement Button's border and corners */
#decrement-button {
  border-radius: 8px 0 0 8px;
  /*border-right: none;*/
}

/* Style the Increment Button's border and corners */
#increment-button {
  border-radius: 0 8px 8px 0;
  /*border-left: none;*/
}

/* Style the Input Field */
.quantity-counter-group input[type="text"] {
  /* Overrides Materialize defaults */
  border: 0px solid var(--light2) !important;
  border-radius: 0 !important;
  height: 40px !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 30px;
  text-align: center;
  box-shadow: none !important;
  background-color: #060606;
  font-size: 14px;
  color: var(--light);
}

/* Remove focus/active Materialize border color change */
.quantity-counter-group input[type="text"]:focus {
  border: 1px solid #ccc !important;
  box-shadow: none !important;
}

/* Ensures icons are properly sized */
.quantity-counter-group .material-icons {
  font-size: 18px;
  vertical-align: middle;
  line-height: 0;
}

.preset-chips .chip {
  cursor: pointer;
  background-color: var(--light2);
  transition: background 0.2s ease;
}

.preset-chips .chip:hover {
  background-color: var(--light);
}

#app-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 10.3s ease, visibility 10.3s ease;
}

#app-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  border: 4px solid var(--dark);
  border-top: 4px solid var(--main);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/*============================= CHAT =============================*/
.chat-body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--ter);
  color: var(--light);
}

/*============================= CONTAINER =============================*/
.chat-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--ter);
}

/*============================= CHAT MESSAGES =============================*/
.chat-messages {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
  padding: 15px;
  background: var(--dark2);
  height: calc(100vh - 200px);
  scroll-behavior: smooth;
  background-image: url('../img/bgchat.jpg');
  background-repeat: repeat-y;
}

/*============================= MESSAGE BUBBLES =============================*/
/*.message {
  max-width: 70%;
  margin-bottom: 10px;
  padding: 10px 14px;
  word-wrap: break-word;
  word-break: break-word;
  font-size: 14px;
  line-height: 1.4;
  display: inline-block;
}
.message.me {
  background: var(--light);
  color: var(--dark);
  margin-left: auto;
  border-radius: 20px 20px 0 20px;
  align-self: flex-end;
  position: relative;
}

.message.other {
  background: var(--light);
  color: var(--dark);
  margin-right: auto;
  border-radius: 20px 20px 20px 0;
  align-self: flex-start;
  position: relative;
}
*/
.message {
  --r: 1em;
  /* corner radius */
  --t: 1.0em;
  /* tail size */
  word-wrap: break-word;
  word-break: break-word;
  font-size: 14px;
  line-height: 1.4;
  display: inline-block;
  min-width: 30%;
  max-width: 70%;
  padding: 1em;
  margin: 0.5em 0;
  background: linear-gradient(135deg, #eee, #eee) border-box;
  color: #000;
  position: relative;
  border-inline: var(--t) solid transparent;
  border-radius: calc(var(--r) + var(--t)) / var(--r);

  /* Mask to cut out the tail */
  -webkit-mask: radial-gradient(100% 100% at var(--_p) 0, transparent 99%, black 102%) var(--_p) 100% / var(--t) var(--t) no-repeat,
    linear-gradient(black 0 0) padding-box;
  mask: radial-gradient(100% 100% at var(--_p) 0, transparent 99%, black 102%) var(--_p) 100% / var(--t) var(--t) no-repeat,
    linear-gradient(black 0 0) padding-box;
}

/* Left-aligned bubble */
.message.other {
  --_p: 0%;
  border-bottom-left-radius: 0;
  align-self: flex-start;
  background: linear-gradient(135deg, #f1f1f1, #f1f1f1) border-box;
}

/* Right-aligned bubble */
.message.me {
  --_p: 100%;
  border-bottom-right-radius: 0;
  align-self: flex-end;
  background: linear-gradient(135deg, #d3efff, #d3efff) border-box;
}

.message .text {
  display: block;
}

.message .time {
  font-size: 10px;
  color: var(--dark);
  margin-top: 4px;
  display: block;
  text-align: right;
}

/*============================= DIVIDER =============================*/
.chat-divider {
  text-align: center;
  font-size: 12px;
  color: var(--light3);
  margin: 10px 0;
  position: relative;
}

.chat-divider::before,
.chat-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--light3);
}

.chat-divider::before {
  left: 0;
}

.chat-divider::after {
  right: 0;
}

/*============================= CHAT HEADER =============================*/
.chat-user {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--dark1);
  backdrop-filter: blur(8px);
  padding: 0px 15px;
  margin: 0;
  border: 0;
  /*border-bottom: 1px solid var(--dark3);*/
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.chat-user .collection-item {
  border: 0;
}

.active-chat-user {
  display: flex;
  align-items: center;
}

.active-chat-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 12px;
  border: 2px solid var(--dark3);
}

.chat-user-info {
  flex-grow: 1;
}

.chat-name {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--light);
}

.chat-status {
  font-size: 0.9rem;
  color: var(--light3);
}

/* Back Button */
.back-btn {
  margin-right: 10px;
  color: var(--light);
}

#chatText {
  padding-left: 20px;
  width: 90%;
}

.themeToggleBtn {
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: var(--main);
  color: white;
  font-weight: 600;
}