:root {
  --hookla-gap: 18px;
}

.hookla-container {
  max-width: var(--hookla-max);
  margin: 0 auto;
  padding: 0 18px;
}

.hookla-main {
  min-height: 65vh;
}

.hookla-muted {
  color: var(--hookla-muted);
}

.hookla-h1 {
  font-size: clamp(2.1rem, 3.4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.hookla-h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.12;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.hookla-h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
}

.hookla-lead {
  font-size: clamp(1.02rem, 1.2vw, 1.12rem);
  color: var(--hookla-muted);
  margin: 0 0 18px;
  max-width: 52ch;
}

.hookla-eyebrow {
  color: rgba(242, 210, 138, 0.9);
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.hookla-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  color: rgba(15, 23, 42, 0.86);
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
}

.hookla-btn {
  appearance: none;
  border: 1px solid rgba(217, 164, 65, 0.35);
  background: linear-gradient(180deg, rgba(217, 164, 65, 0.98), rgba(201, 143, 40, 0.98));
  color: #141414;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-radius: 999px;
  padding: 12px 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  cursor: pointer;
}

.hookla-btn--sm {
  padding: 9px 12px;
  font-weight: 850;
  font-size: 0.92rem;
}

.hookla-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.44);
}

.hookla-btn:active {
  transform: translateY(0);
}

.hookla-btn--ghost {
  background: rgba(255, 255, 255, 0.82);
  color: rgba(15, 23, 42, 0.92);
  border-color: var(--hookla-border);
  box-shadow: none;
}

.hookla-btn--ghost:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
}

.hookla-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(248, 250, 252, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hookla-border);
}

.hookla-topbar {
  border-bottom: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.78);
}

.hookla-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 0.86rem;
}

.hookla-topbar__left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.hookla-topbar__date {
  font-weight: 750;
  color: rgba(15, 23, 42, 0.78);
  white-space: nowrap;
}

.hookla-topbar__sep {
  color: rgba(15, 23, 42, 0.35);
}

.hookla-topbar__note {
  color: rgba(15, 23, 42, 0.66);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hookla-topbar__socials {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hookla-topbar__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(15, 23, 42, 0.86);
  text-decoration: none;
}

.hookla-topbar__social:hover {
  border-color: rgba(217, 164, 65, 0.35);
  background: rgba(217, 164, 65, 0.12);
}

.hookla-header__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}

.hookla-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hookla-brand__link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.hookla-brand__mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.92);
  object-fit: cover;
}

.hookla-brand .custom-logo-link img {
  width: auto;
  height: 36px;
}

.hookla-brand__name {
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hookla-brand__tagline {
  font-size: 0.9rem;
  color: var(--hookla-muted);
  max-width: 52ch;
}

.hookla-navtoggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  padding: 10px 12px;
  color: rgba(15, 23, 42, 0.9);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.hookla-navcheck {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.hookla-navtoggle:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(217, 164, 65, 0.35);
}

.hookla-navtoggle:active {
  transform: translateY(1px);
}

.hookla-navtoggle__icon {
  display: inline-block;
  width: 18px;
  height: 12px;
  position: relative;
}

.hookla-navtoggle__icon::before,
.hookla-navtoggle__icon::after,
.hookla-navtoggle__icon {
  background: rgba(15, 23, 42, 0.9);
}

.hookla-navtoggle__icon,
.hookla-navtoggle__icon::before,
.hookla-navtoggle__icon::after {
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

body.hookla-nav-open .hookla-navtoggle__icon {
  background: transparent;
}

header .hookla-navcheck:checked ~ .hookla-header__actions .hookla-navtoggle__icon {
  background: transparent;
}

body.hookla-nav-open .hookla-navtoggle__icon::before {
  transform: translateY(5px) rotate(45deg);
}

header .hookla-navcheck:checked ~ .hookla-header__actions .hookla-navtoggle__icon::before {
  transform: translateY(5px) rotate(45deg);
}

body.hookla-nav-open .hookla-navtoggle__icon::after {
  transform: translateY(-5px) rotate(-45deg);
}

header .hookla-navcheck:checked ~ .hookla-header__actions .hookla-navtoggle__icon::after {
  transform: translateY(-5px) rotate(-45deg);
}

.hookla-navbackdrop {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--hookla-header-h, 64px);
  background: rgba(2, 6, 23, 0.35);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
  z-index: 999;
}

body.hookla-nav-open .hookla-navbackdrop {
  opacity: 1;
  pointer-events: auto;
}

header .hookla-navcheck:checked ~ .hookla-navbackdrop {
  opacity: 1;
  pointer-events: auto;
}

.hookla-navtoggle__icon::before,
.hookla-navtoggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
}

.hookla-navtoggle__icon::before {
  top: 0;
}

.hookla-navtoggle__icon::after {
  bottom: 0;
}

.hookla-navtoggle__icon {
  height: 2px;
  top: 5px;
  border-radius: 999px;
}

.hookla-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 980px) {
  .hookla-navtoggle {
    display: inline-flex;
  }

  .hookla-navbackdrop {
    display: block;
  }
}

.hookla-nav__menu {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.hookla-nav .menu {
  margin: 0;
}

.hookla-nav .menu ul {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.hookla-nav .menu a {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.86);
  border: 1px solid transparent;
  transition: background 160ms ease, border-color 160ms ease;
  font-size: 0.95rem;
}

.hookla-nav .menu a:hover {
  background: rgba(15, 23, 42, 0.06);
  border-color: var(--hookla-border);
}

.hookla-nav__menu a {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.86);
  border: 1px solid transparent;
  transition: background 160ms ease, border-color 160ms ease;
  font-size: 0.95rem;
}

.hookla-nav__menu a:hover {
  background: rgba(15, 23, 42, 0.06);
  border-color: var(--hookla-border);
}

.hookla-nav__cta {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hookla-navcart {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.9);
  position: relative;
  padding: 0;
}

.hookla-navcart--header {
  display: none;
}

.hookla-navcart:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(217, 164, 65, 0.35);
}

.hookla-navcart .dashicons {
  width: 20px;
  height: 20px;
  font-size: 20px;
}

.hookla-navcart__label {
  display: none;
}

.hookla-nav__menu .hookla-menu-cart > a.hookla-navcart {
  border-color: var(--hookla-border);
}

.hookla-nav__menu .hookla-menu-cart > a.hookla-navcart:hover {
  border-color: rgba(217, 164, 65, 0.35);
}

.hookla-nav__menu .hookla-menu-cart > a.hookla-navcart {
  padding: 0;
}

.hookla-nav__menu .hookla-menu-cart > a.hookla-navcart::after {
  content: none;
}

.hookla-nav__menu .hookla-menu-cart > a.hookla-navcart {
  background: rgba(255, 255, 255, 0.82);
}

.hookla-nav__menu .hookla-menu-cart > a.hookla-navcart:hover {
  background: rgba(255, 255, 255, 0.92);
}

.hookla-navcart__count {
  position: absolute;
  right: -6px;
  top: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 164, 65, 0.95);
  color: #141414;
  border: 1px solid rgba(217, 164, 65, 0.35);
  font-weight: 950;
  font-size: 0.7rem;
  line-height: 1;
}

.hookla-section {
  padding: 64px 0;
}

.hookla-section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 22px;
}

.hookla-section__actions {
  display: flex;
  gap: 10px;
}

.hookla-hero {
  position: relative;
  padding: 44px 0 14px;
  overflow: hidden;
}

.hookla-hero__bg {
  position: absolute;
  inset: -60px -40px auto -40px;
  height: 340px;
  background: radial-gradient(500px 200px at 20% 30%, rgba(217, 164, 65, 0.22), transparent 60%),
    radial-gradient(430px 200px at 80% 40%, rgba(242, 210, 138, 0.15), transparent 65%);
  pointer-events: none;
}

.hookla-hero__inner {
  position: relative;
}

.hookla-hero__slider {
  border-radius: calc(var(--hookla-radius) + 6px);
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--hookla-shadow);
  overflow: hidden;
}

.hookla-hero__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: transform;
}

.hookla-hero__slide {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0;
  position: relative;
}

.hookla-hero--banner .hookla-hero__slide {
  min-height: 0;
  grid-template-columns: 1fr;
}

.hookla-hero--banner {
  padding: 0;
}

.hookla-hero--banner .hookla-hero__bg {
  display: none;
}

.hookla-hero--banner .hookla-hero__inner {
  width: 100%;
}

.hookla-hero--banner .hookla-hero__slider {
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hookla-hero--banner .hookla-hero__track {
  height: calc(100vh - var(--hookla-header-h, 64px));
}

.hookla-hero--banner .hookla-hero__slide,
.hookla-hero--banner .hookla-hero__media {
  height: 100%;
}

.hookla-hero--banner .hookla-hero__media {
  aspect-ratio: auto;
}

.hookla-hero--banner .hookla-hero__media::after {
  background: none;
}

.hookla-hero--banner .hookla-hero__media img {
  filter: saturate(1.02) contrast(1.03);
}

.hookla-hero--banner .hookla-iconbtn,
.hookla-hero--banner .hookla-iconbtn {
  display: none;
}

.hookla-hero--banner .hookla-hero__dots {
  display: flex;
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 5;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  gap: 10px;
}

.hookla-hero--banner .hookla-dot {
  width: 9px;
  height: 9px;
}

.hookla-hero--banner .hookla-dot.is-active {
  transform: scale(1.05);
}

.hookla-hero__media {
  position: relative;
  height: 100%;
}

.hookla-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(248, 250, 252, 0.86));
}

