/* =========================================================
   SOTOMAYOR TENNIS
   GLOBAL DESIGN SYSTEM
   ========================================================= */

/* ========================================================================================================================
   Homepage Header
   get rid of shoptimizer menus and artifacts
   ======================================================================================================================== 
*/

@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");

.site-header {
  display: none !important;
}
.col-full-nav {
  display: none !important;
}
body.home .archive-header {
  display: none !important;
}

/* =========================================================
   SOTOMAYOR TENNIS
   GLOBAL DESIGN SYSTEM
   ========================================================= */
:root {
  /* Brand */
  --soto-black: #050505;
  --soto-black-soft: #0a0a0a;
  --soto-black-light: #111111;
  --soto-white: #ffffff;
  --soto-offwhite: #f3f3f3;
  --soto-green: #9cff00;
  --soto-green-soft: rgba(156, 255, 0, 0.16);
  --soto-green-border: rgba(156, 255, 0, 0.5);
  --soto-gray: #a8a8a8;
  --soto-gray-light: #dcdcdc;
  --soto-gray-dark: #555555;
  /* Layout */
  --soto-max-width: 1500px;
  --soto-page-padding: 4%;
  /* Typography */
  --soto-heading-font: "Anton", sans-serif;
  --soto-body-font: Arial, Helvetica, sans-serif;
  /* Animation */
  --soto-transition: 0.22s ease;
  /* Borders */
  --soto-border: 1px solid var(--soto-green-border);
  /* Shadows */
  --soto-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* =========================================================
   RESET / PAGE
   ========================================================= */
.soto-home,
.soto-home * {
  box-sizing: border-box;
}
.soto-home {
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--soto-black);
  color: var(--soto-white);
  font-family: var(--soto-body-font);
  overflow-x: hidden;
}
.soto-home img {
  max-width: 100%;
  height: auto;
}
.soto-home a {
  text-decoration: none;
}
.soto-container {
  width: min(
    var(--soto-max-width),
    calc(100% - (var(--soto-page-padding) * 2))
  );
  margin: 0 auto;
}

.soto-home {
  color: var(--soto-white);
}

.soto-home h1,
.soto-home h2,
.soto-home h3,
.soto-home h4,
.soto-home h5,
.soto-home h6,
.soto-home p {
  color: inherit;
}
.soto-home a {
  color: inherit;
}

.soto-home a:hover {
  color: var(--soto-green);
}
.soto-home footer a:not(.button):hover {
  color: var(--soto-green);
}

/* =========================================================
   GENERIC TYPOGRAPHY
   ========================================================= */
.soto-heading {
  margin: 0;
  font-family: var(--soto-heading-font);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
}
.soto-green {
  color: var(--soto-green);
}
.soto-eyebrow {
  margin-bottom: 14px;
  color: var(--soto-green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.soto-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border: 2px solid var(--soto-green);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color var(--soto-transition),
    color var(--soto-transition), border-color var(--soto-transition),
    transform var(--soto-transition);
}
.soto-btn:hover {
  transform: translateY(-2px);
}
.soto-btn-primary {
  background: var(--soto-green);
  color: var(--soto-black) !important;
}
.soto-btn-primary:hover {
  background: var(--soto-white);
  border-color: var(--soto-white);
  color: var(--soto-black) !important;
}
.soto-btn-secondary {
  background: transparent;
  color: var(--soto-white) !important;
}
.soto-btn-secondary:hover {
  background: var(--soto-green);
  color: var(--soto-black) !important;
}
.soto-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--soto-green);
  font-weight: 900;
  text-transform: uppercase;
  transition: gap var(--soto-transition);
  margin-top: 10px;
}
.soto-text-link:hover {
  gap: 16px;
}

/* =========================================================
   HEADER
   ========================================================= */
