@import url("componentes/header.css");
@import url("componentes/footer.css");
@import url("componentes/sidebar.css");
@import url("componentes/cart.css");
@import url("componentes/search.css");
@import url("componentes/product_custom.css");
@import url("componentes/review.css");
@import url("componentes/account_style.css");

@font-face {
  font-family: "Vogue Plain";
  src: url("fonts/Vogue/vogue_plain-webfont.woff2") format("woff2"),
       url("fonts/Vogue/vogue_plain-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Product Sans Regular";
  src: url("fonts/ProductSans/ProductSans-Regular.ttf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-vogue: "Vogue Plain", sans-serif;
}
html,
body {
  font-family: var(--font-vogue);
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}
#container {
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}
.row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.custom-container {
  max-width: 1280px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.breadcrumb {
  background-color: transparent !important;
  padding: 20px 0 !important;
  border: none !important;
  border-radius: 0 !important;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
  font-family: var(--font-vogue);
  font-size: 13px;
  color: #999;
  background: none !important;
}
.breadcrumb-item a {
  color: #333;
  text-decoration: none;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  transition: color 0.2s;
}
.breadcrumb-item a:hover {
  color: #000;
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "/" !important;
  color: #ccc;
  font-weight: 300;
  padding: 0 10px;
  background: transparent !important;
  border: none !important;
  transform: none !important;
  clip-path: none !important;
  float: none !important;
}
.breadcrumb-item::after,
.breadcrumb-item a::after,
.breadcrumb-item a::before {
  display: none !important;
  content: none !important;
}
