:root {
  --ink: #121212;
  --muted: #686868;
  --line: #e7e7e7;
  --soft: #f7f7f7;
  --page: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: #fff;
  font-family: Assistant, Arial, Helvetica, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: rgba(18, 18, 18, 0.78);
  background: #fff;
  font-size: 0.94rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 0.24em;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 0.15s ease;
}

.skip-link:focus {
  transform: none;
}

.shop-note {
  padding: 0.45rem 1rem;
  color: #fff;
  background: var(--ink);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-align: center;
}

.shop-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 6.4rem;
  max-width: var(--page);
  margin: 0 auto;
  padding: 1.2rem 3.2rem;
  border-bottom: 1px solid var(--line);
}

.shop-logo {
  width: 170px;
}

.shop-logo img {
  width: 170px;
  height: auto;
}

.shop-nav {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  justify-content: flex-end;
}

.shop-nav a {
  color: var(--ink);
  font-size: 0.86rem;
  text-decoration: none;
}

.shop-nav a:hover,
.shop-nav a[aria-current="page"] {
  text-decoration: underline;
}

.shop-nav .nav-enquire {
  padding: 0.62rem 0.9rem;
  border: 1px solid var(--ink);
  text-decoration: none;
}

.shop-nav .nav-enquire:hover,
.shop-nav .nav-enquire[aria-current="page"] {
  color: #fff;
  background: var(--ink);
  text-decoration: none;
}

.shop-main {
  max-width: var(--page);
  min-height: 62vh;
  margin: 0 auto;
  padding: 4rem 3.2rem 7rem;
}

.shop-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  padding: 0.5rem 0 4rem;
  border-bottom: 1px solid var(--line);
}

.shop-intro h1,
.order-intro h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.shop-intro > p {
  max-width: 35rem;
  margin: 0 0 0.3rem auto;
  font-size: clamp(1rem, 1.5vw, 1.28rem);
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4rem 1.7rem;
  padding: 4rem 0 0;
}

.product-card-link {
  display: block;
  color: var(--ink);
  text-decoration: none;
}

.product-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.965 / 1;
  margin-bottom: 1.25rem;
  background: #fff;
}

.product-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.28s ease, transform 0.45s ease;
}

.product-card-secondary {
  opacity: 0;
}

.product-card-link:hover .product-card-primary:has(+ .product-card-secondary) {
  opacity: 0;
}

.product-card-link:hover .product-card-secondary {
  opacity: 1;
}

.product-card-link:hover .product-card-media img {
  transform: scale(1.018);
}

.product-card h2 {
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.3;
}

.product-card p {
  margin: 0;
  font-size: 0.96rem;
}

.breadcrumbs {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 2.4rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}

.product-main-image {
  aspect-ratio: 0.965 / 1;
  background: #fff;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.gallery-thumb {
  overflow: hidden;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid transparent;
  background: #fff;
}

