:root {
  --samudera-container: 1180px;
  --samudera-gutter: 32px;
  --samudera-primary: #123c73;
  --samudera-secondary: #1f6fb2;
  --samudera-accent: #25d366;
  --samudera-bg: #f5f7fa;
  --samudera-text: #1f2937;
  --samudera-muted: #667085;
  --samudera-border: #d8e2ef;
  --samudera-white: #ffffff;
  --samudera-shadow: 0 18px 45px rgba(18, 60, 115, 0.12);
  --samudera-radius: 18px;
  --samudera-control-height: 48px;
}

body.samudera-toner-site {
  background: var(--samudera-white);
  color: var(--samudera-text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.samudera-container {
  width: min(var(--samudera-container), calc(100% - var(--samudera-gutter)));
  margin-inline: auto;
}

body.samudera-toner-site .grid-container,
body.samudera-toner-site .site-content {
  max-width: var(--samudera-container);
  margin-inline: auto;
}

body.samudera-toner-site .site-content {
  width: min(var(--samudera-container), calc(100% - var(--samudera-gutter)));
}

.samudera-site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--samudera-white);
  transition: box-shadow 180ms ease;
}

.samudera-site-header.has-shadow {
  box-shadow: 0 12px 32px rgba(18, 60, 115, 0.11);
}

.samudera-topbar {
  background: var(--samudera-primary);
  color: var(--samudera-white);
  font-size: 0.88rem;
}

.samudera-topbar__inner {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  min-height: 42px;
  gap: 16px;
}

.samudera-topbar__label {
  color: var(--samudera-white);
  font-size: 0.86rem;
  font-weight: 500;
  white-space: nowrap;
}

.samudera-topbar__separator {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.34);
}

.samudera-topbar__ticker {
  overflow: hidden;
  white-space: nowrap;
}

.samudera-ticker__track {
  display: flex;
  width: max-content;
  animation: samuderaTicker 42s linear infinite;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.samudera-ticker__group {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 42px;
  min-width: max-content;
  padding-right: 42px;
}

.samudera-ticker__group span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--samudera-accent);
}

@keyframes samuderaTicker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .samudera-ticker__track {
    animation: none;
  }
}

.samudera-main-header {
  border-bottom: 1px solid var(--samudera-border);
}

.samudera-main-header__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 92px;
}

.samudera-brand {
  display: grid;
  flex: 0 0 248px;
  gap: 3px;
  color: var(--samudera-primary);
  text-decoration: none;
}

.samudera-brand img {
  display: block;
  width: min(225px, 100%);
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

.samudera-brand__text {
  color: var(--samudera-primary);
  font-size: 1.55rem;
  font-weight: 800;
}

.samudera-brand__tagline {
  color: var(--samudera-muted);
  font-size: 0.82rem;
  line-height: 1.25;
}

.samudera-search {
  display: grid;
  flex: 1 1 560px;
  grid-template-columns: minmax(0, 1fr) 178px auto;
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.samudera-search__field,
.samudera-search__select {
  position: relative;
}

.samudera-search input,
.samudera-search select,
.samudera-search button,
.samudera-btn,
.samudera-catalog-filter button,
.samudera-page-content button,
.samudera-page-content input[type="submit"],
.samudera-header-contact-button {
  min-height: var(--samudera-control-height);
}

.samudera-search input,
.samudera-search select {
  width: 100%;
  border: 1px solid var(--samudera-border);
  border-radius: 10px;
  background: var(--samudera-white);
  color: var(--samudera-text);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.2;
}

.samudera-search input {
  padding: 0 14px 0 42px;
}

.samudera-search select {
  appearance: none;
  -webkit-appearance: none;
  padding: 0 42px 0 14px;
  cursor: pointer;
}

.samudera-search select option {
  font-weight: 400;
}

.samudera-search__icon,
.samudera-search__chevron {
  position: absolute;
  top: 50%;
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--samudera-muted);
  transform: translateY(-50%);
  pointer-events: none;
}

.samudera-search__icon {
  left: 14px;
}

.samudera-search__chevron {
  right: 14px;
}

.samudera-search svg,
.samudera-header-contact-button svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.samudera-search button,
.samudera-btn,
.samudera-catalog-filter button,
.samudera-page-content button,
.samudera-page-content input[type="submit"],
.samudera-header-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 18px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
  cursor: pointer;
}

.samudera-search button {
  gap: 8px;
}

.samudera-search__button-icon {
  display: inline-flex;
  width: 17px;
  height: 17px;
}

.samudera-btn:hover,
.samudera-search button:hover,
.samudera-catalog-filter button:hover,
.samudera-page-content button:hover,
.samudera-page-content input[type="submit"]:hover,
.samudera-header-contact-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.22);
}

.samudera-search button,
.samudera-btn--primary,
.samudera-btn--product,
.samudera-catalog-filter button,
.samudera-page-content button,
.samudera-page-content input[type="submit"],
.samudera-header-contact-button {
  background: var(--samudera-accent);
  color: #ffffff;
  border-color: transparent;
}

.samudera-search button {
  background: var(--samudera-secondary);
  color: var(--samudera-white);
}

.samudera-search button:hover {
  color: var(--samudera-white);
  box-shadow: 0 12px 24px rgba(31, 111, 178, 0.22);
}

.samudera-btn--outline {
  border-color: var(--samudera-border);
  background: var(--samudera-white);
  color: var(--samudera-primary);
}

.samudera-btn--outline:hover {
  border-color: var(--samudera-secondary);
  background: #eaf4ff;
  color: var(--samudera-primary);
}

.samudera-btn--light {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.14);
  color: var(--samudera-white);
}

.samudera-btn--light:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.22);
  color: var(--samudera-white);
}

.samudera-header-cta,
.samudera-header-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.samudera-header-contact-button {
  gap: 8px;
  margin-left: auto;
}

.samudera-header-contact-button:hover {
  color: #ffffff;
}

