@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f9f9f9 !important;
  font-family: "Nunito" !important;
  position: relative;
}

header {
  background-image: url(../images/Ellipse\ 1.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center -50px;
}

h1 {
  font-weight: 800;
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 40px;
  color: white;
  padding-top: 15px;
}

h6 {
  margin: 0;
}

a {
  color: #000;

}

p {
  margin-bottom: 0;
}

ul {
  padding: 0;
  margin: 10px 0px 6px 0px;
}

li {
  list-style: none;
  font-size: 14px;
}

button:focus {
  box-shadow: none !important;
}

.intro {
  padding-bottom: 10%;
  padding-top: 50px;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.intro-title img {
  order: 1;
}

.intro-title {
  order: 2;
}

.cate-item {
  display: flex;
  padding: 10px 15px;
  border-radius: 50px;
  gap: 7px;
  background-color: white;
  /* box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1); */
}

.cate-item:hover {
  cursor: pointer;
}

.active {
  background-color: #FFAB08;
  color: white;
}

.main-content {
  padding-top: 50px;
  padding-bottom: 80px;
}

.burger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.burger-item {
  padding: 15px;
  background-color: white;
  border-radius: 18px;
}

.burger-item img {
  width: 100%;
  height: auto;
}

.btn {
  background: #F2F2F3;
  width: 100%;
  margin-top: 8px;
  border-radius: 12px;
  transition: .4s ease;
}

.btn:hover {
  background: #FF7020;
  color: white;
}

footer {
  padding-top: 50px;
  padding-bottom: 40px;
  background: white;
}

.footer {
  display: flex;
  justify-content: space-between;
}

.footer-left {
  order: 1;
}

.footer-right {
  display: flex;
  order: 2;
}

.cont-tel {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.cont-tel i {
  font-size: 24px;
}

.socials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 36px;
  margin-right: 10px;
  background-color: #FF6600;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.socials:hover {
  color: white;
}

/* Корзина */
.basket {
  max-width: 306px;
  background-color: white;
  padding: 24px 16px;
  border-radius: 18px;
  margin-right: 15px;
}

.basket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #F2F2F3;
  padding-bottom: 6px;
}

.basket-head span {
  padding: 1px 15px;
  background-color: #F2F2F3;
  border-radius: 6px;
}

.basket-btn {
  background: #FF7020;
  width: 100%;
  padding: 10px 0px;
  border-radius: 12px;
  border: none;
  color: white;
  margin: 8px 0px;
}

.basket-offer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px;
  border-bottom: 1px solid #F2F2F3;
}

.basket-offer img {
  width: 64px;
  height: 52px;
  border-radius: 8px;
}

