@charset "UTF-8";
/* ==========================================================================
   Lentera — Editorial Boutique
   Serif headlines, hairline rules, wide margins. Products are shown as pieces
   rather than as stock, so the card frame disappears and the image leads.
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Karla:wght@400;500;600;700&display=swap");
:root {
  /* type */
  --au-font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --au-font-body: "Karla", system-ui, -apple-system, "Segoe UI", sans-serif;
  --au-weight-head: 600;
  --au-weight-name: 600;
  --au-weight-price: 500;
  --au-tracking-head: -0.015em;
  --au-fs-xs: 0.75rem;
  --au-fs-sm: 0.8125rem;
  --au-fs-base: 0.9375rem;
  --au-fs-md: 1.1875rem;
  --au-fs-lg: 1.5rem;
  --au-fs-xl: 2.125rem;
  --au-fs-2xl: 2.875rem;
  --au-fs-price: 1rem;
  /* colour */
  --au-ink: #1b1a18;
  --au-ink-2: #3b3a36;
  --au-muted: #6b6862;
  --au-surface: #ffffff;
  --au-ground: #f5f4f1;
  --au-border: #e2e0da;
  --au-border-strong: #c6c3bb;
  --au-primary: #3a3b63;
  --au-primary-dark: #2a2b4a;
  --au-primary-soft: #eeeef4;
  --au-on-primary: #ffffff;
  --au-action: #3a3b63;
  --au-action-dark: #2a2b4a;
  --au-action-soft: #eeeef4;
  --au-on-action: #ffffff;
  --au-mark: #1b1a18;
  --au-mark-soft: #eeeef4;
  --au-mark-ink: #2a2b4a;
  --au-price: #1b1a18;
  --au-danger: #96261e;
  --au-nav-bg: #ffffff;
  --au-nav-fg: #3b3a36;
  --au-nav-on: #1b1a18;
  --au-util-bg: #f5f4f1;
  --au-util-fg: #6b6862;
  --au-util-hover: #1b1a18;
  --au-foot-bg: #1b1a18;
  --au-foot-fg: #a8a59d;
  --au-foot-head: #ffffff;
  --au-foot-tile: #282622;
  --au-foot-rule: #2f2d28;
  --au-ph-bg: #efede8;
  --au-ph-fg: #9c978e;
  /* shape */
  --au-radius-card: 2px;
  --au-radius-btn: 2px;
  --au-radius-chip: 999px;
  --au-radius-logo: 2px;
  --au-card-border: 1px solid #e2e0da;
  --au-shadow-pop: none;
  /* rhythm */
  --au-cols: 3;
  --au-grid-gap: 32px;
  --au-card-pad: 16px 0 8px;
  --au-sec-pad: 72px;
  --au-head-pad: 22px;
  --au-measure: 64ch;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
html {
  height: 100%;
}

body {
  font-family: var(--au-font-body);
  font-size: var(--au-fs-base);
  line-height: 1.6;
  color: var(--au-ink);
  background: var(--au-surface);
  font-variant-numeric: tabular-nums;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow-x: hidden;
}

.main-content {
  flex: 1 0 auto;
}

h1, h2, h3, h4 {
  font-family: var(--au-font-head);
  font-weight: var(--au-weight-head);
  letter-spacing: var(--au-tracking-head);
  line-height: 1.24;
  margin: 0;
}

h1 {
  font-size: var(--au-fs-xl);
}

h2 {
  font-size: var(--au-fs-lg);
}

h3 {
  font-size: var(--au-fs-md);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--au-primary);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--au-primary);
  outline-offset: 2px;
}

img {
  max-width: 100%;
}

.au-prose {
  max-width: var(--au-measure);
  color: var(--au-ink-2);
}
.au-prose p {
  margin-bottom: 16px;
}
.au-prose p:last-child {
  margin-bottom: 0;
}
.au-prose h2 {
  margin: 32px 0 12px;
}
.au-prose h3 {
  margin: 24px 0 10px;
}
.au-prose ul, .au-prose ol {
  margin: 0 0 16px;
  padding-left: 20px;
}
.au-prose li {
  margin-bottom: 6px;
}
.au-prose img {
  height: auto;
  border-radius: var(--au-radius-card);
}
.au-prose table {
  width: 100%;
  margin-bottom: 16px;
}
.au-prose td, .au-prose th {
  padding: 8px 10px;
  border: 1px solid var(--au-border);
}

