/*
 Theme Name:   I Am Not Plastic
 Theme URI:    https://sculptcode.cl
 Author:       Diego Ruiz
 Author URI:   https://sculptcode.cl
 Description:  Un tema minimalista para listar productos de WooCommerce, basado en la referencia visual.
 Version:      2.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  iamnotplastic-theme  <-- ¡ESTE ES EL CAMBIO CLAVE!
 WC tested up to: 8.9
*/

@font-face {
  font-family: "Barlow-Bold";
  src: url("assets/fonts/Barlow/Barlow-Bold.ttf");
}

@font-face {
  font-family: "Barlow-Medium";
  src: url("assets/fonts/Barlow/Barlow-Medium.ttf");
}

@font-face {
  font-family: "Barlow-Semibold";
  src: url("assets/fonts/Barlow/Barlow-SemiBold.ttf");
}

:root {
  box-sizing: border-box;
  min-height: 100%;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;

  --sky-blue: #04cfff;
  --yellow: #ffd400;
  --green: #31e58c;
  --black: #212121;
  --gray: #808080;
  --pink: #ff76d1;
  --light-gray: #707070;

  --font-bold: "Barlow-Bold";
  --font-semiBold: "Barlow-Semibold";
  --font-medium: "Barlow-Medium";
}

* {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

*,
::before,
::after {
  box-sizing: inherit;
  font-weight: 200;
}

::-webkit-scrollbar {
  display: none;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 16px;
  color: var(--black);
  font-family: var(--font-medium);
}