.hookla-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.hookla-hero__content {
  padding: 42px clamp(18px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hookla-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.hookla-hero__usp {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hookla-usp {
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 16px;
  padding: 12px 12px;
}

.hookla-usp__k {
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hookla-usp__v {
  color: var(--hookla-muted);
  font-size: 0.92rem;
}

.hookla-iconbtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.hookla-iconbtn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-50%) scale(1.03);
}

.hookla-iconbtn::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(15, 23, 42, 0.82);
  border-top: 0;
  border-right: 0;
  transform: rotate(45deg);
  margin: 0 auto;
}

.hookla-iconbtn--next::before {
  transform: rotate(-135deg);
}

.hookla-iconbtn--prev {
  left: 14px;
}

.hookla-iconbtn--next {
  right: 14px;
}

.hookla-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
}

.hookla-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(15, 23, 42, 0.24);
  cursor: pointer;
  padding: 0;
}

.hookla-dot.is-active {
  background: rgba(217, 164, 65, 0.92);
  box-shadow: 0 0 0 6px rgba(217, 164, 65, 0.18);
}

.hookla-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.hookla-featuregrid {
  display: grid;
  grid-template-areas:
    "a b c"
    "a b d";
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.hookla-ftile {
  grid-area: auto;
  border-radius: calc(var(--hookla-radius) + 6px);
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: radial-gradient(760px 380px at 10% 20%, rgba(217, 164, 65, 0.18), transparent 58%),
    radial-gradient(620px 360px at 92% 65%, rgba(242, 210, 138, 0.14), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.88));
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.08);
  overflow: hidden;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.92);
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: stretch;
  min-height: 170px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  position: relative;
}

.hookla-ftile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 240px at 10% 18%, rgba(255, 255, 255, 0.75), transparent 55%),
    radial-gradient(520px 240px at 92% 70%, rgba(255, 255, 255, 0.55), transparent 60%);
  opacity: 0.75;
  pointer-events: none;
}

.hookla-ftile > * {
  position: relative;
  z-index: 1;
}

.hookla-ftile:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 164, 65, 0.3);
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.12);
}

.hookla-ftile:hover::before {
  opacity: 0.92;
}

.hookla-ftile--a,
.hookla-ftile--b {
  background: radial-gradient(760px 380px at 10% 20%, rgba(217, 164, 65, 0.2), transparent 58%),
    radial-gradient(680px 360px at 92% 65%, rgba(242, 210, 138, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.88));
}

.hookla-ftile--c,
.hookla-ftile--d {
  background: radial-gradient(560px 280px at 15% 25%, rgba(217, 164, 65, 0.14), transparent 60%),
    radial-gradient(480px 260px at 92% 70%, rgba(242, 210, 138, 0.1), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.86));
}

.hookla-ftile--a {
  grid-area: a;
  min-height: 340px;
}

.hookla-ftile--b {
  grid-area: b;
  min-height: 340px;
}

.hookla-ftile--c {
  grid-area: c;
}

.hookla-ftile--d {
  grid-area: d;
}

.hookla-ftile__body {
  padding: 14px 14px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  min-width: 0;
  height: 100%;
}

.hookla-ftile__kicker {
  font-weight: 800;
  color: rgba(15, 23, 42, 0.72);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.74rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hookla-ftile__kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(217, 164, 65, 0.9);
  box-shadow: 0 0 0 6px rgba(217, 164, 65, 0.16);
}

.hookla-ftile__title {
  font-weight: 950;
  letter-spacing: -0.01em;
  line-height: 1.18;
  font-size: 0.98rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.hookla-ftile--a .hookla-ftile__title,
.hookla-ftile--b .hookla-ftile__title {
  font-size: 1.05rem;
}

.hookla-ftile--c .hookla-ftile__title,
.hookla-ftile--d .hookla-ftile__title {
  font-size: 0.92rem;
}

.hookla-ftile__price {
  display: inline-flex;
  gap: 8px;
  align-items: baseline;
  color: rgba(15, 23, 42, 0.8);
  font-size: 0.88rem;
  flex-wrap: wrap;
}

.hookla-ftile__from {
  color: rgba(15, 23, 42, 0.6);
}

.hookla-ftile__amount .woocommerce-Price-amount {
  font-weight: 900;
  color: rgba(15, 23, 42, 0.92);
  background: rgba(217, 164, 65, 0.14);
  border: 1px solid rgba(217, 164, 65, 0.22);
  padding: 4px 8px;
  border-radius: 999px;
}

.hookla-ftile__amount del {
  opacity: 0.55;
  margin-right: 6px;
}

.hookla-ftile__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(217, 164, 65, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.88));
  font-weight: 900;
  font-size: 0.86rem;
  color: rgba(15, 23, 42, 0.9);
  gap: 8px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.hookla-ftile__btn::after {
  content: "→";
  font-size: 1.05em;
  line-height: 1;
}

.hookla-ftile:hover .hookla-ftile__btn {
  transform: translateY(-1px);
  border-color: rgba(217, 164, 65, 0.38);
}

.hookla-ftile__media {
  padding: 12px 12px 12px 0;
  display: grid;
  place-items: center;
  align-self: stretch;
}

.hookla-section--latest .hookla-ftile {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 3fr 2fr;
  height: 100%;
}

.hookla-section--latest .hookla-featuregrid {
  grid-template-areas:
    "a b c"
    "a b d";
  grid-template-columns: 2fr 2fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  aspect-ratio: 5 / 2;
}

.hookla-section--latest .hookla-ftile--a,
.hookla-section--latest .hookla-ftile--b {
  min-height: 0;
}

.hookla-section--latest .hookla-ftile__media {
  padding: 10px;
  min-height: 0;
  overflow: hidden;
  grid-column: 1 / -1;
}

.hookla-section--latest .hookla-ftile__body {
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  gap: 7px;
  grid-column: 1 / -1;
}

.hookla-section--latest .hookla-ftile__kicker {
  font-size: 0.64rem;
}

.hookla-section--latest .hookla-ftile__img {
  max-height: none;
  object-fit: cover;
}

.hookla-section--latest .hookla-ftile__img,
.hookla-section--latest .hookla-ftile__img--ph {
  border-radius: 16px;
}

@media (max-width: 980px) {
  .hookla-section--latest .hookla-featuregrid {
    grid-template-areas:
      "a"
      "b"
      "c"
      "d";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    aspect-ratio: auto;
  }

  .hookla-section--latest .hookla-ftile {
    display: flex;
    flex-direction: column;
  }

  .hookla-section--latest .hookla-ftile__media {
    flex: 0 0 auto;
  }

  .hookla-section--latest .hookla-ftile__body {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
  }
}

.hookla-section--latest .hookla-ftile__title {
  line-height: 1.22;
  font-size: 0.92rem;
}

.hookla-section--latest .hookla-ftile--a .hookla-ftile__title,
.hookla-section--latest .hookla-ftile--b .hookla-ftile__title {
  font-size: 0.98rem;
}


.hookla-ftile__media::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(280px 190px at 35% 30%, rgba(217, 164, 65, 0.14), transparent 60%),
    rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.08);
  pointer-events: none;
}

.hookla-ftile__media {
  position: relative;
}

.hookla-ftile__media > * {
  position: relative;
  z-index: 1;
}

.hookla-ftile__img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: contain;
  filter: saturate(1.02) contrast(1.02);
  transition: transform 220ms ease;
}

.hookla-ftile:hover .hookla-ftile__img {
  transform: scale(1.02);
}

.hookla-ftile__img--ph {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: radial-gradient(280px 190px at 30% 25%, rgba(217, 164, 65, 0.18), transparent 60%),
    radial-gradient(240px 180px at 70% 65%, rgba(242, 210, 138, 0.12), transparent 60%),
    rgba(15, 23, 42, 0.04);
}

.hookla-ftile--c .hookla-ftile__img,
.hookla-ftile--d .hookla-ftile__img {
  max-height: 108px;
}

.hookla-card {
  border-radius: var(--hookla-radius);
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(2, 6, 23, 0.1);
  transition: transform 180ms ease, border-color 180ms ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hookla-card:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 164, 65, 0.28);
}

.hookla-card__media {
  display: block;
  position: relative;
  background: rgba(15, 23, 42, 0.04);
  aspect-ratio: 1/1;
  overflow: hidden;
  text-decoration: none;
}

.hookla-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hookla-card__img--ph {
  background: radial-gradient(280px 190px at 30% 25%, rgba(217, 164, 65, 0.18), transparent 60%),
    radial-gradient(240px 180px at 70% 65%, rgba(242, 210, 138, 0.12), transparent 60%),
    rgba(15, 23, 42, 0.04);
}

.hookla-card__body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.hookla-card__title {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.hookla-card__title a {
  text-decoration: none;
  color: rgba(15, 23, 42, 0.92);
}

.hookla-card__price {
  font-weight: 800;
  color: rgba(242, 210, 138, 0.95);
  font-size: 1.02rem;
}

.hookla-card__price del {
  opacity: 0.7;
  font-weight: 650;
  margin-right: 8px;
}

.hookla-card__cta {
  margin-top: auto;
}

.hookla-ctarow {
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex-wrap: nowrap;
}

.hookla-card__cta .hookla-ctarow a.button,
.hookla-card__cta .hookla-ctarow a.add_to_cart_button,
.hookla-card__cta .hookla-ctarow button {
  width: auto;
  flex: 1;
  min-width: 0;
}

.hookla-card__cta .hookla-buy-now {
  background: rgba(255, 255, 255, 0.92);
}

@media (max-width: 520px) {
  .hookla-ctarow {
    flex-wrap: wrap;
  }
}

.hookla-card__cta a.button,
.hookla-card__cta a.add_to_cart_button,
.hookla-card__cta button {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(217, 164, 65, 0.35);
  background: rgba(217, 164, 65, 0.92);
  color: #141414;
  font-weight: 850;
  padding: 10px 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hookla-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: 0.02em;
  font-size: 0.78rem;
  background: rgba(255, 91, 91, 0.92);
  color: #140a0a;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hookla-section--split {
  padding-top: 20px;
}

.hookla-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}