.soto-header {
  position: relative;
  z-index: 100;
  width: 100%;
  background: var(--soto-black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.soto-header-inner {
  width: min(
    var(--soto-max-width),
    calc(100% - (var(--soto-page-padding) * 2))
  );
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.soto-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--soto-white);
}
.soto-logo-mark {
  width: 75px;
}
.soto-logo-text {
  line-height: 1;
}
.soto-logo-name {
  display: block;
  color: var(--soto-white);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.soto-logo-sub {
  display: block;
  margin-top: 5px;
  color: var(--soto-green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.soto-nav {
  display: flex;
  align-items: center;
  gap: 42px;
}
.soto-nav a {
  position: relative;
  color: var(--soto-white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.soto-nav a:hover {
  color: var(--soto-green);
}
.soto-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--soto-green);
  transition: right var(--soto-transition);
}
.soto-nav a:hover::after {
  right: 0;
}
.soto-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 22px;
}
.soto-header-icon {
  color: var(--soto-white);
  transition: color var(--soto-transition);
}
.soto-header-icon:hover {
  color: var(--soto-green);
}

/* =========================================================
   HERO
   ========================================================= */
.soto-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
  background: radial-gradient(
      circle at 75% 40%,
      var(--soto-green-soft),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      var(--soto-black) 0%,
      var(--soto-black-soft) 55%,
      #000000 100%
    );
  color: var(--soto-white);
}

/* angular court streaks */
.soto-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      115deg,
      transparent 0 68%,
      rgba(156, 255, 0, 0.13) 68% 68.5%,
      transparent 68.5%
    ),
    linear-gradient(
      115deg,
      transparent 0 77%,
      rgba(255, 255, 255, 0.08) 77% 77.35%,
      transparent 77.35%
    );
  pointer-events: none;
  z-index: 0;
}
.soto-hero-inner {
  position: relative;
  z-index: 2;

  width: min(
    var(--soto-max-width),
    calc(100% - (var(--soto-page-padding) * 2))
  );

  min-height: 760px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

/* =========================================================
   HERO COPY
   ========================================================= */
.soto-hero-copy {
  position: relative;
  z-index: 5;
  padding: 70px 0;
}
.soto-kicker {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--soto-green);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.soto-title {
  margin: 0;
  color: var(--soto-white);
  font-family: var(--soto-heading-font);
  font-size: clamp(70px, 8vw, 145px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.001em;
  text-transform: uppercase;
}
.soto-title span {
  display: block;
}
.soto-title .lime {
  color: var(--soto-green);
}
.soto-tagline {
  margin-top: 28px;
  color: var(--soto-green);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 2px -2px 4px #000, 6px 6px 12px rgba(0, 0, 0, 0.55);
}
.soto-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* =========================================================
   HERO ART
   ========================================================= */
/* right side becomes a positioning canvas */
.soto-hero-art {
  position: relative;
  height: 760px;
  align-self: stretch;
  overflow: visible;
}
.soto-hero-art::before {
  content: "";
  position: absolute;
  width: 1050px;
  height: 380px;
  right: -125px;
  top: 180px;
  background: var(--soto-green);
  opacity: 0.34;
  transform: rotate(-21deg);
  clip-path: polygon(0 42%, 100% 0, 76% 56%, 100% 66%, 0 100%, 21% 55%);
  z-index: 0;
}
/* BIG mascot */
.soto-wildcat {
  position: absolute;
  width: 1050px;
  max-width: none !important;
  height: auto;
  max-height: none !important;
  right: -62px;
  bottom: -5px;
  object-fit: contain;
  filter: drop-shadow(-35px 25px 45px rgba(0, 0, 0, 0.6));
  z-index: 2;
}
.soto-dot-grid {
  position: absolute;
  width: 100%;
  height: 360px;
  opacity: 0.42;
  background-image: radial-gradient(var(--soto-green) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  transform: skewX(-22deg);
  z-index: 1;
}
/* =========================================================
   IDENTITY STRIP
   ========================================================= */
.soto-identity {
  background: var(--soto-black);
  color: var(--soto-white);
  border-top: var(--soto-border);
  border-bottom: var(--soto-border);
}
.soto-identity-main {
  max-width: var(--soto-max-width);
  margin: 0 auto;
  padding: 17px var(--soto-page-padding);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--soto-green);
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 900;
  letter-spacing: 0.26em;
  text-align: center;
  text-transform: uppercase;
}
.soto-identity-main span:not(:last-child)::after {
  content: "/";
  margin-left: 20px;
  color: var(--soto-white);
  opacity: 0.65;
}
.soto-identity-sub {
  padding: 12px 20px 14px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-align: center;
  text-transform: uppercase;
}
.soto-identity-sub span {
  color: var(--soto-green);
}

/* =========================================================
   CATEGORY SECTION
   ========================================================= */
.soto-categories {
  padding: 0;
  background: var(--soto-black);
}
.soto-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: var(--soto-border);
}
.soto-category-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-right: var(--soto-border);
  border-bottom: var(--soto-border);
  background: var(--soto-black-light);
  isolation: isolate;
}
.soto-category-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.63;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.soto-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(0, 0, 0, 0.58) 48%,
    rgba(0, 0, 0, 0.12) 100%
  );
  z-index: 1;
}
.soto-category-card:hover .soto-category-image {
  transform: scale(1.3);
  opacity: 0.8;
}
.soto-category-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  z-index: 2;
}
.soto-category-content:hover {
  color: var(--soto-offwhite);
}
.soto-category-content {
  color: var(--soto-gray-light);
}
.soto-category-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--soto-green);
  color: var(--soto-black);
  font-size: 33px;
  font-weight: 900;
}
.soto-category-title {
  margin: 0 0 12px;
  font-family: var(--soto-heading-font);
  color: var(--soto-white);
  font-size: clamp(34px, 3vw, 54px);
  line-height: 0.95;
  text-transform: uppercase;
}
.soto-category-copy {
  max-width: 300px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.5;
}

