/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
@font-face {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/lato-regular.woff2") format("woff2");
}
@font-face {
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/lato-bold.woff2") format("woff2");
}

* {
  box-sizing: border-box;
  font-family: Lato, sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  transition: all 0.3s ease;
}
html {
  font-size: 1rem;
  font-family: Lato, sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
section[id] {
  scroll-margin-top: 100px;
}
@media (min-width: 2401px) {
  html {
    font-size: 12px;
  }
}
@media (min-width: 2201px) and (max-width: 2400px) {
  html {
    font-size: 12px;
  }
}
@media (min-width: 1901px) and (max-width: 2200px) {
  html {
    font-size: 12px;
  }
}
@media (min-width: 1500px) and (max-width: 1900px) {
  html {
    font-size: 12px;
  }
}
@media (max-width: 1500px) and (min-width: 1300px) {
  html {
    font-size: 12px;
  }
}
@media (max-width: 1299px) {
  html {
    font-size: 11px;
  }
}
::-webkit-scrollbar,
html ::-webkit-scrollbar {
  height: 1rem;
  width: 1rem;
}
::-webkit-scrollbar-track,
html ::-webkit-scrollbar-track {
  background: #f5f1f1;
}
::-webkit-scrollbar-thumb,
html ::-webkit-scrollbar-thumb {
  background-color: #452e24;
  border-radius: 1rem;
  border: 1px solid #e6e6f0;
}
body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: Lato;
  overflow-y: auto;
  overflow-x: auto;
}
.main {
  width: 100%;
  min-height: calc(100vh - 60px);
  position: relative;
  flex-grow: 2;
}
a,
button {
  text-decoration: none;
  cursor: pointer;
}
ul {
  list-style: none;
}
img {
  width: 100%;
}

.text_center {
  text-align: center;
}

:root {
  --runtoys_primary-color: #4a90e2;
  --runtoys_secondary-color: #2c3e50;
  --runtoys_accent-color: #e74c3c;
  --runtoys_background-dark: #1a1a1a;
  --runtoys_background-light: #2d2d2d;
  --runtoys_text-light: #ffffff;
  --runtoys_text-gray: #cccccc;
  --runtoys_border-color: #404040;
  --runtoys_shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --runtoys_transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-color: var(--runtoys_background-dark);
  color: var(--runtoys_text-light);
  line-height: 1.6;
  min-width: 280px;
}

.runtoys_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.runtoys_title {
  font-size: 2.8rem;
  color: var(--runtoys_primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.runtoys_subtitle {
  font-size: 1.8rem;
  color: var(--runtoys_primary-color);
  margin-bottom: 1rem;
}

.runtoys_text {
  font-size: 1.4rem;
  color: var(--runtoys_text-gray);
  margin-bottom: 1rem;
}

.runtoys_button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.4rem;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--runtoys_transition);
  cursor: pointer;
  border: none;
  font-weight: 600;
}

.runtoys_button--primary {
  background-color: var(--runtoys_primary-color);
  color: var(--runtoys_text-light);
}

.runtoys_button--primary:hover {
  background-color: #357abd;
  transform: translateY(-2px);
  box-shadow: var(--runtoys_shadow);
}

.runtoys_button--secondary {
  background-color: transparent;
  color: var(--runtoys_primary-color);
  border: 2px solid var(--runtoys_primary-color);
}

.runtoys_button--secondary:hover {
  background-color: var(--runtoys_primary-color);
  color: var(--runtoys_text-light);
  transform: translateY(-2px);
}

.runtoys_header {
  background: linear-gradient(
    135deg,
    var(--runtoys_background-dark) 0%,
    var(--runtoys_background-light) 100%
  );
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--runtoys_shadow);
  overflow: visible;
}

.runtoys_header__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 20px;
}

.runtoys_header__logo {
  text-align: center;
}

.runtoys_header__logo .runtoys_title {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.runtoys_header__logo .runtoys_subtitle {
  font-size: 1.2rem;
  margin-bottom: 0;
  text-align: left;
}

.runtoys_header__nav {
  position: relative;
  overflow: visible;
  flex: 1;
  display: flex;
  justify-content: center;
}

.runtoys_header__menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--runtoys_primary-color);
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: var(--runtoys_transition);
  order: 3;
}

.runtoys_header__menu-toggle:hover {
  background-color: var(--runtoys_background-light);
}

.runtoys_header__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  gap: 30px;
}

.runtoys_header__menu-item {
  position: relative;
}

