/*
Theme Name: FLOKE CO.
Theme URI: https://example.com/
Author: FLOKE CO.
Description: Custom FLOKE CO. hair ecommerce landing theme.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Text Domain: floke-co
*/

* {
  box-sizing: border-box;
}

:root {
  --bg: #030303;
  --panel: #0b0b0b;
  --panel-2: #111;
  --text: #fff;
  --muted: #c9c9c9;
  --red: #e10016;
  --purple: #9d27d6;
  --line: #2a2a2a;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

body.intro-active {
  overflow: hidden;
}

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

button {
  font-family: inherit;
}

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

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: #000;
  overflow: hidden;
  transition: opacity 0.85s ease, visibility 0.85s ease;
}

.intro-screen::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 68% 46%, rgba(225, 0, 22, 0.32), transparent 16%),
    radial-gradient(circle at 62% 54%, rgba(157, 39, 214, 0.2), transparent 26%),
    linear-gradient(180deg, #000 0%, #050000 100%);
  opacity: 0;
  animation: introAtmosphere 1.45s ease 0.2s forwards;
}

.intro-screen::after {
  content: "";
  position: absolute;
  width: min(86vw, 980px);
  height: 230px;
  right: -8%;
  top: 40%;
  background:
    linear-gradient(108deg, transparent 0 47%, rgba(225, 0, 22, 0.5) 50%, transparent 56%),
    radial-gradient(ellipse at center, rgba(225, 0, 22, 0.25), transparent 66%);
  filter: blur(2px);
  opacity: 0;
  transform: translateX(-70px) scaleX(0.7);
  animation: introLightSweep 1.6s cubic-bezier(.2, .8, .2, 1) 0.65s forwards;
}

.intro-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 24px;
  width: min(92vw, 1180px);
}

.intro-logo {
  opacity: 0;
  transform: translateY(24px) scale(0.94);
  animation: introLogoReveal 1.25s cubic-bezier(.2, .8, .2, 1) 0.45s forwards;
}

.intro-logo .logo-word {
  font-size: clamp(66px, 13vw, 178px);
  letter-spacing: 0.28em;
  padding-left: 0.28em;
}

.intro-logo .logo-co {
  --co-tracking: 0.16em;
  max-width: 620px;
  gap: 14px;
  margin-top: 14px;
  font-size: clamp(24px, 3vw, 48px);
}

.intro-logo .logo-tagline {
  margin-top: 22px;
  letter-spacing: 0.52em;
  padding-left: 0.52em;
}

.intro-start {
  min-width: 170px;
  min-height: 50px;
  margin-top: 8px;
  border: 1px solid rgba(225, 0, 22, 0.62);
  background: linear-gradient(90deg, rgba(85, 0, 5, 0.75), rgba(225, 0, 22, 0.94), rgba(72, 0, 85, 0.86));
  color: white;
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.22em;
  opacity: 0;
  transform: translateY(14px);
  box-shadow: 0 0 34px rgba(225, 0, 22, 0.22), 0 0 30px rgba(157, 39, 214, 0.12);
  animation: introButtonReveal 0.75s ease 1.85s forwards;
}

.intro-start:hover {
  border-color: rgba(157, 39, 214, 0.82);
  box-shadow: 0 0 44px rgba(225, 0, 22, 0.32), 0 0 36px rgba(157, 39, 214, 0.22);
}

.intro-screen.is-leaving .intro-logo,
.intro-screen.is-leaving .intro-start {
  animation: introExit 0.55s ease forwards;
}

@keyframes introAtmosphere {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes introLightSweep {
  0% {
    opacity: 0;
    transform: translateX(-80px) scaleX(0.7);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 0.86;
    transform: translateX(0) scaleX(1);
  }
}

@keyframes introLogoReveal {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.94);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes introButtonReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introExit {
  to {
    opacity: 0;
    transform: translateY(-16px) scale(0.98);
    filter: blur(5px);
  }
}

.luxury-logo {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: #f6f4f0;
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.16);
}

.logo-word {
  font-size: 48px;
  line-height: 0.86;
  font-weight: 400;
  letter-spacing: 0.34em;
}

.logo-word span {
  color: var(--red);
  text-shadow: 0 0 20px rgba(225, 0, 22, 0.35);
}

