/* =========================
   Google Sans Font
========================= */

@font-face {
  font-family: "Google Sans";
  src: url("../../fonts/GoogleSans-VariableFont.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* =========================
   Design Tokens
========================= */

:root {
  /* Fonts */
  --sr-font-main: "Google Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* Font sizes */
  --sr-text-10: 10px;
  --sr-text-12: 12px;
  --sr-text-13: 13px;
  --sr-text-14: 14px;
  --sr-text-15: 15px;
  --sr-text-16: 16px;
  --sr-text-18: 18px;
  --sr-text-20: 20px;
  --sr-text-24: 24px;
  --sr-text-28: 28px;
  --sr-text-32: 32px;
  --sr-text-42: 42px;
  --sr-text-64: 64px;

  /* Font weights */
  --sr-fw-regular: 400;
  --sr-fw-medium: 500;
  --sr-fw-bold: 700;

  /* Layout */
  --sr-container-width: 1280px;
  --sr-container-padding: 20px;

  /* Colors */
  --sr-text: #464855;
  --sr-text-dark: #1f2430;
  --sr-muted: #7b8494;
  --sr-accent: #537892;
  --sr-border: #d6dae0;
  --sr-bg: #f2f2f2;
  --sr-white: #ffffff;

  /* Header */
  --sr-header-bg: #eceff2;
  --sr-header-text: #464855;
  --sr-header-border: #a7acb5;
  --sr-header-shadow: 0 4px 21.1px rgba(0, 0, 0, 0.13);

  /* Announcement */
  --sr-announcement-bg: #464855;
  --sr-announcement-color: #ffffff;

  /* Radius */
  --sr-radius-card: 10px;
  --sr-radius-pill: 33px;
}

/* =========================
   Reset
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;

}


body {
  background: var(--sr-bg);

  font-family: var(--sr-font-main);
  font-size: var(--sr-text-16);
  font-weight: var(--sr-fw-regular);
  line-height: 1.3;
  color: var(--sr-text);
}

/* =========================
   Global Typography Inheritance
========================= */

button,
input,
select,
textarea {
  font-family: inherit;
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

/* =========================
   Global Breadcrumbs
========================= */

.sr-page-breadcrumbs {
  margin: 0 0 20px;
}

.sr-page-breadcrumbs .woocommerce-breadcrumb {
  margin: 0;
  padding: 0;

  font-size: 12px;
  font-weight: 400;
  line-height: 1;

  color: #A7ACB5;
}

.sr-page-breadcrumbs .woocommerce-breadcrumb a {
  color: #A7ACB5;
  text-decoration: none;
}

.sr-page-breadcrumbs .woocommerce-breadcrumb a:hover {
  color: #464855;
}

.sr-review-hero-title {
  width: 100%;
  height: 64px;
  margin: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;
  background: #d6dae0;

  font-size: 20px;
  font-weight: 700;
  line-height: 1;

  color: #464855;
}

@media (max-width: 768px) {
  .sr-page-breadcrumbs {
    margin: 16px 0 16px;
  }

  .sr-review-hero-title {
    height: 54px;
  }
}

.sr-404-page {
  padding: 90px 0 120px;
}

.sr-404 {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.sr-404__code {
  margin-bottom: 18px;
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  color: var(--sr-accent);
}

.sr-404__title {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.15;
  color: var(--sr-text);
}

.sr-404__text {
  max-width: 520px;
  margin: 0 auto 34px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--sr-muted);
}

.sr-404__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sr-404__button,
.sr-404__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.sr-404__button {
  background: var(--sr-text);
  color: #fff;
}

.sr-404__link {
  background: #fff;
  color: var(--sr-text);
  border: 1px solid var(--sr-border);
}

@media (max-width: 767px) {
  .sr-404-page {
    padding: 60px 0 90px;
  }

  .sr-404__code {
    font-size: 72px;
  }

  .sr-404__title {
    font-size: 32px;
  }

  .sr-404__text {
    font-size: 16px;
  }

  .sr-404__actions {
    flex-direction: column;
  }
}