.hookla-media {
  border-radius: calc(var(--hookla-radius) + 6px);
  border: 1px solid var(--hookla-border);
  box-shadow: var(--hookla-shadow);
}

.hookla-featurelist {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.hookla-aboutstats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hookla-aboutstat {
  border-radius: 16px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.9);
  padding: 14px;
}

.hookla-aboutstat__value {
  font-weight: 950;
  letter-spacing: -0.01em;
  font-size: 1.25rem;
  line-height: 1.1;
  color: rgba(15, 23, 42, 0.92);
}

.hookla-aboutstat__mark {
  margin-left: 4px;
  color: rgba(217, 164, 65, 0.95);
}

.hookla-aboutstat__label {
  margin-top: 6px;
  color: rgba(15, 23, 42, 0.66);
  font-weight: 750;
  font-size: 0.92rem;
}

.hookla-feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 14px;
}

.hookla-servicesgrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hookla-svc {
  border-radius: calc(var(--hookla-radius) + 6px);
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(2, 6, 23, 0.1);
  padding: 16px;
  transition: transform 180ms ease, border-color 180ms ease;
  min-height: 168px;
}

.hookla-svc:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 164, 65, 0.28);
}

.hookla-svc__no {
  font-weight: 950;
  color: rgba(217, 164, 65, 0.95);
  letter-spacing: 0.06em;
  font-size: 0.86rem;
}

.hookla-svc__name {
  margin-top: 10px;
  font-weight: 950;
  letter-spacing: -0.01em;
  color: rgba(15, 23, 42, 0.92);
}

.hookla-svc__desc {
  margin-top: 6px;
  color: rgba(15, 23, 42, 0.66);
  font-size: 0.95rem;
}

.hookla-servicesfoot {
  margin-top: 16px;
  border-radius: calc(var(--hookla-radius) + 6px);
  border: 1px solid rgba(217, 164, 65, 0.22);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.08);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hookla-servicesfoot__rule {
  width: 46px;
  height: 1px;
  background: rgba(217, 164, 65, 0.45);
}

.hookla-servicesfoot__text {
  flex: 1;
  font-weight: 850;
  color: rgba(15, 23, 42, 0.82);
}

.hookla-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(217, 164, 65, 0.14);
  border: 1px solid rgba(217, 164, 65, 0.22);
  color: rgba(242, 210, 138, 0.95);
}

.hookla-feature__title {
  font-weight: 900;
}

.hookla-split__cta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hookla-testis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hookla-testi {
  border-radius: var(--hookla-radius);
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 14px;
}

.hookla-testi__avatar {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid var(--hookla-border);
}

.hookla-testi__quote {
  font-weight: 750;
  letter-spacing: 0.01em;
}

.hookla-section--logos {
  padding-top: 30px;
}

.hookla-logos {
  border-radius: calc(var(--hookla-radius) + 6px);
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.82);
  padding: 20px;
}

.hookla-logos__title {
  color: rgba(15, 23, 42, 0.78);
  font-weight: 800;
  margin-bottom: 14px;
}

.hookla-logos__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.hookla-logo {
  border: 1px solid var(--hookla-border);
  background: rgba(15, 23, 42, 0.03);
  border-radius: 14px;
  padding: 10px;
  display: grid;
  place-items: center;
}

.hookla-logo img {
  max-height: 36px;
  opacity: 0.92;
  filter: none;
}

.hookla-section--video {
  padding-top: 34px;
}

.hookla-video {
  border-radius: calc(var(--hookla-radius) + 6px);
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--hookla-shadow);
  overflow: hidden;
}

.hookla-video__el {
  width: 100%;
  display: block;
}

.hookla-section--cta {
  padding-top: 34px;
}

.hookla-section--experience {
  padding-top: 34px;
}

.hookla-section--articles {
  padding-top: 34px;
}

.hookla-articlegrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hookla-articlegrid--page {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hookla-articlecard {
  border-radius: var(--hookla-radius);
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(2, 6, 23, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hookla-articlecard:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 164, 65, 0.28);
  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.1);
}

.hookla-articlecard__media {
  display: block;
  text-decoration: none;
  background: rgba(15, 23, 42, 0.04);
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.hookla-articlecard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}

.hookla-articlecard:hover .hookla-articlecard__img {
  transform: scale(1.03);
}

.hookla-articlecard__img--ph {
  width: 100%;
  height: 100%;
  background: radial-gradient(280px 190px at 30% 25%, rgba(217, 164, 65, 0.18), transparent 60%),
    radial-gradient(240px 180px at 70% 65%, rgba(242, 210, 138, 0.12), transparent 60%),
    rgba(15, 23, 42, 0.04);
}

.hookla-articlecard__body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.hookla-articlecard__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(15, 23, 42, 0.6);
  font-size: 0.86rem;
}

.hookla-articlecard__dot {
  opacity: 0.7;
}

.hookla-articlecard__title {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.hookla-articlecard__title a {
  text-decoration: none;
  color: rgba(15, 23, 42, 0.92);
}

.hookla-articlecard__excerpt {
  margin: 0;
  color: rgba(15, 23, 42, 0.7);
  font-size: 0.94rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.hookla-articlecard__more {
  margin-top: auto;
  font-weight: 900;
  text-decoration: none;
  color: rgba(217, 164, 65, 0.98);
}

.hookla-articlecard__more:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .hookla-articlegrid,
  .hookla-articlegrid--page {
    grid-template-columns: 1fr;
  }
}

.hookla-xp {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 16px;
  align-items: center;
}

.hookla-xp__side {
  display: grid;
  gap: 12px;
}

.hookla-xpitem {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  border-radius: calc(var(--hookla-radius) + 6px);
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(2, 6, 23, 0.08);
  padding: 14px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hookla-xpitem:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 164, 65, 0.3);
  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.1);
}

.hookla-xpitem.is-active {
  border-color: rgba(217, 164, 65, 0.45);
  background: radial-gradient(520px 220px at 18% 18%, rgba(217, 164, 65, 0.18), transparent 60%),
    rgba(255, 255, 255, 0.92);
}

.hookla-xpitem__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: rgba(15, 23, 42, 0.86);
  font-size: 22px;
}

.hookla-xpitem.is-active .hookla-xpitem__icon {
  background: rgba(217, 164, 65, 0.18);
  border-color: rgba(217, 164, 65, 0.25);
}

.hookla-xpitem__title {
  display: block;
  font-weight: 950;
  letter-spacing: -0.01em;
  color: rgba(15, 23, 42, 0.92);
  font-size: 0.98rem;
  line-height: 1.2;
}

.hookla-xpitem__desc {
  display: block;
  margin-top: 4px;
  color: rgba(15, 23, 42, 0.66);
  font-size: 0.92rem;
  line-height: 1.35;
}

.hookla-xp__media {
  position: relative;
}

.hookla-xpvideo {
  position: relative;
}

.hookla-xpvideo__toggle {
  position: absolute;
  inset: auto 14px 14px auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(2, 6, 23, 0.12);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 160ms ease, border-color 160ms ease;
}

.hookla-xpvideo__toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 164, 65, 0.35);
}

.hookla-xpvideo__toggle::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 11px solid rgba(15, 23, 42, 0.9);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 2px;
}

.hookla-xpvideo.is-playing .hookla-xpvideo__toggle::before {
  width: 12px;
  height: 14px;
  border: 0;
  margin-left: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0 40%, transparent 40% 60%, rgba(15, 23, 42, 0.9) 60%);
}

@media (max-width: 980px) {
  .hookla-xp {
    grid-template-columns: 1fr;
  }

  .hookla-xp__media {
    order: -1;
  }
}

.hookla-cta {
  border-radius: calc(var(--hookla-radius) + 8px);
  border: 1px solid rgba(217, 164, 65, 0.22);
  background: radial-gradient(900px 480px at 10% 20%, rgba(217, 164, 65, 0.22), transparent 55%),
    radial-gradient(760px 460px at 90% 55%, rgba(242, 210, 138, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--hookla-shadow);
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.hookla-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hookla-footer {
  border-top: 1px solid var(--hookla-border);
  background: rgba(241, 245, 249, 0.9);
  padding: 32px 0;
}

.hookla-footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.hookla-footer__logo {
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hookla-footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.hookla-footer__menu a {
  color: rgba(15, 23, 42, 0.82);
  text-decoration: none;
}

.hookla-footer__menu a:hover {
  text-decoration: underline;
}

.site-footer {
  border-top: 0;
  background: linear-gradient(180deg, rgba(241, 245, 249, 0.9), rgba(248, 250, 252, 0.95));
  padding: 42px 0 24px;
}

.footer-container {
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.footer-column {
  padding: 0;
}

.footer-column.branding {
  padding-right: 10px;
}

.footer-brandrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.92);
  object-fit: cover;
}

.footer-logo {
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.footer-tagline {
  margin: 0 0 10px;
  color: rgba(15, 23, 42, 0.84);
}

.footer-promo {
  margin: 0 0 12px;
  color: rgba(15, 23, 42, 0.74);
  max-width: 56ch;
}

.footer-since {
  margin: 0;
  color: rgba(15, 23, 42, 0.62);
}

.footer-title {
  margin: 0 0 12px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.9);
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: rgba(15, 23, 42, 0.82);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: rgba(15, 23, 42, 0.82);
}

.footer-contact .dashicons {
  font-size: 18px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  margin-right: 8px;
  color: rgba(217, 164, 65, 0.92);
  vertical-align: -3px;
}

.footer-divider {
  display: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: rgba(15, 23, 42, 0.74);
  font-size: 0.95rem;
  margin-top: 18px;
}

.footer-social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(15, 23, 42, 0.86);
  text-decoration: none;
}

.hookla-socialicon {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-social a:hover {
  border-color: rgba(217, 164, 65, 0.35);
  background: rgba(217, 164, 65, 0.12);
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

}

.hookla-empty {
  border-radius: var(--hookla-radius);
  border: 1px dashed rgba(15, 23, 42, 0.18);
  background: rgba(255, 255, 255, 0.7);
  padding: 18px;
}

.hookla-prose {
  max-width: 78ch;
  border-radius: var(--hookla-radius);
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.82);
  padding: 18px;
}

.hookla-prose > :first-child {
  margin-top: 0;
}

.hookla-prose > :last-child {
  margin-bottom: 0;
}

.hookla-prose a {
  color: rgba(242, 210, 138, 0.95);
}

.hookla-prose h1,
.hookla-prose h2,
.hookla-prose h3 {
  letter-spacing: -0.01em;
}

.hookla-prose code {
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--hookla-border);
  padding: 2px 6px;
  border-radius: 8px;
}