.custom-logo-img {
  width: 100%;
  height: auto;
  max-height: 76px;
  object-fit: contain;
}

.logo-co {
  --co-tracking: 0.16em;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  color: var(--red);
  font-size: 20px;
  letter-spacing: 0;
}

.logo-co b {
  display: inline-block;
  font: inherit;
  font-weight: inherit;
  letter-spacing: var(--co-tracking);
  margin-right: calc(-1 * var(--co-tracking));
}

.logo-co i {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red));
}

.logo-co i:last-child {
  background: linear-gradient(90deg, var(--red), transparent);
}

.logo-tagline {
  margin-top: 28px;
  color: #f1f1f1;
  font-size: 18px;
  letter-spacing: 0.72em;
  font-family: Arial, Helvetica, sans-serif;
}

.topbar {
  width: min(83%, 1500px);
  height: 48px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 0 8%;
  border: 1px solid rgba(225, 0, 22, 0.24);
  border-top: 0;
  background: linear-gradient(90deg, rgba(42, 0, 0, 0.92), rgba(120, 0, 8, 0.82), rgba(42, 0, 0, 0.92));
  color: #f2f2f2;
  font-size: 12px;
  font-weight: 800;
}

.topbar span:first-child {
  justify-self: center;
}

.social-top {
  justify-self: end;
  letter-spacing: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.5%;
  background: #030303;
  border-bottom: 1px solid #151515;
}

.nav-logo {
  width: 170px;
  align-items: flex-start;
}

.nav-logo .logo-word {
  font-size: 37px;
  letter-spacing: 0.23em;
}

.nav-logo .logo-co {
  --co-tracking: 0.12em;
  gap: 8px;
  margin-top: 9px;
  font-size: 14px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.desktop-nav .menu-item {
  display: block;
  list-style: none;
}

.shop-subnav .menu-item,
.footer-grid .menu-item {
  list-style: none;
}

.desktop-nav a {
  position: relative;
  padding: 31px 0 27px;
  font-size: 12px;
  font-weight: 900;
}

.desktop-nav a.active,
.desktop-nav .current-menu-item > a,
.desktop-nav a:hover {
  color: var(--red);
}

.desktop-nav a.active::after,
.desktop-nav .current-menu-item > a::after,
.desktop-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 2px;
  background: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-form input {
  width: 0;
  min-height: 36px;
  padding: 0;
  border: 0;
  background: #080808;
  color: var(--text);
  font: inherit;
  opacity: 0;
  transition: width 0.22s ease, opacity 0.22s ease, padding 0.22s ease, border-color 0.22s ease;
}

.search-form.is-open input,
.search-form:focus-within input {
  width: min(180px, 30vw);
  padding: 0 12px;
  border: 1px solid rgba(157, 39, 214, 0.45);
  opacity: 1;
}

.search-form .icon-btn {
  display: block;
}

.icon-btn,
.bag-btn,
.cart-head button {
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}

.icon-btn {
  font-size: 28px;
  line-height: 1;
}

.bag-btn {
  position: relative;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 900;
}

.bag-btn span {
  position: absolute;
  top: -5px;
  right: -15px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  font-size: 10px;
}

.hero {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 35%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.82) 30%, rgba(0, 0, 0, 0.24) 58%, rgba(0, 0, 0, 0.42) 100%),
    radial-gradient(circle at 56% 43%, rgba(225, 0, 22, 0.42), transparent 34%),
    radial-gradient(circle at 45% 58%, rgba(157, 39, 214, 0.26), transparent 32%);
}

.hero-content {
  width: min(92%, 1450px);
  margin: 0 auto;
  padding: 42px 0 96px;
}

.hero h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(58px, 7.8vw, 108px);
  line-height: 0.9;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.14);
}

.hero h1 span {
  color: var(--red);
}

.hero p {
  margin: 22px 0 24px;
  color: #fff;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.32;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 30px;
  border: 0;
  cursor: pointer;
  color: white;
  font-size: 13px;
  font-weight: 950;
}