.samudera-whatsapp-icon {
  display: inline-flex;
  width: 19px;
  height: 19px;
}

.samudera-online-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--samudera-accent);
  box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.12);
}

.samudera-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 46px;
  height: 46px;
  border: 1px solid var(--samudera-border);
  border-radius: 10px;
  background: var(--samudera-white);
  padding: 0;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.samudera-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--samudera-primary);
}

.samudera-menu-toggle[aria-expanded="true"] {
  border-color: var(--samudera-primary);
  background: var(--samudera-primary);
  box-shadow: 0 10px 22px rgba(18, 60, 115, 0.18);
}

.samudera-menu-toggle[aria-expanded="true"] span:not(.screen-reader-text) {
  background: var(--samudera-white);
}

.samudera-nav {
  background: var(--samudera-white);
  border-bottom: 1px solid var(--samudera-border);
}

.samudera-nav__inner {
  display: flex;
  justify-content: flex-end;
}

.samudera-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.samudera-nav__list a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--samudera-text);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}

.samudera-nav__list a:hover {
  color: var(--samudera-secondary);
}

.samudera-category-strip {
  background: var(--samudera-bg);
  border-bottom: 1px solid var(--samudera-border);
}

.samudera-category-strip__inner {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: thin;
}

.samudera-category-pill {
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--samudera-white);
  color: var(--samudera-text);
  padding: 10px 15px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid var(--samudera-border);
}

.samudera-category-pill--featured {
  background: var(--samudera-primary);
  color: var(--samudera-white);
}

.samudera-main {
  overflow: hidden;
}

.samudera-hero {
  position: relative;
  background:
    radial-gradient(circle at 14% 18%, rgba(37, 211, 102, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(31, 111, 178, 0.16), transparent 34%),
    linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
  padding: 0 0 68px;
}

.samudera-hero__content {
  max-width: 980px;
  margin: 44px auto 0;
  text-align: center;
}

.samudera-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--samudera-secondary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.samudera-eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--samudera-accent);
}

.samudera-hero h1,
.samudera-section h2,
.samudera-final-cta h2 {
  margin: 0 0 18px;
  color: var(--samudera-primary);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.samudera-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.9rem);
}

.samudera-hero p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--samudera-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.samudera-hero__slider {
  position: relative;
  left: 50%;
  width: 100vw;
  aspect-ratio: 2172 / 724;
  margin-left: -50vw;
  overflow: hidden;
  background: #eaf2fb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  isolation: isolate;
}

.samudera-hero__slides,
.samudera-hero__slide {
  position: absolute;
  inset: 0;
}

.samudera-hero__slide {
  opacity: 0;
  transition: opacity 700ms ease;
}

.samudera-hero__slide.is-active {
  z-index: 1;
  opacity: 1;
}

.samudera-hero__slide img {
  display: block;
  width: 100%;
  height: 100%;
  background: #eaf2fb;
  object-fit: contain;
  object-position: center;
}

.samudera-hero__dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(18, 60, 115, 0.2);
  backdrop-filter: blur(8px);
  transform: translateX(-50%);
}

.samudera-hero__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.samudera-hero__dot.is-active {
  width: 28px;
  background: var(--samudera-accent);
}

.samudera-hero__actions,
.samudera-final-cta__actions,
.samudera-product-inquiry__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.samudera-hero__actions {
  gap: 10px;
  justify-content: center;
}

.samudera-section {
  padding: 76px 0;
}

.samudera-section--soft {
  background: var(--samudera-bg);
}

.samudera-section__header {
  max-width: 760px;
  margin-bottom: 32px;
}

.samudera-section__header--row {
  display: flex;
  max-width: none;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.samudera-section h2,
.samudera-final-cta h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.samudera-section__header p,
.samudera-split p {
  color: var(--samudera-muted);
  line-height: 1.7;
}

.samudera-feature-grid,
.samudera-trust-grid,
.samudera-product-grid,
.samudera-service-grid,
.samudera-faq-grid,
.samudera-category-grid {
  display: grid;
  gap: 18px;
}

.samudera-feature-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.samudera-trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 56px;
}

.samudera-trust-section .samudera-section__header {
  max-width: 760px;
  margin-inline: 0;
  text-align: left;
}

.samudera-feature-card,
.samudera-trust-card,
.samudera-product-card,
.samudera-service-grid a,
.samudera-faq-grid details,
.samudera-category-grid a {
  border: 1px solid var(--samudera-border);
  border-radius: var(--samudera-radius);
  background: var(--samudera-white);
  box-shadow: 0 10px 28px rgba(18, 60, 115, 0.06);
}

.samudera-feature-card {
  padding: 26px;
}

.samudera-trust-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  padding: 0;
}

.samudera-trust-card::after {
  display: none;
}

.samudera-trust-card__icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: flex-start;
  justify-content: center;
  color: var(--samudera-secondary);
}

.samudera-trust-card__icon svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.samudera-trust-card strong {
  position: relative;
  z-index: 1;
  color: var(--samudera-primary);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}

.samudera-trust-card p {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  color: var(--samudera-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.samudera-feature-card__icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: rgba(31, 111, 178, 0.12);
  color: var(--samudera-primary);
  font-weight: 900;
}

.samudera-feature-card h3,
.samudera-product-card h3 {
  color: var(--samudera-primary);
}

.samudera-feature-card p,
.samudera-product-card p {
  color: var(--samudera-muted);
  line-height: 1.6;
}

.samudera-feature-card div,
.samudera-product-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.samudera-feature-card div span,
.samudera-product-card__badges span {
  border-radius: 999px;
  background: var(--samudera-bg);
  color: var(--samudera-primary);
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.samudera-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.samudera-steps {
  display: grid;
  gap: 14px;
}

.samudera-steps div {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  background: var(--samudera-white);
  padding: 18px;
  box-shadow: 0 8px 20px rgba(18, 60, 115, 0.06);
}

.samudera-steps span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background: var(--samudera-primary);
  color: var(--samudera-white);
  font-weight: 900;
}

.samudera-process-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
  margin-top: 34px;
}