.hookla-pagination {
  margin-top: 22px;
}

.hookla-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(15, 23, 42, 0.9);
  text-decoration: none;
  margin-right: 8px;
}

.hookla-pagination .page-numbers.current {
  border-color: rgba(217, 164, 65, 0.32);
  background: rgba(217, 164, 65, 0.15);
}

@media (max-width: 980px) {
  .hookla-header__inner {
    grid-template-columns: 1fr auto;
  }

  .hookla-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--hookla-header-h, 64px);
    z-index: 1000;
    padding: 0;
    max-height: calc(100vh - var(--hookla-header-h, 64px));
    overflow: auto;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
    background: rgba(248, 250, 252, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--hookla-border);
    display: grid;
    gap: 0;
  }

  body.hookla-nav-open .hookla-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  header .hookla-navcheck:checked ~ .hookla-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hookla-nav__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .hookla-nav__menu a {
    border: 0;
    border-bottom: 1px solid var(--hookla-border);
    background: transparent;
    border-radius: 0;
    padding: 14px 18px;
    font-size: 1rem;
  }

  .hookla-nav__menu li:last-child a {
    border-bottom: 0;
  }

  .hookla-nav__menu a:hover {
    background: rgba(15, 23, 42, 0.04);
  }

  .hookla-nav__cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hookla-navcart--header {
    display: inline-flex;
  }

  .hookla-nav__menu .hookla-menu-cart {
    display: none;
  }

  .hookla-nav__menu .hookla-navcart {
    width: 100%;
    height: auto;
    border-radius: 0;
    justify-content: flex-start;
    padding: 14px 18px;
    border: 0;
    border-bottom: 1px solid var(--hookla-border);
    background: transparent;
  }

  .hookla-nav__menu .hookla-navcart__label {
    display: inline;
    margin-left: 10px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .hookla-nav__menu .hookla-navcart__count {
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
  }

  .hookla-hero__slide {
    grid-template-columns: 1fr;
    min-height: 580px;
  }

  .hookla-hero__media::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(248, 250, 252, 0.94));
  }

  .hookla-hero__content {
    position: absolute;
    inset: auto 0 0 0;
    padding: 18px 18px 56px;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0), rgba(248, 250, 252, 0.92) 30%, rgba(248, 250, 252, 0.98));
  }

  .hookla-topbar__note {
    display: none;
  }


  .hookla-hero__usp {
    grid-template-columns: 1fr;
  }

  .hookla-grid,
  .hookla-grid--products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hookla-featuregrid {
    grid-template-areas:
      "a a"
      "b b"
      "c d";
    grid-template-columns: 1fr 1fr;
  }

  .hookla-ftile--a,
  .hookla-ftile--b {
    min-height: 300px;
  }

  .hookla-split {
    grid-template-columns: 1fr;
  }

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

  .hookla-footer__inner {
    grid-template-columns: 1fr;
  }

  .hookla-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .hookla-grid,
  .hookla-grid--products {
    grid-template-columns: 1fr;
  }

  #produk-terlaris .hookla-grid--products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #produk-terlaris .hookla-ctarow {
    flex-direction: column;
    gap: 8px;
  }

  #produk-terlaris .hookla-card__cta .hookla-ctarow a.button,
  #produk-terlaris .hookla-card__cta .hookla-ctarow a.add_to_cart_button,
  #produk-terlaris .hookla-card__cta .hookla-ctarow button {
    flex: 0 0 auto;
    width: 100%;
  }

  #produk-terlaris .hookla-card__cta a.button,
  #produk-terlaris .hookla-card__cta a.add_to_cart_button,
  #produk-terlaris .hookla-card__cta button {
    padding: 10px 10px;
    font-size: 0.85rem;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hookla-featuregrid {
    grid-template-areas:
      "a"
      "b"
      "c"
      "d";
    grid-template-columns: 1fr;
  }

  .hookla-ftile {
    grid-template-columns: 1fr;
  }

  .hookla-ftile__media {
    padding: 0 14px 14px;
  }

  .hookla-ftile__img {
    max-height: 180px;
  }

  .hookla-testis {
    grid-template-columns: 1fr;
  }

  .hookla-iconbtn {
    display: none;
  }
}

.hookla-woo-wrapper {
  padding: 40px 0 84px;
  min-height: 60vh;
  background: radial-gradient(900px 620px at 12% 0%, rgba(217, 164, 65, 0.12), transparent 62%),
    radial-gradient(760px 560px at 90% 92%, rgba(242, 210, 138, 0.1), transparent 65%);
}

.hookla-woo-wrapper .woocommerce-notices-wrapper {
  margin-bottom: 18px;
}

.hookla-woo-wrapper .woocommerce-error,
.hookla-woo-wrapper .woocommerce-info,
.hookla-woo-wrapper .woocommerce-message {
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 16px 42px rgba(2, 6, 23, 0.08);
}

.hookla-woo-wrapper .woocommerce-message a,
.hookla-woo-wrapper .woocommerce-info a {
  color: rgba(15, 23, 42, 0.9);
  font-weight: 850;
}

.hookla-woo-wrapper .woocommerce-breadcrumb {
  color: rgba(15, 23, 42, 0.62);
  margin: 0 0 18px;
}

.hookla-woo-wrapper .woocommerce-breadcrumb a {
  color: rgba(15, 23, 42, 0.82);
  text-decoration: none;
}

.hookla-woo-wrapper .woocommerce-breadcrumb a:hover {
  text-decoration: underline;
}

.hookla-woo-wrapper a.button,
.hookla-woo-wrapper button.button,
.hookla-woo-wrapper input.button,
.hookla-woo-wrapper #respond input#submit {
  height: 44px;
  padding: 0 16px;
  border-radius: 999px !important;
  border: 1px solid var(--hookla-border) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  color: rgba(15, 23, 42, 0.92) !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.08);
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.hookla-woo-wrapper a.button:hover,
.hookla-woo-wrapper button.button:hover,
.hookla-woo-wrapper input.button:hover,
.hookla-woo-wrapper #respond input#submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.01);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.12);
}

.hookla-woo-wrapper a.button.alt,
.hookla-woo-wrapper button.button.alt,
.hookla-woo-wrapper input.button.alt,
.hookla-woo-wrapper #respond input#submit.alt,
.hookla-woo-wrapper a.checkout-button,
.hookla-woo-wrapper button.single_add_to_cart_button {
  border: 1px solid rgba(217, 164, 65, 0.35) !important;
  background: linear-gradient(180deg, rgba(217, 164, 65, 0.98), rgba(201, 143, 40, 0.98)) !important;
  color: #141414 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 14px 34px rgba(217, 164, 65, 0.22) !important;
}

.hookla-woo-wrapper a.button.alt:hover,
.hookla-woo-wrapper button.button.alt:hover,
.hookla-woo-wrapper input.button.alt:hover,
.hookla-woo-wrapper #respond input#submit.alt:hover,
.hookla-woo-wrapper a.checkout-button:hover,
.hookla-woo-wrapper button.single_add_to_cart_button:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 18px 44px rgba(217, 164, 65, 0.3) !important;
}

.hookla-woo-wrapper .hookla-ctarow {
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hookla-woo-wrapper .hookla-ctarow > a.button {
  flex: 1;
  min-width: 180px;
}

.hookla-woo-wrapper .woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}

.hookla-woo-wrapper .woocommerce-checkout #customer_details,
.hookla-woo-wrapper .woocommerce-checkout #order_review {
  border-radius: 20px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.08);
  padding: 16px;
}

.hookla-woo-wrapper .woocommerce-checkout #order_review_heading {
  margin: 0 0 10px;
}

.hookla-woo-wrapper .woocommerce-checkout h3 {
  margin: 0 0 10px;
}

.hookla-woo-wrapper .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.hookla-woo-wrapper .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
.hookla-woo-wrapper .woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hookla-woo-wrapper .woocommerce-checkout .form-row {
  margin: 0;
  width: 100%;
  float: none;
}

.hookla-woo-wrapper .woocommerce-checkout .form-row-wide,
.hookla-woo-wrapper .woocommerce-checkout .form-row-first,
.hookla-woo-wrapper .woocommerce-checkout .form-row-last {
  width: 100%;
}

.hookla-woo-wrapper .woocommerce-checkout .form-row label {
  display: block;
  margin: 0 0 6px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.85);
  font-size: 0.9rem;
}

.hookla-woo-wrapper .woocommerce-checkout .form-row .required {
  color: rgba(217, 164, 65, 1);
}

.hookla-woo-wrapper .woocommerce-checkout input.input-text,
.hookla-woo-wrapper .woocommerce-checkout textarea,
.hookla-woo-wrapper .woocommerce-checkout select {
  width: 100%;
  max-width: 100%;
  height: 48px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.95);
  color: rgba(15, 23, 42, 0.92);
  outline: none;
}

.hookla-woo-wrapper .woocommerce-checkout textarea {
  height: 120px;
  resize: vertical;
}