/* =========================================================
   FEATURED PRODUCTS
   ========================================================= */
.soto-featured {
  padding: 70px 0;
  background: var(--soto-black-soft);
}
.soto-featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 35px;
}
.soto-featured-title {
  font-family: var(--soto-heading-font);
  font-size: clamp(60px, 16vw, 100px) !important;
  line-height: 0.82;
  text-transform: uppercase;
}
.soto-featured-title span {
  display: block;
}
.soto-featured-title-green {
  color: var(--soto-green);
}
.soto-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.soto-product-card {
  position: relative;
  background: var(--soto-white);
  overflow: hidden;
  transition: transform var(--soto-transition),
    box-shadow var(--soto-transition);
}
.soto-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--soto-shadow);
}
.soto-product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1.15;
  background: var(--soto-offwhite);
  overflow: hidden;
}
.soto-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}
.soto-product-card:hover .soto-product-image {
  transform: scale(1.045);
}
.soto-product-info {
  padding: 18px;
  background: var(--soto-black-light);
  border-top: 1px solid var(--soto-green-border);
  text-align: center;
}
.soto-product-title {
  margin: 0 0 8px;
  color: var(--soto-white);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}
.soto-product-price {
  color: var(--soto-green);
  font-size: 15px;
  font-weight: 900;
}
.soto-featured-footer {
  margin-top: 34px;
  text-align: center;
}

/* =========================================================
   TEAM + NEXT MATCH
   ========================================================= */
.soto-team-match {
  background: var(--soto-black);
}
.soto-team-match-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  border-top: var(--soto-border);
  border-left: var(--soto-border);
}
.soto-team-panel,
.soto-match-panel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-right: var(--soto-border);
  border-bottom: var(--soto-border);
}

/* TEAM IMAGE */
.soto-team-panel {
  isolation: isolate;
}
.soto-team-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  opacity: 0.65;
}
.soto-team-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.97) 0%,
    rgba(0, 0, 0, 0.72) 43%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
}
.soto-team-copy {
  position: relative;
  z-index: 2;
  max-width: 470px;
  padding: 55px;
}
.soto-team-title {
  margin: 0;
  font-family: var(--soto-heading-font);
  font-size: clamp(55px, 5vw, 100px);
  line-height: 0.85;
  text-transform: uppercase;
}
.soto-team-title span {
  display: block;
}
.soto-team-title span:last-child {
  color: var(--soto-green);
}