/* --------------------------------------------------------------------------
   Buttons, chips, fields
   -------------------------------------------------------------------------- */
.au-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--au-radius-btn);
  font-family: var(--au-font-body);
  font-size: var(--au-fs-base);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.au-btn-primary {
  background: var(--au-primary);
  color: var(--au-on-primary);
}

.au-btn-primary:hover {
  background: var(--au-primary-dark);
  color: var(--au-on-primary);
}

.au-btn-contact {
  background: var(--au-action);
  color: var(--au-on-action);
}

.au-btn-contact:hover {
  background: var(--au-action-dark);
  color: var(--au-on-action);
}

.au-btn-ghost {
  background: var(--au-surface);
  color: var(--au-ink);
  border-color: var(--au-border-strong);
}

.au-btn-ghost:hover {
  background: var(--au-ground);
  border-color: var(--au-muted);
  color: var(--au-ink);
}

.au-btn-block {
  width: 100%;
}

.au-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.au-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 7px 14px;
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius-chip);
  background: var(--au-surface);
  color: var(--au-ink-2);
  font-size: var(--au-fs-sm);
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.au-chip .n {
  font-weight: 500;
  opacity: 0.7;
}

.au-chip:hover {
  border-color: var(--au-primary);
  background: var(--au-primary-soft);
  color: var(--au-primary);
}

.au-chip.is-on {
  background: var(--au-primary);
  border-color: var(--au-primary);
  color: var(--au-on-primary);
}

.au-chip.is-on .n {
  opacity: 0.85;
}

.au-select {
  height: 40px;
  padding: 0 32px 0 12px;
  border: 1px solid var(--au-border-strong);
  border-radius: var(--au-radius-btn);
  background-color: var(--au-surface);
  color: var(--au-ink);
  font-family: var(--au-font-body);
  font-size: var(--au-fs-base);
  font-weight: 600;
}

.au-select-block {
  width: 100%;
}

.au-field {
  margin-bottom: 16px;
}
.au-field label {
  display: block;
  margin-bottom: 6px;
  font-size: var(--au-fs-sm);
  font-weight: 600;
}
.au-field label .req {
  color: var(--au-danger);
}
.au-field input,
.au-field textarea,
.au-field select {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid var(--au-border-strong);
  border-radius: var(--au-radius-btn);
  background: var(--au-surface);
  color: var(--au-ink);
  font-family: var(--au-font-body);
  font-size: var(--au-fs-base);
}
.au-field input:focus,
.au-field textarea:focus,
.au-field select:focus {
  border-color: var(--au-primary);
  outline: none;
  box-shadow: 0 0 0 3px var(--au-primary-soft);
}
.au-field .help {
  display: block;
  margin-top: 5px;
  color: var(--au-muted);
  font-size: var(--au-fs-xs);
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.au-sec {
  padding: var(--au-sec-pad) 0;
}

.au-sec-alt {
  background: var(--au-ground);
}

.au-sec-flush {
  padding-top: 0;
}

.au-sec-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-top: 14px;
  border-top: 2px solid var(--au-ink);
}
.au-sec-head p {
  margin: 4px 0 0;
  color: var(--au-muted);
  font-size: var(--au-fs-base);
}

.au-link-more {
  color: var(--au-primary);
  font-weight: 600;
  font-size: var(--au-fs-base);
  white-space: nowrap;
}

.au-link-more:hover {
  text-decoration: underline;
}

.au-pagehead {
  padding: var(--au-sec-pad) 0;
  border-bottom: 1px solid var(--au-border);
  background: var(--au-ground);
}
.au-pagehead h1 {
  font-size: var(--au-fs-2xl);
}
.au-pagehead p {
  margin: 12px 0 0;
  max-width: var(--au-measure);
  color: var(--au-muted);
  font-size: var(--au-fs-md);
}

.au-empty {
  padding: 48px 24px;
  border: 1px dashed var(--au-border-strong);
  border-radius: var(--au-radius-card);
  text-align: center;
  color: var(--au-muted);
}
.au-empty i {
  display: block;
  margin-bottom: 12px;
  font-size: 2rem;
  opacity: 0.5;
}
.au-empty p {
  margin: 0 0 16px;
}

.au-alert {
  margin: 24px 0 0;
  border-radius: var(--au-radius-card);
}