.runtoys_header__menu-link {
  color: var(--runtoys_text-light);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 8px;
  transition: var(--runtoys_transition);
  position: relative;
}

.runtoys_header__menu-link:hover {
  color: var(--runtoys_primary-color);
  background-color: var(--runtoys_background-light);
}

.runtoys_header__menu-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--runtoys_primary-color);
  transition: var(--runtoys_transition);
  transform: translateX(-50%);
}

.runtoys_header__menu-link:hover::after {
  width: 80%;
}

.runtoys_header__menu-link.active {
  color: var(--runtoys_primary-color);
  background-color: var(--runtoys_background-light);
  font-weight: 600;
}

.runtoys_header__menu-link.active::after {
  width: 80%;
}

.runtoys_main {
  min-height: 70vh;
  padding: 40px 0;
}

.runtoys_hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
}

.runtoys_hero__content {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.runtoys_hero__title {
  font-size: 3.2rem;
  margin-bottom: 2rem;
}

.runtoys_hero__text {
  font-size: 1.6rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.runtoys_hero__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.runtoys_hero__image-container {
  display: flex;
  justify-content: center;
  flex: 1;
  min-width: 300px;
}

.runtoys_hero__image {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: var(--runtoys_shadow);
  transition: var(--runtoys_transition);
}

.runtoys_hero__image:hover {
  transform: scale(1.05);
}

.runtoys_footer {
  background-color: var(--runtoys_background-light);
  padding: 40px 0 20px;
  border-top: 2px solid var(--runtoys_border-color);
}

.runtoys_footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.runtoys_footer__section {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.runtoys_footer__title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.runtoys_footer__subtitle {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.runtoys_footer__text {
  font-size: 1.4rem;
  margin-bottom: 0;
}

.runtoys_footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.runtoys_footer__contact {
  color: var(--runtoys_text-gray);
  text-decoration: none;
  font-size: 1.4rem;
  transition: var(--runtoys_transition);
}

.runtoys_footer__contact:hover {
  color: var(--runtoys_primary-color);
}

.runtoys_footer__address {
  font-size: 1.4rem;
  color: var(--runtoys_text-gray);
  margin: 0;
}

.runtoys_footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.runtoys_footer__link {
  color: var(--runtoys_text-gray);
  text-decoration: none;
  font-size: 1.4rem;
  transition: var(--runtoys_transition);
}

.runtoys_footer__link:hover {
  color: var(--runtoys_primary-color);
}

.runtoys_footer__bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--runtoys_border-color);
}

.runtoys_footer__copyright {
  font-size: 1.2rem;
  color: var(--runtoys_text-gray);
  margin: 0;
}

@media (max-width: 768px) {
  .runtoys_header__content {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .runtoys_header__nav {
    order: 2;
    flex: 0;
  }

  .runtoys_header__menu-toggle {
    display: block;
    order: 3;
  }

  .runtoys_header__menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 15px;
    right: 15px;
    background-color: var(--runtoys_background-light);
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--runtoys_shadow);
    z-index: 1001;
    max-height: 80vh;
    width: auto;
  }

  .runtoys_header__menu.active {
    display: flex;
  }

  .runtoys_header__menu-item {
    width: 100%;
    text-align: center;
  }

  .runtoys_header__menu-link {
    display: block;
    width: 100%;
    padding: 15px;
  }

  .runtoys_hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .runtoys_hero__content {
    order: 2;
  }

  .runtoys_hero__image-container {
    order: 1;
  }

  .runtoys_hero__title {
    font-size: 2.4rem;
  }

  .runtoys_hero__text {
    font-size: 1.4rem;
  }

  .runtoys_footer__content {
    flex-direction: column;
    align-items: center;
  }

  .runtoys_footer__section {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .runtoys_container {
    padding: 0 15px;
  }

  .runtoys_title {
    font-size: 2.2rem;
  }

  .runtoys_hero__title {
    font-size: 2rem;
  }

  .runtoys_hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .runtoys_button {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  .runtoys_header__content {
    gap: 10px;
  }

  .runtoys_header__menu {
    max-height: 70vh;
    padding: 15px;
    left: 10px;
    right: 10px;
    top: 70px;
  }

  .runtoys_header__menu-link {
    padding: 12px;
    font-size: 1.3rem;
  }

  .runtoys_header__menu-toggle {
    font-size: 1.8rem;
    padding: 8px;
  }
}

.runtoys_thanks {
  padding: 100px 0;
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.runtoys_thanks__icon {
  font-size: 6rem;
  margin-bottom: 30px;
  animation: runtoys_thanks__bounce 2s infinite;
}

@keyframes runtoys_thanks__bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.runtoys_thanks .runtoys_title {
  margin-bottom: 20px;
}

.runtoys_thanks .runtoys_text {
  font-size: 1.6rem;
  margin-bottom: 40px;
  max-width: 500px;
}

.runtoys_thanks .runtoys_button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.4rem;
  margin-top: 20px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .runtoys_thanks {
    padding: 60px 0;
  }

  .runtoys_thanks__icon {
    font-size: 5rem;
  }

  .runtoys_thanks .runtoys_text {
    font-size: 1.4rem;
  }

  .runtoys_thanks .runtoys_button {
    padding: 12px 24px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .runtoys_thanks {
    padding: 40px 0;
  }

  .runtoys_thanks__icon {
    font-size: 4rem;
  }

  .runtoys_thanks .runtoys_text {
    font-size: 1.3rem;
  }
}

.runtoys_shop {
  padding: 40px 0;
}

.runtoys_shop__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  padding: 30px;
  background: var(--runtoys_background-light);
  border-radius: 15px;
  box-shadow: var(--runtoys_shadow);
}

.runtoys_shop__filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}

.runtoys_shop__filter-label {
  font-size: 1.4rem;
  color: var(--runtoys_primary-color);
  font-weight: 600;
}

.runtoys_shop__filter-select {
  padding: 12px 15px;
  background: var(--runtoys_background-dark);
  border: 2px solid var(--runtoys_border-color);
  border-radius: 8px;
  color: var(--runtoys_text-light);
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--runtoys_transition);
}

.runtoys_shop__filter-select:focus {
  outline: none;
  border-color: var(--runtoys_primary-color);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.runtoys_shop__filter-select:hover {
  border-color: var(--runtoys_primary-color);
}

.runtoys_shop__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.runtoys_shop__item {
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  background: var(--runtoys_background-light);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--runtoys_transition);
  position: relative;
  border: 2px solid transparent;
}

.runtoys_shop__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--runtoys_primary-color);
}

