/* TechOut Base */

@import url('./variables.css');
@import url('./typography.css');
@import url('./buttons.css');
@import url('./product-card.css');
@import url('./chips.css');
@import url('./header.css');
@import url('./footer.css');
@import url('./responsive.css');
@import url('./legal.css');

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--bg);
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

.page-main {
  padding-top: var(--header-h);
}

@media (max-width: 767px) {
  .page-main {
    padding-top: var(--header-h-mobile);
    padding-bottom: 100px;
  }
}

::selection {
  background: var(--black);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 50%;
}