/* MATCH PANEL */
.soto-match-panel {
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("/wp-content/uploads/sites/10/image_2026-08-12_092309580.png");
  background-position: right;
  background-size: cover;
}
.soto-match-label {
  margin-bottom: 20px;
  color: var(--soto-green);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.soto-match-title {
  margin: 0 0 28px;
  font-family: var(--soto-heading-font);
  font-size: clamp(25px, 4vw, 76px);
  line-height: 0.88;
  text-transform: uppercase;
}
.soto-match-title .vs {
  color: var(--soto-green);
}
.soto-match-meta {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}
.soto-match-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.45;
  text-transform: uppercase;
}
.soto-match-detail strong {
  color: var(--soto-white);
}

/* =========================================================
   FOOTER
   ========================================================= */
.soto-footer {
  padding: 34px 0;
  background: #020202;
  border-top: var(--soto-border);
}
.soto-footer-inner {
  width: min(
    var(--soto-max-width),
    calc(100% - (var(--soto-page-padding) * 2))
  );
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}
.soto-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.soto-footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.soto-footer-nav a {
  color: var(--soto-white);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color var(--soto-transition);
}
.soto-footer-nav a:hover {
  color: var(--soto-green);
}
.soto-footer-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.soto-powered {
  color: var(--soto-gray);
  font-size: 10px;
  text-transform: uppercase;
}

/* =========================================================
   DECORATIVE HALFTONE UTILITY
   ========================================================= */
.soto-halftone {
  position: absolute;
  width: 250px;
  height: 250px;
  opacity: 0.2;
  pointer-events: none;
  background-image: radial-gradient(var(--soto-green) 1.5px, transparent 1.5px);
  background-size: 11px 11px;
}

/* =========================================================
   TABLET
   ========================================================= */
@media (max-width: 1100px) {
  .soto-nav {
    gap: 24px;
  }
  .soto-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .soto-category-title {
    font-size: 40px;
  }
}

/* =========================================================
   MOBILE / TABLET
   ========================================================= */
