@import url(../assests/css/base.css);
body {
  font-family: var(--mainFont);
}
header {
  padding: 20px 0;
  box-shadow: -2px 0px 10px #00000096;
}
header .Icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
header .Icons h1 {
  font-size: 24px;
}
header .bar {
  display: none;
}
header .Nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
header .Nav a {
  color: #8c8c8c;
  font-size: 20px;
  font-family: var(--mainFont);
}
header .Nav .selected {
  color: #030303;
}
@media screen and (max-width: 768px) {
  header .Icons h1 {
    font-size: 16px;
  }
  header .bar {
    display: block;
  }
  header .Nav {
    display: none;
  }
}
.Catalog {
  padding: 60px 0;
}
.Catalog .row {
  gap: 20px;
  justify-content: space-evenly;
}
.Catalog .item {
  width: 30%;
  box-shadow: 0px 2px 4px 0px #00000096;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.Catalog .item .item-info {
  display: flex;
  justify-content: space-around;
  width: 100%;
  align-items: center;
}
.Catalog .item .item-info span {
  color: green;
}
.Catalog .item button {
  font-size: 18px;
  color: white;
  background-color: black;
  padding: 5px 5px;
  width: 80%;
  margin-bottom: 10px;
  border: none;
  cursor: pointer; /* Ensures it's clickable */
  box-sizing: border-box;
}
.Catalog .item button:hover {
  background-color: #303030; /* Change background color on hover */
}

.Catalog .item button:active {
  background-color: gray; /* Change background color when clicked */
}
.Catalog .item img {
  width: 90%;
}
@media screen and (max-width: 700px) {
  .Catalog .item {
    width: 40%;
  }
}
@media screen and (max-width: 430px) {
  .Catalog .item h3 {
    font-size: 16px;
  }
  .Catalog .item button {
    font-size: 14px;
  }
}
@media screen and (max-width: 400px) {
  .Catalog .item {
    width: 100%;
  }
}
.footer {
  background-color: #393e46;
  padding: 50px 0;
  color: white;
}
.footer a {
  color: white;
}
.footer .left-side {
  width: 600px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-wrap: wrap;
}
.footer .left-side .logo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer .left-side img {
  width: 35px;
}
.footer .left-side .logo a {
  font-family: "Roboto";
  font-size: 24px;
}

.footer .right-side {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  flex-grow: 1;
}
.footer .right-side .footer-end-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .right-side .footer-end-item nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (max-width: 1200px) {
  .footer .row {
    gap: 20px;
  }
  .footer .left-side {
    width: 100%;
  }
  .footer .right-side {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .footer .right-side .footer-end-item {
    width: 50%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 400px) {
  .footer .right-side .footer-end-item {
    width: 100%;
    margin-bottom: 20px;
  }
}
