*:focus {
  outline: none;
}

/*
* Main
*/
html, body
{
    font-family: "Geist", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #171717;

    box-sizing: border-box;
    padding: 0;
    margin: 0;

    background-color: #fbfcfc;
    min-height: 100vh;
}
body
{
  min-height: 100vh;
}
html *, body *
{
    transition: all 0.15s ease-out;
}
/*
* Common
*/
.page
{
    position: relative;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 100vh;

    box-sizing: border-box;
    padding: 120px 0 0 0;

}
.page-content
{
  width: 100%;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;

  margin: 48px 0 0 0;
}
.page-h1
{
  width: 100%;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;

  /*gap: 24px;*/

  margin: 0 0 24px 0;
}
.page-text
{
  width: 100%;

  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;

  gap: 24px;

  margin: 0 0 24px 0;
}

.news-page-image
{
  width: 100%;

  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;

  gap: 24px;

  margin: 0 0 24px 0;
}

.container
{
    width: 100%;
    min-width: 100%;
    max-width: 100%;

    box-sizing: border-box;
}
.wrapper
{
    width: 100%;
    max-width: 1600px;
}
.fixed
{
    position: fixed;
    top: 0;
    z-index: 50;
}

/*
* Header
*/
header
{
    width: 100%;
    height: 60px;

    box-sizing: border-box;
    padding: 14px 24px;
    background: #ffffff;
}
.header
{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
/*
* Header logo
*/
.header-logo
{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

    width: auto;
    height: 32px;
    text-decoration: none;

    box-sizing: border-box;
    padding: 6px;

    border-radius: 8px;

    background-color: none;

    gap: 8px;
}
.header-logo:hover
{
    background-color: whitesmoke;
}
.header-logo-text
{
    font-size: 16px;
    font-weight: 700;
    color: #171717;
    text-decoration: none;
}
.header-logo-image
{
    width: 20px;
    height: 20px;
}

/*
* Header nav
*/
.header-nav
{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

    gap: 12px;
}
.header-nav-item
{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;
    padding: 6px 12px;

    border-radius: 8px;

    background-color: none;

    font-size: 14px;
    font-weight: 500;
    color: #171717;
    text-decoration: none;
}
.header-nav-item:hover
{
    background-color: whitesmoke;
}

/*
* Header actions
*/
.header-actions
{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;

    gap: 12px;
}
.header-actions-btn
{
    height: 32px;
    width: 32px;

    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;

    border: 0;
    background: none;
    border-radius: 8px;
}
.header-actions-btn:hover
{
    background-color: whitesmoke;
}
.header-actions-btn svg
{
    width: 16px;
    height: 16px;

    color: #171717;
}
.header-actions-btn
{
    position: relative;
}
.header-actions-btn-badge
{
    position: absolute;
    top: 0;
    right: 0;

    width: auto;
    height: 12px;

    min-width: 14px;
    min-height: 14px;

    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;
    padding: 4px 4px;

    border: 0;
    background-color: #3a86ff;
    border-radius: 8px;

    font-size: 10px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
}

.header-actions-language-field
{
    position: relative;
}
.header-actions-language-field:hover .header-actions-language-list
{
    display: flex;
}
.header-actions-language-list
{
    position: absolute;

    top: 32px;
    left: 0;

    box-sizing: border-box;
    padding: 12px;

    width: 100%;
    height: auto;

    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 8px;

    background-color: #ffffff;

    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;

    box-shadow: 0px 40px 80px 0px rgba(193, 199, 212, 0.3)
}
.header-actions-language-list.medium
{
  width: 150%;
}
.header-actions-language-list-item
{
    font-size: 14px;
    font-weight: 400;
    color: #a9a9a9;
    text-decoration: none;
}
.header-actions-language-list-item:hover,
.header-actions-language-list-item.active
{
    color: #171717;
}

/*
* Footer
*/
.footer
{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;

  margin-top: auto;

  /*margin: 96px 0 0 0;*/

  background-color: #171717;

  box-sizing: border-box;
  padding: 48px 0;
}
.footer-wrapper
{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 64px;
    grid-row-gap: 0px;
}
.footer-column
{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 12px;
}
.footer-logo
{
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

    gap: 12px;

    text-decoration: none;
}
.footer-logo-image
{
    width: 20px;
    height: 20px;
}
.footer-logo-text
{
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
}
.footer-subtext
{
    font-size: 14px;
    font-weight: 400;
    color: #a9a9a9;
    text-decoration: none;
    margin: 0;
}
.footer-nav
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 6px;
}
.footer-nav-item
{
    font-size: 14px;
    font-weight: 400;
    color: #a9a9a9;
    text-decoration: none;
    margin: 0;
}
.footer-nav-item:hover
{
    color: #ffffff;
}
/*
* Hero
*/
.hero
{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}
.hero-wrapper
{
    background-color: #EEF4F5;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;

    box-sizing: border-box;
    padding: 48px;

    gap: 24px;

    border-radius: 24px;
}
.hero-announce
{
    width: 40%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    box-sizing: border-box;
    padding: 0 64px 0 0;

    gap: 24px;
}
.hero-announce-title
{
    font-size: 40px;
    font-weight: 600;
    color: #171717;
    text-decoration: none;

    line-height: 110%;

    margin: 0;
}
.hero-announce-text
{
    font-size: 20px;
    font-weight: 400;
    color: #171717;
    text-decoration: none;

    line-height: 135%;

    margin: 0;
}
.hero-product-high
{
    width: 30%;
    min-height: 500px;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;

    border-radius: 12px;

    box-sizing: border-box;
    padding: 24px;

    gap: 64px;

    text-decoration: none;
}
.hero-product-high-content
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 12px;
}
.hero-product-high-title
{
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;

    line-height: 135%;

    margin: 0;
}
.hero-product-high-price
{
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;

    line-height: 135%;

    margin: 0;
}