@media (max-width: 900px) {
  :root {
    --soto-page-padding: 6%;
  }

  /* HEADER */
  .soto-header-inner {
    min-height: 70px;
  }
  .soto-nav {
    display: none;
  }

  /* HERO */
  .soto-hero {
    min-height: auto;
  }
  .soto-hero-inner {
    width: 100%;
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .soto-hero-copy {
    padding: 55px var(--soto-page-padding) 10px;
    text-align: center;
  }
  .soto-title {
    font-size: clamp(58px, 18vw, 105px);
    line-height: 0.82;
  }
  .soto-tagline {
    letter-spacing: 0.12em;
  }
  .soto-hero-actions {
    justify-content: center;
  }
  .soto-hero-art {
    height: 480px;
    margin-top: -10px;
  }
  .soto-wildcat {
    left: 20%;
    right: auto;
    width: 160%;
    max-height: 500px;
    transform: translateX(-50%);
    object-position: center bottom;
  }
  .soto-dot-grid {
    right: 8%;
    top: 2%;
  }
  .soto-hero-art::before {
    width: 120%;
    right: -10%;
    top: 130px;
  }

  /* IDENTITY */
  .soto-identity-main {
    gap: 8px;
    letter-spacing: 0.12em;
  }
  .soto-identity-main span:not(:last-child)::after {
    margin-left: 8px;
  }

  /* CATEGORIES */
  .soto-category-grid {
    grid-template-columns: 1fr;
  }
  .soto-category-card {
    min-height: 360px;
  }

  /* TEAM + MATCH */
  .soto-team-match-grid {
    grid-template-columns: 1fr;
  }
  .soto-team-panel,
  .soto-match-panel {
    min-height: 420px;
  }

  /* FOOTER */
  .soto-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .soto-footer-brand,
  .soto-footer-right {
    justify-content: center;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 600px) {
  /* HERO */
  .soto-hero-copy {
    padding-top: 42px;
  }
  .soto-kicker {
    font-size: 12px;
    letter-spacing: 0.2em;
  }
  .soto-title {
    font-size: clamp(60px, 12vw, 115px) !important;
    line-height: 0.82;
  }
  .soto-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .soto-btn {
    width: 100%;
  }
  .soto-hero-art {
    height: 390px;
  }

  /* IDENTITY */
  .soto-identity-main {
    display: grid;
    gap: 8px;
  }
  .soto-identity-main span:not(:last-child)::after {
    display: none;
  }
  .soto-identity-sub {
    font-size: 9px;
    line-height: 1.8;
  }

  /* FEATURED */
  .soto-featured {
    padding: 50px 0;
  }
  .soto-featured-header {
    display: block;
  }
  .soto-product-grid {
    grid-template-columns: 1fr;
  }

  /* TEAM */
  .soto-team-copy {
    padding: 35px;
  }
  .soto-team-title {
    font-size: 50px !important;
  }
  .soto-match-panel {
    padding: 35px;
  }

  /* FOOTER */
  .soto-footer-nav {
    flex-wrap: wrap;
    gap: 18px;
  }
}

.soto-woo-products ul.products li.product .price,
.soto-woo-products ul.products li.product p.product__categories a {
  color: var(--soto-green) !important;
}

.soto-woo-products ul.products li.product .woocommerce-LoopProduct-link {
  color: var(--soto-offwhite) !important;
}

.soto-woo-products ul.products li.product:is(:hover, :focus-within) .price,
.soto-woo-products
  ul.products
  li.product:is(:hover, :focus-within)
  .woocommerce-LoopProduct-link,
.soto-woo-products
  ul.products
  li.product:is(:hover, :focus-within)
  p.product__categories
  a {
  color: var(--soto-black) !important;
}

.soto-woo-products .cgkit-swatch-title {
  color: var(--soto-black);
}

.soto-woo-products ul.products {
}

.soto-woo-products ul.products li.product {
  border: var(--soto-border);
}

.soto-woo-products ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  align-items: stretch !important;
  gap: 16px;
}

.soto-woo-products ul.products li.product {
  display: flex !important;
  flex-direction: column;
  width: auto !important;
  height: 100% !important;
  margin: 0 !important;
  padding-bottom: 10px !important;
  padding-top: 10px !important;
}

.soto-woo-products ul.products li.product .woocommerce-card__header {
  flex-grow: 1;
}

@media (max-width: 900px) {
  .soto-woo-products ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .soto-woo-products ul.products li.product {
    padding: 10px;
  }
}

@media (max-width: 520px) {
  .soto-woo-products ul.products {
    grid-template-columns: 1fr !important;
  }

  .soto-woo-products ul.products li.product {
    padding: 10px;
  }
}

@media (max-width: 520px) {
  .soto-logo-text {
    display: none;
  }
}

/* Mobile menu */
.soto-menu-toggle,
.soto-mobile-nav {
  display: none;
}

@media (max-width: 900px) {
  .soto-nav {
    display: none !important;
  }

  .soto-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 0;
    color: var(--soto-white);
    font-size: 22px;

    cursor: pointer;
  }

  .soto-mobile-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;

    padding: 18px;

    background: var(--soto-black);

    border-top: 1px solid var(--soto-green-border);
    border-bottom: 1px solid var(--soto-green-border);

    z-index: 200;
  }

  .soto-mobile-nav.is-open {
    display: grid;
  }

  .soto-mobile-nav a {
    padding: 14px 8px;

    color: var(--soto-white);

    font-size: 16px;
    font-weight: 900;

    text-transform: uppercase;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .soto-mobile-nav a:last-child {
    border-bottom: 0;
  }
}

.soto-header-right {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.soto-header-actions {
  display: flex;
  align-items: center;
  gap: 15px;

  /* remove this if you currently have it */
  margin-left: 0;
}

.soto-menu-toggle {
  display: none;
}

@media (max-width: 900px) {
  .soto-nav {
    display: none !important;
  }

  .soto-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    flex-shrink: 0;
  }

  .soto-header-actions {
    display: flex !important;
    align-items: center;
    gap: 15px;
    margin-left: 0;
  }

  .soto-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    background: transparent;
    border: 0;

    color: var(--soto-white);
    font-size: 22px;

    cursor: pointer;
  }
}