.btn-primary {
  background: linear-gradient(90deg, #b7000e, var(--red), #7a005f);
  box-shadow: 0 0 26px rgba(225, 0, 22, 0.22);
}

.btn-primary:hover {
  background: #ff1028;
}

.shop-subnav {
  height: 49px;
  display: flex;
  align-items: stretch;
  gap: 30px;
  padding: 0 5.2%;
  border-bottom: 1px solid #151515;
  background: #030303;
}

.shop-subnav button,
.shop-subnav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.shop-subnav button span,
.shop-subnav a span {
  margin-left: 8px;
}

.shop-subnav button.active,
.shop-subnav a.active,
.shop-subnav .current-menu-item > a {
  color: var(--red);
}

.shop-subnav button.active::after,
.shop-subnav a.active::after,
.shop-subnav .current-menu-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
}

.category-strip {
  width: min(91%, 1450px);
  margin: -58px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 5;
}

.category-tile {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  border: 1px solid rgba(157, 39, 214, 0.5);
  background: #111;
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: 205px;
  object-fit: cover;
  object-position: center 32%;
  opacity: 0.78;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(0, 0, 0, 0.86));
}

.category-tile span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 28px;
  z-index: 2;
  text-align: center;
  font-size: clamp(22px, 2.3vw, 31px);
  line-height: 0.98;
  font-weight: 950;
}

.category-tile span::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, var(--red), var(--purple));
}

.category-tile:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.products-section {
  width: min(91%, 1450px);
  margin: 0 auto;
  padding: 10px 0 30px;
}

.title-rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  margin: 10px 0 14px;
}

.title-rule span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple));
}

.title-rule span:last-child {
  background: linear-gradient(90deg, var(--purple), transparent);
}

.title-rule h2,
.social-proof h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(27px, 3vw, 37px);
  font-weight: 950;
}

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

.product-card {
  border: 1px solid rgba(157, 39, 214, 0.2);
  background: var(--panel);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
  object-position: center 32%;
  background: #151515;
}

.product-info {
  padding: 15px 17px 16px;
}

.product-info h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 900;
}

.product-info p {
  margin: 0 0 7px;
  color: #e2e2e2;
  font-size: 13px;
  font-weight: 700;
}

.product-info .rating {
  color: var(--red);
  letter-spacing: 2px;
  font-size: 14px;
}

.product-info strong {
  display: block;
  margin: 10px 0 13px;
  font-size: 17px;
}

.add-to-cart {
  width: 100%;
  min-height: 43px;
  background: linear-gradient(90deg, #b7000e, var(--red));
}

.benefits {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080808;
}

.benefits > div {
  display: grid;
  grid-template-columns: 62px 1fr;
  column-gap: 18px;
  padding: 28px clamp(18px, 3vw, 52px);
  border-right: 1px solid var(--line);
}

.benefits > div:last-child {
  border-right: 0;
}

.benefits span {
  grid-row: span 2;
  align-self: center;
  color: var(--purple);
  font-size: 52px;
  line-height: 1;
}

.benefits h3 {
  margin: 0 0 7px;
  font-size: 15px;
  font-weight: 950;
}

.benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.bundle-banner {
  display: grid;
  grid-template-columns: minmax(170px, 315px) 1fr minmax(230px, 330px) auto;
  align-items: center;
  gap: 36px;
  padding: 0 5.5%;
  min-height: 150px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(72, 8, 91, 0.48), rgba(0, 0, 0, 0.1)),
    #130018;
  border-bottom: 1px solid #210025;
  overflow: hidden;
}

.bundle-banner img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center 35%;
}

.bundle-banner h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 53px);
  line-height: 0.96;
  font-weight: 950;
}

.bundle-banner h2 span {
  color: #d936ff;
}

.bundle-banner ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 2.05;
}

.bundle-banner li::before {
  content: "\2713";
  margin-right: 12px;
  color: var(--red);
}

.social-proof {
  width: min(91%, 1450px);
  margin: 0 auto;
  padding: 22px 0 18px;
}

.social-proof h2 {
  margin-bottom: 16px;
}

.social-proof h2 span {
  color: var(--purple);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.social-grid img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  object-position: center 30%;
}