.runtoys_shop__item.hidden {
  display: none;
}

.runtoys_shop__item-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.runtoys_shop__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--runtoys_transition);
}

.runtoys_shop__item:hover .runtoys_shop__item-image img {
  transform: scale(1.1);
}

.runtoys_shop__item-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--runtoys_accent-color);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  z-index: 1;
}

.runtoys_shop__item-content {
  padding: 25px;
}

.runtoys_shop__item-title {
  font-size: 1.8rem;
  color: var(--runtoys_primary-color);
  margin-bottom: 10px;
  line-height: 1.3;
}

.runtoys_shop__item-description {
  font-size: 1.3rem;
  color: var(--runtoys_text-gray);
  margin-bottom: 20px;
  line-height: 1.6;
  min-height: 60px;
}

.runtoys_shop__item-price {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--runtoys_accent-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.runtoys_shop__item-price::before {
  content: "₹";
  font-size: 1.6rem;
}

.runtoys_shop__item-button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, var(--runtoys_primary-color), #6bb6ff);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--runtoys_transition);
}

.runtoys_shop__item-button:hover {
  background: linear-gradient(45deg, #357abd, var(--runtoys_primary-color));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.runtoys_shop__item-button:active {
  transform: translateY(0);
}

.runtoys_shop__no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--runtoys_text-gray);
  font-size: 1.6rem;
}

.runtoys_shop__no-results-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .runtoys_shop__filters {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }

  .runtoys_shop__filter-group {
    width: 100%;
    max-width: 300px;
  }

  .runtoys_shop__grid {
    gap: 20px;
  }

  .runtoys_shop__item {
    min-width: 280px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .runtoys_shop {
    padding: 20px 0;
  }

  .runtoys_shop__filters {
    margin: 20px 0;
    padding: 15px;
  }

  .runtoys_shop__filter-select {
    font-size: 1.3rem;
    padding: 10px 12px;
  }

  .runtoys_shop__item-content {
    padding: 20px;
  }

  .runtoys_shop__item-title {
    font-size: 1.6rem;
  }

  .runtoys_shop__item-description {
    font-size: 1.2rem;
  }

  .runtoys_shop__item-price {
    font-size: 2rem;
  }

  .runtoys_shop__item-button {
    font-size: 1.3rem;
    padding: 12px;
  }
}
