/** Shopify CDN: Minification failed

Line 13:18 Expected identifier but found whitespace
Line 13:20 Unexpected "{"
Line 13:30 Expected ":"

**/
/** Harga Cantik CSS for the theme. This file is included on every page. */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --color-primary: {{ settings.primary_color | default: '#000000' }};
  /* Font Utama (Teks, Judul, Menu, Navigasi) */
  --font-main: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;

  /* Font Khusus (Harga, Badge, Angka Paginasi) */
  --font-price: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Terapkan ke seluruh elemen */
*,
*::before,
*::after {
  font-family: var(--font-body-family) !important;
}

/* 2. Terapkan Segoe UI ke Seluruh Elemen Utama */
body, p, h1, h2, h3, h4, h5, h6, a, span, input, button, select, textarea {
  font-family: var(--font-main) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 3. Tentukan Ketebalan Judul Produk dengan Segoe UI (Pakai SemiBold 600 agar tidak melar) */
.jaknot-card__title,
.jaknot-page__title,
.jaknot-blog-card__title,
.jaknot-article__title,
.jaknot-collection__title {
  font-weight: 600 !important;
  letter-spacing: -0.01em;
}

/* 4. Terapkan Inter Khusus Elemen Harga & Angka Tebal */
.jaknot-card__price,
.jaknot-card__compare-price,
.jaknot-badge-discount,
.jaknot-404__code,
.product-single__price, /* jika ada di halaman detail produk */
[class*="price"] {
  font-family: var(--font-price) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em; /* Merapatkan angka harga agar terlihat lebih kompak */
}

body {
  margin: 0
}


/* ============================================================
 * BREADCRUMB STYLING
 * ============================================================ */
.jaknot-breadcrumb {
  padding: 12px 0;
  margin-bottom: 16px;
  background-color: transparent;
}

.jaknot-breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12.5px;
  line-height: 1.4;
  color: #64748b;
}

.jaknot-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  max-width: 280px; /* Batas lebar per item agar tidak merusak layout */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jaknot-breadcrumb__link {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.jaknot-breadcrumb__link:hover {
  color: #E4457B; /* Akses warna merah */
  text-decoration: underline;
}

.jaknot-breadcrumb__separator {
  margin: 0 8px;
  color: #cbd5e1;
  font-size: 14px;
  user-select: none;
}

.jaknot-breadcrumb__current {
  color: #1e293b;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* RESPONSIVE DESIGN (Tampilan Mobile/Tablet) */
@media (max-width: 768px) {
  .jaknot-breadcrumb {
    padding: 8px 0;
    margin-bottom: 12px;
  }

  .jaknot-breadcrumb__list {
    font-size: 11.5px;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  /* Hilangkan scrollbar di tampilan mobile agar rapi */
  .jaknot-breadcrumb__list::-webkit-scrollbar {
    display: none;
  }
  .jaknot-breadcrumb__list {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .jaknot-breadcrumb__item {
    max-width: 180px;
  }
}