@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --orange: #ff6600;
  --black: #111;
  --dark-gray: #444;
  --gray: #bbb;
  --light-gray: #f5f5f7;
  --red: #e63946;
  --accent: #1d3557;
  --mobile-nav-height: 0;
  --mobile-nav-height-product: calc(var(--mobile-nav-height) + 100px);
}


* {
  box-sizing: border-box;
}


body {
  cursor: default;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: #fff;
  font-family: 'Inter', Arial, sans-serif !important;
}


.orange {
  color: var(--primary-color) !important;
}

.orange-background {
  background: var(--primary-color) !important;
  border: none !important;
}


a:hover, a:active {
  background-image: none !important;
}


.header-container {
  display: flex;
  justify-content: center;
}

.b-header-logo {
  font-size: 18px !important;
  font-weight: 500 !important;
}

.icn {
  width: 24px;
  height: 24px;
}

.favorite-btn {
  position: absolute;
  top: 10px;
  right: 10px;
}

.gallery-btn {
  opacity: 0.5;
  width: 40px;
  height: 40px;
}

.gallery {
  /* width: calc(100dvw - 10px); */
  width: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.gallery-images-container {
  align-self: center;
  width: 100%;
  overflow: hidden;
}

.gallery-images-container-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.gallery-btn {
  position: absolute;
  transform: scaleY(2);
  margin-top: 50px;
  color: var(--primary-color);
  opacity: 0.45;
  cursor: default;
}

.gallery-btn-left {
  /* transform: rotate(180deg) scaleY(2); */
  left: 10px;
}

.gallery-btn-right {
  right: 10px;
}

.gallery-images {
  display: flex;
  width: 100%;
}

.gallery-image {
  min-width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-image img {
  max-width: 100%;
  max-height: 100%;
}

.side-menu-btn {
  cursor: pointer;
  margin-left: auto;
  min-width: 28px;
  max-width: 28px;
  min-height: 28px;
  max-height: 28px;
  border: 1px solid #aaaa;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.side-menu-btn div {
  width: 12px;
  height: 1.5px;
  background: #ddd;
}

.white-header .side-menu-btn div {
  background: #222a;
}

.side-menu {
  font-family: 'Inter', Arial, sans-serif !important;
  position: fixed;
  top: 98px;
  left: -200vw;
  width: calc(100vw - 40px);
  height: 100dvh;
  background: white;
  box-shadow: -10px 0 50px var(--gray);
  transition: left 0.3s;
  display: flex;
  flex-direction: column;
}

.side-menu.active {
  left: 0;
}

.side-menu-top {
  padding: 0.5em;
  display: flex;
  justify-content: flex-end;
}

.side-menu-back {
  border: none;
}

.side-menu-back div {
  background: #222a;
}

.side-menu-content {
  font-size: 20px;
  padding: 0 24px;
  padding-bottom: 12px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.side-menu-contact {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1em;
}

.side-menu-contact img {
  width: 40px;
  height: 40px;
}

.price-old-price-container {
  display: flex;
  gap: 1em;
}

.old-price {
  color: var(--black);
  font-weight: 300;
  font-size: 14px;
  white-space: nowrap;
}


input[type=radio] {
  all: revert !important;
}


@media screen and (max-width: 600px) {
  .gallery-btn {
    display: none;
  }
}


@media screen and (min-width: 520px) {
  
  .product-list-img {
    width: 260px;
  }

  .aad265a24c4be4f868b592d89fc2423d9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
    gap: 20px;
  }

}


@media screen and (max-width: 319px) {
  .b-header-logo {
    font-size: 12px;
  }
}

@media screen and (max-width: 249px) {
  .b-header-logo {
    font-size: 8px;
  }
}

@media screen and (max-width: 1023px) {
  .gallery {
    width: calc(100dvw - 30px);
  }
}


.mb0 {
  margin-bottom: 0;
}


.flex-column {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}


.admin-product-list {
  display: flex;
  flex-direction: column;
  gap: 3em;
}

.admin-product-list textarea {
  height: 100px;
}

.admin-product-list > * {
  border: 1px solid var(--gray);
  border-radius: 1em;
  padding: 0.5em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.admin-product-list > * > div {
  display: flex;
  gap: 1em;
}

.admin-product-list > * > div:not(:first-child, .admin-product-list-images) > * {
  width: 50%;
}

.admin-product-list-add {
  cursor: pointer;
  font-size: 34px;
  border: 1px solid var(--gray);
  border-radius: 16px;
  height: 80px;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.admin-product-list-status {
  position: fixed;
  z-index: 1000;
  width: 100%;
  top: 0;
  left: 0;
  padding: 1em;
  background: #222a;
  color: white;
  text-align: center;
}

.admin-product-list-header {
  padding: 8px;
  justify-content: flex-end;
}

.admin-product-list-delete {
  cursor: pointer;
  font-size: 34px;
  color: var(--gray);
}

.admin-product-list-images {
  overflow-x: auto;
}

.admin-product-list-images > * {
  height: 60px;
}

.admin-product-list-photo,
.admin-product-list-delete-photo {
  cursor: pointer;
  position: relative;
  background: #7774;
  text-align: center;
  padding: 0.5em;
  display: flex;
  align-items: center;
}

.admin-product-list-photo input {
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.flex3col > * {
  width: 33%;
}

.products-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
}

.products-category {
  position: relative;
  height: 180px;
  border-radius: 1em;
  overflow: hidden;
  background-color: var(--dark-gray);
  color: white !important;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}

.products-category > div {
  position: absolute;
  padding: 1em;
}

.retail-product-description > * {
  display: flex;
}

.retail-product-description > * > * {
  width: 50%;
}

.log-entries {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.log-entry {
  padding: 0.5em;
  border: 1px solid var(--gray);
  border-radius: 1em;
  overflow: hidden;
}

.log-entry.active {
  border: 1px solid #111;
}

.log-name {
  cursor: pointer;
  padding: 1em 0;
}

.log-entry-d.active .log-name {
  border-bottom: 1px solid var(--gray);
}

.log-details {
  display: none;
}

.log-entry.active .log-details {
  display: block;
}

.all-sizes {
  border-collapse: collapse;
}

.all-sizes td,
.all-sizes th {
  text-align: center;
  padding: 0.5em;
  border: 1px solid #bbb;
}

.retail-product-search {
  display: flex;
  flex-direction: row !important;
  gap: 1em;
}

.retail-product-search input[type=submit] {
  width: 40px;
  background-image: url(/static/icn/search.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
}

.admin-product-stat,
.admin-product-stat * {
  display: flex;
  gap: 1em;
}

.admin-product-stat {
  flex-direction: column;
}

.admin-prduct-stat *:not(.admin-product-stat) {
  flex-direction: row;
}

.top-category-nav {
  display: flex;
  align-items: center;
  gap: 0.7em;
}

@media screen and (max-width: 361px) {
  .products-last-category {
    grid-column: span 2;
  }
}

.gallery-bars {
  display: flex;
  gap: 3px;
}

.gallery-bar {
  background: var(--gray);
  height: 3px;
  border-radius: 3px;
}

.a17563a01345d420ca57cc92b42dddac2 {
  gap: 35px !important;
}

@media (min-width: 576px) {
  .ab12fdbffc6a24d51bc372570a21b2f83 .a17563a01345d420ca57cc92b42dddac2 {
    display: flex;
    justify-content: center;
  }
}

footer {
  color: white;
  background: #2d2d37;
  display: flex !important;
  flex-direction: column;
  padding: 1em;
  box-shadow: 0 0 6px var(--gray);
}

footer a {
  color: white;
}

footer > * {
  padding: 1em;
  display: flex;
  gap: 3em;
}

footer > * > * {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.footer-top {
  border-bottom: 1px solid var(--gray);
}

.footer-title {
  font-weight: bold;
}

@media screen and (max-width: 600px) {
  .add-to-cart-a {
    width: 100%;
  }

  .add-to-cart-a > * {
    width: 100%;
  }
}

.bcards {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.bcard {
  padding: 2em;
  padding-bottom: 1em;
  box-shadow: 0 1px 7px #0007;
  border-radius: 1em;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.bcard-card {
  padding: 1.2em;
  height: 100px;
  width: 200px;
  background: var(--dark-gray);
  color: white;
  border-radius: 1em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bcard-card > *:first-child {
  font-size: 18px;
}

.bcard-discount .bcard-card {
  background: var(--primary-color);
}

.a9a28ece16a6e4f47b382047fcc329a79 a {
  font-weight: 500 !important;
  white-space: nowrap;
  cursor: pointer;
}

@media screen and (min-width: 1000px) {
  body,
  a.product *,
  .top-category-nav,
  .ab6467ee1703644a99d8c51a8e52659a4 * {
    font-size: 13px !important;
  }
}

@media screen and (min-width: 1200px) {
  body,
  a.product *,
  .top-category-nav,
  .ab6467ee1703644a99d8c51a8e52659a4 * {
    font-size: 14px !important;
  }
}

.a607471f6880f4910b121668ee79fe000[data-v-94a6e110] {
  text-decoration: none !important;
}

.icon {
  width: 24px;
  height: 24px;
}
.hero {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  border-radius: 8px;
  margin: 0 1rem;
  text-align: left;
  height: 250px;
  overflow: hidden;
  background: white;
  display: flex;
}
.hero div {
  text-shadow: 1px 1px 5px #000;
  padding: 2rem 1rem;
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.3em;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat:no-repeat;
  background-position:center;
  transition: margin-left 0.3s;
}
.sections {
  display: flex;
  gap: 1rem;
  margin: 0 1rem 1rem;
}
.section-tile {
  flex: 1;
  padding: 1rem;
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
}
.women {
  cursor: pointer;
  background-color: #ddd;
  color: #333;
}
.women:hover {
  background-color: var(--primary-color);
  color: white !important;
}
.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 0 1rem 2rem;
}
.product {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}
.product img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.product p {
  margin: 0.25rem 0;
  font-weight: 600;
}
.home-price {
  color: var(--primary-color);
}

.stories-container {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow-x: scroll;
  scrollbar-width: none;
}

.stories-container {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.stories-container::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

#stories {
  padding: 0 1em;
}

#stories img {
  border: 3px solid var(--primary-color);
  border-radius: 50%;
}