.hero-products-low
{
    width: 30%;
    min-height: 500px;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 24px;
}
.hero-product-low
{
    width: 100%;
    min-height: 250px;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;

    border-radius: 12px;

    box-sizing: border-box;
    padding: 24px;

    gap: 64px;

    text-decoration: none;
}

.hero-product-low-content
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 12px;
}
.hero-product-low-title
{
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;

    line-height: 135%;

    margin: 0;
}
.hero-product-low-price
{
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;

    line-height: 135%;

    margin: 0;
}

.product-dark .hero-product-high-title,
.product-dark .hero-product-low-title,
.product-dark .hero-product-high-price,
.product-dark .hero-product-low-price
{
    color: #ffffff;
}
.product-light .hero-product-high-title,
.product-light .hero-product-low-title,
.product-light .hero-product-high-price,
.product-light .hero-product-low-price
{
    color: #171717;
}

/*
* Categories
*/
.homepage-categories
{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

    box-sizing: border-box;
    padding: 64px 0;
}
.homepage-categories-wrapper
{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;

    box-sizing: border-box;

    gap: 24px;
}
.homepage-categories-column
{
    width: 50%;
    height: 600px;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 24px;
}

.homepage-categories-row
{
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;

    gap: 24px;
}

.homepage-category-big
{
    height: 600px !important;
}
.homepage-category-medium
{
    height: 288px !important;
}
.homepage-category-small
{
    height: 288px !important;
}

.homepage-category
{
    position: relative;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    text-decoration: none;

    background-color: #ffffff;

    border-radius: 16px;

    box-sizing: border-box;
    padding: 48px;

    box-shadow: 0px 20px 80px 0px rgba(193, 199, 212, 0.3);
}