footer {
  border-top: 1px solid var(--line);
  background: #030303;
  padding: 22px 5% 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 42px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-brand {
  transform: scale(0.82);
  transform-origin: left top;
  align-items: flex-start;
  width: 180px;
}

.footer-brand .logo-word {
  font-size: 36px;
  letter-spacing: 0.24em;
}

.footer-brand .logo-co {
  --co-tracking: 0.12em;
  gap: 8px;
  margin-top: 9px;
  font-size: 13px;
}

.footer-grid h4 {
  margin: 0 0 7px;
  font-size: 14px;
  font-weight: 950;
}

.footer-grid p,
.footer-grid a {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.socials {
  color: white;
  letter-spacing: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: #8b8b8b;
  font-size: 12px;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -440px;
  z-index: 60;
  width: min(420px, 92vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #070707;
  border-left: 1px solid var(--line);
  transition: right 0.28s ease;
}

.cart-drawer.open {
  right: 0;
}

.cart-head,
.cart-footer {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-head h3 {
  margin: 0;
}

.cart-head button {
  font-size: 28px;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item p {
  margin: 0;
  color: var(--muted);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.checkout-btn {
  width: 100%;
}

.checkout-note,
.empty-cart {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.professional-hero .hero-content {
  padding-bottom: 76px;
}

.professional-copy {
  max-width: 600px;
  color: var(--muted) !important;
  font-size: clamp(16px, 1.45vw, 20px) !important;
  font-weight: 700 !important;
}

.professional-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.professional-benefits {
  margin-top: 0;
}

.professional-panel,
.professional-page {
  width: min(91%, 1450px);
  margin: 0 auto;
  padding: 58px 0;
}

.professional-panel {
  text-align: center;
}

.professional-lock {
  max-width: 900px;
}

.professional-lock .lock-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(157, 39, 214, 0.65);
  color: var(--purple);
  font-size: 28px;
}

.professional-panel h3 {
  margin: 0 auto 12px;
  max-width: 760px;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.08;
  font-weight: 950;
}

.professional-panel p,
.professional-lead,
.professional-small,
.professional-lock-copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.professional-panel .btn {
  margin-top: 14px;
}

.professional-page h1,
.professional-page h2 {
  margin: 0;
  text-align: center;
  font-weight: 950;
  line-height: 1.05;
}

.professional-page h1 {
  font-size: clamp(32px, 4.6vw, 62px);
}

.professional-page h1 span,
.login-page h1 span {
  color: var(--red);
}

.professional-lead,
.professional-small {
  text-align: center;
}

.professional-small a,
.forgot-link {
  color: var(--red);
  font-weight: 900;
}

.professional-form {
  width: min(100%, 980px);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.professional-form label {
  display: grid;
  gap: 8px;
  color: #f2f2f2;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.professional-form input,
.professional-form select,
.professional-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(157, 39, 214, 0.42);
  background: #080808;
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
  text-transform: none;
}

.professional-form textarea {
  min-height: 128px;
  resize: vertical;
}

.wide-field,
.checkbox-field,
.professional-form .btn,
.login-form .forgot-link {
  grid-column: 1 / -1;
}

.checkbox-field {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px !important;
  color: var(--muted) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--red);
}

.professional-form .btn {
  width: 100%;
}

.login-form {
  max-width: 520px;
  grid-template-columns: 1fr;
}

.form-error {
  max-width: 520px;
  margin: 20px auto 0;
  padding: 14px 16px;
  border: 1px solid rgba(225, 0, 22, 0.65);
  color: #fff;
  background: rgba(225, 0, 22, 0.12);
}

.professional-message {
  min-height: 430px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 16px;
  text-align: center;
}

.professional-message h1 {
  color: var(--red);
}

.dashboard-stats,
.bulk-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.dashboard-stats > div,
.bulk-steps article {
  border: 1px solid rgba(157, 39, 214, 0.28);
  background: var(--panel);
  padding: 22px;
}

.dashboard-stats span,
.bulk-steps span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.dashboard-stats strong {
  display: block;
  margin-top: 8px;
  font-size: 32px;
  color: var(--red);
}

.professional-two-column {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 28px;
  margin-top: 22px;
}

.professional-two-column > section {
  border: 1px solid rgba(157, 39, 214, 0.22);
  background: var(--panel);
  padding: 24px;
}

.professional-two-column h2,
.bulk-steps h3 {
  margin: 0 0 16px;
  text-align: left;
  font-size: 20px;
  font-weight: 950;
}

.professional-table {
  margin-bottom: 18px;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.table-head {
  color: #fff;
  font-weight: 950;
}

.benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 2;
  font-weight: 700;
}

.benefit-list li::before {
  content: "\2713";
  margin-right: 10px;
  color: var(--red);
}

.pro-shop-page {
  padding-top: 42px;
}

.pro-shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: start;
}

.pro-filters {
  border: 1px solid rgba(157, 39, 214, 0.24);
  background: var(--panel);
  padding: 20px;
}

.pro-filters h3 {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 14px;
  font-weight: 950;
}

.pro-filters h3:not(:first-child) {
  margin-top: 22px;
}

.pro-filters a,
.pro-filters span {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

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

.length-grid span {
  display: grid;
  place-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
  padding: 0;
}

.professional-price-label,
.locked-price {
  display: block;
  margin-top: 5px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.shop-page-subnav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.shop-page-subnav a.active,
.shop-page-subnav a:hover {
  color: var(--red);
}

.shop-page-subnav a.active::after,
.shop-page-subnav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
}

.shop-page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.shop-page-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
}

.shop-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.22)),
    radial-gradient(circle at 54% 48%, rgba(157, 39, 214, 0.24), transparent 36%);
}

.shop-page-hero > div {
  width: min(91%, 1450px);
  margin: 0 auto;
}

.shop-page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6vw, 86px);
  line-height: 0.95;
  font-weight: 400;
}