.basket-offer-desc {
  width: 105px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.basket-offer-desc h6 {
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
}

.basket-offer-desc span {
  font-size: 14px;
  font-weight: 600;
}


.product-number2 {
  height: 34px;
  padding: 4px 6px;
  background-color: #F2F2F3;
  border-radius: 12px;
  user-select: none;
}

.product-number2 a {
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
}

.product-number2 a:hover {
  color: #000;
}

.product-num2 {
  margin: 0 10px;
  font-size: 18px;
}

/* modal contact */
.mod-2 {
  display: none;
}

.modal-contact {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-contact-content {
  display: flex;
  /* flex-direction: column; */
  width: 750px;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  background-color: white;

}

.modal-contact-img {
  background-color: #FFAB08;
}

.modal-right {
  display: flex;
  flex-direction: column;
  align-items: end;
  padding: 30px;
  width: 100%;
}

.modal-right i {
  font-size: 24px;
  color: #B1B1B1;
  cursor: pointer;
}

form {
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
}

input {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #F2F2F3;
  transition: .5s all ease;
}

input:focus {
  outline: none;
  border: 1px solid #9f9f9f;
}

.contact-btn {
  background: #FF7020;
  width: 100%;
  padding: 10px 0px;
  border-radius: 12px;
  border: none;
  color: white;
  border: 1px solid transparent;
  margin-top: auto;

}






/* Modal */
.mod {
  display: none;
}

.madal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.madal-content {
  padding: 20px;
  background-color: white;
  width: 750px;
  height: 450px;
  border-radius: 24px;
}

.madal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.madal-header h2 {
  margin: 0;
  font-weight: 700;
}

.madal-header i {
  font-size: 24px;
  color: #B1B1B1;
}

.madal-header i:hover {
  cursor: pointer;
}

.madal-body {
  display: flex;
  justify-content: space-between;
  padding: 20px 0px;
  gap: 16px;
}

.madal-body img {
  width: 340px;
  height: 280px;
}

.madal-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.madal-btns {
  display: flex;
  justify-content: space-between;
  gap: 16px;

}

.wgfewff {
  max-width: 354px;
  width: 100%;
  order: 2;
}

.btn-2 {
  background: #FF7020;
  width: 340px;
  border-radius: 12px;
  border: none;
  color: white;
  order: 1;
}

.product-number {
  padding: 9px 12px;
  background-color: #F2F2F3;
  border-radius: 12px;
  user-select: none;
}

.product-number a {
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
}

.product-number a:hover {
  color: #000;
}

.product-num {
  margin: 0 10px;
  font-size: 22px;
}

.social {
  margin-left: 120px;
}

.basket-footer {
  display: none;
}

.pusto {
  padding-top: 10px;
}





@media (max-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1250px;
    padding: 0px 25px;
  }

  /* .main-content {
    gap: 10px;
  } */
  .burger {
    gap: 15px;
  }

  .social {
    margin-left: 40px;
  }
}

@media (max-width: 1200px) {
  .burger {
    grid-template-columns: repeat(2, 1fr);
  }

  .container {
    padding: 0px 40px;
  }

  .burger-item {
    margin-bottom: 5px;
  }

  .intro {
    padding-bottom: 10%;
    gap: 60px;
  }

  header {
    background-image: url(../images/Ellipse\ 1.svg);
    background-position: center 0px;
  }

  main {
    margin-top: 30px;
  }

}

@media (max-width: 992px) {
  .burger {
    grid-template-columns: repeat(3, 1fr);
  }

  .basket {
    max-width: 406px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 35px;
  }

  .basket-offer-desc {
    margin-right: auto;
    padding-left: 7px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0px 30px;
  }

  .modal-contact-img {
    display: none;
  }

  .modal-contact-content {
    margin: 0px 20px;
  }

  .modal-right {
    padding: 15px 20px;
  }
  form h3{
    margin-left: 5px; 
  }

  .intro {
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
  }

  .main-content {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .intro-title h1 {
    margin-bottom: 20px;
    font-size: 42px;
    line-height: 50px;
  }

  .intro img {
    order: 2;
  }

  .intro-title {
    order: 1;
  }

  .footer {
    flex-direction: column;
  }

  .footer-left {
    order: 2;
  }

  .footer-right {
    order: 1;
    padding-bottom: 40px;
  }

  .burger-item {
    padding: 10px;
    margin-bottom: 0;
  }

  .basket-offer-desc {
    margin-right: auto;
    padding-left: 7px;
  }

  footer {
    padding-top: 20px;
    padding-bottom: 25px;
  }

  .madal-content {
    padding: 15px 20px;
    width: 80%;
    height: auto;
    border-radius: 24px;
  }

  .madal-body {
    flex-direction: column;
    align-items: center;
    padding: 15px 0px;
    gap: 16px;
  }

  .madal-btns {
    flex-direction: column;
    align-items: center;
  }

  .madal-body img {
    width: 100%;
    height: auto;
  }

  .btn-2 {
    order: 2;
    height: 50px;
    width: 100%;
  }

  .wgfewff {
    order: 1;
    max-width: 100%;
  }

  .burger {
    grid-template-columns: repeat(2, 1fr);
  }
}

.categories {
  gap: 16px;
  margin: 0px 10px;
}

@media (max-width: 596px) {
  .burger {
    gap: 10px;
  }

  /* .categories{
    gap: 10px;
  } */

  .cate-item p {
    font-size: 14px;
  }

  .basket {
    max-width: 406px;
  }
}

@media (max-width: 410px) {
  .container {
    padding: 0px 20px;
  }

  header>div {
    padding: 0px 5px;
  }

  .cate-item {
    padding: 6px 10px;
  }

  .social {
    margin-left: 20px;
  }

  .footer-right {
    justify-content: space-between;
  }
}