.samudera-process-step {
  position: relative;
  min-width: 0;
}

.samudera-process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 58px;
  right: -20px;
  height: 2px;
  background: var(--samudera-border);
}

.samudera-process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 17px;
  right: -31px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--samudera-secondary);
}

.samudera-process-step__number {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 2px solid var(--samudera-secondary);
  border-radius: 999px;
  background: var(--samudera-white);
  color: var(--samudera-primary);
  font-size: 1.05rem;
  font-weight: 900;
}

.samudera-process-step h3 {
  margin: 18px 0 8px;
  color: var(--samudera-primary);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.samudera-process-step p {
  margin: 0;
  color: var(--samudera-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.samudera-category-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.samudera-category-grid a {
  padding: 22px;
  color: var(--samudera-primary);
  font-weight: 900;
  text-decoration: none;
  text-align: center;
}

.samudera-text-link {
  color: var(--samudera-secondary);
  font-weight: 900;
  text-decoration: none;
}

.samudera-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.samudera-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.samudera-product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--samudera-shadow);
}

.samudera-product-card__media {
  position: relative;
  display: block;
  background: var(--samudera-bg);
  overflow: hidden;
}

.samudera-product-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.samudera-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.samudera-product-card h3 {
  margin: 0;
  color: var(--samudera-primary);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.35;
  min-height: 2.7em;
  letter-spacing: -0.015em;
}

.samudera-product-card__stock {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin: 0;
  border-radius: 999px;
  background: rgba(31, 111, 178, 0.94);
  color: var(--samudera-white);
  padding: 7px 11px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.16);
}

.samudera-product-card__stock::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--samudera-white);
}

.samudera-product-card__body .samudera-btn--detail {
  width: 100%;
  margin-top: auto;
  margin-bottom: 6px;
  background: var(--samudera-secondary);
  color: #ffffff;
  border-color: transparent;
}

.samudera-product-card__body .samudera-btn--detail:hover {
  background: #123c73;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(31, 111, 178, 0.22);
}

.samudera-btn--product {
  width: 100%;
  margin-top: auto;
  background: var(--samudera-accent);
  color: #ffffff;
}

.samudera-product-more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.samudera-product-more .samudera-btn {
  min-width: 220px;
}

.samudera-home-banner-slot {
  margin-top: -40px;
  padding: 0;
  position: relative;
  z-index: 1;
}

.samudera-home-services-section {
  padding-bottom: 12px;
}

.samudera-home-banner-slot__image {
  display: block;
  width: 100%;
  height: auto;
}

.samudera-home-banner-slot + .samudera-section--soft {
  position: relative;
  z-index: 0;
  margin-top: -120px;
  padding-top: 196px;
}

.samudera-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.samudera-service-grid--simple {
  gap: 18px;
}

.samudera-service-grid a {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 112px;
  border: 1px solid var(--samudera-border);
  border-radius: 18px;
  background: var(--samudera-white);
  box-shadow: none;
  padding: 22px;
  color: var(--samudera-text);
  text-decoration: none;
  overflow: visible;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.samudera-service-grid a::after {
  display: none;
}

.samudera-service-grid a:hover {
  border-color: rgba(31, 111, 178, 0.34);
  background: #fbfdff;
  box-shadow: none;
  transform: none;
}

.samudera-service-grid a:hover strong {
  color: var(--samudera-secondary);
}

.samudera-service-card__visual {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--samudera-secondary);
}

.samudera-service-card__visual svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.samudera-service-grid strong {
  position: relative;
  z-index: 1;
  color: var(--samudera-primary);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}

.samudera-service-grid a > span:not(.samudera-service-card__visual) {
  position: relative;
  z-index: 1;
  color: var(--samudera-muted);
  line-height: 1.55;
}

.samudera-service-card__visual + strong + span {
  font-size: 0.95rem;
}

.samudera-area-section {
  background: var(--samudera-primary);
  color: var(--samudera-white);
  padding: 64px 0;
}

.samudera-area-section .samudera-eyebrow,
.samudera-area-section h2 {
  color: var(--samudera-white);
}

.samudera-area-section p {
  color: rgba(255, 255, 255, 0.78);
}

.samudera-area-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.samudera-area-visual {
  min-width: 0;
}

.samudera-area-visual__map {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  padding: 16px 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 24px 56px rgba(0, 0, 0, 0.12);
}

.samudera-area-visual__map::before {
  display: none;
}

.samudera-area-visual svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}

.samudera-area-visual__route {
  fill: none;
  stroke: rgba(255, 255, 255, 0.62);
  stroke-linecap: round;
  stroke-width: 5;
  stroke-dasharray: 12 14;
}

.samudera-area-visual__route--soft {
  stroke: rgba(37, 211, 102, 0.66);
  stroke-width: 4;
}

.samudera-area-visual circle {
  fill: var(--samudera-accent);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.22));
}

.samudera-area-visual__pin {
  fill: rgba(255, 255, 255, 0.96);
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.24));
}

.samudera-area-visual__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  margin-top: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 18px;
}

.samudera-area-visual__content strong {
  color: var(--samudera-white);
  font-size: 1.28rem;
  line-height: 1.2;
}

.samudera-area-visual__content span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.samudera-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.samudera-area-list a {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: var(--samudera-white);
  padding: 13px 18px;
  font-weight: 900;
  text-decoration: none;
}

.samudera-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.samudera-faq-grid details {
  padding: 22px 26px;
}

.samudera-faq-grid summary {
  color: var(--samudera-primary);
  cursor: pointer;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.5;
}

.samudera-faq-grid p {
  color: var(--samudera-muted);
  line-height: 1.6;
}