.homepage-categoty-image
{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}
.homepage-category-title
{
    font-size: 20px;
    font-weight: 600;
    color: #171717;
    text-decoration: none;

    line-height: 135%;

    margin: 0 0 12px 0;

    z-index: 20;
}
.homepage-category-subtitle
{
    font-size: 18px;
    font-weight: 600;
    color: #a9a9a9;
    text-decoration: none;

    line-height: 135%;

    margin: 0;

    z-index: 20;
}

.homepage-category:hover
{
    background-color: #171717;
}
.homepage-category:hover .homepage-category-title
{
    color: #ffffff;
}
/*
* Buttons
*/
.btn-dark
{
    height: 32px;

    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;
    padding: 0 12px;

    gap: 12px;

    border: 0;
    background-color: #171717;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
}
.btn-dark:hover
{
    background-color: #2b2b2b;
}
.btn-dark svg
{
    width: 16px;
    height: 16px;

    color: #ffffff;
}
.btn-white
{
    height: 32px;

    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;
    padding: 0 12px;

    gap: 12px;

    border: 0;
    background-color: #ffffff;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 500;
    color: #171717;
    text-decoration: none;
}
.btn-white:hover
{
    background-color: whitesmoke;
}
.btn-white svg
{
    width: 16px;
    height: 16px;

    color: #171717;
}

.btn-medium
{
    height: 48px;

    padding: 0 24px;

    gap: 16px;
    font-size: 16px;
    font-weight: 500;
}
.btn-medium svg
{
    width: 20px;
    height: 20px;
}
.btn-gap-6
{
    gap: 6px;
}

/*
* Products
*/
.products
{
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
}
.products-wrapper
{
    width: 100%;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 48px;

    margin: 0 0 24px 0;
}
.products-count-zero
{
  width: 100%;
}
.products-count-zero-text
{
  font-size: 16px;
  font-weight: 400;
  color: #a9a9a9;
  text-decoration: none;
  line-height: 135%;
  margin: 0 0 12px 0;
}

.products-item
{
    position: relative;
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    text-decoration: none;

    gap: 12px;

}

