*{
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
}
body{
  width: 1254px;
  margin-right: auto;
  margin-left: auto;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
  position: sticky;
  top: 0;
  z-index: 999;
  background: white;
  transition: box-shadow 0.2s;
}
.brand-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.img-respon {
  width: 150px;
  height: auto;
}

.cart-button {
    background-color: transparent;
  color: #FE8911;
  border: solid 1px orange;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
}

.cart-button:hover {
  background-color: rgb(244, 240, 240);
}

.cart-button {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -12px;
  background: orange;
  color: white;
  border-radius: 50%;
  padding: 2px 7px;
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 0 4px #fff2;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  min-height: 20px;
}


main{
  width: 100%;
}
.page_title{
  font-size: 30px;
  font-weight: 500;
}
.restaurant_list{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.restaurant_card{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 293px;
  height: 330px;
  border: 1px solid white;
  margin-bottom: 25px;
  text-decoration: none;
  transition: .3s ease;
  border-radius: 5px;
  padding-top: 14px;
  margin-right:27px;
  background-color: #F4F4F4;
  border-radius: 9px;
}
.restaurant_card:nth-child(4n){
  margin-right: 0;
}

.restaurant_card:hover{
  border: 1px solid #707070;
}

.restaurant_logo{
  width: 264px;
  height: 160px;
  border-radius: 23px;
  object-fit: cover;
}
.restaurant_name{
  width: 100%;
  font-weight: 500;
  color: #707070;
  font-size: 20px;
  padding-left: 10px;
  margin: 0;
  margin-top: 15px;
}

.restaurant_price{
  width: 100%;
  margin: 0;
  margin-top: 15px;
  font-weight: 500;
  padding-left: 10px;
  color: #707070;
}


.truyemek-footer {
  background-color: #fe8911;
  color: white;
  padding: 30px 20px 15px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 250px;
}


.footer-logo {
  height: 60px;
  margin-bottom: 10px;
}

.footer-subtitle {
  font-size: 26px;
  margin-bottom: 10px;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.footer-socials i {
  font-size: 20px;
  color: white;
  cursor: pointer;
}


.footer-contacts-horizontal {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}


.footer-contacts-horizontal p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}


.footer-links-row.aligned-columns {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-logos-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.send_tick {
  width: 60px;
  height: auto;
}

.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid #fff;
  padding-top: 10px;
  text-align: center;
}

