:root {
  --brand: #09090b;
  --brand-soft: #151518;
  --accent: #596a73;
  --accent-light: #a9b5bb;
  --accent-deep: #2f3a40;
  --ink: #1f2326;
  --muted: #687078;
  --line: #dedfe1;
  --surface: #f2f3f4;
  --card: #ffffff;
  --danger: #596a73;
  --shadow: 0 18px 45px rgba(21, 26, 29, .14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--brand);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .28);
}

.notice,
.mainbar,
.categories,
main,
.footer {
  padding-inline: clamp(18px, 4vw, 42px);
}

.notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 34px;
  font-size: 13px;
  color: #f8f8f8;
  background: #000;
  border-bottom: 1px solid rgba(169, 181, 187, .34);
}

.mainbar {
  display: grid;
  grid-template-columns: 38px minmax(260px, 340px) minmax(360px, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 126px;
}

.icon-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 999px;
  transition: background .18s ease;
}

.icon-button span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--accent-light);
  border-radius: 4px;
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}

.icon-button:hover,
.icon-button:focus-visible,
.icon-button[aria-expanded="true"] {
  background: rgba(255, 255, 255, .08);
}

.icon-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.icon-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.icon-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(340px, 100%);
}

.brand img {
  width: 330px;
  height: 96px;
  object-fit: contain;
  object-position: left center;
}

.search {
  min-width: 0;
  position: relative;
}

.search span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.search input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 0 22px;
  color: white;
  background: #1e1e22;
  font: inherit;
  outline: none;
}

.search input::placeholder {
  color: #b8bec2;
}

.quick-links,
.categories {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
}

.quick-links a {
  color: #f5f6f6;
  opacity: .95;
}

.cart {
  font-weight: 800;
  color: var(--accent-light);
}

.categories {
  min-height: 48px;
  justify-content: space-around;
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 -1px 0 var(--line);
}

.categories a {
  font-weight: 800;
}

.categories .sale {
  color: var(--danger);
}

.menu-panel {
  position: absolute;
  left: clamp(18px, 4vw, 42px);
  top: 160px;
  z-index: 20;
  width: min(340px, calc(100vw - 36px));
  padding: 10px;
  color: white;
  background: rgba(9, 9, 11, .98);
  border: 1px solid rgba(169, 181, 187, .34);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .34);
}

.menu-panel-title {
  display: block;
  padding: 4px 12px 10px;
  color: var(--accent-light);
  font-size: 12px;
  text-transform: uppercase;
}

.menu-panel nav {
  display: grid;
  gap: 4px;
}

.menu-panel a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 6px;
  color: #f5f6f6;
  font-size: 14px;
  font-weight: 800;
}

.menu-panel a:hover,
.menu-panel a:focus-visible {
  background: rgba(169, 181, 187, .16);
  color: white;
}

main {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 34px;
  padding-bottom: 90px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  height: 300px;
  min-height: 0;
}

.hero-media,
.deal-card,
.product-card,
.partners article,
.articles article,
.feature-row article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  height: 300px;
  min-height: 0;
  background: white;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .32), transparent 42%),
    linear-gradient(180deg, transparent 64%, rgba(21, 26, 29, .08));
  pointer-events: none;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-media video {
  background: #111416;
}

.hero-showreel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 48%, rgba(169, 181, 187, .42), transparent 30%),
    linear-gradient(135deg, #fafafa, #eef1f2 54%, #ffffff);
}

.hero-showreel-track {
  display: flex;
  width: 400%;
  height: 100%;
  animation: hero-showreel-pan 20s infinite cubic-bezier(.65, 0, .35, 1);
}

.hero-showreel-slide {
  position: relative;
  flex: 0 0 25%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.hero-showreel-slide::before {
  content: "";
  position: absolute;
  right: clamp(38px, 9vw, 112px);
  bottom: 28px;
  width: min(50%, 430px);
  height: 18px;
  border-radius: 999px;
  background: rgba(31, 35, 38, .16);
  filter: blur(9px);
}

.hero-product-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-product-image {
  position: absolute;
  right: clamp(32px, 8vw, 104px);
  bottom: clamp(18px, 4vw, 34px);
  z-index: 1;
  width: min(48%, 410px);
  height: 82%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 24px 28px rgba(21, 26, 29, .2));
  transform: translate3d(0, 0, 0) scale(1);
  animation: hero-product-float 6s infinite ease-in-out;
}

.hero-media .hero-product-image {
  object-fit: contain;
}

.hero-showreel-slide-picks .hero-product-image,
.hero-showreel-slide-classic .hero-product-image {
  right: clamp(86px, 14vw, 168px);
  bottom: 48px;
  width: min(32%, 260px);
  height: 50%;
}

.hero-showreel-slide-bag .hero-product-image {
  right: clamp(44px, 8vw, 96px);
  bottom: 8px;
  width: min(45%, 380px);
  height: 94%;
}