.samudera-final-cta {
  background: linear-gradient(135deg, var(--samudera-primary), #0b2444);
  color: var(--samudera-white);
  padding: 76px 0;
}

.samudera-final-cta h2,
.samudera-final-cta .samudera-eyebrow {
  color: var(--samudera-white);
}

.samudera-final-cta p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.samudera-final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.samudera-footer {
  background: #f3f8fe;
  color: var(--samudera-text);
  border-top: 1px solid var(--samudera-border);
}

.samudera-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 28px;
  padding: 32px 0;
}

.samudera-footer img {
  width: 180px;
  max-width: 100%;
  filter: none;
}

.samudera-footer h3,
.samudera-footer h2 {
  margin: 0 0 12px;
  color: var(--samudera-primary);
  font-size: 0.96rem;
  font-weight: 900;
}

.samudera-footer p,
.samudera-footer li {
  font-size: 0.88rem;
  line-height: 1.55;
}

.samudera-footer__brand p {
  max-width: 360px;
  margin: 12px 0 0;
}

.samudera-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.samudera-footer a {
  color: var(--samudera-primary);
  text-decoration: none;
}

.samudera-footer a:hover {
  color: #7fc2ff;
}

.samudera-footer__bottom {
  border-top: 1px solid var(--samudera-border);
}

.samudera-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  font-size: 0.8rem;
}

.samudera-footer__bottom p {
  margin: 0;
}

.samudera-footer__copyright {
  color: rgba(31, 41, 55, 0.52);
  font-size: 0.72rem;
}

.samudera-footer__credit {
  color: rgba(31, 41, 55, 0.42);
  font-size: 0.68rem;
}

.samudera-footer__credit a {
  color: inherit;
  font-weight: 500;
}

.samudera-footer__credit a:hover {
  color: var(--samudera-secondary);
}

.samudera-page-hero {
  background:
    radial-gradient(circle at top right, rgba(31, 111, 178, 0.16), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
  padding: 64px 0;
}

.samudera-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--samudera-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.samudera-breadcrumb a {
  color: var(--samudera-secondary);
  text-decoration: none;
}

.samudera-breadcrumb a:hover {
  color: var(--samudera-primary);
}

.samudera-breadcrumb__separator {
  color: rgba(102, 112, 133, 0.62);
}

.samudera-page-hero h1 {
  max-width: 860px;
  margin: 0;
  color: var(--samudera-primary);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.samudera-page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--samudera-muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

.samudera-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.samudera-page-content-wrap {
  padding: 64px 0;
}

.samudera-page-content {
  max-width: var(--samudera-container);
}

.samudera-page-content h2,
.samudera-page-content h3 {
  color: var(--samudera-primary);
}

.samudera-page-content p,
.samudera-page-content li {
  color: var(--samudera-text);
  line-height: 1.8;
}

.samudera-page-content:not(.samudera-contact-page) p,
.samudera-page-content:not(.samudera-contact-page) li {
  text-align: justify;
}

.samudera-page-content a {
  color: var(--samudera-secondary);
  font-weight: 800;
}

.samudera-page-content a.samudera-btn,
.samudera-page-content a.samudera-btn--primary,
.samudera-page-content a.samudera-btn--product,
.samudera-page-content a.samudera-btn--detail {
  color: #ffffff;
  font-weight: 500;
}

.samudera-page-content a.samudera-btn--outline {
  color: var(--samudera-primary);
  font-weight: 500;
}

body.samudera-toner-site .site-main,
body.samudera-toner-site .inside-article,
body.samudera-toner-site .page-header,
body.samudera-toner-site .woocommerce,
body.samudera-toner-site .woocommerce-page .site-main {
  width: 100%;
}

body.samudera-toner-site.blog .site-content,
body.samudera-toner-site.archive .site-content,
body.samudera-toner-site.single-post .site-content,
body.samudera-toner-site.woocommerce-page .site-content {
  width: min(var(--samudera-container), calc(100% - var(--samudera-gutter)));
  max-width: var(--samudera-container);
}

body.samudera-toner-site.post-type-archive-product .site-content,
body.samudera-toner-site.tax-product_cat .site-content,
body.samudera-toner-site.woocommerce-shop .site-content {
  width: min(var(--samudera-container), calc(100% - var(--samudera-gutter))) !important;
  max-width: var(--samudera-container) !important;
  margin-inline: auto;
}

body.samudera-toner-site.samudera-woocommerce-catalog .site-content,
body.samudera-toner-site.samudera-woocommerce-catalog .site-main,
body.samudera-toner-site.samudera-woocommerce-catalog .inside-article,
body.samudera-toner-site.samudera-woocommerce-catalog .woocommerce {
  width: 100% !important;
  max-width: var(--samudera-container) !important;
  margin-inline: auto !important;
}

.samudera-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.samudera-copy-box {
  border: 1px solid var(--samudera-border);
  border-radius: 16px;
  background: var(--samudera-bg);
  padding: 20px;
}

.samudera-copy-box h3 {
  margin-top: 0;
}

.samudera-copy-box p:last-child {
  margin-bottom: 0;
}

.samudera-copy-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.samudera-copy-cta .samudera-btn {
  text-decoration: none;
}

.samudera-article-wrap {
  padding: 56px 0;
}

.samudera-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.samudera-article-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--samudera-border);
  border-radius: 18px;
  background: var(--samudera-white);
  box-shadow: 0 10px 28px rgba(18, 60, 115, 0.06);
}

.samudera-article-card__media {
  display: block;
  background: var(--samudera-bg);
}

.samudera-article-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.samudera-article-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.samudera-article-card__body span {
  color: var(--samudera-muted);
  font-size: 0.82rem;
}

.samudera-article-card h2 {
  margin: 8px 0 10px;
  color: var(--samudera-primary);
  font-size: 1.2rem;
  line-height: 1.25;
}