.gallery-thumb.is-active {
  border-color: var(--ink);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details {
  position: sticky;
  top: 2rem;
  padding-top: 1rem;
}

.product-details h1 {
  max-width: 15ch;
  margin: 0 0 1.1rem;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 450;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.product-price {
  margin: 0 0 2rem;
  font-size: 1.04rem;
}

.product-description {
  margin: 0 0 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  white-space: normal;
}

.product-enquiry-start {
  display: grid;
  gap: 1.2rem;
}

.product-field,
.order-form label {
  display: grid;
  gap: 0.5rem;
}

.product-field > span,
.order-form label > span,
.product-option span {
  color: var(--ink);
  font-size: 0.78rem;
}

.product-option {
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

input,
select,
textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid #9b9b9b;
  border-radius: 0;
  background: #fff;
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

.primary-button {
  width: 100%;
  min-height: 3.4rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--ink);
  color: #fff;
  background: var(--ink);
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.15s ease, background 0.15s ease;
}

.primary-button:hover {
  color: var(--ink);
  background: #fff;
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.product-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.more-products {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 7rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.more-products h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
}

.order-page {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(24rem, 1.15fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: start;
}

.order-intro {
  position: sticky;
  top: 2rem;
}

.order-intro h1 {
  margin-bottom: 2rem;
}

.order-intro > p:not(.eyebrow) {
  max-width: 32rem;
  font-size: 1.05rem;
}

.order-form-wrap {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  background: var(--soft);
}

.order-form {
  display: grid;
  gap: 1.35rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.order-form small {
  color: var(--muted);
  font-size: inherit;
  font-weight: 400;
}

.honey {
  position: absolute;
  left: -10000px;
}

.form-success,
.form-failure {
  display: none;
  padding: 1rem;
  border: 1px solid var(--ink);
  background: #fff;
}

.shop-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: var(--page);
  margin: 0 auto;
  padding: 4.5rem 3.2rem;
  border-top: 1px solid var(--line);
}

.shop-footer h2 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.4vw, 2.3rem);
  font-weight: 450;
  letter-spacing: -0.035em;
}

.shop-footer p {
  max-width: 32rem;
}

.footer-meta {
  text-align: right;
}

@media (max-width: 980px) {
  .shop-header,
  .shop-main,
  .shop-footer {
    padding-right: 2rem;
    padding-left: 2rem;
  }

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

  .product-layout {
    gap: 3rem;
  }
}

@media (max-width: 720px) {
  .shop-note {
    font-size: 0.6rem;
  }

  .shop-header {
    grid-template-columns: 1fr;
    gap: 1rem;
    min-height: 0;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }

  .shop-logo,
  .shop-logo img {
    width: 132px;
  }

  .shop-nav {
    gap: 0.9rem 1.25rem;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .shop-nav a {
    flex: 0 0 auto;
  }

  .shop-main {
    padding-top: 2.5rem;
    padding-right: 1.25rem;
    padding-bottom: 5rem;
    padding-left: 1.25rem;
  }

  .shop-intro,
  .product-layout,
  .order-page,
  .shop-footer {
    grid-template-columns: 1fr;
  }

  .shop-intro {
    gap: 1.5rem;
    padding-bottom: 2.5rem;
  }

  .shop-intro > p {
    margin-left: 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem 1rem;
    padding-top: 2.5rem;
  }

  .product-card-media {
    margin-bottom: 0.9rem;
  }

  .product-details,
  .order-intro {
    position: static;
  }

  .product-details {
    padding-top: 0;
  }

  .order-page {
    gap: 2.5rem;
  }

  .order-form-wrap {
    padding: 1.25rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .shop-footer {
    padding: 3.5rem 1.25rem;
  }

  .footer-meta {
    text-align: left;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Arcade skate-game tool objects */
.tool-photo {
  background: transparent;
  border: 0;
  filter:
    saturate(1.14)
    contrast(1.1)
    drop-shadow(9px 11px 0 rgba(0, 0, 0, 0.86))
    drop-shadow(-3px -2px 0 rgba(255, 111, 31, 0.72));
  transform-origin: center;
  will-change: transform, filter;
}

.tool-photo::before,
.tool-photo::after {
  display: none;
}

.tool-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.tool-photo.tool-hammer {
  width: 340px;
  height: 272px;
}

.tool-photo.tool-spanner {
  width: 380px;
  height: 253px;
}

.tool-photo.tool-bolt {
  width: 230px;
  height: 230px;
}

.tool-photo.tool-screwdriver {
  width: 270px;
  height: 270px;
}

.tool-photo.tool-tape {
  width: 240px;
  height: 240px;
}

@media (max-width: 980px) {
  .tool-photo.tool-hammer,
  .tool-photo.tool-spanner {
    scale: 0.82;
  }

  .tool-photo.tool-bolt,
  .tool-photo.tool-screwdriver,
  .tool-photo.tool-tape {
    scale: 0.78;
  }
}

@media (max-width: 720px) {
  .tool-photo.tool-spanner,
  .tool-photo.tool-screwdriver {
    display: none;
  }

  .tool-photo.tool-hammer {
    scale: 0.62;
  }

  .tool-photo.tool-bolt,
  .tool-photo.tool-tape {
    scale: 0.64;
  }
}

/* Trade Arts website integration */
:root {
  --brand-orange: #ff6f1f;
  --site-grey: #efefef;
}

html,
body {
  background: var(--site-grey);
}

body {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: -0.01em;
}

/* The shop uses the exact Webflow header and footer from the main website. */
.navbar5_component,
.footer3_component {
  font-family: inherit;
}

.navbar5_component {
  position: sticky;
  top: 0;
  z-index: 50;
}

/* Match the navigation refinements used throughout the main Trade Arts site. */
.nav_dropdown-list .is-menu-item {
  color: #111 !important;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  border-radius: 8px;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav_dropdown-list .is-menu-item:hover,
.nav_dropdown-list .is-menu-item:focus-visible {
  color: #111 !important;
  background-color: rgba(255, 90, 0, 0.14);
  transform: translateX(4px);
}

.navbar5_menu-button > .hamburger-menu-hm10 {
  pointer-events: none;
}

.navbar5_menu-button > .hamburger-menu-hm10 .top-bar-hm10,
.navbar5_menu-button > .hamburger-menu-hm10 .bottom-bar-hm10 {
  transition: transform 300ms ease;
}

.navbar5_menu-button.w--open > .hamburger-menu-hm10 .top-bar-hm10 {
  transform: translate3d(0, 7px, 0) rotate(135deg) !important;
}

.navbar5_menu-button.w--open > .hamburger-menu-hm10 .bottom-bar-hm10 {
  transform: translate3d(0, -7px, 0) rotate(45deg) !important;
}

@media screen and (max-width: 767px) {
  .mobile-work-dropdown {
    width: 100% !important;
    margin: 0 !important;
  }

  .mobile-work-dropdown > .is-work-toggle {
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    height: auto !important;
    min-height: 3.75rem !important;
    margin: 0 !important;
    padding: 0 3rem 0 0 !important;
    overflow: visible !important;
    text-align: left !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .mobile-work-dropdown > .is-work-toggle > div:not(.nav_dropdown-caret) {
    line-height: 1.1 !important;
  }

  .mobile-work-dropdown > .is-work-toggle:focus {
    outline: none;
  }

  .mobile-work-dropdown > .is-work-toggle:focus-visible {
    outline: 2px solid #161514;
    outline-offset: 4px;
  }

  .mobile-work-dropdown .nav_dropdown-caret {
    position: absolute !important;
    top: 50% !important;
    right: 0.25rem !important;
    bottom: auto !important;
    left: auto !important;
    width: 1.75rem !important;
    height: 1.75rem !important;
    margin: 0 !important;
    font-size: 1.75rem !important;
    line-height: 1.75rem !important;
    transform: translateY(-50%) rotate(0deg) !important;
    transform-origin: center !important;
    transition: transform 200ms ease !important;
    pointer-events: none;
  }

  .mobile-work-dropdown > .is-work-toggle.w--open .nav_dropdown-caret {
    transform: translateY(-50%) rotate(180deg) !important;
  }

  .mobile-work-dropdown > .nav_dropdown-list {
    box-sizing: border-box !important;
    position: static !important;
    width: 100% !important;
    margin: 0.5rem 0 0 !important;
    padding: 0.75rem 1rem 0.9rem !important;
    flex-direction: column !important;
    gap: 0.15rem !important;
    overflow: hidden !important;
    border-radius: 0.75rem !important;
  }

  .mobile-work-dropdown > .nav_dropdown-list.w--open {
    display: flex !important;
  }

  .mobile-work-dropdown > .nav_dropdown-list > .is-menu-item {
    box-sizing: border-box !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0.35rem 0 !important;
    font-size: clamp(1.75rem, 8vw, 2.1rem) !important;
    line-height: 1.05 !important;
    white-space: normal !important;
    border-radius: 0 !important;
  }
}

.footer3_component {
  color: #111;
}

.shop-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 0;
  max-width: none;
  margin: 1.5rem;
  padding: 0.7rem 1.25rem;
  color: #111;
  background: var(--brand-orange);
  border: 0;
  border-radius: 0.55rem;
}

.shop-logo {
  display: flex;
  width: auto;
  gap: 0.65rem;
  align-items: center;
  color: #111;
  text-decoration: none;
}

.shop-logo-mark {
  font-size: 1.85rem;
  font-weight: 950;
  letter-spacing: -0.14em;
  line-height: 0.85;
}

.shop-logo-name {
  padding-left: 0.65rem;
  border-left: 1px solid rgba(0, 0, 0, 0.45);
  font-size: 0.93rem;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 0.82;
}

.shop-nav {
  gap: 1.65rem;
}

.shop-nav a {
  color: #111;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.shop-nav a:hover,
.shop-nav a[aria-current="page"],
.shop-nav .is-current {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35em;
}

.shop-mobile-menu {
  display: none;
}

.shop-main {
  max-width: 1500px;
  padding-top: 5.25rem;
}

.shop-intro {
  align-items: start;
  border-color: #cfcfcf;
}

.shop-intro h1,
.order-intro h1,
.product-details h1 {
  font-weight: 700;
}

.shop-intro h1 {
  font-size: clamp(3.5rem, 7.5vw, 7rem);
}

.eyebrow {
  color: #111;
}

.product-card-media {
  padding: 0.5rem;
  background: #fff;
  border-radius: 0.6rem;
}

.product-card h2,
.product-card p {
  font-weight: 700;
}

.primary-button,
.order-form button[type="submit"] {
  color: #111;
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  font-weight: 700;
  text-transform: uppercase;
}

.primary-button:hover,
.order-form button[type="submit"]:hover {
  color: #111;
  background: #ff7d38;
  border-color: #ff7d38;
}

.shop-footer {
  grid-template-columns: minmax(0, 1.4fr) minmax(22rem, 0.8fr);
  gap: 4rem;
  max-width: 1500px;
  padding-top: 5rem;
  color: #111;
  background: transparent;
  border-top: 1px solid #cfcfcf;
}

.shop-footer-lead h2 {
  max-width: 15ch;
  margin: 1.4rem 0 2rem;
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
  line-height: 0.98;
}

.footer-label {
  margin: 0 0 1rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.footer-email {
  display: inline-block;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  font-weight: 700;
}

.footer-shop-note {
  max-width: 34rem;
  margin: 2rem 0 0;
}

.shop-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.shop-footer-links a {
  display: block;
  margin-bottom: 0.48rem;
  text-decoration: none;
}

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

.footer-credit {
  grid-column: 1 / -1;
  margin: 1.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid #cfcfcf;
  font-size: 0.76rem;
}

@media (max-width: 860px) {
  .shop-header {
    grid-template-columns: 1fr auto;
    margin: 0.7rem;
    padding: 0.75rem 0.9rem;
  }

  .shop-nav {
    display: none;
  }

  .shop-mobile-menu {
    position: relative;
    display: block;
  }

  .shop-mobile-menu summary {
    display: grid;
    width: 2.6rem;
    height: 2.6rem;
    padding: 0.72rem 0.45rem;
    align-content: space-around;
    cursor: pointer;
    list-style: none;
  }

  .shop-mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .shop-mobile-menu summary span {
    display: block;
    height: 2px;
    background: #111;
  }

  .shop-mobile-menu nav {
    position: absolute;
    top: calc(100% + 0.85rem);
    right: -0.9rem;
    display: grid;
    width: min(18rem, calc(100vw - 1.4rem));
    padding: 1.2rem;
    background: var(--brand-orange);
    border-radius: 0 0 0.55rem 0.55rem;
    box-shadow: 0 14px 25px rgba(0, 0, 0, 0.15);
  }

  .shop-mobile-menu nav a {
    padding: 0.65rem 0;
    color: #111;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
  }

  .shop-footer {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 720px) {
  .shop-main {
    padding-top: 3.4rem;
  }

  .shop-intro h1 {
    font-size: clamp(3.8rem, 19vw, 5.5rem);
  }

  .shop-footer {
    padding-top: 3.5rem;
  }
}

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

/* Kinetic Trade Arts shop */
.shop-main--experience {
  max-width: none;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.shop-experience {
  position: relative;
  min-height: min(780px, calc(100svh - 96px));
  margin: 0 1.5rem 1.5rem;
  overflow: hidden;
  color: #fff;
  background: #151515;
  border-radius: 0.6rem;
  isolation: isolate;
}

.shop-experience-backdrop,
.shop-experience-grid,
.tool-stage {
  position: absolute;
  inset: 0;
}

.shop-experience-backdrop {
  z-index: -3;
  background-image: linear-gradient(90deg, rgba(9, 9, 9, 0.78) 0%, rgba(9, 9, 9, 0.42) 56%, rgba(9, 9, 9, 0.18) 100%), url("/shop/assets/images/shop-hero-worker-painting-v1.jpg");
  background-position: center 48%;
  background-size: cover;
  filter: saturate(0.78) contrast(1.08) brightness(0.9);
  transform: scale(1.015);
}

.shop-experience-grid {
  z-index: -2;
  opacity: 0.3;
  background-image: linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 8.3333% 16.6666%;
  mix-blend-mode: overlay;
}

.shop-experience::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.4));
  pointer-events: none;
}

.shop-experience-copy {
  position: relative;
  z-index: 6;
  display: flex;
  width: min(59rem, 78%);
  min-height: min(780px, calc(100svh - 96px));
  padding: clamp(2rem, 4vw, 4.4rem);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
}

.experience-kicker {
  margin: 0 0 1.25rem;
  padding: 0.48rem 0.65rem;
  color: #111;
  background: var(--brand-orange);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.shop-experience h1 {
  display: flex;
  margin: 0;
  flex-direction: column;
  color: #fff;
  font-size: clamp(5.5rem, 13vw, 12.5rem);
  font-weight: 800;
  letter-spacing: -0.085em;
  line-height: 0.7;
  text-transform: uppercase;
}

.shop-experience h1 span:last-child {
  color: var(--brand-orange);
}

.experience-intro {
  max-width: 43rem;
  margin: clamp(2rem, 5vh, 4.5rem) 0 1.7rem;
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.24;
}

.experience-link {
  padding: 0.9rem 1rem;
  color: #111;
  background: #fff;
  border: 2px solid #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  pointer-events: auto;
  transition: color 140ms ease, background-color 140ms ease;
}

.experience-link span {
  margin-left: 1rem;
}

.experience-link:hover {
  color: #fff;
  background: #111;
}

.experience-status {
  position: absolute;
  z-index: 7;
  top: 2.25rem;
  right: 2.25rem;
  display: grid;
  width: 11.5rem;
  color: #111;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid #111;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.experience-status span {
  padding: 0.58rem 0.7rem;
  border-bottom: 1px solid #111;
}

.experience-status span:last-child {
  color: #111;
  background: var(--brand-orange);
  border-bottom: 0;
}

.tool-stage {
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
}

.tool-sprite {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  will-change: transform;
  filter: drop-shadow(0 12px 10px rgba(0, 0, 0, 0.32));
}

.tool-hammer {
  width: 180px;
  height: 172px;
}

.tool-hammer-head {
  position: absolute;
  top: 9px;
  left: 21px;
  width: 138px;
  height: 44px;
  background: #dedede;
  border: 3px solid #111;
  border-radius: 6px 2px 2px 6px;
}

.tool-hammer-head::after {
  position: absolute;
  top: 7px;
  right: -28px;
  width: 32px;
  height: 24px;
  content: "";
  background: #bdbdbd;
  border: 3px solid #111;
  clip-path: polygon(0 0, 100% 20%, 100% 80%, 0 100%);
}

.tool-hammer-handle {
  position: absolute;
  top: 43px;
  left: 77px;
  width: 30px;
  height: 123px;
  padding-top: 79px;
  color: #111;
  background: var(--brand-orange);
  border: 3px solid #111;
  border-radius: 0 0 13px 13px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-align: center;
}

.tool-spanner {
  width: 208px;
  height: 70px;
}

.tool-spanner span {
  position: absolute;
  top: 24px;
  left: 34px;
  width: 140px;
  height: 24px;
  background: #d8d8d8;
  border: 3px solid #111;
  border-radius: 10px;
}

.tool-spanner::before,
.tool-spanner::after {
  position: absolute;
  z-index: 2;
  top: 4px;
  width: 62px;
  height: 62px;
  content: "";
  background: radial-gradient(circle, transparent 0 28%, #111 29% 34%, #d8d8d8 35% 58%, #111 59% 64%, transparent 65%);
}

.tool-spanner::before {
  left: 0;
}

.tool-spanner::after {
  right: 0;
}

.tool-bolt {
  width: 72px;
  height: 196px;
}

.tool-bolt::before {
  position: absolute;
  top: 0;
  left: 4px;
  width: 64px;
  height: 45px;
  content: "";
  background: #c9c9c9;
  border: 3px solid #111;
  clip-path: polygon(23% 0, 77% 0, 100% 50%, 77% 100%, 23% 100%, 0 50%);
}

.tool-bolt span {
  position: absolute;
  top: 40px;
  left: 21px;
  width: 31px;
  height: 151px;
  background: repeating-linear-gradient(0deg, #bcbcbc 0 8px, #111 9px 11px);
  border: 3px solid #111;
  border-top: 0;
}

.tool-screwdriver {
  width: 66px;
  height: 205px;
}

.tool-driver-handle {
  position: absolute;
  top: 0;
  left: 6px;
  width: 54px;
  height: 91px;
  background: var(--brand-orange);
  border: 3px solid #111;
  border-radius: 24px 24px 13px 13px;
  box-shadow: inset 9px 0 0 rgba(255, 255, 255, 0.17), inset -9px 0 0 rgba(0, 0, 0, 0.14);
}

.tool-driver-shaft {
  position: absolute;
  top: 87px;
  left: 27px;
  width: 13px;
  height: 113px;
  background: #d4d4d4;
  border: 3px solid #111;
  clip-path: polygon(20% 0, 80% 0, 80% 88%, 100% 100%, 0 100%, 20% 88%);
}

.tool-tape {
  width: 116px;
  height: 103px;
  color: #111;
  background: var(--brand-orange);
  border: 4px solid #111;
  border-radius: 18px 27px 18px 18px;
}

.tool-tape::before {
  position: absolute;
  right: 13px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  content: "";
  background: #111;
  border: 7px solid #e5e5e5;
  border-radius: 50%;
}

.tool-tape::after {
  position: absolute;
  bottom: 20px;
  left: -34px;
  width: 38px;
  height: 19px;
  content: "";
  background: #eee;
  border: 3px solid #111;
}

.tool-tape span {
  position: absolute;
  top: 17px;
  left: 15px;
  font-size: 1.35rem;
  font-weight: 900;
}

.tool-nut {
  width: 105px;
  height: 91px;
  background: radial-gradient(circle, transparent 0 21%, #111 22% 27%, #cfcfcf 28% 100%);
  border: 4px solid #111;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.shop-marquee {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  color: #111;
  background: var(--brand-orange);
  border-top: 2px solid #111;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 2.75rem;
  white-space: nowrap;
}

.shop-marquee div {
  width: max-content;
  animation: shop-marquee 24s linear infinite;
}

@keyframes shop-marquee {
  to { transform: translateX(-50%); }
}

.shop-catalogue {
  padding: clamp(4rem, 7vw, 7rem) 3.2rem 7rem;
  background: var(--site-grey);
  scroll-margin-top: 1rem;
}

.catalogue-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: clamp(2.6rem, 5vw, 5rem);
  gap: 3rem;
  align-items: end;
  border-bottom: 1px solid #c8c8c8;
}

.catalogue-heading p {
  max-width: 34rem;
  margin: 0;
  font-weight: 650;
}

.catalogue-heading > p {
  justify-self: end;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.catalogue-heading > div > p {
  margin-bottom: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
}

.catalogue-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 750;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.shop-catalogue .product-grid {
  max-width: 1400px;
  margin: 0 auto;
}

.shop-catalogue .product-card-link {
  position: relative;
}

.shop-catalogue .product-card-link::after {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.35rem 0.5rem;
  color: #111;
  background: var(--brand-orange);
  content: "EMAIL TO BUY  →";
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.035em;
}

.shop-catalogue .product-card-media {
  border: 2px solid transparent;
  transition: border-color 150ms ease, transform 200ms ease;
}

.shop-catalogue .product-card-link:hover .product-card-media {
  border-color: #111;
  transform: translateY(-5px);
}

@media (max-width: 980px) {
  .shop-experience,
  .shop-experience-copy {
    min-height: 680px;
  }

  .shop-experience-copy {
    width: 88%;
  }

  .shop-experience h1 {
    font-size: clamp(5rem, 16vw, 9rem);
  }

  .tool-sprite {
    opacity: 0.9;
  }

  .tool-hammer,
  .tool-spanner {
    scale: 0.82;
  }

  .tool-bolt,
  .tool-screwdriver {
    scale: 0.85;
  }
}

@media (max-width: 720px) {
  .shop-experience {
    min-height: 700px;
    margin: 0 0.7rem 0.7rem;
  }

  .shop-experience-copy {
    width: 100%;
    min-height: 700px;
    padding: 1.4rem 1.2rem 5.4rem;
  }

  .shop-experience h1 {
    font-size: clamp(4.4rem, 26vw, 7.2rem);
  }

  .experience-intro {
    max-width: 24rem;
    font-size: 1rem;
  }

  .experience-status {
    top: 1rem;
    right: 1rem;
    width: 8.6rem;
  }

  .experience-status span:nth-child(-n + 2) {
    display: none;
  }

  .tool-spanner,
  .tool-screwdriver,
  .tool-nut {
    display: none;
  }

  .tool-hammer {
    scale: 0.66;
  }

  .tool-bolt,
  .tool-tape {
    scale: 0.72;
  }

  .shop-catalogue {
    padding: 4rem 1.2rem 5rem;
  }

  .catalogue-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .catalogue-heading > p {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-marquee div {
    animation-play-state: paused;
  }

  .shop-catalogue .product-card-media {
    transition: none;
  }
}

.tool-stage .tool-photo {
  background: transparent;
  border: 0;
  border-radius: 0;
  clip-path: none;
  box-shadow: none;
}

.tool-stage .tool-photo::before,
.tool-stage .tool-photo::after {
  display: none;
  content: none;
}

/* Idle masonry logo */
.idle-brick-builder {
  position: fixed;
  z-index: 2147483000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.96), rgba(6, 6, 6, 0.88)),
    url("/shop/assets/images/shop-hero-worker-painting-v1.jpg") center / cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms ease, visibility 0s linear 280ms;
  pointer-events: none;
}

.idle-brick-builder.is-active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
  pointer-events: auto;
}

.idle-brick-builder__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 54px 28px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

.idle-brick-builder__site {
  position: relative;
  width: min(84vw, 1060px);
  padding: 2rem 0;
}

.idle-brick-builder__eyebrow,
.idle-brick-builder__return {
  margin: 0;
  font-size: clamp(0.62rem, 0.85vw, 0.78rem);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.idle-brick-builder__eyebrow {
  display: inline-block;
  margin-bottom: clamp(2rem, 6vh, 4.5rem);
  padding: 0.55rem 0.7rem;
  color: #111;
  background: var(--brand-orange);
}

.idle-brick-builder__return {
  margin-top: clamp(2.2rem, 7vh, 5rem);
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

.idle-brick-builder__logo {
  position: relative;
  width: 100%;
  aspect-ratio: 980 / 152;
  filter: drop-shadow(18px 24px 16px rgba(0, 0, 0, 0.68));
}

.idle-brick-builder__pieces,
.idle-brick-builder__piece {
  position: absolute;
  inset: 0;
}

.idle-brick-builder__piece {
  overflow: hidden;
  opacity: 0;
  transform: translate3d(var(--brick-drift), 72px, 0) rotate(var(--brick-turn)) scale(0.88);
  transform-origin: 50% 100%;
  will-change: transform, opacity;
}

.idle-brick-builder__piece img {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.idle-brick-builder.is-building .idle-brick-builder__piece {
  animation: idle-brick-lay 520ms cubic-bezier(0.18, 0.78, 0.2, 1) forwards;
  animation-delay: var(--brick-delay);
}

.idle-brick-builder__trowel {
  position: absolute;
  z-index: 4;
  top: 52%;
  left: 0;
  width: 86px;
  height: 42px;
  opacity: 0;
  transform: translate3d(-80px, 40px, 0) rotate(-13deg);
}

.idle-brick-builder__trowel::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 23px;
  content: "";
  background: linear-gradient(145deg, #f3eee4, #716d67 72%);
  clip-path: polygon(0 100%, 100% 50%, 0 0);
  filter: drop-shadow(4px 5px 0 rgba(0, 0, 0, 0.75));
}

.idle-brick-builder__trowel::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 13px;
  border: 3px solid #111;
  border-radius: 999px;
  content: "";
  background: var(--brand-orange);
  transform: rotate(-18deg);
}

.idle-brick-builder.is-building .idle-brick-builder__trowel {
  animation: idle-trowel-sweep 4.8s ease-in-out 120ms forwards;
}

@keyframes idle-brick-lay {
  0% {
    opacity: 0;
    transform: translate3d(var(--brick-drift), 72px, 0) rotate(var(--brick-turn)) scale(0.88);
  }

  72% {
    opacity: 1;
    transform: translate3d(0, -4px, 0) rotate(0) scale(1.015);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
  }
}

@keyframes idle-trowel-sweep {
  0% {
    opacity: 0;
    transform: translate3d(-80px, 55px, 0) rotate(-13deg);
  }

  8%,
  88% {
    opacity: 1;
  }

  24% {
    transform: translate3d(74vw, 55px, 0) rotate(-5deg);
  }

  31% {
    transform: translate3d(74vw, 12px, 0) rotate(8deg);
  }

  51% {
    transform: translate3d(10vw, 12px, 0) rotate(-8deg);
  }

  59% {
    transform: translate3d(10vw, -34px, 0) rotate(7deg);
  }

  82% {
    transform: translate3d(71vw, -34px, 0) rotate(-5deg);
  }

  100% {
    opacity: 0;
    transform: translate3d(78vw, -60px, 0) rotate(8deg);
  }
}

@media (max-width: 720px) {
  .idle-brick-builder__site {
    width: 91vw;
  }

  .idle-brick-builder__eyebrow {
    margin-bottom: 2.2rem;
  }

  .idle-brick-builder__return {
    margin-top: 2.5rem;
    text-align: left;
  }

  .idle-brick-builder__trowel {
    scale: 0.72;
  }
}

@media (prefers-reduced-motion: reduce) {
  .idle-brick-builder,
  .idle-brick-builder__piece,
  .idle-brick-builder__trowel {
    transition: none;
    animation: none !important;
  }

  .idle-brick-builder.is-active .idle-brick-builder__piece {
    opacity: 1;
    transform: none;
  }

  .idle-brick-builder__trowel {
    display: none;
  }
}
