/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 56px;

  --main_content-height: 1400px;
  --blok-content-radius: 15px;

  /*========== Colors ==========*/
  --black-color: #171c26;
  --black-color-light: #1d232f;
  --black-color-lighten: #252b37;
  --white-color: #fff;
  --body-color: #f0f5ff;
  --background-main-color: #5c5c5c57;
  --background-button-color: #afa84c;

  /*========== Font and typography ==========*/
  --body-font: "Montserrat", sans-serif;
  --font-famili-standart: "OpenSans";
  --normal-font-size: 15px;

  /*========== Font weight ==========*/
  --font-regular: 600;
  --font-bold: 900;


  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 16px;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}




/*=============== HEADER ===============*/
.container_header {
  max-width: 1220px;
  margin-inline: 8px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--black-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav a:hover {
  color: #FD2E24;
}

.nav__logo, 
.nav__burger, 
.nav__close {
  color: var(--white-color);
}

.nav__logo img{
  max-height: 40px;
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 10px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 4px;
  font-weight: var(--font-bold);
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 20px;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 20px;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 40px;
    width: 100%;
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }

  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--black-color);
    padding-top: 16px;
  }

}

.nav__link {
  color: var(--white-color);
  background-color: var(--black-color);
  font-weight: var(--font-bold);
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__link:hover {
  background-color: var(--black-color-light);
}

.basket-link{
  display: block;
  position: relative;
}

.basket-link-count::before{
  content: attr(data-count);
  position: absolute;
  top: 25px;
  left: 120px;
  color: #ffffff;
  z-index: 1;
  font-weight: 600;
}

.basket-link-img{
  position: absolute;
  top: 18px;
  left: 108px;
  height: 34px;
  width: 34px;
  animation-name: rotation;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes rotation {
  0% {
      transform:rotate(0deg);
  }
  100% {
      transform:rotate(360deg);
  }
}

@media (max-width: 1118px) {
  .basket-link-count{
    display: none;
  }
  .basket-link{
    display: block;
  }
  .basket-link-img{
    display: none;
  }
}
/* Show menu */
.show-menu {
  opacity: 1;
  top: 55px;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 20px;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link {
  padding: 20px 20px 20px 40px;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.dropdown__link i {
  font-size: 20px;
  font-weight: initial;
}

.dropdown__link:hover {
  background-color: var(--black-color-lighten);
}

.dropdown__menu{
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover{
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container_header{
    margin-inline: 16px;
  }

  .nav__link {
    padding-inline: 16px;
  }
}


/* For large devices */
@media screen and (min-width: 1118px) {
  .container_header{
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 32px);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 48px;
    margin-right: 10px;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: 4px;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item, 
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu{
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 96px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__arrow-2{
    display: none;
  }

  .dropdown__link {
    padding-inline: 16px 56px;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 16px;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 88px;
    pointer-events: initial;
    transition: top .3s;
  }
}

@media (max-width: 1118px) {
  .dropdown__menu{
    display: none;
  }
  .dropdown__arrow-1{
    display: none;
  }
  .dropdown__arrow-2{
    font-weight: initial;
  }
}

/*=============== MAIN ===============*/
.container_main{
  max-width: 1420px;
  margin-inline: 8px;
  border-radius: var(--blok-content-radius);
  padding: 10px 10px 10px 10px;
  overflow: hidden;
}

.main{
  left: 50%;
  right: 50%;
}

.main_content{
  margin-top: 70px;
  background-color: var(--black-color-light);
}

/* For small devices */
@media (max-width: 340px) {
  .main_content{
    margin-top: 70px;
    height: auto;
  }
}

/* For large devices main content */
@media (min-width: 1118px) {
  .container_main {
    margin-inline: auto;
    
  }
  .main_content{
    margin-top: 100px;
    height: auto;
  }
}

@media (min-width: 1220px) {
  .main_content{
    margin-top: 110px;
  }
}

/*=============== MAIN_CARD ===============*/
.card{
  border-radius: var(--blok-content-radius);
  position: relative;
  opacity: 1;
  animation: ani 2.5s forwards;
}

.card_efect:hover, .category-cards:hover, .new-cards:hover, .cards-produckt:hover {
  transition: all 0.2s ease-in;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px #ffee00;
}

.new {
  position: absolute;
  top: 10px; 
  left: 10px;
  z-index: 99;
}

.new span{
  font-size: var(--normal-font-size);
  font-family: var(--font-famili-standart);
  font-weight: 600;
  line-height: 1.17;
  color: #fff;
  background-color: #FD2E24;
  
  padding: 5px 10px; 
  border-radius: 5px; 
}

.card img {
  max-width: 100%;
  border-radius: var(--blok-content-radius); 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  object-fit: cover;
}

.card a {
  position: relative;
  display: block;
  height: 100%;
}

.cards-grid{
  display: grid;
  gap: 10px;
  grid-auto-rows: 150px;
  grid-template-columns: repeat(4,auto);
  grid-template-rows: repeat(4,190px);
  grid-template-areas:
    "wide1 wide1 product1 product2"
    "wide2 wide2 product1 product2"
    "product3 product4 wide3 wide3"
    "product3 product4 wide4 wide4";
}

@media (max-width: 750px) {
  .cards-grid{
    grid-auto-rows: 190px;
    gap: 10px;
    grid-template-columns: repeat(2,auto);
    grid-template-rows: repeat(4,200px);
    grid-template-areas:
    "wide1 wide1"
    "wide2 wide2"
    "product1 product2"
    "product1 product2"
    "wide3 wide3"
    "wide4 wide4"
    "product3 product4"
    "product3 product4";
  }
}

.sale-1 {grid-area: wide1;}
.sale-2 {grid-area: wide2;}
.sale-3 {grid-area: wide3;}
.sale-4 {grid-area: wide4;}

.product-1 {grid-area: product1;}
.product-2 {grid-area: product2;}
.product-3 {grid-area: product3;}
.product-4 {grid-area: product4;}

@media (max-width: 1100px) {
  .card_efect:hover, .category-cards:hover, .new-cards:hover, .cards-produckt:hover {
    transition: none;
    transform: none;
    box-shadow: none;
  }
}

@keyframes ani {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

/*==================== MAIN_container-diferent ===================*/
.container-diferent{
  background-color: #967009fa;
  border-radius: var(--blok-content-radius);
}

/*=============== MAIN_nashi_perevahy ==============*/
.perevahys{
  margin-top: 15px;
  padding: 20px 0;
  background-color: #5a4f3f;
  border-top-left-radius: 15px; /* Закруглені верхні кути */
  border-top-right-radius: 15px; 
  overflow: hidden;
}
.section-headr{
  text-align: center;
  margin: 10px 0;
  font-size: 40px;
  font-family: var(--font-famili-standart);
  font-weight: 900;
  color: #ffffff;
}

.perevahys-bloсk{
  text-align: center;
}

.perevahys-img img{
  height: 150px;
  display: block;
  margin: 0 auto;
  filter: invert(1);
}

.perevahys-bloсk h3{
  margin-top: 10px;
  display: inline-block;
  width: 80%;
  font-family: var(--font-famili-standart);
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 1px 1px 1px #000;
  color: #ffffff;
}

.arrow{
  top: 50%;
  transform: translateY(-70%);
  position: absolute;
  z-index: 99;
  width: 100px;
  height: 100px;
  cursor: pointer;
  border: none;
}

.prev{
  left: -20px;
  filter: invert(1);
  background: url(../img/home_page/icon/arrow-left-wide-line.svg) center no-repeat;
  background-size: 70%;
}

.next{
  right: -20px;
  filter: invert(1);
  background: url(../img/home_page/icon/arrow-right-wide-line.svg) center no-repeat;
  background-size: 70%;
}

/*=============== MAIN_reviews ==============*/
.reviews-slider{
  padding-top: 5px;
  overflow: hidden;
}

.section-headr-reviews{
  text-align: center;
  margin: 20px 0 0 0;
  font-size: 40px;
  font-family: var(--font-famili-standart);
  font-weight: 900;
  color: #ffffff;
}

.reviews-text{
  height: 150px;
  font-family: var(--font-famili-standart);
  font-weight: 700;
  color: #ffffff;
  display: inline-block;
}

.reviews-text h3 {
  text-align: left;
  font-size: 25px;
  padding-bottom: 10px;
}

.reviews-text p{
  text-align: left;
  font-size: 20px;
}

@media (max-width: 750px) {
  .container-diferent{
    padding-bottom: 10px;
  }
  .reviews-img{
    height: 200px;
    margin: 15px 0 20px 40px;
    display: inline-block;
  }
  .reviews-text{
    margin: 0 10px 50px 30px;
  }
  .reviews-bloсk{
    text-align: center;
  }
}

@media (min-width: 750px) {
  .reviews-img{
    height: 140px;
    margin: 30px 0 20px 40px;
    display: inline-block;
  }
  .reviews-text{
    margin: 30px 10px 50px 30px;
    width: 60%;
  }
  .reviews-bloсk{
    text-align: center;
  }
}

/*=============== FOOTER ===============*/
.footer {
  margin-top: 30px;
  width: 100%;
  position: relative;
  background-color: var(--black-color);
}

.container_footer{
  max-width: 1220px;
  margin-inline: auto;
  position: relative;
}

.links {
  position: relative;
  width: 100%;
  text-align: center;
}

.links h3{
  font-size: var(--normal-font-size);
  line-height: 17px;
  padding: 0 0 5px 0;
  color: var(--white-color);
}

.links ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.links ul li {
  color: var(--white-color);
  font-size: var(--normal-font-size);
  font-family: var(--body-font);
  font-weight: 900;
  padding: 5px 0 5px 0;
  cursor: pointer;
}

.links ul li a{
  color: var(--white-color);
  font-size: var(--normal-font-size);
  font-weight: 400;
  font-family: var(--body-font);
  padding: 5px 0 5px 0;
} 
.links ul li a:hover {
  color: #FD2E24;
  text-shadow: 0 5px 15px #FD2E24;
}

.container_footer{
  display: grid;
  justify-content: space-between;
  padding: 40px 20px 0 20px;
  gap: 10px;
  grid-auto-rows: 150px;
  grid-template-columns: repeat(4,auto);
  grid-template-rows: repeat(1,auto);
  grid-template-areas:
    "company products address social";
}


@media (max-width: 910px) {
  .container_footer{
    margin: 20px 0 20px 0;
    padding-top: 40px;
    gap: 30px 60px;
    justify-content: center;
    grid-template-columns: repeat(2,auto);
    grid-template-rows: repeat(2,auto);
    grid-template-areas:
    "company products"
    "address social";
  }
}

@media (max-width: 520px) {
  .container_footer{
    margin: 0 5% 0 5%;
    padding-top: 40px;
    justify-content: center;
    gap: 30px;
    grid-template-columns: repeat(1,auto);
    grid-template-rows: repeat(4,auto);
    grid-template-areas:
    "company"
    "products"
    "address"
    "social";
  }
}

@media (max-width: 350px) {
  .container_footer{
    padding-top: 40px;
    gap: 30px;
    grid-template-columns: repeat(1,auto);
    grid-template-rows: repeat(4,auto);
    grid-template-areas:
    "company"
    "products"
    "address"
    "social";
  }
}

.link-company {grid-area: company;}
.link-products {grid-area: products;}
.link-address {grid-area: address;}
.link-social {grid-area: social;}

.links-avtors ul{
  display: flex;
  flex-wrap: wrap;
  gap: 0 50px;
  justify-content: center;
  padding-bottom: 20px;
  padding-top: 10px;
}

/*=============== router ===============*/
.routers{
  padding: 20px 2% 0 20px;
  color: #fff;
}
.routers a{
  font-size: 20px;
  color: #fff;
  font-family: var(--font-famili-standart);
}

.routers-main{
  text-decoration: underline;
}

@media (max-width: 350px) {
  .routers{
    font-size: 0px;
  }
}

@media (max-width: 1400px) {
  .routers{
    padding: 20px 0 0 10px;
  }
  .routers a{
    font-size: 15px;
  }
}

@media (max-width: 950px) {
  .routers{
    padding: 0 0 0 10px;
  }
}


/*=============== rout-bottom ===============*/
.row-content{
  padding-top: 10px;
}

.content-page-list{
  display: flex;
  justify-content: center;
}

.content-page-list li  {
  padding-right: 8px;
}

.content-page-list li a {
  border: 1px solid #ffffff;
  border-radius: 100%;
  display: block;
  height: 35px;
  line-height: 33px;
  text-align: center;
  width: 35px;
  color: #fff;
  font-size: 20px;
  font-family: var(--font-famili-standart);
  font-weight: 900;
}

.meetings a{
  background-color: #818181;
}

/*=============== PAGE__ABOUT ===============*/
.container-about{
  background-color: #5a4f3f;
  border-radius: var(--blok-content-radius);
}

.about-text p{
  background-color: #c0ae90;
  border-radius: var(--blok-content-radius);
  font-size: 20px;
  font-family: var(--font-famili-standart);
  font-weight: 600;
  padding: 20px 20px 10px 20px;
  
}

.container-about h2{
  font-size: 25px;
  font-family:var(--font-famili-standart);
  font-weight: 900;
  line-height: 1.17;
  padding: 10px 0 15px 0;
  text-align: center;
  color: #ffffff;
  letter-spacing: 1px;
  text-shadow: 1px 1px 1px #000000;
}

iframe{
  height: 450px;
  width: 100%;
  border-radius: var(--blok-content-radius); 
  border: none;
}

/*=============== PAGE__NEW ===============*/

.grid-new h2, .sources-title h2{
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #fff;
  font-size: 30px;
  font-family: var(--font-famili-standart);
  font-weight: 900;
  line-height: 1.17;
  letter-spacing: 1px;
}

.new-cards {
  border-radius: var(--blok-content-radius);
  position: relative;
}

.new-cards a {
  position: relative;
  display: block;
  height: 100%;
  color: #fff;
}

.new-cards img {
  border-radius: var(--blok-content-radius);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*=============== lable-magasine ===============*/
.label-mag {
  position: absolute;
  left: 0;
  top: 35px;
  margin-left: 10%;
  z-index: 98;
  padding: 5px; 
}

.label-mag i{
  color: #818181;
  display:inline;
  font-size: 26px;
}

.label-mag.active i {
  color: #FD2E24;
}

.label-new {
  position: absolute;
  right: 0;
  top: 35px;
}
.label-mag:hover{
  cursor: grab;
}

.label-new span {
  background: #ff0000 ;
  border-radius: 5px 0 0 5px;
  color: #ffffff;
  display: inline-block;
  font-family: var(--font-famili-standart);
  font-weight: 700;
  height: 30px;
  line-height: 28px;
  padding: 0 10px;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000000bd; 
  border-radius: var(--blok-content-radius);
  text-align: center;
}

.title-new{
  text-align: center;
  margin-top: 5px;
  color: #fff;
  font-size: 20px;
  font-family: var(--font-famili-standart);
  font-weight: 900;
  line-height: 1.17;
  letter-spacing: 1px;
}

.old-new{
  padding-right: 14px;
  color: #999999;
  text-decoration: line-through;
}

.prize-new{
  margin-top: 8px;
  margin-bottom: 5px;
  color: #fff;
  font-size: var(--normal-font-size);
  font-family: var(--font-famili-standart);
  line-height: 1.17;
  letter-spacing: 1px;
}

.cards-grid-new {
  max-width: 1400px;
  position: relative;
  display: grid;
  justify-content: center;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(250px, auto));
  grid-template-rows: auto;
  grid-auto-rows: auto;
}

@media (max-width: 1050px) {
  .cards-grid-new {
    grid-template-columns: repeat(4, minmax(200px, auto));
    grid-template-rows: auto;
  }
}

@media (max-width: 850px) {
  .cards-grid-new {
    grid-template-columns: repeat(3, minmax(100px, auto));
    grid-auto-rows: auto;
  }
  .title-new {
    font-size: 15px;
  }
  .prize-new {
    margin-top: 2px;
    font-size: 10px;
  }
}

@media (max-width: 850px) {
  .cards-grid-new {
    grid-template-columns: repeat(3, minmax(100px, auto));
    grid-auto-rows: auto;
  }
}


@media (max-width: 550px) {
  .cards-grid-new {
    grid-template-columns: repeat(2, minmax(100px, auto));
    grid-auto-rows: auto;
  }
  .label-new span {
    font-size: 10px;
    height: auto;
  }
}

/*=============== PAGE__CATEGORY ===============*/

.grid-category h2 {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #fff;
  font-size: 30px;
  font-family: var(--font-famili-standart);
  font-weight: 900;
  line-height: 1.17;
  letter-spacing: 1px;
}

.category-cards {
  border-radius: var(--blok-content-radius);
  position: relative;
  
}

.category-cards a {
  position: relative;
  display: block;
  height: 100%;
  color: #fff;
}

.category-cards img {
  border-radius: var(--blok-content-radius);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content-category {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #00000080; 
  border-radius: var(--blok-content-radius);
  text-align: center;
}

.card-content-category h2{
  color: #ffffff; 
  font-family: var(--font-famili-standart);
  font-weight: 900;
  line-height: 1.17;
  letter-spacing: 1px;
  margin: 10px 0; 
}

.cards-grid-category {
  max-width: 1400px;
  max-height: 400px;
  position: relative;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(250px, auto));
  grid-template-rows: repeat(1, minmax(200px, auto));
  grid-auto-rows: auto;
}

@media (max-width: 1050px) {
  .cards-grid-category {
    grid-template-columns: repeat(4, minmax(100px, auto));
    grid-template-rows: auto;
  }
  .card-content-category h2{
    font-size: 20px;
  }
}

@media (max-width: 650px) {
  .cards-grid-category {
    max-height: 1300px;
    grid-template-columns: repeat(2, minmax(200px, auto));
    grid-auto-rows: auto;
  }
  .card-content-category h2{
    font-size: 25px;
  }
}

@media (max-width: 450px){
  .cards-grid-category {
    /* max-height: 1700px; */
    grid-template-columns: repeat(2, minmax(100px, auto));
    grid-template-rows: repeat(2, auto);
    grid-auto-rows: auto;
  }
  .card-content-category h2{
    font-size: 15px;
  }
}

/*=============== PAGE__my__shopping===============*/

.container-table {
  text-align: center; 
  margin: 20px 0 10px 0;
}

.container-table h2, .container-checkout h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #fff;
  font-size: 30px;
  font-family: var(--font-famili-standart);
  font-weight: 900;
  line-height: 1.17;
  letter-spacing: 1px;
}

table {
  max-width: 1200px;
  margin: 0 auto; 
  border: 1px solid #ededed;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border-radius: var(--blok-content-radius); 
  overflow: hidden;
}

table th,
table td {
  border-bottom: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
  color: #ffffff; 
  font-family: var(--font-famili-standart);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.17;
  letter-spacing: 1px;
}

.title-top th{
  padding: 15px;
  background: #77767686;
  border-bottom: 1px solid ;
  border-right: 1px solid ;
}

.product-thumbnail{
  width: 300px;
  padding-top: 4px;
}

.product-thumbnail img {
  width: 160px;
  border-radius: var(--blok-content-radius);
}
.product-name{
  width: 300px;
}
.folow-product-name{
  width: 400px;
}
.product-name a, .folow-product-name a{
  color: #ffffff; 
  font-family: var(--font-famili-standart);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.17;
  letter-spacing: 1px;
}
.product-price{
  width: 160px;
}
.folow-product-price{
  width: 250px;
}
.product-size{
  width: 160px;
}

.product-quantity {
  width: 200px;
  
}

.product-remove {
  width: 100px;
}
.folow-product-remove{
  width: 250px;
}
.product-remove button, .folow-product-remove button{
  background: var(--black-color-light);
  border: none;
}

.product-remove img {
  width: 50px;
  filter: invert(1);
}

.button-shopp-container{
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  text-align:center;
}

.button-shopp-next{
  display: block;
  border: none;
  width: 250px;
  height: auto;
  border-radius: 3px;
  margin:20px 0 10px 0;
  padding:10px;
  color: white; 
  transition: 1s  cubic-bezier(0.25, 0.1, 0.25, 1);
  background-color: #afaea0a6;
  font-family: var(--font-famili-standart);
  float: right;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.17;
}

.button-shopp-next:hover, .button-shopp-next:hover, .side-button-3:hover  {
  box-shadow: var(--background-button-color) 0 0px 0px 40px inset;
}

@media (max-width: 1100px) {
  .button-shopp-next{
    transition: none;
    background-color: var(--background-button-color);
  }
  .side-button-3{
    transition: none;
    background-color: var(--black-color-lighten);
  }
}

@media  (max-width: 800px) {
  table th,
  table td {
    font-weight: 400;
  }
  .title-top th{
    padding: 5px;
  }

  .product-thumbnail{
    width: 100px;
    padding-top: 4px;
  }
  .product-thumbnail img {
    width: 100px;
  }
  .product-thumbnail{
    padding-top: 4px;
  }
  .product-name a {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.17;
    letter-spacing: 1px;
  }
  table td input {
    font-size: 20px;
    height: 25px;
    padding: 0 5px 0 10px;
    width: 40px;
  }

  .product-remove img{
    width: 25px;
  }

  .button-shopp-next{
    width: 200px;
    height: auto;
    font-size: var(--normal-font-size);
  }
}

@media  (max-width: 500px) {
  table th,
  table td {
    font-weight: 400;
  }
  .product-thumbnail{
    width: 80px;
    padding-top: 4px;
  }
  table td input {
    font-size: var(--normal-font-size);
    height: 20px;
    width: 40px;
  }
}

@media  (max-width: 550px) {
  table th,
  table td {
    font-size: 10px;
  }
  .product-thumbnail{
    display: none;
  }
  .product-thumbnail img {
    display: none;
  }
  .product-name a {
    font-size: var(--normal-font-size);
  }
  .product-quantity {
    width: 50px;
  }
  table td input {
    font-size: var(--normal-font-size);
    height: 20px;
  }
  .product-remove img{
    width: 20px;
  }
}

/*=============== Diferent__shopping ===============*/
.cards-grid-basket{
  padding-top: 10px;
  position: relative;
  display: grid;
  justify-content: center;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(auto, auto));
  grid-template-rows: repeat(1, minmax(auto, auto));
  grid-auto-rows: auto;
}

.card-basket img {
  border-radius: var(--blok-content-radius); 
  position: relative; 
  width: 100%;  
  object-fit: cover;
}

@media (max-width: 1050px) {
  .cards-grid-basket {
    grid-template-columns: repeat(2, minmax(200px, auto));
    grid-template-rows: auto;
  }
}

@media (max-width: 850px) {
  .cards-grid-basket{
    max-height: 1300px;
    grid-template-columns: repeat(2, minmax(200px, auto));
    grid-auto-rows: auto;
  }
}

@media  (max-width: 540px) {
  .cards-grid-basket{
    max-height: 1700px;
    grid-template-columns: repeat(1, minmax(auto, auto));
    grid-template-rows: repeat(2, auto);
    grid-auto-rows: auto;
  }
}

/*=============== slider__shopping ===============*/
.section-shopp-headr{
  text-align: center;
  margin: 20px 0;
  font-size: 30px;
  font-family:"Pacifico";
  font-weight: 600;
  color: #ffffff;
}

.shopp-cards{
  border-radius: var(--blok-content-radius);
  position: relative;
  margin: 5px;
}

.shopp-cards a {
  position: relative;
  display: block;
  height: 100%;
  color: #fff;
}

.shopp-cards img {
  border-radius: var(--blok-content-radius);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards-grid-shopp {
  max-width: 1400px;
  position: relative;
  display: grid;
  justify-content: center;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(250px, auto));
  grid-template-rows: auto;
  grid-auto-rows: auto;
}

@media (max-width: 450px) {
  .cards-grid-shopp {
    grid-template-columns: repeat(1, minmax(auto, auto));
    grid-auto-rows: auto;
  }
  .shopp-cards{
    margin: 0 16px 0 16px;
  }
}

/*=============== ChECKOUT ===============*/

.container-checkout {
  text-align: center; 
  margin: 20px 0 10px 0;
  justify-content: center;
}

.container-blok-checkout {
  background-color: #f2f2f2e7;
  padding: 5px 20px 15px 20px;
  border: 1px solid lightgrey;
  border-radius: 8px;
}

.container-blok-checkout h3{
  margin: 10px 0 10px 0;
  display: block;
  font-size: 20px;
  font-family: var(--font-famili-standart);
  font-weight: 600;
}


.row,
.row-pay {
  display: grid;
  grid-template-columns: repeat(2, auto);
  margin: 0 -16px;
}

.col {
  padding: 0 16px;
}

.input-checkout{
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

fieldset input {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

label {
  margin-bottom: 10px;
  display: block;
  font-size: 20px;
  font-family: var(--font-famili-standart);
  font-weight: 200;
}

.icon-container {
  margin-bottom: 10px;
  padding: 3px 0 0 0;
  font-size: 24px;
}

.btn-blok-1, 
.btn{
  color: white;
  padding: 12px;
  margin-top: 30px;
  margin-bottom: 0;
  border: none;
  transition: 1s  cubic-bezier(0.25, 0.1, 0.25, 1);
  font-size: 20px;
  font-family: var(--font-famili-standart);
  border-radius: 3px;
  cursor: pointer;
  font-size: 17px;
}

.btn-col{
  display: flex;
  justify-content: center;
}

.btn{
  background-color: #afaea0a6;
  color: white;
  padding: 12px;
  margin: 10px 10px;
  width: 100%;
}
.btn-blok-1{
  background-color: #afaea0a6;
}

.btn:hover, .btn-blok-1:hover  {
  box-shadow: var(--background-button-color) 0 0px 0px 40px inset;
}

hr {
  border: 1px solid lightgrey;
}

legend{
  margin: 10px 0 10px 0;
  display: block;
  font-size: 20px;
  font-family: var(--font-famili-standart);
  font-weight: 600;
}

.label-checkout{
display: flex;
}

.input-checkbox{
  text-align: left;
  width: 10%;
  margin-top: 5px;
  margin-bottom: 10px;
  
}

.left-pay{
  margin-left: 10px;
}

.right-pay{
  margin-right: 10px;
}
.input-numer{
  width: 300px;
}

.input-pay{
  width: 200px;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  text-align: center;
}

@media (max-width: 1100px) {
  .btn-blok-1, .btn {
    transition: none;
    background-color: var(--background-button-color);
  }
}

@media (max-width: 860px) {
  .row {
    grid-template-columns: repeat(1, auto);
  }
  .row-pay{
    grid-template-columns: repeat(2, auto);
  }
  
}

@media (max-width: 560px) {
  .col {
    padding: 0 5px; 
  }
  .input-numer{
    width: 60%;
  }
  .input-pay{
    width: 50%;
  }
  
}

/*=============== CATEGORY-PAGE-PRODUCT ===============*/
.main-produckt{
  display: flex;
}

.aside{
  width: 100%;
  background-color: #c0ae90;
  border-radius: var(--blok-content-radius);
  margin-right: 10px;
  padding: 10px;
}


.title-filter{
  padding-top: 10px;
  text-align: center;
}

.title-filter-h3{
  padding-left: 10px;
  font-size: 20px;
  font-family: var(--font-famili-standart);
  font-weight: 600;
}

.filter, 
.size{
  font-size: 18px;
  font-family: var(--font-famili-standart);
  font-weight: 600;
}

.input-range{
  width: 100%;
}

#side-checkbox {
  display: none;
}

.side-panel {
  position: fixed;
  z-index: 99;
  top: 0;
  left: -360px;
  background: #c0ae90;
  transition: all 1s;  
  height: 100%;
  box-shadow: 10px 0 20px #00000066;
  color: #FFF;
  padding: 90px 20px;
  overflow-y: auto;
}

fieldset{
  border: none;
}

.side-button-1-wr {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.side-button-1 {
  display: none;
  margin-bottom: 0;
}

.side-button-1 .side-b {
  margin: 10px ;
  text-decoration: none;
  position: relative;
  line-height: 50px;
  padding: 12px 30px;
  font-weight: bold;
  background-color: var(--black-color-lighten);
  color: white;
  border: none;
  font-size: 20px;
  font-family: var(--font-famili-standart);
  border-radius: 3px;
  cursor: pointer;
}

@media (max-width: 560px) {
  .side-button-1 .side-b {
    margin: 20px ;
    line-height: 80px;
   
  }
}

#side-checkbox:checked + .side-panel + .side-button-1-wr .side-button-1 .side-open {
  display: block;
}

#side-checkbox:checked + .side-panel {
  left: 0;
}

.side-button-2 {
  border-radius: 20px;
  position: absolute;
  z-index: 1;
  font-size: 40px;
  right: 8px;
  padding: 0 10px 0  0 ;
  cursor: pointer;
  color: #BFE2FF;    
  transition: all 280ms ease-in-out;    
}

.side-button-2:hover {
  transform: rotate(90deg);    
  color: #FFF;
}

.side-button-3{
  margin: 10px 20%;
  position: relative;
  line-height: 20px;
  padding: 12px 30px;
  font-weight: bold;
  background-color: var(--black-color-lighten);
  color: white; 
  transition: 1s  cubic-bezier(0.25, 0.1, 0.25, 1);
  border: none;
  font-size: 20px;
  font-family: var(--font-famili-standart);
  border-radius: 3px;
  cursor: pointer;
}

.filter-side-panel{
  color: #000;
}

.cards-produckt{
  border-radius: var(--blok-content-radius);
  position: relative;
}

.cards-produckt a {
  position: relative;
  display: block;
  height: 100%;
  color: #fff;
}

.cards-produckt img {
  border-radius: var(--blok-content-radius);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards-grid-category-produckt {
  max-width: 1400px;
  position: relative;
  display: grid;
  justify-content: center;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(250px, auto));
  grid-template-rows: auto;
  grid-auto-rows: auto;
}

@media (max-width: 1400px) {
  .cards-grid-category-produckt {
    grid-template-columns: repeat(4, minmax(200px, auto));
    grid-template-rows: auto;
  }
  .aside{
    max-width: 300px;
  }
  .routers-produckt{
    padding: 20px;
  }
}

@media (max-width: 1140px) {

  .cards-grid-category-produckt {
    grid-template-columns: repeat(3, minmax(200px, auto));
    grid-auto-rows: auto;
  }
  
}

@media (max-width: 950px) {
  .cards-grid-category-produckt {
    grid-template-columns: repeat(3, minmax(200px, auto));
    grid-auto-rows: auto;
  }
  .main-produckt{
    display: flex;
    flex-flow: column;
  }

  .aside{
    display: flex;
    max-width: 100%;
    margin-bottom: 10px;
  }

  #filterContainer{
    display: none;
  }

  .side-button-1 {
    display: block;
  }

}

@media (max-width: 650px) {
  .cards-grid-category-produckt {
    grid-template-columns: repeat(3, minmax(100px, auto));
    grid-auto-rows: auto;
  }
}

@media (max-width: 450px) {
  .cards-grid-category-produckt {
    grid-template-columns: repeat(2, minmax(100px, auto));
    grid-auto-rows: auto;
  }
  .routers-produckt{
     padding: 20px;
  }
}



/*=============== PAGE-PRODUCT (SHIRT) ===============*/
.content-pages{
  margin: 0 2% 0 2%;
}

.content-pages-produckt{
  display: flex;
  margin-top: 15px;
}

.imgs-produckt{
  max-width: 50%;
  padding-right: 20px;
}

.fotorama{
  background-color: #999999a9;
  padding-top: 10px;
  border-radius: var(--blok-content-radius);
}

.fotorama img{
  align-items: center;
}

.details-produckt{
  max-width: 50%;
  padding: 0 0 0 10px;
}

.details-produckt h2{
  font-family: "Open Sans";
  font-size: 24px;
  font-weight: 700;
  color: #FFF;
}

.details-prize{
  display: flex;
  color: #ffffff;
  margin-top: 13px;
  margin-bottom: 1px;
  font-size: 18px;
  font-family: var(--font-famili-standart);
  font-weight: 600;
}

.old-prize{
  color: #999999;
  margin-right: 20px;
  text-decoration: line-through;
}

.details-rating{
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.colors-rating{
  color: #ffee00;
}

.details-rating .li-thih{
  margin-left: 5px;
}

.details-text{
  font-size: 14px;
  color: #FFF;
  font-family: "Open Sans";
  line-height: 23px;
  margin-top: 14px;
}

.details-size{
  margin-top: 15px;
}

.details-size span{
  font-size: var(--normal-font-size);
  color: var(--white-color);
  font-weight: 700;
}

.details-size-produckt{
  background: #e5e5e5;
  border: medium none;
  border-radius: 3px;
  color: #000000;
  height: 38px;
  margin-left: 40px;
  padding-left: 22px;
  width: 122px;
  font-size: 18px;
  font-family: var(--font-famili-standart);
  font-weight: 600;
}
.details-size-mag{
  margin: 10px;
}

.details-size-produckt option{
  font-size: 18px;
  font-family: var(--font-famili-standart);
  font-weight: 600;
}


.details-quantity{
  margin-top: 15px;
  display: flex;
}

.details-quantity-mg{
  display: flex;
  justify-content: center;
}

.details-quantity span{
  padding-top: 5px;
  padding-right: 30px;
  font-size: var(--normal-font-size);
  color: var(--white-color);
  font-weight: 700;
}

.details-quantity-produckt{
  background: #e5e5e5;
  border: medium none;
  border-radius: 3px;
  color: #000000;
  height: 38px;
  margin-left: 20px;
  padding-left: 22px;
  width: 52px;
  font-size: 18px;
  font-family: var(--font-famili-standart);
  font-weight: 600;
}


.items {
	font-family: 'Montherat', serif;
  font-weight: 600;
  border: medium none;
	background: #e5e5e5;
  color: #000;
	border-radius: 3px;
	width: 120px;
	display: flex;
	font-size: 18px;
	height: 30px;
	overflow: hidden;
  line-height: 1.7;
}


.items__control {
	width: 40px;
	cursor: pointer;
	transition: 0.2s ease-in;
	text-align: center;
}

.items__control:hover {
    background: #926f5f;
    color: #FFF;
}

.items__current {
	width: 40px;
  text-align: center;
}


.details-button {
  margin: 22px 0 0 auto;
  position: relative;
  line-height: 20px;
  padding: 12px 30px;
  font-weight: bold;
  background-color: var(--white-color);
  color: white;
  background-color: #afaea0a6;
  transition: 1s  cubic-bezier(0.25, 0.1, 0.25, 1);
  border: none;
  font-size: 20px;
  font-family: var(--font-famili-standart);
  border-radius: 3px;
  cursor: pointer;
}
.details-button:hover {
  box-shadow: var(--background-button-color) 0 0px 0px 40px inset;
}


@media (max-width: 1400px) {
  .content-pages-produckt{
    margin-top: 0;
  }
}

@media (max-width: 1100px) {
  .details-button:hover {
    box-shadow: none;
    transition: none;
  }
  .details-button{
    background-color: var(--background-button-color);
  }
}

@media (max-width: 950px) {
  .content-pages-produckt{
    display: flex;
    flex-direction: column;
    margin-top: 0;
    
  }
  .imgs-produckt{
    max-width: 100%;
    padding-right: 0;
  }
  .details-produckt{
    max-width: 100%;
    padding-top: 20px;
  }
}

@media (max-width: 550px) {
  .details-quantity-mg{
    max-width: 50px;
    display: flex;
    justify-content: center;
  }
  .items{
    font-weight:400;
    font-size: 12px;
    line-height: 2.5;
  }
}

.shop-des-container{
  margin-top: 45px;
}
.shop-des{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}



.tab-content{
  margin-bottom: 20px;
  font-size: 14px;
  color: #FFF;
  font-family: "Open Sans";
  line-height: 23px;
  margin-top: 30px;
}

.tabs {
  display: flex;
  background-color: #f1f1f1;
  max-width: max-content;
  border-radius: 3px;
  margin-bottom: 0;
}

.tablink {
  display: flex;
  align-items: center;
  text-align: center;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  font-family: "Open Sans";
  font-weight: 600;
  line-height: 23px;
}

.active{
  color: #c92e2e;
  border-radius: 3px;
}

.tablink:hover {
  background-color: #ccc;
}

.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
}

.show {
  display: block;
}

#tab3 h3, #tab4 h3{
  font-family: "Open Sans";
  font-weight: 600;
  text-transform: uppercase;
  font-size: 28px;
  margin-bottom: 5px;
  margin-top: 24px;
}

.coment-tab3{
  border: 1px solid #dddddd;
  border-radius: var(--blok-content-radius);
  padding: 16px 10px 0 10px;
  margin: 0 2% 26px 2%;
}

.question-tab4{
  border: 1px solid #dddddd;
  border-radius: var(--blok-content-radius);
  padding: 16px 10px 0 10px;
  margin-bottom:26px;
}
.question-text{
  display: flex;
}
.question-text p, .question-text-admin p{
  font-size: var(--normal-font-size);
}
.question-text-admin{
  display: flex;
  padding-left: 20px;
}
.question-none{
  text-align: center;
  font-size: 28px;
  padding-bottom: 8px;
}

.coment-mark, .question{
  display: flex;
  margin-top: 5px;
  margin-bottom: 5px;
}

.coment-mark h2, .question h2{
  padding-right: 5px;
}
.question {
  font-size: 18px;
}

@media (max-width: 600px) {
  .question {
    font-size: 18px;
  }
  .question-text p, .question-text-admin p{
    font-size: 12px;
  }
  .question {
    font-size: 15px;
  }
  .tabcontent{
    padding: 0;
  }
}

.question-tab4 p{
  padding-right: 5px;
  padding-left: 20px;
}
#tab3 p, #tab4 p{
  margin-top: 5px;
  margin-bottom: 11px;
}

#tab3 span, #tab4 span{
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
}

#tab3 textarea, #tab4 textarea{
  background: #fff ;
  border: 1px solid #eeeeee;
  border-radius: 5px;
  min-height: 100px;
  padding: 10px;
  width: 100%;
  font-family: "Source Sans Pro", Helvetica, sans-serif;
}