.hookla-woo-wrapper .woocommerce-checkout .select2-container {
  width: 100% !important;
}

.hookla-woo-wrapper .woocommerce-checkout .select2-container .select2-selection--single {
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.95);
}

.hookla-woo-wrapper .woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 46px;
  padding-left: 12px;
  padding-right: 34px;
  color: rgba(15, 23, 42, 0.92);
}

.hookla-woo-wrapper .woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow {
  height: 46px;
  right: 8px;
}

.hookla-woo-wrapper .woocommerce-checkout #order_review table.shop_table {
  width: 100%;
  border-collapse: collapse;
}

.hookla-woo-wrapper .woocommerce-checkout #order_review table.shop_table th,
.hookla-woo-wrapper .woocommerce-checkout #order_review table.shop_table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.hookla-woo-wrapper .woocommerce-checkout #payment {
  background: transparent;
}

.hookla-woo-wrapper .woocommerce-checkout #payment ul.payment_methods {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.hookla-woo-wrapper .woocommerce-checkout #payment ul.payment_methods li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.hookla-woo-wrapper .woocommerce-checkout #payment div.payment_box {
  margin-top: 10px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.9);
  padding: 12px;
}

@media (max-width: 980px) {
  .hookla-woo-wrapper .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hookla-woo-wrapper .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
  .hookla-woo-wrapper .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
  .hookla-woo-wrapper .woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    grid-template-columns: 1fr;
  }
}

.hookla-woo-wrapper div.product {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.hookla-woo-wrapper div.product div.images,
.hookla-woo-wrapper div.product div.summary,
.hookla-woo-wrapper div.product div.woocommerce-product-gallery {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

.hookla-woo-wrapper div.product .woocommerce-tabs,
.hookla-woo-wrapper div.product .related.products,
.hookla-woo-wrapper div.product .up-sells.upsells.products {
  grid-column: 1 / -1;
}

.hookla-woo-wrapper div.product .woocommerce-product-gallery {
  border-radius: calc(var(--hookla-radius) + 6px);
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--hookla-shadow);
  overflow: hidden;
}

.hookla-woo-wrapper div.product .woocommerce-product-gallery__wrapper {
  padding: 14px;
}

.hookla-woo-wrapper div.product .woocommerce-product-gallery__image a {
  display: block;
  border-radius: 18px;
  overflow: hidden;
}

.hookla-woo-wrapper div.product .woocommerce-product-gallery img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(1.04) contrast(1.02);
}

.hookla-woo-wrapper div.product .woocommerce-product-gallery__trigger {
  top: 14px !important;
  right: 14px !important;
  border-radius: 999px !important;
  border: 1px solid var(--hookla-border) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 16px 42px rgba(2, 6, 23, 0.12) !important;
}

.hookla-woo-wrapper div.product div.images {
  margin-bottom: 2em;
  position: relative;
}

.hookla-woo-wrapper div.product div.images .woocommerce-product-gallery__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.hookla-woo-wrapper div.product div.images .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-indent: -9999px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hookla-woo-wrapper div.product div.images .woocommerce-product-gallery__trigger::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid #141414;
  border-radius: 2px;
  box-sizing: border-box;
  text-indent: 0;
}

.hookla-woo-wrapper div.product div.images .flex-control-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.hookla-woo-wrapper div.product div.images .flex-control-nav li {
  width: 80px;
  cursor: pointer;
}

.hookla-woo-wrapper div.product div.images .flex-control-nav li img {
  border-radius: 8px;
  opacity: 0.6;
  transition: opacity 200ms ease, transform 200ms ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.hookla-woo-wrapper div.product div.images .flex-control-nav li img.flex-active,
.hookla-woo-wrapper div.product div.images .flex-control-nav li img:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* FlexSlider Navigation Arrows */
.hookla-woo-wrapper div.product div.images .flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  top: 40%;
  width: 100%;
  z-index: 10;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
}

.hookla-woo-wrapper div.product div.images .flex-direction-nav a {
  text-decoration: none;
  display: flex;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: relative;
  top: auto;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: transparent;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  pointer-events: auto;
  align-items: center;
  justify-content: center;
}

.hookla-woo-wrapper div.product div.images:hover .flex-direction-nav a {
  opacity: 1;
}

.hookla-woo-wrapper div.product div.images .flex-direction-nav a::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #141414;
  border-left: 2px solid #141414;
}

.hookla-woo-wrapper div.product div.images .flex-direction-nav a.flex-prev {
  left: -20px;
}
.hookla-woo-wrapper div.product div.images:hover .flex-direction-nav a.flex-prev {
  left: 10px;
}
.hookla-woo-wrapper div.product div.images .flex-direction-nav a.flex-prev::before {
  transform: rotate(-45deg);
  margin-left: 4px;
}

.hookla-woo-wrapper div.product div.images .flex-direction-nav a.flex-next {
  right: -20px;
}
.hookla-woo-wrapper div.product div.images:hover .flex-direction-nav a.flex-next {
  right: 10px;
}
.hookla-woo-wrapper div.product div.images .flex-direction-nav a.flex-next::before {
  transform: rotate(135deg);
  margin-right: 4px;
}

.hookla-woo-wrapper div.product .summary {
  padding: 4px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hookla-woo-wrapper div.product .product_title {
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 950;
  color: rgba(15, 23, 42, 0.92);
}

.hookla-woo-wrapper div.product p.price,
.hookla-woo-wrapper div.product span.price {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 950;
  color: rgba(217, 164, 65, 0.98);
}

.hookla-woo-wrapper div.product p.price del,
.hookla-woo-wrapper div.product span.price del {
  opacity: 0.6;
  font-weight: 750;
  margin-right: 8px;
}

.hookla-woo-wrapper div.product p.price ins,
.hookla-woo-wrapper div.product span.price ins {
  text-decoration: none;
}

.hookla-woo-wrapper div.product .woocommerce-product-details__short-description {
  color: rgba(15, 23, 42, 0.7);
  line-height: 1.7;
  border-left: 3px solid rgba(217, 164, 65, 0.65);
  padding-left: 14px;
}

.hookla-woo-wrapper div.product .hookla-single-price .price {
  margin: 0;
}

.hookla-woo-wrapper div.product .hookla-single-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.hookla-trust {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.hookla-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(15, 23, 42, 0.78);
  font-weight: 750;
}

.hookla-trust__item .dashicons {
  width: 18px;
  height: 18px;
  font-size: 18px;
  color: rgba(217, 164, 65, 0.95);
}

.hookla-woo-wrapper div.product form.cart {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px !important;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.82);
}

.hookla-woo-wrapper div.product form.cart button.single_add_to_cart_button,
.hookla-woo-wrapper div.product form.cart button.hookla-buy-now {
  flex: 1;
  min-width: 180px;
}

.hookla-woo-wrapper div.product form.cart .quantity {
  margin: 0 !important;
}

.hookla-woo-wrapper div.product form.cart .quantity input.qty {
  width: 68px !important;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  color: rgba(15, 23, 42, 0.9);
  text-align: center;
  outline: none;
}

.hookla-woo-wrapper div.product form.cart .quantity input.qty:focus {
  border-color: rgba(217, 164, 65, 0.45);
  box-shadow: 0 0 0 5px rgba(217, 164, 65, 0.14);
}

.hookla-woo-wrapper div.product form.cart .quantity input.qty::-webkit-inner-spin-button,
.hookla-woo-wrapper div.product form.cart .quantity input.qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.hookla-woo-wrapper div.product form.cart button.single_add_to_cart_button,
.hookla-woo-wrapper div.product form.cart .button {
  height: 48px;
  padding: 0 22px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(217, 164, 65, 0.35) !important;
  background: linear-gradient(180deg, rgba(217, 164, 65, 0.98), rgba(201, 143, 40, 0.98)) !important;
  color: #141414 !important;
  font-weight: 950 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(217, 164, 65, 0.22) !important;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.hookla-woo-wrapper div.product form.cart button.single_add_to_cart_button:hover,
.hookla-woo-wrapper div.product form.cart .button:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 18px 44px rgba(217, 164, 65, 0.3) !important;
}

.hookla-woo-wrapper div.product table.variations {
  width: 100%;
  margin-bottom: 12px;
}

.hookla-woo-wrapper div.product table.variations td {
  padding: 8px 0;
}

.hookla-woo-wrapper div.product table.variations select {
  width: 100%;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.92);
  color: rgba(15, 23, 42, 0.9);
  font-weight: 750;
  padding: 0 12px;
}

.hookla-woo-wrapper div.product .product_meta {
  border-top: 1px solid var(--hookla-border);
  padding-top: 14px;
  color: rgba(15, 23, 42, 0.7);
  font-size: 0.95rem;
}

.hookla-woo-wrapper div.product .product_meta a {
  color: rgba(15, 23, 42, 0.86);
  text-decoration: none;
  font-weight: 800;
}

.hookla-woo-wrapper div.product .product_meta a:hover {
  text-decoration: underline;
}

.hookla-woo-wrapper div.product .woocommerce-tabs {
  margin-top: 44px;
  padding-top: 10px;
}

.hookla-woo-wrapper div.product .woocommerce-tabs ul.tabs {
  display: flex !important;
  gap: 10px;
  list-style: none;
  padding: 0 !important;
  margin: 0 0 18px !important;
  border: 0 !important;
  background: transparent !important;
}

.hookla-woo-wrapper div.product .woocommerce-tabs ul.tabs::before {
  display: none !important;
}

.hookla-woo-wrapper div.product .woocommerce-tabs ul.tabs li {
  border: 1px solid var(--hookla-border) !important;
  background: rgba(255, 255, 255, 0.82) !important;
  border-radius: 999px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.hookla-woo-wrapper div.product .woocommerce-tabs ul.tabs li::before,
.hookla-woo-wrapper div.product .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}