/* --------------------------------------------------------------------------
   Utility strip and header
   -------------------------------------------------------------------------- */
.au-util {
  background: var(--au-util-bg);
  color: var(--au-util-fg);
  font-size: var(--au-fs-xs);
}
.au-util a {
  color: var(--au-util-fg);
}
.au-util a:hover {
  color: var(--au-util-hover);
}
.au-util .u-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 7px 0;
}
.au-util .u-end {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.au-head {
  position: relative;
  z-index: 20;
  background: var(--au-surface);
  border-bottom: 1px solid var(--au-border);
}
.au-head .h-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: var(--au-head-pad) 0;
}

.au-burger {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius-btn);
  background: var(--au-surface);
  color: var(--au-ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.au-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 0 1 auto;
  min-width: 0;
}

.au-logo-mark {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--au-radius-logo);
  background: var(--au-ground);
}
.au-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.au-logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.au-logo-text .nm {
  font-family: var(--au-font-head);
  font-weight: var(--au-weight-head);
  font-size: var(--au-fs-base);
  line-height: 1.25;
  letter-spacing: var(--au-tracking-head);
}
.au-logo-text .sub {
  color: var(--au-muted);
  font-size: var(--au-fs-xs);
  font-weight: 500;
}

.au-search {
  position: relative;
  flex: 1 1 auto;
  max-width: 520px;
}
.au-search input {
  width: 100%;
  height: 46px;
  padding: 0 46px 0 40px;
  border: 1px solid var(--au-border-strong);
  border-radius: var(--au-radius-btn);
  background: var(--au-ground);
  color: var(--au-ink);
  font-family: var(--au-font-body);
  font-size: var(--au-fs-base);
}
.au-search input:focus {
  background: var(--au-surface);
  border-color: var(--au-primary);
  outline: none;
  box-shadow: 0 0 0 3px var(--au-primary-soft);
}
.au-search .bi-search {
  position: absolute;
  top: 13px;
  left: 14px;
  color: var(--au-muted);
}
.au-search .go {
  position: absolute;
  top: 6px;
  right: 6px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: var(--au-radius-btn);
  background: var(--au-primary);
  color: var(--au-on-primary);
  cursor: pointer;
}

.au-search-mobile,
.au-search-block {
  max-width: none;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.au-nav {
  background: var(--au-nav-bg);
  border-bottom: 1px solid var(--au-border);
}
.au-nav .au-nav-row {
  display: flex;
  align-items: center;
  gap: 26px;
  overflow: visible;
}
.au-nav .au-nav-row > a,
.au-nav .menu-list > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 13px 0;
  border-bottom: 2px solid transparent;
  color: var(--au-nav-fg);
  font-size: var(--au-fs-base);
  font-weight: 600;
  white-space: nowrap;
}
.au-nav .au-nav-row > a:hover,
.au-nav .menu-list > a:hover {
  color: var(--au-nav-on);
  border-bottom-color: var(--au-mark);
}
.au-nav .bi-chevron-down {
  font-size: 0.7rem;
}

.menu-list {
  position: relative;
}

.menu-dropdown {
  position: absolute;
  top: 100%;
  left: -14px;
  z-index: 30;
  display: none;
  min-width: 260px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--au-surface);
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius-card);
  box-shadow: 0 10px 30px -12px rgba(20, 26, 33, 0.35);
}
.menu-dropdown li {
  position: relative;
}
.menu-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  border-radius: var(--au-radius-btn);
  color: var(--au-ink-2);
  font-size: var(--au-fs-base);
  font-weight: 500;
}
.menu-dropdown a:hover {
  background: var(--au-primary-soft);
  color: var(--au-primary);
}
.menu-dropdown.child {
  top: 0;
  left: 100%;
}

.au-nav .menu-list:hover > .menu-dropdown,
.menu-dropdown li.has-child:hover > .menu-dropdown {
  display: block;
}

.au-offcanvas .offcanvas-title {
  font-family: var(--au-font-head);
  font-weight: var(--au-weight-head);
}
.au-offcanvas .offcanvas-body {
  padding-top: 0;
}