.hero-showreel-slide-stand .hero-product-image {
  right: clamp(68px, 11vw, 128px);
  bottom: 10px;
  width: min(42%, 350px);
  height: 92%;
}

.hero-showreel-slide figcaption {
  position: absolute;
  left: clamp(18px, 3vw, 38px);
  bottom: clamp(18px, 3vw, 32px);
  z-index: 1;
  max-width: min(330px, 46%);
  color: var(--ink);
  text-shadow: none;
}

.hero-showreel-slide figcaption span {
  display: block;
  margin-bottom: 7px;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-showreel-slide figcaption strong {
  display: block;
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

@keyframes hero-showreel-pan {
  0%, 20% {
    transform: translateX(0);
  }

  25%, 45% {
    transform: translateX(-25%);
  }

  50%, 70% {
    transform: translateX(-50%);
  }

  75%, 95% {
    transform: translateX(-75%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes hero-product-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -7px, 0) scale(1.015);
  }
}

.deal-card {
  min-height: 0;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  color: white;
  background:
    linear-gradient(150deg, rgba(0, 0, 0, .88), rgba(21, 21, 24, .95)),
    url("images/rockhold.jpg") center / 130% auto no-repeat;
  border-color: rgba(169, 181, 187, .42);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-light);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.deal-card h1 {
  margin: 0;
  max-width: 270px;
  font-size: clamp(21px, 1.75vw, 27px);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.deal-copy {
  margin: 0;
  color: #d8dde0;
  line-height: 1.45;
  font-size: 13px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 2px 0 4px;
}

.old-price {
  color: #a6adb1;
  text-decoration: line-through;
}

.price-row strong {
  font-size: 21px;
  color: var(--accent-light);
}

.primary-button,
.section-title a,
.newsletter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  padding: 0 18px;
  color: #fff;
  font-weight: 900;
  background: var(--accent);
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 14px 0 54px;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  text-align: center;
}

.strip a {
  padding: 11px 10px;
  border-bottom: 2px solid rgba(89, 106, 115, .38);
}

.product-section,
.partners,
.articles,
.content-band {
  margin-top: 70px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

h2 {
  margin: 0;
  font-size: clamp(24px, 2vw, 34px);
}

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

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

.product-card {
  padding: 16px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
}

.product-card h3,
.articles h3 {
  margin: 14px 0 8px;
  font-size: 15px;
  line-height: 1.35;
}

.product-card p,
.articles p,
.footer p,
.feature-row p {
  color: var(--muted);
  line-height: 1.45;
}

.product-card strong {
  margin-top: auto;
  color: #141414;
}

.product-visual,
.article-visual {
  min-height: 175px;
  border-radius: 8px;
  background: #eceff1;
  position: relative;
  overflow: hidden;
}

.product-visual img,
.article-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transition: transform .25s ease;
}

a.product-visual {
  display: block;
}

.product-card .woocommerce-Price-amount {
  color: #141414;
}

.product-card:hover .product-visual img,
.articles article:hover .article-visual img {
  transform: scale(1.04);
}

.compact {
  min-height: 275px;
}

.content-band {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 26px;
  align-items: stretch;
  padding: 34px;
  color: white;
  background: #0d0d10;
  border-block: 1px solid rgba(169, 181, 187, .34);
}

.content-band p {
  color: #d4dade;
  line-height: 1.6;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-row article {
  min-height: 150px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  background:
    linear-gradient(145deg, rgba(28, 28, 32, .95), rgba(0, 0, 0, .96)),
    radial-gradient(circle at 20% 18%, rgba(89, 106, 115, .55), transparent 35%);
  border-color: rgba(169, 181, 187, .34);
}

.feature-row strong {
  color: var(--accent-light);
  font-size: 24px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.partners article {
  min-height: 150px;
  padding: 22px;
  display: grid;
  gap: 8px;
}

.partners strong {
  font-size: 24px;
}

.partners span {
  color: var(--muted);
}

.partners a {
  color: var(--danger);
  font-weight: 800;
}

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

.articles article {
  padding: 14px;
}

.article-visual {
  min-height: 190px;
}

.content-page {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 44px;
  padding-bottom: 80px;
}

.page-panel {
  padding: clamp(24px, 4vw, 42px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.page-panel h1,
.woocommerce-products-header__title {
  margin: 0 0 24px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.page-content {
  color: var(--muted);
  line-height: 1.7;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto;
  margin: 0;
  padding: 16px;
  float: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  background: #eceff1;
}

.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button.alt {
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}

.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button.alt:hover {
  background: #000;
  color: var(--accent-light);
}

.woocommerce div.product p.price,
.woocommerce ul.products li.product .price {
  color: var(--danger);
  font-weight: 800;
}

.woocommerce div.product {
  color: var(--ink);
}

.woocommerce div.product div.images {
  margin-bottom: 34px;
}

.woocommerce div.product div.images img {
  border-radius: 8px;
  background: #eceff1;
  border: 1px solid var(--line);
}

.woocommerce div.product div.summary {
  display: grid;
  align-content: start;
  gap: 14px;
}

.woocommerce div.product .product_title {
  margin: 0;
  max-width: 680px;
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.18;
  font-weight: 800;
  color: var(--ink);
}

.woocommerce div.product div.summary p.price {
  margin: 0;
  font-size: 24px;
  color: var(--accent-deep);
}

.woocommerce div.product div.summary p.price .rockhold-price-tax {
  margin-left: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--muted);
  line-height: 1.65;
}

.woocommerce div.product .cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 8px 0 4px;
}

.woocommerce div.product form.cart div.quantity {
  float: none;
  margin: 0;
}

.woocommerce .quantity .qty {
  width: 88px;
  min-height: 46px;
  border: 1px solid rgba(89, 106, 115, .34);
  border-radius: 999px;
  padding: 0 14px;
  background: #f7f8f8;
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.woocommerce .quantity .qty:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(89, 106, 115, .12);
}

.woocommerce div.product form.cart .button {
  min-height: 46px;
  padding-inline: 22px;
  background: var(--accent-deep);
}

.woocommerce div.product form.cart .button:hover {
  background: #111416;
  color: #fff;
}

.woocommerce div.product .product_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.woocommerce div.product .product_meta a {
  color: var(--accent-deep);
  font-weight: 800;
}

.woocommerce div.product .woocommerce-tabs {
  clear: both;
  padding-top: 28px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7f8f8;
  box-shadow: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-color: var(--accent);
  background: var(--accent-deep);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #fff;
}

.woocommerce div.product .woocommerce-tabs .panel {
  margin: 0;
  padding: 24px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
  margin-bottom: 14px;
  font-size: clamp(20px, 1.6vw, 26px);
  color: var(--ink);
}

.woocommerce div.product table.shop_attributes {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.woocommerce div.product table.shop_attributes th,
.woocommerce div.product table.shop_attributes td {
  border-color: var(--line);
  padding: 12px 14px;
}

.woocommerce div.product table.shop_attributes th {
  color: var(--ink);
  font-weight: 800;
  background: #f7f8f8;
}

.footer {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 44px;
  padding-top: 52px;
  padding-bottom: 42px;
  background: #050506;
  color: white;
  border-top: 3px solid var(--accent);
}

.footer-brand {
  width: 200px;
}

.footer-brand img {
  width: 196px;
}

.footer h2 {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--accent-light);
}

.footer nav {
  display: grid;
  align-content: start;
  gap: 12px;
  font-size: 14px;
}

.newsletter {
  display: grid;
  gap: 10px;
  max-width: 310px;
}

.newsletter input {
  min-height: 40px;
  border: 1px solid rgba(169, 181, 187, .34);
  border-radius: 999px;
  padding: 0 16px;
  background: #17171a;
  color: white;
}

.newsletter button {
  width: fit-content;
}

@media (max-width: 1050px) {
  .mainbar {
    grid-template-columns: 38px 330px 1fr;
  }

  .quick-links {
    display: none;
  }

  .hero,
  .content-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .notice {
    display: none;
  }

  .mainbar {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding-block: 14px;
  }

  .brand {
    width: 310px;
  }

  .brand img {
    width: 302px;
    height: 86px;
  }

  .search {
    grid-column: 1 / -1;
  }

  .menu-panel {
    top: 156px;
  }

  .categories,
  .strip {
    overflow-x: auto;
    justify-content: flex-start;
    grid-template-columns: none;
    display: flex;
    white-space: nowrap;
  }

  .hero {
    height: auto;
    min-height: 0;
  }

  .hero-media {
    height: 235px;
    min-height: 0;
  }

  .hero-showreel-slide figcaption strong {
    font-size: 24px;
  }

  .hero-showreel-slide figcaption {
    max-width: 48%;
  }

  .hero-product-image {
    right: 10px;
    width: 46%;
    height: 74%;
  }

  .hero-showreel-slide-picks .hero-product-image,
  .hero-showreel-slide-classic .hero-product-image {
    right: 30px;
    width: 34%;
    height: 42%;
  }

  .hero-showreel-slide-bag .hero-product-image,
  .hero-showreel-slide-stand .hero-product-image {
    right: 8px;
    width: 46%;
    height: 86%;
  }

  .product-grid,
  .product-grid.four,
  .feature-row,
  .partner-grid,
  .article-grid,
  .woocommerce ul.products,
  .footer {
    grid-template-columns: 1fr;
  }

  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .content-band {
    padding: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-showreel-track,
  .hero-product-image {
    animation: none;
  }
}