#tab3 input, #tab4 input{
  border: 0.2px solid #eeeeee;
  border-radius: 5px;
  height: 38px;
  width: 50%;
  padding: 5px;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  #tab3 input, #tab4 input{
    display: block;
    width: 100%;
    height: 38px;
    padding: 5px;
    margin-bottom: 10px;
  }
}

.table-scrol{
  display: block;
  max-height:600px;
  max-width: fit-content;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: auto;
  white-space: nowrap;
 
}
.table-scrol td{
  padding: 5px;
  text-align: center;
}


/*=============== Sources ===============*/
.sources-title{
  color: #fff;
  font-family: var(--font-famili-standart);
}

.sources-title p {
  font-size: 20px;
  margin: 15px 0 10px 20px;
}

.sources-text{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;;
  row-gap: 0;
  column-gap: 100px;
  background-color: #5a4f3f;
  border-radius: 8px;
}

.sources-text p a, .sources-media a{
  text-decoration:underline;
  color: #FFF;
}

@media (max-width: 600px) {
  .sources-text{
    display: block;
    padding: 10px 0 10px 0;
  }
  .sources-text p{
    font-size: var(--normal-font-size);
  }
}

.sources-title a:hover{
  color: #FD2E24;
}

.sources-media{
  background-color: #5a4f3f;
  border-radius: 3px;
  margin: 10px 0 0 0;
  padding: 10px;
}
.sources-media-colom{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 100px;
  row-gap: 10px;
}
.sources-media-color{
  background-color: #b8a07d3b;
  border-radius: 8px;
  height: 100%;
  padding: 5px;
}
.sources-media h2{
  color: #fff;
  font-family: var(--font-famili-standart);
  font-size: 20px;
  padding: 10px 0 10px 0; 
}
.sources-media h3{
  text-align: center;
}

.sources-media li {
  padding: 10px 0 10px 0; 
}
@media (max-width: 600px) {
  .sources-media li {
    font-size: 12px; 
  }
  
}

@media (max-width: 500px) {
  .sources-media-colom li{
    font-size: 15px;
  }
}