.au-menu-mobile .list-group-item {
  padding: 0;
  border-color: var(--au-border);
}
.au-menu-mobile .list-group-item > a,
.au-menu-mobile .menu-list > a {
  display: block;
  padding: 12px 4px;
  color: var(--au-ink);
  font-weight: 600;
}
.au-menu-mobile .menu-dropdown {
  position: static;
  display: block;
  min-width: 0;
  padding: 0 0 8px 14px;
  border: 0;
  border-left: 1px solid var(--au-border);
  border-radius: 0;
  box-shadow: none;
}
.au-menu-mobile .menu-dropdown a {
  font-weight: 500;
}
.au-menu-mobile .menu-dropdown .bi-chevron-right {
  display: none;
}

/* --------------------------------------------------------------------------
   Breadcrumb
   -------------------------------------------------------------------------- */
.au-crumb {
  padding: 12px 0;
  border-bottom: 1px solid var(--au-border);
  font-size: var(--au-fs-sm);
  color: var(--au-muted);
}
.au-crumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.au-crumb li + li::before {
  content: "/";
  margin-right: 6px;
  opacity: 0.6;
}
.au-crumb a:hover {
  color: var(--au-primary);
}
.au-crumb .is-current {
  color: var(--au-ink-2);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Product card and grid
   -------------------------------------------------------------------------- */
.au-grid {
  display: grid;
  grid-template-columns: repeat(var(--au-cols), minmax(0, 1fr));
  gap: var(--au-grid-gap);
}

.au-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--au-surface);
  border: var(--au-card-border);
  border-radius: var(--au-radius-card);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.au-card:hover {
  border-color: var(--au-primary);
  box-shadow: var(--au-shadow-pop);
  transform: translateY(-3px);
}

.au-card-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--au-ph-bg);
}
.au-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.au-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  padding: var(--au-card-pad);
  border-top: 1px solid var(--au-border);
}

.au-card-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
  color: var(--au-ink);
  font-weight: var(--au-weight-name);
  font-size: var(--au-fs-base);
  line-height: 1.4;
}

.au-card-price {
  margin-top: auto;
  padding-top: 4px;
  color: var(--au-price);
  font-weight: var(--au-weight-price);
  font-size: var(--au-fs-price);
  letter-spacing: -0.02em;
}

.au-card-price.is-call {
  color: var(--au-primary);
  font-size: var(--au-fs-base);
}

/* Swiper controls shared by the product slider and the banners */
.au-slider {
  position: relative;
  padding: 0 4px;
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--au-ink);
  box-shadow: 0 2px 10px -4px rgba(20, 26, 33, 0.45);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1rem;
  font-weight: 700;
}

.swiper-pagination-bullet {
  background: var(--au-muted);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--au-primary);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Widgets, channels, tiles
   -------------------------------------------------------------------------- */
.au-widget {
  margin-bottom: 32px;
}
.au-widget .au-widget-title {
  margin-bottom: 6px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--au-ink);
  font-size: var(--au-fs-base);
}
.au-widget .au-widget-note {
  margin: 10px 0 0;
  color: var(--au-muted);
  font-size: var(--au-fs-sm);
}

.au-widget-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.au-widget-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 40px;
  padding: 9px 0;
  border-bottom: 1px solid var(--au-border);
  color: var(--au-ink-2);
  font-size: var(--au-fs-base);
}
.au-widget-list a:hover {
  color: var(--au-primary);
}
.au-widget-list .n {
  color: var(--au-muted);
  font-size: var(--au-fs-xs);
}

.au-channels {
  display: grid;
  gap: 0;
}

.au-ch {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--au-border);
  transition: background-color 0.16s ease;
}
.au-ch .ic {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--au-radius-btn);
  background: var(--au-action-soft);
  color: var(--au-action-dark);
  font-size: 1.15rem;
}
.au-ch .bd {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.au-ch .k {
  color: var(--au-muted);
  font-size: var(--au-fs-xs);
  font-weight: 500;
}
.au-ch .v {
  font-weight: 700;
  font-size: var(--au-fs-base);
}
.au-ch .au-ch-arrow {
  margin-left: auto;
  color: var(--au-muted);
}

.au-ch:hover {
  background: var(--au-action-soft);
}

.au-ch:hover .ic {
  background: var(--au-surface);
}

.au-tile {
  height: 100%;
  padding-top: 16px;
  border-top: 2px solid var(--au-ink);
}
.au-tile h2 {
  margin-bottom: 10px;
  font-size: var(--au-fs-md);
}
.au-tile p {
  margin: 0;
  color: var(--au-muted);
  font-size: var(--au-fs-sm);
}

/* --------------------------------------------------------------------------
   Pagination
   -------------------------------------------------------------------------- */
.au-page {
  margin-top: 32px;
}
.au-page .pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 0;
}
.au-page .page-item {
  list-style: none;
}
.au-page .page-link {
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid var(--au-border);
  border-radius: var(--au-radius-btn);
  color: var(--au-ink-2) !important;
  background: var(--au-surface);
  font-weight: 600;
  font-size: var(--au-fs-base);
}
.au-page .page-link:hover {
  border-color: var(--au-primary);
  color: var(--au-primary) !important;
}
.au-page .active .page-link {
  background: var(--au-ink) !important;
  border-color: var(--au-ink);
  color: var(--au-surface) !important;
}