.hookla-woo-wrapper div.product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 10px 16px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  color: rgba(15, 23, 42, 0.68) !important;
}

.hookla-woo-wrapper div.product .woocommerce-tabs ul.tabs li.active {
  background: rgba(217, 164, 65, 0.14) !important;
  border-color: rgba(217, 164, 65, 0.35) !important;
}

.hookla-woo-wrapper div.product .woocommerce-tabs ul.tabs li.active a {
  color: rgba(15, 23, 42, 0.92) !important;
}

.hookla-woo-wrapper div.product .woocommerce-tabs .woocommerce-Tabs-panel {
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.9);
  border-radius: calc(var(--hookla-radius) + 6px);
  padding: 18px;
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.08);
}

.hookla-woo-wrapper div.product .related.products,
.hookla-woo-wrapper div.product .up-sells.upsells.products {
  margin-top: 56px;
  padding-top: 10px;
}

.hookla-woo-wrapper div.product .related.products h2,
.hookla-woo-wrapper div.product .up-sells.upsells.products h2 {
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}

.hookla-woo-wrapper span.onsale {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(217, 164, 65, 0.35);
  background: rgba(217, 164, 65, 0.92);
  color: #141414;
  font-weight: 950;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 16px 42px rgba(2, 6, 23, 0.12);
}

.hookla-woo-wrapper .hookla-shopbar {
  border-radius: calc(var(--hookla-radius) + 6px);
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.08);
  padding: 14px;
  margin: 0 0 16px;
}

.hookla-woo-wrapper .hookla-shopbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hookla-woo-wrapper .hookla-shopbar__left {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
}

.hookla-woo-wrapper .hookla-shopbar__title {
  font-weight: 950;
  letter-spacing: -0.01em;
  color: rgba(15, 23, 42, 0.92);
  font-size: 1.05rem;
}

.hookla-woo-wrapper .hookla-shopbar .woocommerce-result-count {
  margin: 0;
  color: rgba(15, 23, 42, 0.65);
  font-size: 0.92rem;
}

.hookla-woo-wrapper .hookla-shopbar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.hookla-woo-wrapper .hookla-shopbar .woocommerce-product-search {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hookla-woo-wrapper .hookla-shopbar .woocommerce-product-search input[type="search"] {
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.92);
  min-width: min(320px, 70vw);
  outline: none;
}

.hookla-woo-wrapper .hookla-shopbar .woocommerce-product-search input[type="search"]:focus {
  border-color: rgba(217, 164, 65, 0.4);
  box-shadow: 0 0 0 4px rgba(217, 164, 65, 0.16);
}

.hookla-woo-wrapper .hookla-shopbar .woocommerce-product-search button {
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(217, 164, 65, 0.35);
  background: rgba(217, 164, 65, 0.92);
  color: #141414;
  font-weight: 900;
}

.hookla-woo-wrapper .hookla-shopbar .woocommerce-ordering {
  margin: 0;
}

.hookla-woo-wrapper .hookla-shopbar .woocommerce-ordering select {
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  color: rgba(15, 23, 42, 0.86);
}

.hookla-woo-wrapper .hookla-shopbar__cats {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.hookla-woo-wrapper .hookla-shopbar__cats::-webkit-scrollbar {
  height: 6px;
}

.hookla-woo-wrapper .hookla-shopbar__cats::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.18);
  border-radius: 999px;
}

.hookla-woo-wrapper .hookla-shopbar__cats .hookla-chip {
  white-space: nowrap;
}

.hookla-woo-wrapper .hookla-shopbar__cats .hookla-chip.is-active {
  border-color: rgba(217, 164, 65, 0.45);
  background: rgba(217, 164, 65, 0.16);
}

.hookla-woo-wrapper nav.woocommerce-pagination {
  margin-top: 18px;
}

.hookla-woo-wrapper nav.woocommerce-pagination ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.hookla-woo-wrapper nav.woocommerce-pagination ul li {
  margin: 0;
}

.hookla-woo-wrapper nav.woocommerce-pagination ul li a,
.hookla-woo-wrapper nav.woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  color: rgba(15, 23, 42, 0.86);
  font-weight: 900;
}

.hookla-woo-wrapper nav.woocommerce-pagination ul li span.current {
  border-color: rgba(217, 164, 65, 0.45);
  background: rgba(217, 164, 65, 0.16);
}

.hookla-woo-wrapper nav.woocommerce-pagination ul li a:hover {
  border-color: rgba(217, 164, 65, 0.3);
  transform: translateY(-1px);
}

.hookla-woo-wrapper ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.hookla-woo-wrapper ul.products::before,
.hookla-woo-wrapper ul.products::after {
  display: none !important;
}

.hookla-woo-wrapper ul.products li.product {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  border-radius: var(--hookla-radius);
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(2, 6, 23, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
  padding: 12px;
}

.hookla-woo-wrapper ul.products li.product:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 164, 65, 0.28);
}

.hookla-woo-wrapper ul.products li.product a {
  text-decoration: none;
  color: rgba(15, 23, 42, 0.92);
}

.hookla-woo-wrapper ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.hookla-woo-wrapper ul.products li.product img {
  border-radius: 16px;
  margin: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hookla-woo-wrapper ul.products li.product .woocommerce-loop-product__title {
  font-size: 0.95rem;
  font-weight: 900;
  margin: 0;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.hookla-woo-wrapper ul.products li.product .price {
  font-weight: 950;
  color: rgba(217, 164, 65, 0.95);
  font-size: 1.02rem;
  display: block;
  margin-top: 0;
}

.hookla-woo-wrapper ul.products li.product a.button,
.hookla-woo-wrapper ul.products li.product a.add_to_cart_button {
  width: 100%;
  margin-top: 12px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(217, 164, 65, 0.35) !important;
  background: rgba(217, 164, 65, 0.92) !important;
  color: #141414 !important;
  font-weight: 950 !important;
  font-size: 0.92rem !important;
  padding: 9px 12px !important;
  line-height: 1.1 !important;
  text-align: center;
}

@media (max-width: 980px) {
  .hookla-woo-wrapper div.product {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hookla-woo-wrapper ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .hookla-woo-wrapper .hookla-shopbar__row {
    flex-direction: column;
    align-items: stretch;
  }

  .hookla-woo-wrapper .hookla-shopbar__right {
    justify-content: flex-start;
  }

  .hookla-woo-wrapper .hookla-shopbar .woocommerce-product-search input[type="search"] {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hookla-woo-wrapper ul.products {
    grid-template-columns: 1fr !important;
  }

  .hookla-woo-wrapper div.product form.cart {
    flex-direction: column;
    align-items: stretch;
  }

  .hookla-woo-wrapper div.product form.cart .quantity,
  .hookla-woo-wrapper div.product form.cart .quantity input.qty {
    width: 100% !important;
  }
}

@media (max-width: 980px) {
  .hookla-servicesgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hookla-servicesfoot {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .hookla-aboutstats {
    grid-template-columns: 1fr;
  }

  .hookla-servicesgrid {
    grid-template-columns: 1fr;
  }
}

body.woocommerce-checkout .woocommerce,
body.woocommerce-checkout .woocommerce-page,
body.woocommerce-checkout .hookla-woo-wrapper .woocommerce {
  color: rgba(15, 23, 42, 0.9);
}

body.woocommerce-checkout .woocommerce form.checkout,
body.woocommerce-checkout .hookla-woo-wrapper .woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

body.woocommerce-checkout .woocommerce #customer_details,
body.woocommerce-checkout .woocommerce #order_review,
body.woocommerce-checkout .hookla-woo-wrapper .woocommerce-checkout #customer_details,
body.woocommerce-checkout .hookla-woo-wrapper .woocommerce-checkout #order_review {
  border-radius: 20px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.08);
  padding: 18px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

body.woocommerce-checkout .woocommerce #customer_details .col2-set,
body.woocommerce-checkout .woocommerce #customer_details .col-1,
body.woocommerce-checkout .woocommerce #customer_details .col-2 {
  float: none;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

body.woocommerce-checkout .woocommerce #customer_details .col2-set {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

body.woocommerce-checkout .woocommerce #order_review_heading,
body.woocommerce-checkout .woocommerce h3 {
  margin: 0 0 12px;
}

body.woocommerce-checkout .woocommerce .woocommerce-form-coupon-toggle .woocommerce-info {
  margin-bottom: 16px;
}

body.woocommerce-checkout .woocommerce .woocommerce-form-coupon-toggle .woocommerce-info a {
  font-weight: 900;
}

body.woocommerce-checkout .woocommerce .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .woocommerce .woocommerce-shipping-fields__field-wrapper,
body.woocommerce-checkout .woocommerce .woocommerce-additional-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 981px) {
  body.woocommerce-checkout .woocommerce .woocommerce-billing-fields__field-wrapper,
  body.woocommerce-checkout .woocommerce .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 14px 16px;
  }

  body.woocommerce-checkout .woocommerce .woocommerce-billing-fields__field-wrapper .form-row-wide,
  body.woocommerce-checkout .woocommerce .woocommerce-shipping-fields__field-wrapper .form-row-wide,
  body.woocommerce-checkout .woocommerce .woocommerce-billing-fields__field-wrapper .address-field,
  body.woocommerce-checkout .woocommerce .woocommerce-shipping-fields__field-wrapper .address-field {
    grid-column: 1 / -1;
  }
}

body.woocommerce-checkout .woocommerce .form-row {
  margin: 0 0 12px;
  float: none;
  width: 100%;
}

body.woocommerce-checkout .woocommerce .woocommerce-billing-fields__field-wrapper .form-row,
body.woocommerce-checkout .woocommerce .woocommerce-shipping-fields__field-wrapper .form-row,
body.woocommerce-checkout .woocommerce .woocommerce-additional-fields__field-wrapper .form-row {
  margin: 0;
}

body.woocommerce-checkout .woocommerce .form-row-first,
body.woocommerce-checkout .woocommerce .form-row-last,
body.woocommerce-checkout .woocommerce .form-row-wide {
  width: 100%;
}

body.woocommerce-checkout .woocommerce .form-row label {
  display: block;
  margin: 0 0 6px;
  font-weight: 900;
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.85);
}

body.woocommerce-checkout .woocommerce .form-row label .required {
  color: rgba(217, 164, 65, 1);
}

body.woocommerce-checkout .woocommerce input.input-text,
body.woocommerce-checkout .woocommerce textarea,
body.woocommerce-checkout .woocommerce select,
body.woocommerce-checkout .woocommerce .select2-container .select2-selection--single {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 14px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.96);
}