.samudera-article-card h2 a {
  display: -webkit-box;
  min-height: 2.5em;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.samudera-article-card p {
  display: -webkit-box;
  min-height: 3.3em;
  margin: 0 0 20px;
  overflow: hidden;
  color: var(--samudera-muted);
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.samudera-article-card .samudera-text-link {
  margin-top: auto;
}

.samudera-pagination {
  margin-top: 34px;
  text-align: center;
}

.samudera-pagination .nav-links {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.samudera-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  border: 1px solid var(--samudera-border);
  border-radius: 10px;
  background: var(--samudera-white);
  color: var(--samudera-text);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.samudera-pagination .page-numbers:hover {
  border-color: var(--samudera-secondary);
  background: #eaf4ff;
  color: var(--samudera-primary);
}

.samudera-pagination .page-numbers.current {
  border-color: var(--samudera-secondary);
  background: var(--samudera-secondary);
  color: var(--samudera-white);
}

.samudera-pagination .prev,
.samudera-pagination .next {
  font-size: 0;
}

.samudera-pagination .prev::before {
  content: "\2190";
  font-size: 1rem;
}

.samudera-pagination .next::before {
  content: "\2192";
  font-size: 1rem;
}

.samudera-woocommerce-catalog .woocommerce-pagination {
  margin-top: 34px;
  text-align: center;
}

.samudera-woocommerce-catalog .woocommerce-pagination .page-numbers {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.samudera-woocommerce-catalog .woocommerce-pagination .page-numbers li {
  display: inline;
  margin: 0;
}

.samudera-woocommerce-catalog .woocommerce-pagination .page-numbers a,
.samudera-woocommerce-catalog .woocommerce-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  border: 1px solid var(--samudera-border);
  border-radius: 10px;
  background: var(--samudera-white);
  color: var(--samudera-text);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.samudera-woocommerce-catalog .woocommerce-pagination .page-numbers a:hover {
  border-color: var(--samudera-secondary);
  background: #eaf4ff;
  color: var(--samudera-primary);
}

.samudera-woocommerce-catalog .woocommerce-pagination .page-numbers .current {
  border-color: var(--samudera-secondary);
  background: var(--samudera-secondary);
  color: var(--samudera-white);
}

.samudera-woocommerce-catalog .woocommerce-pagination .page-numbers .prev,
.samudera-woocommerce-catalog .woocommerce-pagination .page-numbers .next {
  font-size: 0;
}

.samudera-woocommerce-catalog .woocommerce-pagination .page-numbers .prev::before {
  content: "\2190";
  font-size: 1rem;
}

.samudera-woocommerce-catalog .woocommerce-pagination .page-numbers .next::before {
  content: "\2192";
  font-size: 1rem;
}

.samudera-single-content {
  max-width: 920px;
}

.samudera-single-meta {
  color: var(--samudera-muted);
  font-size: 0.96rem;
  font-weight: 700;
}

.samudera-single-content p,
.samudera-single-content li {
  text-align: justify;
  line-height: 1.8;
}

.samudera-product-inquiry {
  margin-top: 28px;
  border: 1px solid var(--samudera-border);
  border-radius: 22px;
  background: var(--samudera-bg);
  padding: 24px;
}

.samudera-product-detail-wrap {
  padding: 56px 0;
}

.samudera-product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: start;
}

.samudera-product-detail__media {
  border: 1px solid var(--samudera-border);
  border-radius: 22px;
  background: var(--samudera-bg);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(18, 60, 115, 0.08);
}

.samudera-product-detail__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.samudera-product-detail__summary {
  border: 1px solid var(--samudera-border);
  border-radius: 22px;
  background: var(--samudera-white);
  padding: 28px;
  box-shadow: 0 12px 28px rgba(18, 60, 115, 0.06);
}

.samudera-product-detail__description {
  margin-top: 18px;
}

.samudera-product-detail__description p {
  color: var(--samudera-muted);
  line-height: 1.7;
}

.samudera-product-inquiry__header h3 {
  margin: 0 0 6px;
  color: var(--samudera-primary);
}

.samudera-product-inquiry__header p {
  margin: 0 0 18px;
  color: var(--samudera-muted);
}

.samudera-radio-group {
  display: grid;
  grid-template-columns: 96px repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.samudera-radio-group__label {
  color: var(--samudera-primary);
  font-weight: 900;
}

.samudera-radio-card {
  position: relative;
  cursor: pointer;
}

.samudera-radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.samudera-radio-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--samudera-border);
  border-radius: 12px;
  background: var(--samudera-white);
  color: var(--samudera-text);
  font-weight: 900;
  transition: border 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.samudera-radio-card input:checked + span {
  border-color: var(--samudera-secondary);
  background: rgba(31, 111, 178, 0.1);
  color: var(--samudera-primary);
  box-shadow: inset 0 0 0 1px var(--samudera-secondary);
}

.samudera-woocommerce-catalog .price,
.samudera-woocommerce-catalog .cart,
.samudera-woocommerce-catalog .add_to_cart_button,
.samudera-woocommerce-catalog .added_to_cart,
.samudera-woocommerce-catalog .woocommerce-result-count {
  display: none !important;
}

.samudera-woocommerce-catalog {
  overflow-x: hidden;
}

.samudera-woocommerce-catalog .woocommerce-products-header,
.samudera-woocommerce-catalog .woocommerce-breadcrumb {
  display: none;
}

.samudera-woocommerce-catalog .site-content {
  max-width: none !important;
  width: 100% !important;
}

.samudera-woocommerce-catalog .content-area,
.samudera-woocommerce-catalog .site-main,
.samudera-woocommerce-catalog .woocommerce-archive-wrapper,
.samudera-woocommerce-catalog .inside-article,
.samudera-woocommerce-catalog .entry-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.samudera-catalog-hero {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-bottom: 0;
  margin-left: -50vw;
  margin-right: -50vw;
}

.samudera-catalog-hero .samudera-container {
  padding-block: 16px;
}

.samudera-catalog-hero__desc {
  margin: 8px 0 0;
  color: var(--samudera-text);
  font-size: 1.05rem;
  line-height: 1.6;
}

.samudera-catalog-intro {
  padding: 64px 0 30px;
}

.samudera-catalog-intro h2 {
  max-width: 980px;
  margin: 0 0 20px;
  color: var(--samudera-primary);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.samudera-catalog-intro p {
  max-width: 980px;
  margin: 0;
  color: var(--samudera-text);
  font-size: 1.05rem;
  line-height: 1.75;
}

.samudera-catalog-filter {
  display: grid;
  gap: 14px;
  margin: 0;
}

.samudera-catalog-layout {
  display: grid;
  grid-template-columns: minmax(230px, 270px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  width: min(var(--samudera-container), calc(100% - var(--samudera-gutter)));
  margin-inline: auto;
  padding-bottom: 64px;
}

.samudera-catalog-results .woocommerce-ordering {
  margin-bottom: 18px;
}

.samudera-woocommerce-catalog .woocommerce ul.products,
.samudera-woocommerce-catalog.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px !important;
  margin: 0 !important;
}

.samudera-woocommerce-catalog .woocommerce ul.products::before,
.samudera-woocommerce-catalog .woocommerce ul.products::after,
.samudera-woocommerce-catalog.woocommerce ul.products::before,
.samudera-woocommerce-catalog.woocommerce ul.products::after {
  display: none !important;
}

.samudera-woocommerce-catalog .woocommerce ul.products li.product,
.samudera-woocommerce-catalog.woocommerce ul.products li.product {
  display: flex !important;
  flex-direction: column;
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  border: 1px solid var(--samudera-border);
  border-radius: var(--samudera-radius);
  background: var(--samudera-white);
  box-shadow: 0 10px 28px rgba(18, 60, 115, 0.06);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.samudera-woocommerce-catalog .woocommerce ul.products li.product:hover,
.samudera-woocommerce-catalog.woocommerce ul.products li.product:hover {
  transform: translateY(-3px);
  box-shadow: var(--samudera-shadow);
}

.samudera-woocommerce-catalog .woocommerce ul.products li.product .woocommerce-loop-product__link,
.samudera-woocommerce-catalog.woocommerce ul.products li.product .woocommerce-loop-product__link {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.samudera-woocommerce-catalog .woocommerce ul.products li.product a img,
.samudera-woocommerce-catalog.woocommerce ul.products li.product a img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 !important;
  object-fit: cover;
}

.samudera-woocommerce-catalog .woocommerce ul.products li.product .woocommerce-loop-product__title,
.samudera-woocommerce-catalog.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 2.7em;
  margin: 0 !important;
  padding: 18px 18px 0 !important;
  color: var(--samudera-primary);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.samudera-btn--detail {
  background: var(--samudera-secondary);
  color: #ffffff;
  border-color: transparent;
}

.samudera-btn--detail:hover {
  background: #123c73;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(31, 111, 178, 0.22);
}

.samudera-woocommerce-catalog .woocommerce ul.products li.product .samudera-btn--detail,
.samudera-woocommerce-catalog.woocommerce ul.products li.product .samudera-btn--detail {
  width: calc(100% - 36px);
  min-height: 42px;
  margin: 18px 18px 0 !important;
  font-size: 0.9rem;
}

.samudera-woocommerce-catalog .woocommerce ul.products li.product .samudera-btn--product,
.samudera-woocommerce-catalog.woocommerce ul.products li.product .samudera-btn--product {
  width: calc(100% - 36px);
  min-height: 42px;
  margin: 6px 18px 18px !important;
  font-size: 0.9rem;
}

.samudera-catalog-sidebar {
  position: sticky;
  top: 164px;
  border: 1px solid var(--samudera-border);
  border-radius: 18px;
  background: var(--samudera-white);
  padding: 22px;
  box-shadow: 0 10px 28px rgba(18, 60, 115, 0.06);
}

.samudera-catalog-sidebar__intro {
  margin-bottom: 18px;
  border-bottom: 1px solid var(--samudera-border);
  padding-bottom: 16px;
}

.samudera-catalog-sidebar__intro h2 {
  margin: 0 0 8px;
  color: var(--samudera-primary);
  font-size: 1.25rem;
}

.samudera-catalog-sidebar__intro p {
  margin: 0;
  color: var(--samudera-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.samudera-catalog-results {
  min-width: 0;
}

.samudera-catalog-filter label {
  display: grid;
  gap: 7px;
  margin: 0;
}

.samudera-catalog-filter span {
  color: var(--samudera-primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.samudera-catalog-filter input,
.samudera-catalog-filter select {
  min-height: var(--samudera-control-height);
  border: 1px solid var(--samudera-border);
  border-radius: 12px;
  background: var(--samudera-white);
  padding: 0 12px;
  font-weight: 400;
}

.samudera-catalog-filter select {
  appearance: none;
  -webkit-appearance: none;
  padding: 0 44px 0 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%231B2B4B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 12px;
  cursor: pointer;
}

.samudera-catalog-filter input:focus,
.samudera-catalog-filter select:focus {
  outline: none;
  border-color: var(--samudera-secondary);
  box-shadow: 0 0 0 3px rgba(31, 111, 178, 0.12);
}

.samudera-catalog-filter__actions {
  display: grid;
  gap: 10px;
  align-items: center;
}

.samudera-catalog-filter button {
  width: 100%;
}

.samudera-catalog-filter a {
  color: var(--samudera-secondary);
  font-weight: 900;
  text-decoration: none;
  text-align: center;
}

.woocommerce ul.products li.product .samudera-btn--product {
  margin-top: 14px;
}

.samudera-filter-widget {
  border: 1px solid var(--samudera-border);
  border-radius: 16px;
  background: var(--samudera-white);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(18, 60, 115, 0.06);
  margin-bottom: 14px;
}

.samudera-filter-widget__title {
  margin: 0 0 12px;
  color: var(--samudera-primary);
  font-size: 0.95rem;
  font-weight: 850;
}

.samudera-filter-widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.samudera-filter-widget ul li {
  margin: 0;
  padding: 0;
}

.samudera-filter-widget ul a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  color: var(--samudera-text);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--samudera-border);
}

.samudera-filter-widget ul a:hover {
  color: var(--samudera-secondary);
}

.samudera-filter-widget ul a.is-active {
  color: var(--samudera-secondary);
  font-weight: 800;
}

.samudera-filter-widget ul a span {
  color: var(--samudera-muted);
  font-size: 0.82rem;
}

.samudera-filter-widget ul.children {
  padding-left: 16px;
}

.samudera-catalog-filter .wc-block-price-filter {
  margin: 12px 0;
}

.samudera-catalog-filter .wc-block-components-price-slider__range-text {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--samudera-text);
}

.samudera-catalog-filter .wc-block-components-price-slider__controls {
  margin-top: 10px;
}

.samudera-catalog-filter .wc-block-components-price-slider__controls .wc-block-components-price-slider__amount {
  min-height: 40px;
  border: 1px solid var(--samudera-border);
  border-radius: 10px;
  padding: 0 12px;
  font-size: 0.9rem;
}

.samudera-catalog-filter .wc-block-components-price-slider__range-input-wrapper {
  height: 6px;
  background: var(--samudera-border);
  border-radius: 3px;
}

.samudera-catalog-filter .wc-block-components-price-slider__range-input-progress {
  background: var(--samudera-secondary);
  height: 6px;
}

.samudera-catalog-filter .wc-block-components-price-slider__range-input::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  border: 2px solid var(--samudera-secondary);
  border-radius: 999px;
  background: var(--samudera-white);
  cursor: pointer;
}

.samudera-catalog-filter .woocommerce-widget-layered-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.samudera-catalog-filter .woocommerce-widget-layered-nav-list__item {
  padding: 6px 0;
  border-bottom: 1px solid var(--samudera-border);
}

.samudera-catalog-filter .woocommerce-widget-layered-nav-list__item a {
  color: var(--samudera-text);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}

.samudera-catalog-filter .woocommerce-widget-layered-nav-list__item a:hover {
  color: var(--samudera-secondary);
}

.samudera-catalog-filter .woocommerce-widget-layered-nav-list__item span {
  color: var(--samudera-muted);
  font-size: 0.82rem;
}

.samudera-catalog-filter .widget_price_filter .price_slider {
  margin: 12px 0;
}

.samudera-catalog-filter .widget_price_filter .price_slider_amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.samudera-catalog-filter .widget_price_filter .price_slider_amount .button {
  min-height: 38px;
  border: 1px solid var(--samudera-secondary);
  border-radius: 10px;
  background: var(--samudera-secondary);
  color: var(--samudera-white);
  padding: 0 14px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.samudera-catalog-filter .widget_price_filter .price_slider_amount .price_label {
  color: var(--samudera-text);
  font-size: 0.9rem;
  font-weight: 600;
}

.samudera-catalog-filter .widget_price_filter .ui-slider {
  position: relative;
  height: 6px;
  background: var(--samudera-border);
  border-radius: 3px;
}

.samudera-catalog-filter .widget_price_filter .ui-slider .ui-slider-range {
  position: absolute;
  height: 6px;
  background: var(--samudera-secondary);
  border-radius: 3px;
}

.samudera-catalog-filter .widget_price_filter .ui-slider .ui-slider-handle {
  position: absolute;
  top: -6px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--samudera-secondary);
  border-radius: 999px;
  background: var(--samudera-white);
  cursor: pointer;
  margin-left: -9px;
}

.samudera-catalog-filter .woocommerce-product-search {
  display: flex;
  gap: 8px;
}

.samudera-catalog-filter .woocommerce-product-search input {
  flex: 1;
  min-height: 42px;
  border: 1px solid var(--samudera-border);
  border-radius: 10px;
  padding: 0 12px;
  font-size: 0.9rem;
}

.samudera-catalog-filter .woocommerce-product-search button {
  min-height: 42px;
  border: 1px solid var(--samudera-secondary);
  border-radius: 10px;
  background: var(--samudera-secondary);
  color: var(--samudera-white);
  padding: 0 14px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .samudera-main-header__inner {
    gap: 18px;
  }

  .samudera-brand {
    flex-basis: 230px;
  }

  .samudera-header-contact-button {
    margin-left: auto;
  }

  .samudera-service-grid,
  .samudera-trust-grid,
  .samudera-product-grid,
  .samudera-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .samudera-process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .samudera-process-step::before,
  .samudera-process-step::after {
    display: none;
  }

  .samudera-catalog-layout {
    grid-template-columns: 1fr;
  }

  .samudera-catalog-sidebar {
    position: static;
  }

  .samudera-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .samudera-home-banner-slot {
    margin-top: -28px;
  }

  .samudera-home-services-section {
    padding-bottom: 6px;
  }

  .samudera-home-banner-slot + .samudera-section--soft {
    margin-top: -84px;
    padding-top: 144px;
  }

  .samudera-topbar__inner {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 8px 0;
    text-align: center;
  }

  .samudera-topbar__separator {
    display: none;
  }

  .samudera-topbar__label {
    white-space: normal;
    justify-self: center;
  }

  .samudera-topbar__ticker {
    width: 100%;
  }

  .samudera-main-header__inner {
    justify-content: space-between;
    align-items: center;
    min-height: auto;
    padding: 16px 0;
  }

  .samudera-brand {
    flex: 0 1 auto;
  }

  .samudera-brand img {
    width: 210px;
    max-height: 54px;
  }

  .samudera-brand__tagline,
  .samudera-search,
  .samudera-header-contact-button {
    display: none;
  }

  .samudera-menu-toggle {
    display: inline-flex;
    align-self: center;
    justify-self: end;
  }

  .samudera-nav {
    display: none;
  }

  .samudera-nav.is-open {
    display: block;
  }

  .samudera-nav__inner {
    display: block;
  }

  .samudera-nav__list {
    display: grid;
    gap: 0;
    padding: 10px 0;
  }

  .samudera-nav__list a {
    min-height: 42px;
  }

  .samudera-hero {
    padding: 0 0 44px;
  }

  .samudera-hero__content {
    margin-top: 28px;
    text-align: left;
  }

  .samudera-hero p {
    margin: 0;
  }

  .samudera-hero__actions {
    justify-content: flex-start;
  }

  .samudera-hero__dots {
    bottom: 10px;
    gap: 7px;
    padding: 6px 8px;
  }

  .samudera-hero__dot {
    width: 8px;
    height: 8px;
  }

  .samudera-hero__dot.is-active {
    width: 22px;
  }

  .samudera-split,
  .samudera-area-section__inner,
  .samudera-final-cta__inner,
  .samudera-footer__grid,
  .samudera-product-detail {
    grid-template-columns: 1fr;
  }

  .samudera-feature-grid--three,
  .samudera-faq-grid,
  .samudera-copy-grid {
    grid-template-columns: 1fr;
  }

  .samudera-woocommerce-catalog .woocommerce ul.products,
  .samudera-woocommerce-catalog.woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .samudera-home-banner-slot {
    margin-top: -18px;
  }

  .samudera-home-services-section {
    padding-bottom: 0;
  }

  .samudera-home-banner-slot + .samudera-section--soft {
    margin-top: -52px;
    padding-top: 98px;
  }

  .samudera-container {
    width: min(100% - 24px, 1180px);
  }

  .samudera-brand img {
    width: 180px;
  }

  .samudera-menu-toggle {
    width: 44px;
    height: 44px;
  }

  .samudera-section {
    padding: 54px 0;
  }

  .samudera-section__header--row,
  .samudera-footer__bottom-inner {
    display: grid;
  }

  .samudera-service-grid,
  .samudera-trust-grid,
  .samudera-process-flow,
  .samudera-product-grid,
  .samudera-article-grid,
  .samudera-category-grid,
  .samudera-catalog-filter,
  .samudera-woocommerce-catalog .woocommerce ul.products,
  .samudera-woocommerce-catalog.woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .samudera-radio-group {
    grid-template-columns: 1fr 1fr;
  }

  .samudera-radio-group__label {
    grid-column: 1 / -1;
  }

  .samudera-product-inquiry__actions .samudera-btn {
    width: 100%;
  }

  .samudera-hero__actions .samudera-btn {
    width: 100%;
  }
}

@media (min-width: 821px) {
  .samudera-main-header__inner {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 22px !important;
  }

  .samudera-brand {
    flex: 0 0 248px !important;
  }

  .samudera-search {
    flex: 1 1 auto !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  .samudera-header-contact-button {
    margin-left: 20px !important;
    margin-right: 0 !important;
  }

  .samudera-nav__inner {
    display: block !important;
  }

  .samudera-nav__list {
    width: 100% !important;
    justify-content: space-between !important;
    gap: 14px !important;
  }
}

.samudera-no-results {
  padding: 48px 24px;
  text-align: center;
}

.samudera-no-results p {
  margin: 0 0 20px;
  color: var(--samudera-text);
  font-size: 1.05rem;
  line-height: 1.7;
}

.samudera-no-results .samudera-btn {
  display: inline-flex;
}

.samudera-contact-page {
  max-width: 980px;
}

.samudera-section__header--contact {
  text-align: left;
  margin-inline: 0 auto;
}

.samudera-section__header--contact p {
  color: var(--samudera-muted);
}

.samudera-contact-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.samudera-contact-highlight {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 120px;
  border: 1px solid var(--samudera-border);
  border-radius: 18px;
  background: var(--samudera-white);
  padding: 22px;
  color: var(--samudera-primary);
  text-decoration: none;
  box-shadow: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.samudera-contact-highlight:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 111, 178, 0.22);
  box-shadow: var(--samudera-shadow);
}

.samudera-contact-highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #eaf4ff;
  color: var(--samudera-secondary);
}

.samudera-contact-highlight__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.samudera-contact-highlight strong {
  display: block;
  margin-bottom: 4px;
  color: var(--samudera-primary);
  font-size: 1.06rem;
  font-weight: 850;
}

.samudera-contact-highlight p {
  margin: 0;
  color: var(--samudera-text);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: left;
}

.samudera-payment-section {
  background: var(--samudera-bg);
}

.samudera-payment-info {
  display: flex;
  justify-content: flex-start;
}

.samudera-payment-inline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: min(100%, 760px);
  padding: 12px 0;
}

.samudera-contact-block--payment .samudera-payment-inline {
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
  padding: 0;
}

.samudera-payment-inline img {
  display: block;
  width: auto;
  height: 42px;
}

.samudera-contact-block--payment .samudera-payment-inline img {
  height: 34px;
}

.samudera-payment-inline__body {
  display: grid;
  gap: 2px;
}

.samudera-contact-block--payment .samudera-payment-inline__body {
  gap: 4px;
}

.samudera-payment-inline__name,
.samudera-payment-inline__owner,
.samudera-payment-inline__number {
  margin: 0;
}

.samudera-payment-inline__name {
  color: var(--samudera-primary);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.samudera-payment-inline__number {
  color: var(--samudera-primary);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
}

.samudera-payment-inline__owner {
  color: var(--samudera-text);
  font-weight: 700;
  line-height: 1.35;
}

.samudera-contact-block--payment .samudera-payment-inline__name,
.samudera-contact-block--payment .samudera-payment-inline__number,
.samudera-contact-block--payment .samudera-payment-inline__owner {
  text-align: left;
}

.samudera-payment-inline--section {
  border-bottom: 1px solid rgba(31, 111, 178, 0.12);
}

.samudera-payment-note {
  margin-top: 6px !important;
  color: var(--samudera-muted) !important;
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .samudera-contact-highlights {
    grid-template-columns: 1fr;
  }

  .samudera-payment-inline {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .samudera-payment-inline img {
    width: auto;
    height: 36px;
  }
}