/* --------------------------------------------------------------------------
   Sticky contact bar (product detail, small screens)
   -------------------------------------------------------------------------- */
.au-mobile-bar {
  position: sticky;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px;
  background: var(--au-surface);
  border-top: 1px solid var(--au-border);
  box-shadow: 0 -4px 14px -8px rgba(20, 26, 33, 0.35);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.au-foot {
  flex-shrink: 0;
  padding: 48px 0 0;
  background: var(--au-foot-bg);
  color: var(--au-foot-fg);
  font-size: var(--au-fs-sm);
}
.au-foot a {
  color: var(--au-foot-fg);
}
.au-foot a:hover {
  color: var(--au-foot-head);
}
.au-foot .au-foot-title {
  margin-bottom: 16px;
  color: var(--au-foot-head);
  font-size: var(--au-fs-base);
}
.au-foot .au-foot-address {
  margin-bottom: 14px;
}
.au-foot .au-foot-address-name {
  display: block;
  color: var(--au-foot-head);
  font-weight: 600;
}
.au-foot .au-foot-address-text {
  display: block;
}
.au-foot .au-foot-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.au-foot .au-foot-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.au-foot .au-foot-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.au-foot .footer-contact {
  display: grid;
  gap: 8px;
}
.au-foot .footer-contact-group {
  border: 1px solid var(--au-foot-rule);
  border-radius: var(--au-radius-btn);
  background: var(--au-foot-tile);
  overflow: hidden;
}
.au-foot .footer-contact-head {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: 0;
  text-align: left;
  color: var(--au-foot-head);
  font-size: var(--au-fs-base);
  transition: background-color 0.16s ease;
}
.au-foot .footer-contact-head:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--au-foot-head);
}
.au-foot .footer-contact-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: var(--au-radius-btn);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--au-action);
  color: var(--au-on-action);
}
.au-foot .footer-contact-icon i {
  font-size: 1.05rem;
}
.au-foot .footer-contact-text {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.25;
}
.au-foot .footer-contact-type {
  display: block;
  font-size: var(--au-fs-sm);
  color: var(--au-foot-fg);
}
.au-foot .footer-contact-value {
  display: block;
  font-weight: 600;
}
.au-foot .footer-contact-chevron {
  flex: 0 0 auto;
  color: var(--au-foot-fg);
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}
.au-foot .footer-contact-head[aria-expanded="true"] .footer-contact-chevron {
  transform: rotate(180deg);
}
.au-foot .footer-contact-items {
  padding: 0 14px 6px 60px;
  border-top: 1px solid var(--au-foot-rule);
}
.au-foot .footer-contact-item {
  display: block;
  padding: 8px 0;
  line-height: 1.25;
  color: var(--au-foot-head);
}
.au-foot .footer-contact-item + .footer-contact-item {
  border-top: 1px solid var(--au-foot-rule);
}
.au-foot .footer-contact-name {
  display: block;
  font-size: var(--au-fs-sm);
  color: var(--au-foot-fg);
}
.au-foot .footer-contact-item .contact-text {
  font-weight: 600;
}
.au-foot .au-foot-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding: 16px 0;
  border-top: 1px solid var(--au-foot-rule);
  font-size: var(--au-fs-xs);
}

/* --------------------------------------------------------------------------
   Support for the shared view components and helper scripts
   -------------------------------------------------------------------------- */
.social-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--au-radius-btn);
  background: var(--au-foot-tile);
  color: #fff !important;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

.social-icon-circle:hover {
  background: var(--au-primary);
}

.img-loading-box,
.product-image-wrapper,
.profil-image-wrapper,
.banner-wrapper {
  position: relative;
}