body.woocommerce-checkout .woocommerce input.input-text,
body.woocommerce-checkout .woocommerce textarea,
body.woocommerce-checkout .woocommerce select {
  min-height: 48px;
  padding: 10px 12px;
}

body.woocommerce-checkout .woocommerce textarea {
  min-height: 120px;
  resize: vertical;
}

body.woocommerce-checkout .woocommerce .woocommerce-input-wrapper {
  display: block;
  width: 100%;
}

body.woocommerce-checkout .woocommerce .form-row .input-checkbox,
body.woocommerce-checkout .woocommerce .form-row input[type="checkbox"] {
  width: auto;
  max-width: none;
}

body.woocommerce-checkout .woocommerce input.input-text:focus,
body.woocommerce-checkout .woocommerce textarea:focus,
body.woocommerce-checkout .woocommerce select:focus,
body.woocommerce-checkout .woocommerce .select2-container--focus .select2-selection--single {
  border-color: rgba(217, 164, 65, 0.75);
  box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.2);
}

body.woocommerce-checkout .woocommerce .select2-container {
  width: 100% !important;
}

body.woocommerce-checkout .woocommerce .select2-container .select2-selection--single {
  height: 48px;
}

body.woocommerce-checkout .woocommerce .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 46px;
  padding-left: 12px;
  padding-right: 34px;
}

body.woocommerce-checkout .woocommerce .select2-container .select2-selection--single .select2-selection__arrow {
  height: 46px;
  right: 8px;
}

body.woocommerce-checkout .woocommerce #order_review table.shop_table {
  border-collapse: collapse;
  width: 100%;
}

body.woocommerce-checkout .woocommerce #order_review table.shop_table th,
body.woocommerce-checkout .woocommerce #order_review table.shop_table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

body.woocommerce-checkout .woocommerce #payment {
  background: transparent;
}

body.woocommerce-checkout .woocommerce #payment ul.payment_methods {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  border-top: 0;
  display: grid !important;
  gap: 10px;
  visibility: visible !important;
}

body.woocommerce-checkout .woocommerce #payment ul.payment_methods > li {
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
}

body.woocommerce-checkout .woocommerce #payment ul.payment_methods > li:hover {
  border-color: rgba(217, 164, 65, 0.45);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.08);
}

body.woocommerce-checkout .woocommerce #payment ul.payment_methods > li:has(input[type="radio"]:checked) {
  border-color: rgba(217, 164, 65, 0.55);
  background: rgba(255, 255, 255, 0.98);
}

body.woocommerce-checkout .woocommerce #payment ul.payment_methods > li > label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.9);
  cursor: pointer;
  user-select: none;
  flex: 1 1 auto;
  margin: 0;
}

body.woocommerce-checkout .woocommerce #payment ul.payment_methods > li input[type="radio"]:checked + label {
  font-weight: 900;
}

body.woocommerce-checkout .woocommerce #payment ul.payment_methods > li input[type="radio"] {
  accent-color: rgba(217, 164, 65, 1);
  appearance: auto !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-top: 3px;
  flex: 0 0 auto;
  cursor: pointer;
}

body.woocommerce-checkout .woocommerce #payment div.payment_box {
  margin-top: 10px;
  margin-left: 0;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.92);
  padding: 12px;
  flex: 1 1 100%;
}

body.woocommerce-checkout .woocommerce #payment div.payment_box p {
  margin: 0;
  line-height: 1.6;
  color: rgba(15, 23, 42, 0.78);
}

body.woocommerce-checkout .woocommerce #payment .place-order {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

body.woocommerce-checkout .woocommerce #payment #place_order {
  width: 100%;
  min-height: 52px;
}

body.woocommerce-checkout .woocommerce #payment .woocommerce-privacy-policy-text,
body.woocommerce-checkout .woocommerce #payment .validate-required {
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.74);
  line-height: 1.55;
}

body.woocommerce-checkout .woocommerce .woocommerce-error,
body.woocommerce-checkout .woocommerce .woocommerce-info,
body.woocommerce-checkout .woocommerce .woocommerce-message {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.95);
  margin-bottom: 16px;
}

@media (max-width: 980px) {
  body.woocommerce-checkout .woocommerce #customer_details,
  body.woocommerce-checkout .woocommerce #order_review {
    padding: 16px;
  }
}

@media (max-width: 640px) {
  body.woocommerce-checkout .woocommerce .woocommerce-billing-fields__field-wrapper,
  body.woocommerce-checkout .woocommerce .woocommerce-shipping-fields__field-wrapper,
  body.woocommerce-checkout .woocommerce .woocommerce-additional-fields__field-wrapper {
    grid-template-columns: 1fr;
  }

  body.woocommerce-checkout .woocommerce #customer_details,
  body.woocommerce-checkout .woocommerce #order_review {
    border-radius: 16px;
    padding: 14px;
  }

  body.woocommerce-checkout .woocommerce #payment div.payment_box {
    margin-left: 0;
  }
}

body.woocommerce-cart .woocommerce {
  color: rgba(15, 23, 42, 0.92);
}

body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-cart .cart-collaterals .cart_totals {
  border-radius: 20px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.08);
}

body.woocommerce-cart .woocommerce-cart-form {
  padding: 16px;
  margin-bottom: 18px;
}

body.woocommerce-cart .woocommerce table.shop_table {
  border: 0;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
}

body.woocommerce-cart .woocommerce table.shop_table thead th {
  border: 0;
  padding: 12px 10px;
  font-size: 0.92rem;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.86);
}

body.woocommerce-cart .woocommerce table.shop_table tbody td {
  border: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: 14px 10px;
  vertical-align: middle;
}