.badge-list
{
  position: absolute;
  left: 0px;
  top: 0px;

  width: 100%;
  box-sizing: border-box;
  padding: 20px;

  gap: 8px;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.badge-list-relative
{
  width: 100%;
  box-sizing: border-box;
  padding: 20px 0;

  gap: 8px;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.products-item-badge
{
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  line-height: 135%;
  margin: 0;

  box-sizing: border-box;
  padding: 2px 6px;

  border-radius: 3px;

  background: #171717;
}
.products-item-badge.badge_new
{
  background: #3a86ff;
}
.products-item-badge.badge_sale
{
  background: #ef476f;
}
.products-item-badge.badge_hit
{
  background: #06d6a0;
}
.products-item-link
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    text-decoration: none;

    gap: 12px;
}

.products-item-image
{
    width: 100%;
    max-width: 100%;
    height: 300px;

    border-radius: 16px;

    object-fit: cover; /* важно: обрезает изображение чтобы заполнить область */
    object-position: center; /* центрирует изображение */
}
.products-item:hover
{
  transform: scale(1.02);
}

.products-item-title
{
    font-size: 18px;
    font-weight: 600;
    color: #171717;
    text-decoration: none;
    line-height: 135%;
    margin: 0;
}
.products-item-reviews
{
  font-size: 12px;
  font-weight: 400;
  color: #99a0ac;
  text-decoration: none;
  line-height: 135%;
  margin: 0;
}
.products-item-price
{
    font-size: 16px;
    font-weight: 500;
    color: #171717;
    text-decoration: none;
    line-height: 135%;
    margin: 0;
}

.products-item-button
{
    height: 32px;

    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;
    padding: 0 12px;

    gap: 12px;

    border: 0;
    background-color: #171717;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
}
.products-item-button:hover
{
    background-color: #2b2b2b;
}

/*
* Notification
*/
.notification
{
  /*
    position: fixed;
    top: 72px;
    right: 20px;
    */
    padding: 15px 25px;

    border-radius: 4px;

    font-family: Arial, sans-serif;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;

    box-shadow: 0px 40px 80px 0px rgba(193, 199, 212, 0.3);

    font-size: 14px;
    font-weight: 500;
    color: #171717;
    text-decoration: none;
    border-left: 4px solid #171717;
}

.notification.show
{
    opacity: 1;
}

.success
{
    background-color: #ffffff;
    border-left: 4px solid #a7c957;
}

.error {
    background-color: #ffffff;
    border-left: 4px solid #e63946;
}

/* Контейнер для уведомлений */
.notification-container {
    position: fixed;
    top: 72px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;

    gap: 6px;
}

/*
* Shop
*/
.shop
{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}
.shop-wrapper
{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 24px;

    border-radius: 24px;
}
.shop-sidebar
{
  width: 20%;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;

  gap: 24px;
}
.shop-nav
{
  width: 100%;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;

  gap: 12px;
}
.shop-nav-item
{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 6px 12px;
  border-radius: 8px;
  background-color: none;
  font-size: 16px;
  font-weight: 500;
  color: #171717;
  text-decoration: none;

  gap: 12px;
}
.shop-nav-item.active,
.shop-nav-item:hover
{
    background-color: whitesmoke;
}
.shop-nav-item-subtitle
{
  font-size: 12px;
  font-weight: 600;
  color: #a9a9a9;
  text-decoration: none;
  line-height: 135%;
  margin: 0;
}
.shop-content
{
  width: 80%;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;

  gap: 24px;

  margin-bottom: 96px;
}
.products-margin
{
  margin-bottom: 96px;
}
.shop-content-reviews
{
  width: 100%;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;

  gap: 12px;
}
.reviews-title
{
  font-size: 20px;
  font-weight: 500;
  color: #171717;
  text-decoration: none;
  line-height: 135%;
  margin: 0;
}
.no-reviews
{
  width: 100%;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;

  font-size: 16px;
  font-weight: 500;
  color: #171717;
  text-decoration: none;
  line-height: 135%;
  margin: 0;
}
.shop-content-product
{
  width: 100%;

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;

  gap: 24px;
}
.shop-content-product-column
{
  width: 50%;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;

  gap: 12px;
}
.shop-content-product-image
{
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
}
.shop-content-product-price
{
  font-size: 22px;
  font-weight: 500;
  color: #171717;
  text-decoration: none;
  line-height: 135%;
  margin: 0;
}
.products-item-button.shop-content-products-item-button
{
    height: 48px;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 32px;
    gap: 12px;
    border: 0;
    background-color: #171717;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
}

/*
* Breadcrumbs
*/
.breadcrumbs
{
  width: 100%;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;

  gap: 2px;

  margin: 0 0 24px 0;
}
.breadcrumbs-item
{
  margin: 0;

  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 3px 6px;
  border-radius: 2px;

  background-color: none;
  font-size: 12px;
  font-weight: 500;
  color: #a9a9a9;
  text-decoration: none;
}
.breadcrumbs-item-link:hover
{
  background-color: whitesmoke;
}
/*
* Headings and texts
*/
p, pre
{
  font-size: 16px;
  font-weight: 400;
  color: #171717;
  text-decoration: none;
  line-height: 135%;
  margin: 0 0 12px 0;
}

h1,
h1.page-h1-title
{
  font-size: 28px;
  font-weight: 700;
  color: #171717;
  text-decoration: none;
  line-height: 135%;
  margin: 0;
}
.page-h1-subtitle
{
  font-size: 18px;
  font-weight: 600;
  color: #a9a9a9;
  text-decoration: none;
  line-height: 135%;
  margin: 0;
}


/*
* Helpers
*/
.nomargin
{
  margin: 0;
}


/*
* News
*/
.news
{
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
}
.news-wrapper
{
    width: 100%;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 48px;

    margin: 0 0 24px 0;
}
.news-count-zero
{
  width: 100%;
}
.news-count-zero-text
{
  font-size: 16px;
  font-weight: 400;
  color: #a9a9a9;
  text-decoration: none;
  line-height: 135%;
  margin: 0 0 12px 0;
}

.news-item
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    text-decoration: none;

    gap: 12px;

}
.news-item-link
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    text-decoration: none;

    gap: 12px;
}

