html {
  scroll-behavior: smooth;
}

:root {
  --hr-bg: #070a08;
  --hr-text: rgba(250, 250, 249, 0.96);
  --hr-muted: rgba(250, 250, 249, 0.78);
  --hr-surface: #0f1510;
  --hr-surface-strong: #121815;
  --hr-surface-2: #0c110d;
  --hr-border: rgba(255, 255, 255, 0.10);
  --hr-border-strong: rgba(255, 255, 255, 0.14);
  --hr-border-soft: rgba(255, 255, 255, 0.08);

  --hr-leaf-900: #17351b;
  --hr-leaf-800: #1f4c25;
  --hr-leaf-700: #25612d;
  --hr-leaf-600: #2f7e38;
  --hr-leaf-500: #429e4c;

  --hr-clay-900: #342115;
  --hr-clay-800: #4f321f;
  --hr-clay-700: #6f4626;
  --hr-clay-600: #8f5f30;
  --hr-clay-500: #b07d3e;

  --hr-shadow-soft: 0 24px 70px -48px rgba(0, 0, 0, 0.90), 0 18px 55px -45px rgba(47, 126, 56, 0.24);
  --hr-ring-focus: 0 0 0 4px rgba(66, 158, 76, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  --hr-ring-focus-warm: 0 0 0 4px rgba(231, 210, 180, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;

  --hr-gradient-primary: linear-gradient(90deg, #10b981, #84cc16);
  --hr-gradient-primary-hover: linear-gradient(90deg, #34d399, #a3e635);
  --hr-gradient-action: linear-gradient(90deg, #10b981, #84cc16);
  --hr-gradient-action-hover: linear-gradient(90deg, #34d399, #a3e635);
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  background-color: var(--hr-bg);
  background-image: url("/images/bimage.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: var(--hr-text);
  isolation: isolate;
  position: relative;
  touch-action: manipulation;
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: env(safe-area-inset-bottom);
}

@media (max-width: 900px) {
  body {
    background-attachment: scroll;
  }
}

header {
  padding-top: env(safe-area-inset-top);
}

main[role="main"] {
  padding-top: calc(4rem + env(safe-area-inset-top));
}

.navlink {
  color: var(--hr-muted);
  position: relative;
  text-decoration: none;
}

header .navlink,
footer .navlink {
  color: rgba(255, 255, 255, 0.88);
}

header .navlink,
footer .navlink {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.navlink:focus-visible {
  outline: none;
  box-shadow: var(--hr-ring-focus);
}

header .navlink:focus-visible,
footer .navlink:focus-visible {
  box-shadow: 0 0 0 4px rgba(66, 158, 76, 0.20), 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.hr-brand__title {
  letter-spacing: 0.06em;
}

@supports (-webkit-background-clip: text) {
  .hr-brand__title {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(231, 210, 180, 0.95), rgba(66, 158, 76, 0.92));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.hr-brand__sub {
  letter-spacing: 0.08em;
}

header .hr-brand__sub {
  color: rgba(231, 210, 180, 0.86);
}

.hr-nav-action {
  background-color: var(--hr-surface-strong);
  border: 1px solid var(--hr-border-strong);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px -32px rgba(0, 0, 0, 0.76);
}

.hr-nav-action:hover {
  background-color: #18211b;
  border-color: rgba(255, 255, 255, 0.18);
}

.hr-nav-action:active {
  transform: translateY(1px) scale(0.99);
}

.hr-nav-cta {
  box-shadow: 0 22px 48px -36px rgba(0, 0, 0, 0.78), 0 0 0 1px rgba(255, 255, 255, 0.10) inset;
}

.hr-nav-cta:hover {
  box-shadow: 0 28px 58px -42px rgba(0, 0, 0, 0.84), 0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}

.navlink:not(.hr-nav-action):not(.btn-primary):not(.hr-nav-cta) {
  border: 1px solid transparent;
}

.navlink:not(.hr-nav-action):not(.btn-primary):not(.hr-nav-cta):hover {
  background-color: var(--hr-surface-strong);
  border-color: var(--hr-border);
  color: rgba(255, 255, 255, 0.96);
}

.navlink[aria-current="page"],
.navlink.is-active {
  background-color: #18211b;
  border-color: var(--hr-border-strong);
  color: rgba(255, 255, 255, 1);
}

header .hr-nav-action[aria-current="page"],
header .hr-nav-action.is-active,
footer .hr-nav-action[aria-current="page"],
footer .hr-nav-action.is-active {
  background-color: #18211b;
  border-color: var(--hr-border-strong);
}

.navlink::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, rgba(47,126,56,0), rgba(47,126,56,0.70), rgba(143,95,48,0.70), rgba(143,95,48,0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  opacity: 0.95;
  pointer-events: none;
}

header .navlink::after,
footer .navlink::after {
  opacity: 1;
  background: linear-gradient(90deg, rgba(47, 126, 56, 0), rgba(66, 158, 76, 0.85), rgba(231, 210, 180, 0.85), rgba(176, 125, 62, 0.85), rgba(143, 95, 48, 0));
}

.navlink:active {
  transform: translateY(1px);
}

header button[aria-label="Cart"],
header #mobileMenuButton {
  transition: transform 180ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.navlink:hover::after,
.navlink[aria-current="page"]::after,
.navlink.is-active::after {
  transform: scaleX(1);
}

.lift {
  transition: transform 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.lift:hover {
  transform: translateY(-2px);
  box-shadow: var(--hr-shadow-soft);
}

.btn-primary {
  background-image: var(--hr-gradient-primary);
  background-size: 200% 100%;
  background-position: 0% 0%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, box-shadow 220ms ease, background-position 260ms ease, filter 220ms ease;
  will-change: transform;
}

.btn-primary:hover {
  background-image: var(--hr-gradient-primary-hover);
  background-position: 100% 0%;
  filter: saturate(1.05) brightness(1.03);
}

.btn-primary:active {
  transform: translateY(1px) scale(0.99);
}

button[data-add-to-cart] {
  background-image: var(--hr-gradient-action);
  background-size: 180% 100%;
  background-position: 0% 0%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, box-shadow 220ms ease, background-position 260ms ease, filter 220ms ease;
  will-change: transform;
}

.btn-ghost {
  background-color: var(--hr-surface-strong);
  border: 1px solid var(--hr-border-strong);
  color: rgba(255, 255, 255, 0.90);
  box-shadow: 0 16px 40px -34px rgba(0, 0, 0, 0.78);
  transition: transform 180ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease;
  will-change: transform;
}

.btn-ghost:hover {
  background-color: #18211b;
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.btn-ghost:active {
  transform: translateY(1px) scale(0.99);
}

.btn-ghost:focus-visible {
  outline: none;
  box-shadow: var(--hr-ring-focus);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: var(--hr-surface-strong);
  border: 1px solid var(--hr-border);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px -34px rgba(0, 0, 0, 0.78);
  transition: transform 180ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease;
  will-change: transform;
}

.btn-icon:hover {
  background-color: #18211b;
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.btn-icon:active {
  transform: translateY(1px) scale(0.99);
}

button[data-add-to-cart]:hover {
  background-image: var(--hr-gradient-action-hover);
  background-position: 100% 0%;
  filter: saturate(1.05) brightness(1.03);
}

button[data-add-to-cart]:active {
  transform: translateY(1px) scale(0.99);
}

.auth-field {
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.auth-field:focus-within {
  border-color: rgba(47, 126, 56, 0.55);
  box-shadow: var(--hr-ring-focus);
}

.auth-shell {
  background-image:
    radial-gradient(900px 420px at 15% 20%, rgba(47, 126, 56, 0.16), transparent 60%),
    radial-gradient(900px 420px at 85% 40%, rgba(176, 125, 62, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.no-scrollbar {
  scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.carousel-dot {
  height: 10px;
  width: 10px;
  border-radius: 9999px;
  background: rgba(143, 95, 48, 0.26);
  box-shadow: 0 8px 18px -14px rgba(52, 33, 21, 0.55);
  transition: width 180ms ease, background-color 180ms ease, transform 180ms ease, filter 180ms ease;
}

.carousel-dot:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.carousel-dot.is-active {
  width: 24px;
  background-color: rgba(143, 95, 48, 0.9);
  background-image: linear-gradient(90deg, rgba(47,126,56,0.95), rgba(143,95,48,0.95));
  box-shadow: 0 10px 18px -16px rgba(52, 33, 21, 0.65);
}

[data-carousel="highlights"] {
  scroll-padding: 16px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.carousel-slide {
  scroll-snap-stop: always;
}

.hr-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hr-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  border: 1px solid var(--hr-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: 0 22px 55px -48px rgba(0, 0, 0, 0.88);
}

.hr-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 260px at 20% 8%, rgba(231, 210, 180, 0.10), transparent 62%),
    radial-gradient(520px 260px at 82% 12%, rgba(66, 158, 76, 0.12), transparent 62%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0, rgba(255,255,255,0.035) 1px, rgba(0,0,0,0) 1px, rgba(0,0,0,0) 7px);
  opacity: 0.35;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hr-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 164px;
}

.hr-card__actions {
  margin-top: auto;
}

.hr-card__desc {
  min-height: 40px;
}

@media (min-width: 640px) {
  .hr-card__body {
    min-height: 176px;
  }
  .hr-card__desc {
    min-height: 44px;
  }
}

.hr-card__media {
  position: relative;
  height: 176px;
  background: #0c110d;
}

@media (min-width: 640px) {
  .hr-card__media {
    height: 196px;
  }
}

.hr-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 240px at 15% 12%, rgba(66, 158, 76, 0.24), transparent 60%),
    radial-gradient(520px 240px at 88% 14%, rgba(231, 210, 180, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(7, 10, 8, 0.82));
  pointer-events: none;
}

.hr-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
}

.hr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 21, 16, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.hr-badge--price {
  border-color: rgba(231, 210, 180, 0.20);
  background: rgba(52, 33, 21, 0.55);
}

.hr-badge--discount {
  border-color: rgba(251, 113, 133, 0.30);
  background-image: linear-gradient(90deg, rgba(251,113,133,0.30), rgba(217,70,239,0.30), rgba(59,130,246,0.22));
  background-size: 180% 100%;
  background-position: 0% 0%;
  color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px -26px rgba(217, 70, 239, 0.70);
}

.lift:hover .hr-badge--discount {
  background-position: 100% 0%;
  filter: brightness(1.03);
}

.hr-pill {
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(18, 24, 21, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hr-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 8px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(18, 24, 21, 0.55);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px -36px rgba(0, 0, 0, 0.82);
  transition: transform 180ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.hr-tab:hover {
  transform: translateY(-1px);
  background: rgba(24, 33, 27, 0.75);
  border-color: rgba(255, 255, 255, 0.16);
  filter: brightness(1.02);
}

.hr-tab.is-active {
  background: rgba(24, 33, 27, 0.92);
  border-color: rgba(66, 158, 76, 0.32);
  box-shadow: 0 22px 52px -44px rgba(0, 0, 0, 0.92), 0 0 0 1px rgba(66, 158, 76, 0.18) inset;
}

.hr-tab__icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 12px;
  background: rgba(15, 21, 16, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(231, 210, 180, 0.90);
}

.hr-tab__icon svg {
  width: 18px;
  height: 18px;
}

.hr-hidden {
  display: none;
}

.hr-cat-panel {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 200ms ease, transform 200ms ease;
  will-change: opacity, transform;
}

.hr-panel-enter {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
}

.hr-panel-leave {
  opacity: 0;
  transform: translate3d(0, -8px, 0);
}

@media (prefers-reduced-motion: reduce) {
  .navlink::after {
    transition: none;
  }
  .lift {
    transition: none;
  }
  .btn-primary,
  button[data-add-to-cart] {
    transition: none;
  }
  .carousel-dot {
    transition: none;
  }
}

:focus-visible {
  outline: 2px solid rgba(231, 210, 180, 0.70);
  outline-offset: 3px;
}

.hero-min {
  min-height: calc(100vh - 4rem);
  min-height: calc(100svh - 4rem);
}

section[id] {
  scroll-margin-top: 88px;
}

.paper-tear {
  position: relative;
}

.paper-tear::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 18px;
  background:
    radial-gradient(10px 10px at 15px 8px, transparent 8px, rgba(255, 255, 255, 0.08) 9px) 0 0/30px 18px repeat-x;
  filter: drop-shadow(0 -1px 0 rgba(0, 0, 0, 0.30));
  pointer-events: none;
}

html {
  cursor: default;
}

a,
button,
[role="button"] {
  cursor: pointer;
}

html.hr-custom-cursor,
html.hr-custom-cursor a,
html.hr-custom-cursor button,
html.hr-custom-cursor [role="button"] {
  cursor: default;
}

input,
textarea {
  cursor: text;
}

input,
textarea,
select,
button {
  transition: box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: none;
  box-shadow: var(--hr-ring-focus);
}

input[type="file"] {
  border: 1px dashed var(--hr-border-soft);
  background-color: rgba(12, 17, 13, 0.70);
}

input[type="file"]::file-selector-button {
  border: 1px solid var(--hr-border);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.90);
  padding: 10px 14px;
  margin-right: 12px;
  font-weight: 700;
}

input[type="file"]::file-selector-button:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--hr-border-strong);
}

input[type="file"]::file-selector-button:active {
  transform: translateY(1px) scale(0.99);
}

.hr-puff {
  position: fixed;
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  pointer-events: none;
  z-index: 60;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.95), rgba(231,210,180,0.75) 50%, rgba(231,210,180,0) 70%),
    radial-gradient(circle at 65% 45%, rgba(255,255,255,0.78), rgba(231,210,180,0) 70%);
  box-shadow: 0 18px 40px -28px rgba(0,0,0,0.80);
  opacity: 0.95;
  transform: translate3d(-50%, -50%, 0) scale(1);
  animation: hr-puff 650ms ease-out forwards;
}

@keyframes hr-puff {
  0% { opacity: 0.85; transform: translate3d(-50%, -50%, 0) scale(0.85); }
  70% { opacity: 0.40; transform: translate3d(-50%, calc(-50% - 14px), 0) scale(1.20); }
  100% { opacity: 0; transform: translate3d(-50%, calc(-50% - 26px), 0) scale(1.35); }
}

.hr-top-loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  z-index: 70;
  background: linear-gradient(90deg, rgba(0,0,0,0), rgba(66,158,76,0.9), rgba(231,210,180,0.9), rgba(176,125,62,0.9), rgba(0,0,0,0));
  background-size: 220% 100%;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.55));
  transition: opacity 180ms ease, transform 180ms ease;
  animation: hr-loader-sheen 1.1s linear infinite;
}

body.hr-loading .hr-top-loader {
  opacity: 1;
  transform: translateY(0);
}

.hr-full-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  z-index: 69;
  transition: opacity 180ms ease;
}

body.hr-loading .hr-full-loader {
  opacity: 1;
  pointer-events: none;
}

.hr-full-loader__panel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 17, 13, 0.88);
  box-shadow: 0 26px 70px -50px rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.hr-full-loader__dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: linear-gradient(90deg, rgba(66,158,76,1), rgba(231,210,180,1));
  box-shadow: 0 0 0 6px rgba(66, 158, 76, 0.14);
  animation: hr-loader-pulse 900ms ease-in-out infinite;
}

@keyframes hr-loader-pulse {
  0% { transform: scale(0.92); opacity: 0.75; }
  50% { transform: scale(1.18); opacity: 1; }
  100% { transform: scale(0.92); opacity: 0.75; }
}

.hr-delivery-current {
  animation: hr-delivery-blink 900ms ease-in-out infinite;
}

@keyframes hr-delivery-blink {
  0% { transform: scale(0.92); opacity: 0.72; }
  50% { transform: scale(1.18); opacity: 1; }
  100% { transform: scale(0.92); opacity: 0.72; }
}

@keyframes hr-loader-sheen {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 0%; }
}

.hr-shake {
  animation: hr-shake 420ms ease-in-out;
}

@keyframes hr-shake {
  0% { translate: 0 0; }
  18% { translate: -10px 0; }
  36% { translate: 10px 0; }
  54% { translate: -8px 0; }
  72% { translate: 8px 0; }
  100% { translate: 0 0; }
}

.hr-cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  pointer-events: none;
  z-index: 66;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background: rgba(231, 210, 180, 0.92);
  box-shadow: 0 12px 26px -18px rgba(0, 0, 0, 0.92);
  transition: opacity 160ms ease;
}

.hr-cursor-dot.is-on {
  opacity: 1;
}

.hr-cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  pointer-events: none;
  z-index: 65;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.92);
  border: 1px solid rgba(231,210,180,0.30);
  background: transparent;
  box-shadow: none;
  transition: opacity 180ms ease, width 180ms ease, height 180ms ease, transform 220ms ease, border-color 220ms ease;
  mix-blend-mode: normal;
}

.hr-cursor-dot,
.hr-cursor-ring {
  display: none !important;
}

.hr-cursor-ring.is-on {
  opacity: 0.95;
}

.hr-cursor-ring.is-action {
  width: 46px;
  height: 46px;
  border-color: rgba(66,158,76,0.52);
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.btn-action {
  background-image: var(--hr-gradient-action);
  background-size: 180% 100%;
  background-position: 0% 0%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 20px 48px -40px rgba(0, 0, 0, 0.86), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition: transform 180ms ease, box-shadow 220ms ease, background-position 260ms ease, filter 220ms ease;
  will-change: transform;
}

.btn-action:hover {
  background-image: var(--hr-gradient-action-hover);
  background-position: 100% 0%;
  filter: saturate(1.05) brightness(1.04);
  box-shadow: 0 26px 58px -48px rgba(0, 0, 0, 0.92), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.btn-action:active {
  transform: translateY(1px) scale(0.99);
}

.btn-action:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  filter: saturate(0.88);
}

.btn-primary:focus-visible,
.btn-action:focus-visible,
button[data-add-to-cart]:focus-visible {
  outline: none;
  box-shadow: var(--hr-ring-focus-warm);
}

[data-admin-shell] button {
  -webkit-tap-highlight-color: transparent;
}

[data-admin-shell] [data-admin-tab-nav="true"][aria-current="true"] {
  background-color: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 45px -38px rgba(0, 0, 0, 0.75);
}

[data-admin-shell] [data-admin-tab-nav="true"][aria-current="true"] svg {
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.55));
}

[data-admin-shell] [data-admin-panel][aria-busy="true"] {
  pointer-events: none;
}

[data-admin-shell] [data-admin-panel] {
  transform: translate3d(0, 0, 0);
  will-change: opacity;
}

[data-admin-settings-shell] {
  width: 100%;
  overflow: hidden;
}

.hr-admin-settings-tabs {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

[data-admin-settings-tab] {
  scroll-snap-align: start;
}

[data-admin-settings-tab][aria-current="true"] {
  background-color: rgba(255, 255, 255, 0.10);
}