body.woocommerce-cart .woocommerce table.shop_table td.product-thumbnail img {
  width: 78px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

body.woocommerce-cart .woocommerce table.shop_table td.product-name a {
  color: rgba(15, 23, 42, 0.9);
  font-weight: 800;
  text-decoration: none;
}

body.woocommerce-cart .woocommerce table.shop_table td.product-name a:hover {
  color: rgba(217, 164, 65, 1);
}

body.woocommerce-cart .woocommerce table.shop_table td.product-price,
body.woocommerce-cart .woocommerce table.shop_table td.product-subtotal {
  font-weight: 800;
}

body.woocommerce-cart .woocommerce table.shop_table td.actions {
  padding-top: 16px;
}

body.woocommerce-cart .woocommerce table.shop_table td.actions .coupon {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

body.woocommerce-cart .woocommerce table.shop_table td.actions .coupon input.input-text {
  height: 46px;
  min-width: 230px;
  border-radius: 12px;
  border: 1px solid var(--hookla-border);
  padding: 0 12px;
}

body.woocommerce-cart .woocommerce table.shop_table td.actions .button,
body.woocommerce-cart .woocommerce table.shop_table td.actions button.button {
  border-radius: 999px !important;
  min-height: 44px;
  padding: 10px 16px !important;
  font-weight: 800 !important;
}

body.woocommerce-cart .woocommerce table.shop_table td.actions > .button[name="update_cart"] {
  margin-top: 10px;
}

body.woocommerce-cart .woocommerce table.shop_table .quantity .qty {
  width: 86px !important;
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid var(--hookla-border);
  text-align: center;
  font-weight: 700;
}

body.woocommerce-cart .cart-collaterals .cart_totals {
  padding: 18px;
}

body.woocommerce-cart .cart-collaterals .cart_totals h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table th,
body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table td {
  padding: 10px 0;
  border-top: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table {
  table-layout: fixed;
  width: 100%;
}

body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table th,
body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table td {
  overflow-wrap: anywhere;
}

body.woocommerce-cart .cart-collaterals .cart_totals tr.shipping td select,
body.woocommerce-cart .cart-collaterals .cart_totals tr.shipping td input,
body.woocommerce-cart .cart-collaterals .cart_totals tr.shipping td .select2-container {
  width: 100% !important;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

body.woocommerce-cart .cart-collaterals .cart_totals tr.shipping td select {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.woocommerce-cart .cart-collaterals .cart_totals tr.woocommerce-shipping-totals td {
  padding-top: 12px;
}

body.woocommerce-cart .cart-collaterals .cart_totals tr.woocommerce-shipping-totals td p {
  margin: 10px 0 0;
  color: rgba(15, 23, 42, 0.7);
  font-size: 0.92rem;
  line-height: 1.55;
}

body.woocommerce-cart .cart-collaterals .cart_totals tr.woocommerce-shipping-totals td .shipping-calculator-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  color: rgba(15, 23, 42, 0.84);
  font-weight: 850;
  font-size: 0.92rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}

body.woocommerce-cart .cart-collaterals .cart_totals tr.woocommerce-shipping-totals td .shipping-calculator-button:hover {
  border-color: rgba(217, 164, 65, 0.45);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.08);
  transform: translateY(-1px);
}

body.woocommerce-cart .cart-collaterals .cart_totals tr.woocommerce-shipping-totals td .shipping-calculator-button:active {
  transform: translateY(0);
}

body.woocommerce-cart .cart-collaterals .cart_totals tr.woocommerce-shipping-totals td form.woocommerce-shipping-calculator {
  margin-top: 12px;
}

body.woocommerce-cart .cart-collaterals .cart_totals tr.woocommerce-shipping-totals td .shipping-calculator-form {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(241, 245, 249, 0.7);
  padding: 12px;
}

body.woocommerce-cart .cart-collaterals .cart_totals tr.woocommerce-shipping-totals td .woocommerce-shipping-methods {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

body.woocommerce-cart .cart-collaterals .cart_totals tr.woocommerce-shipping-totals td .woocommerce-shipping-methods li {
  position: relative;
}

body.woocommerce-cart .cart-collaterals .cart_totals tr.woocommerce-shipping-totals td .woocommerce-shipping-methods input.shipping_method {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

body.woocommerce-cart .cart-collaterals .cart_totals tr.woocommerce-shipping-totals td .woocommerce-shipping-methods input.shipping_method + label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.06);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}

body.woocommerce-cart .cart-collaterals .cart_totals tr.woocommerce-shipping-totals td .woocommerce-shipping-methods input.shipping_method + label::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(15, 23, 42, 0.22);
  background: rgba(255, 255, 255, 1);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 1);
  flex: 0 0 auto;
}

body.woocommerce-cart .cart-collaterals .cart_totals tr.woocommerce-shipping-totals td .woocommerce-shipping-methods input.shipping_method:focus-visible + label {
  outline: 3px solid rgba(217, 164, 65, 0.35);
  outline-offset: 2px;
}

body.woocommerce-cart .cart-collaterals .cart_totals tr.woocommerce-shipping-totals td .woocommerce-shipping-methods input.shipping_method + label:hover {
  border-color: rgba(217, 164, 65, 0.4);
  box-shadow: 0 16px 42px rgba(2, 6, 23, 0.08);
  transform: translateY(-1px);
}

body.woocommerce-cart .cart-collaterals .cart_totals tr.woocommerce-shipping-totals td .woocommerce-shipping-methods input.shipping_method + label:active {
  transform: translateY(0);
}

body.woocommerce-cart .cart-collaterals .cart_totals tr.woocommerce-shipping-totals td .woocommerce-shipping-methods input.shipping_method:checked + label {
  border-color: rgba(217, 164, 65, 0.68);
  background: linear-gradient(180deg, rgba(217, 164, 65, 0.14), rgba(255, 255, 255, 0.94));
  box-shadow: 0 18px 48px rgba(217, 164, 65, 0.12);
}

body.woocommerce-cart .cart-collaterals .cart_totals tr.woocommerce-shipping-totals td .woocommerce-shipping-methods input.shipping_method:checked + label::before {
  border-color: rgba(217, 164, 65, 0.95);
  background: radial-gradient(circle at center, rgba(217, 164, 65, 0.98) 0 45%, rgba(255, 255, 255, 1) 46% 100%);
}

body.woocommerce-cart .cart-collaterals .cart_totals tr.woocommerce-shipping-totals td .woocommerce-shipping-methods label span.woocommerce-Price-amount {
  margin-left: auto;
  font-weight: 900;
  white-space: nowrap;
}

body.woocommerce-cart .cart-collaterals .cart_totals tr.woocommerce-shipping-totals td .woocommerce-shipping-methods label span.woocommerce-Price-amount bdi {
  font-variant-numeric: tabular-nums;
}

body.woocommerce-cart .cart-collaterals .cart_totals.hookla-is-loading {
  position: relative;
  overflow: hidden;
}

body.woocommerce-cart .cart-collaterals .cart_totals.hookla-is-loading::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248, 250, 252, 0.72);
  backdrop-filter: blur(2px);
  z-index: 5;
}

body.woocommerce-cart .cart-collaterals .cart_totals.hookla-is-loading::after {
  content: "Memperbarui ongkir...";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--hookla-border);
  background: rgba(255, 255, 255, 0.94);
  color: rgba(15, 23, 42, 0.9);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

body.woocommerce-cart .woocommerce form.woocommerce-shipping-calculator .hookla-field-error {
  margin-top: 6px;
  color: var(--hookla-danger);
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.35;
}

body.woocommerce-cart .woocommerce form.woocommerce-shipping-calculator .hookla-field-invalid input,
body.woocommerce-cart .woocommerce form.woocommerce-shipping-calculator .hookla-field-invalid select {
  border-color: rgba(255, 91, 91, 0.7) !important;
  box-shadow: 0 0 0 4px rgba(255, 91, 91, 0.12);
}

body.woocommerce-cart .woocommerce form.woocommerce-shipping-calculator .hookla-field-invalid .select2-container .select2-selection--single {
  border-color: rgba(255, 91, 91, 0.7) !important;
  box-shadow: 0 0 0 4px rgba(255, 91, 91, 0.12);
}

body.woocommerce-cart .cart-collaterals .cart_totals .order-total th,
body.woocommerce-cart .cart-collaterals .cart_totals .order-total td {
  font-size: 1.2rem;
  font-weight: 900;
}

body.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout {
  padding-bottom: 0;
}

body.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout a.checkout-button {
  width: 100%;
  text-align: center;
  appearance: none;
  border: 1px solid rgba(217, 164, 65, 0.35);
  background: linear-gradient(180deg, rgba(217, 164, 65, 0.98), rgba(201, 143, 40, 0.98));
  color: #141414;
  font-weight: 900;
  letter-spacing: 0.01em;
  border-radius: 999px;
  padding: 12px 16px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease, filter 0.12s ease;
  box-shadow: 0 16px 44px rgba(2, 6, 23, 0.12);
}

body.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout a.checkout-button:hover {
  border-color: rgba(217, 164, 65, 0.55);
  transform: translateY(-1px);
  filter: saturate(1.04);
  box-shadow: 0 20px 56px rgba(2, 6, 23, 0.14);
}

body.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout a.checkout-button:active {
  transform: translateY(0);
}

body.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout a.checkout-button:focus-visible {
  outline: 3px solid rgba(217, 164, 65, 0.35);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  body.woocommerce-cart .woocommerce-cart-form,
  body.woocommerce-cart .cart-collaterals .cart_totals {
    border-radius: 16px;
    padding: 14px;
  }
}

@media (max-width: 640px) {
  body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table th,
  body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table td {
    display: block;
    width: 100%;
    text-align: left;
  }

  body.woocommerce-cart .cart-collaterals .cart_totals tr.shipping td {
    padding-top: 8px;
  }

  body.woocommerce-cart .cart-collaterals .cart_totals tr.shipping td select,
  body.woocommerce-cart .cart-collaterals .cart_totals tr.shipping td .select2-container .select2-selection--single {
    min-height: 42px;
    border-radius: 10px;
  }

  body.woocommerce-cart .woocommerce table.shop_table thead {
    display: none;
  }

  body.woocommerce-cart .woocommerce table.shop_table tbody tr.cart_item {
    display: block;
    position: relative;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 16px;
    padding: 12px;
    margin: 0 0 12px;
    background: rgba(255, 255, 255, 0.96);
  }

  body.woocommerce-cart .woocommerce table.shop_table tbody tr.cart_item td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-top: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  body.woocommerce-cart .woocommerce table.shop_table tbody tr.cart_item td:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  body.woocommerce-cart .woocommerce table.shop_table tbody tr.cart_item td:before {
    content: attr(data-title);
    font-weight: 800;
    font-size: 0.88rem;
    color: rgba(15, 23, 42, 0.7);
    flex: 0 0 auto;
  }

  body.woocommerce-cart .woocommerce table.shop_table tbody tr.cart_item td.product-remove:before,
  body.woocommerce-cart .woocommerce table.shop_table tbody tr.cart_item td.product-thumbnail:before,
  body.woocommerce-cart .woocommerce table.shop_table tbody tr.cart_item td.product-name:before {
    content: "";
  }

  body.woocommerce-cart .woocommerce table.shop_table tbody tr.cart_item td.product-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  body.woocommerce-cart .woocommerce table.shop_table tbody tr.cart_item td.product-remove a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.98);
    color: rgba(15, 23, 42, 0.8);
    text-decoration: none;
  }

  body.woocommerce-cart .woocommerce table.shop_table tbody tr.cart_item td.product-remove a:hover {
    border-color: rgba(217, 164, 65, 0.55);
    color: rgba(217, 164, 65, 1);
  }

  body.woocommerce-cart .woocommerce table.shop_table tbody tr.cart_item td.product-thumbnail {
    justify-content: flex-start;
    gap: 12px;
    padding-top: 0;
    padding-right: 36px;
  }

  body.woocommerce-cart .woocommerce table.shop_table tbody tr.cart_item td.product-thumbnail img {
    width: 64px;
  }

  body.woocommerce-cart .woocommerce table.shop_table tbody tr.cart_item td.product-name {
    justify-content: flex-start;
    align-items: flex-start;
  }

  body.woocommerce-cart .woocommerce table.shop_table tbody tr.cart_item td.product-name a {
    display: inline-block;
    line-height: 1.35;
  }

  body.woocommerce-cart .woocommerce table.shop_table tbody tr.cart_item td.product-quantity {
    align-items: center;
  }

  body.woocommerce-cart .woocommerce table.shop_table tbody tr.cart_item td.product-quantity .quantity {
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }

  body.woocommerce-cart .woocommerce table.shop_table tbody tr.cart_item td.product-quantity .qty {
    width: 110px !important;
  }

  body.woocommerce-cart .woocommerce table.shop_table td.actions .coupon input.input-text {
    width: 100%;
    min-width: 0;
  }

  body.woocommerce-cart .woocommerce table.shop_table td.actions .coupon .button {
    width: 100%;
  }

  body.woocommerce-cart .woocommerce table.shop_table td.actions button[name="update_cart"],
  body.woocommerce-cart .woocommerce table.shop_table td.actions input[name="update_cart"] {
    width: 100%;
  }
}