.news-item-image
{
    width: 100%;
    max-width: 100%;

    height: 250px;

    border-radius: 16px;

    object-fit: cover;
}

.news-item-page-image
{
    width: 100%;
    max-width: 100%;

    height: 350px;

    border-radius: 16px;

    object-fit: cover;
}

.news-item:hover
{
  transform: scale(1.02);
}

.news-item-title
{
  font-size: 14px;
  font-weight: 600;
  color: #171717;
  text-decoration: none;
  line-height: 135%;
  margin: 0 0 0 0;
}
.news-item-date
{
  font-size: 14px;
  font-weight: 400;
  color: #a9a9a9;
  text-decoration: none;
  line-height: 135%;
  margin: 0 0 0 0;
}
.review-wrapper
{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.review-wrapper form
{
  width: 100%;
  max-width: 800px;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;

  background: #ffffff;
  border-radius: 8px;

  box-sizing: border-box;
  padding: 48px;

}
.review-form
{
  width: 100%;

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;

  gap: 24px;
}
.review-form-product
{
  width: 50%;
}
.review-form-data
{
  width: 50%;
}

.auth-wrapper
{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.auth-wrapper form
{
  width: 100%;
  max-width: 400px;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;

  background: #ffffff;
  border-radius: 8px;

  box-sizing: border-box;
  padding: 48px;

  gap: 12px;
}
.review-form-data
{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;

  gap: 12px;
}
.form-heading
{
  width: 100%;

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;

  font-size: 20px;
  font-weight: 500;
  color: #171717;
  text-decoration: none;

  margin: 0 0 12px 0;
}
.review-form-data .form-heading
{
  justify-content: flex-start;
}
.label
{
  width: 100%;

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;

  font-size: 14px;
  font-weight: 500;
  color: #171717;
  text-decoration: none;

  margin: 0;
}
.input
{
  width: 100%;

  height: 32px;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 0 12px;
  gap: 12px;
  border: 0;
  background-color: #fbfcfc;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #171717;
  text-decoration: none;
}
p.text
{
  font-size: 14px;
  font-weight: 400;
  color: #171717;
  text-decoration: none;

  margin: 0 0 0 0;
}
a.link
{
  font-size: 14px;
  font-weight: 400;
  color: #3a86ff;
  margin: 0 0 0 0;
}
.btn
{
    height: 32px;

    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;
    padding: 0 12px;

    gap: 12px;

    border: 0;
    background-color: #171717;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
}
.btn:hover
{
    background-color: #2b2b2b;
}
.btn svg
{
  width: 14px;
}


.stars-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 48px;
}
.stars {
  display: flex;
  gap: 8px;
  font-size: 0;
}
.star {
  font-size: 24px;
  color: #ddd;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.star:hover {
  transform: scale(1.1);
}
.star.active {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.selected-rating {
    font-size: 16px;
    color: #888;
    margin-top: 10px;
    min-height: 20px;
}
.reviews-list
{
  width: 100%;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;

  gap: 24xp;
}
.reviews-list-item
{
  width: 100%;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;

  gap: 12px;

  border-radius: 8px;

  box-sizing: border-box;
  padding: 24px;

  background: #ffffff;
}
.reviews-list-title,
.reviews-list-content,
.reviews-list-date
{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  color: #171717;
  text-decoration: none;
  margin: 0;
}
.reviews-list-date
{
  font-size: 12px;
  color: #a9a9a9;
}

.cart-items-wrapper
{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;

  gap: 24px;

  margin-bottom: 96px;
}

.cart-items
{
  width: 70%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 24px;

  background-color: #ffffff;

  border-radius: 16px;

  gap: 24px;
}
.cart-process
{
  width: 30%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 24px;

  background-color: #ffffff;

  border-radius: 16px;

  gap: 24px;
}
.cart-process-hr
{
  width: 100%;
  height: 1px;

  background: #99a0ac25;
}

.cart-item
{
  width: 100%;

  display: grid;
  /*grid-template-columns: repeat(5, 1fr);*/
  grid-template-columns: 15% 25% 5% auto 5%;

  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;

  gap: 24px;
}
.cart-item-image
{
  width: 100%;
  max-width: 100%;
  height: 140px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;

  text-decoration: none;
}
.cart-item-title
{
  height: 100%;

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;

  font-size: 18px;
  font-weight: 600;
  color: #171717;
  text-decoration: none;
  line-height: 135%;
  margin: 0;
}
.cart-item-quantity
{
  height: 100%;

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;

  font-size: 14px;
  font-weight: 600;
  color: #171717;
  text-decoration: none;
  line-height: 135%;
  margin: 0;
}
.cart-item-price
{
  height: 100%;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-end;

  font-size: 18px;
  font-weight: 600;
  color: #3a86ff;
  text-decoration: none;
  line-height: 135%;
  margin: 0;
}
.cart-item-price-per-pcs
{
  font-size: 14px;
  font-weight: 400;
  color: #99a0ac;
  margin-left: 6px;
}

.cart-item-remove-block
{
  height: 100%;

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
}
.cart-item-remove
{
  background: none;
  border: none;

  width: 24px;
  height: 24px;
}
.cart-item-remove svg
{
  color: #99a0ac;
}
.cart-item-remove:hover svg
{
  color: #ef476f;
}


.checkout-btn
{
    width: 100%;
    height: 48px;

    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;
    padding: 0 12px;

    gap: 12px;

    border: 0;
    background-color: #171717;
    border-radius: 8px;

    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
}
.checkout-btn:hover
{
    background-color: #2b2b2b;
}
.checkout-btn svg
{
  width: 14px;
}

.cart-process-title
{
  font-size: 16px;
  font-weight: 400;
  color: #171717;
  text-decoration: none;
  line-height: 135%;
  margin: 0;
}
.cart-process-total
{
  position: relative;

  width: 100%;

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.cart-process-total::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #ebebf0;
}
.cart-process-total-label
{
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;

  font-size: 18px;
  font-weight: 500;
  color: #171717;
  text-decoration: none;
  line-height: 135%;
  margin: 0;

  background-color: #ffffff;
  z-index: 1;
  box-sizing: border-box;
  padding-right: 24px;
}
.cart-process-total-amount
{
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;

  font-size: 18px;
  font-weight: 500;
  color: #3a86ff;
  text-decoration: none;
  line-height: 135%;
  margin: 0;

  background-color: #ffffff;
  z-index: 1;

  box-sizing: border-box;
  padding-left: 24px;
}


.alert
{
  width: 100%;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;

  background-color: #ffffff;

  box-sizing: border-box;
  padding: 12px;

  border-radius: 8px;

  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  line-height: 135%;
  margin: 0;
}
.alert-error
{
  background-color: #ef476f;
}
.alert-success
{
  background-color: #06d6a0;
}
.alert-info
{
  background-color: #3a86ff;
}

.additionla-h1
{
  width: 100%;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;

  margin: 0 0 24px 0;
}
.cart-clear
{
  font-size: 16px;
  font-weight: 500;
  color: #171717;
  text-decoration: underline;
  line-height: 135%;
  margin: 0;
}

.width-50
{
  width: 100%;
  max-width: 50%;
}
.card-form form
{
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 48px;
  gap: 12px;
}

.divider
{
  width: 100%;
  height: 1px;

  background-color: #a9a9a950;
}

.row
{
  width: 100%;

  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 64px;
  grid-row-gap: 0px;
}

.row.col-2
{
  width: 100%;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 64px;
  grid-row-gap: 0px;
}