.img-loading-box .spinner-border,
.product-spinner,
.profil-spinner,
.banner-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
}

.img-loading-box img,
.product-image-grid,
.profil-image-grid,
.banner-img {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.img-loading-box.loaded img,
.product-image-wrapper.loaded .product-image-grid,
.profil-image-wrapper.loaded .profil-image-grid,
.banner-wrapper.loaded .banner-img {
  opacity: 1;
}

.img-loading-box.loaded .spinner-border,
.product-image-wrapper.loaded .product-spinner,
.profil-image-wrapper.loaded .profil-spinner,
.banner-wrapper.loaded .banner-spinner {
  opacity: 0;
  pointer-events: none;
}

.contact-text {
  display: inline-block;
  transition: opacity 0.25s ease;
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

.rupiah {
  white-space: nowrap;
}

.icon-invert {
  filter: invert(1);
}

#backtotop {
  position: fixed;
  right: 24px;
  bottom: 20px;
  z-index: 99;
  display: none;
  padding: 12px 16px;
  border: 0;
  border-radius: var(--au-radius-btn);
  background: var(--au-ink);
  color: #fff;
  font-size: var(--au-fs-sm);
  font-weight: 600;
  cursor: pointer;
}
#backtotop img {
  width: 20px;
}

#backtotop:hover {
  background: var(--au-primary);
  color: #fff;
}

.whatsappBottom {
  position: fixed;
  right: 24px;
  bottom: 84px;
  z-index: 99;
  cursor: pointer;
}

.whatsapp .dropdown-menu {
  inset: auto 0 0 auto !important;
}

.whatsapp .dropdown-menu li {
  background: var(--au-surface);
  border: 1px solid var(--au-border);
}

.socmed {
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 99;
}

.share-button {
  width: 44px;
  height: 40px;
  padding: 8px;
  border: 0;
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
  outline: 0;
}

.facebook-share {
  background: #4267b2;
}

.x-share {
  background: #000;
}

.linkedin-share {
  background: #0a66c2;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1199.98px) {
  :root {
    --au-cols: 4;
  }
}
@media (max-width: 991.98px) {
  :root {
    --au-cols: 3;
  }
}
@media (max-width: 767.98px) {
  :root {
    --au-cols: 2;
    --au-sec-pad: 36px;
  }
  .au-head .h-row {
    flex-wrap: wrap;
  }
  .au-search {
    order: 3;
    flex-basis: 100%;
    max-width: none;
  }
  .au-pagehead h1 {
    font-size: var(--au-fs-xl);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .au-card:hover {
    transform: none;
  }
}
/* --------------------------------------------------------------------------
   Lentera overrides
   The card frame is removed so the product image carries the row, headings
   move to the serif, and every rule drops to a hairline.
   -------------------------------------------------------------------------- */
.au-sec-head {
  align-items: flex-end;
  padding-top: 0;
  padding-bottom: 14px;
  border-top: 0;
  border-bottom: 1px solid var(--au-border);
}

.au-card {
  overflow: visible;
  background: transparent;
  border: 0;
}

.au-card:hover {
  border: 0;
  box-shadow: none;
  transform: none;
}

.au-card:hover .au-card-name {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.au-card-media {
  aspect-ratio: 4/5;
}

.au-card-body {
  border-top: 0;
}

.au-card-name {
  min-height: auto;
  font-family: var(--au-font-head);
  font-size: 1.0625rem;
  line-height: 1.35;
}

.au-card-price {
  color: var(--au-muted);
  font-size: 0.875rem;
}

.au-nav .au-nav-row > a,
.au-nav .menu-list > a {
  font-weight: 500;
  letter-spacing: 0.01em;
}

.au-nav .au-nav-row > a:hover,
.au-nav .menu-list > a:hover {
  border-bottom-color: var(--au-ink);
}

.au-widget .au-widget-title {
  border-bottom-width: 1px;
}

.au-tile {
  border-top-width: 1px;
}

.au-pagehead {
  background: var(--au-surface);
}

@media (max-width: 1199.98px) {
  :root {
    --au-cols: 3;
  }
}
@media (max-width: 991.98px) {
  :root {
    --au-cols: 2;
    --au-sec-pad: 48px;
    --au-grid-gap: 24px;
  }
}
@media (max-width: 767.98px) {
  :root {
    --au-cols: 2;
    --au-sec-pad: 40px;
    --au-grid-gap: 20px;
  }
}