.shop-page-hero p {
  max-width: 520px;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 800;
  line-height: 1.35;
}

.shop-category-strip {
  margin-top: -45px;
}

.search-empty {
  margin: 24px 0;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.bulk-steps article span {
  color: var(--purple);
  font-size: 42px;
  line-height: 1;
}

.bulk-steps article p {
  color: var(--muted);
  line-height: 1.5;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}

.backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .category-strip,
  .product-grid,
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .bundle-banner {
    grid-template-columns: 1fr 1fr;
    padding: 24px 5%;
  }

  .professional-form,
  .dashboard-stats,
  .professional-two-column,
  .pro-shop-layout,
  .bulk-steps {
    grid-template-columns: 1fr;
  }

  .bundle-banner img {
    display: none;
  }

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

@media (max-width: 700px) {
  .topbar {
    height: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 10px 16px;
    font-size: 10px;
  }

  .social-top {
    justify-self: center;
  }

  .site-header {
    height: 70px;
    padding: 0 17px;
  }

  .intro-screen {
    padding: 22px;
  }

  .intro-inner {
    gap: 22px;
  }

  .intro-logo .logo-word {
    font-size: clamp(50px, 16vw, 82px);
    letter-spacing: 0.15em;
    padding-left: 0.15em;
  }

  .intro-logo .logo-co {
    --co-tracking: 0.12em;
    max-width: 320px;
    gap: 9px;
    margin-top: 12px;
    font-size: 20px;
  }

  .intro-logo .logo-tagline {
    margin-top: 17px;
    letter-spacing: 0.34em;
    padding-left: 0.34em;
  }

  .intro-start {
    min-width: 148px;
    margin-top: 4px;
  }

  .logo-tagline {
    font-size: 10px;
    letter-spacing: 0.42em;
  }

  .nav-logo {
    width: 126px;
  }

  .nav-logo .logo-word {
    font-size: 25px;
  }

  .nav-logo .logo-co {
    font-size: 10px;
    margin-top: 6px;
  }

  .icon-btn {
    display: none;
  }

  .hero {
    min-height: 540px;
  }

  .hero img {
    object-position: 68% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.38)),
      radial-gradient(circle at 66% 45%, rgba(225, 0, 22, 0.34), transparent 34%),
      radial-gradient(circle at 52% 64%, rgba(157, 39, 214, 0.24), transparent 34%);
  }

  .hero-content {
    padding: 30px 0 110px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 82px);
  }

  .category-strip,
  .product-grid,
  .benefits,
  .bundle-banner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-strip {
    margin-top: -76px;
  }

  .category-tile {
    min-height: 185px;
  }

  .benefits > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .bundle-banner {
    gap: 18px;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
  }

  .professional-actions {
    flex-direction: column;
  }

  .professional-actions .btn {
    width: 100%;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
