@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  background-color: #1e1e1e;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: #1e1e1e;
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 10;
}

nav .logo {
  border-radius: 5px;
  height: 60px;
  margin-left: -10px;
}

.home {
  display: flex;
  align-items: center;
}

.login {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.home a,
.login a {
  padding: 0 20px;
  text-decoration: none;
  color: white;
  font-size: 1.5em;
}

.home a:hover,
.login a:hover {
  color: royalblue;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    height: auto;
  }

  .home,
  .login,
  .account-links {
    width: 100%;
    justify-content: center;
  }
}

.center-title {
  text-align: center;
  font-size: 2.5em;
  color: #ffffff;
  margin-top: 200px;
  margin-bottom: 100px;
}

h1 {
  padding: 10px;
  border-radius: 10px;
}

.shop-content {
  margin-top: 200px;
  display: flex;
  align-items: flex-start;
  background-color: #2c2c2c;
  border-radius: 20px;
  padding: 50px;
  max-width: 1500px;
  margin: 50px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  justify-content: space-between;
  position: relative;
  transition: transform 0.3s ease;
}

.shop-content:hover {
  transform: scale(1.006);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.shop-content img.shop-img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 20px;
}

.text-content {
  display: flex;
  flex-direction: column;
  color: #f9f9f9;
  justify-content: flex-start;
  margin-top: -23px;
  margin-left: -270px;
}

.shop-content h2 {
  font-size: 2.5em;
  color: #ffffff;
  margin: 0;
}

.shop-content h3 {
  font-size: 1.5em;
  color: #dddddd;
  margin: 0;
}

.underline {
  width: 500px;
  height: 3px;
  background-color: rgb(252, 246, 246);
  margin: 10px 0;
  align-self: flex-start;
}

.text-content {
  padding-top: 10px;
}

.contact-button1 {
  background-color: #6ea4f5b4;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 155px;
  position: relative;
  margin-right: -260px;
  text-decoration: none;
}

.contact-button1:hover {
  background-color: royalblue;
}

.contact-button2 {
  background-color: #6ea4f5b4;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 155px;
  margin-left: 10px;
  position: relative;
}

.contact-button2:hover {
  background-color: royalblue;
}

.star-rating {
  display: flex;
  margin-top: 10px;
}

.star-rating i {
  font-size: 30px;
  color: gold;
  margin-right: 5px;
  margin-top: 55px;
}

.social-icons {
  position: absolute;
  top: 60px;
  right: 80px;
  display: flex;
}

.social-icon {
  color: #ffffff;
  font-size: 24px;
  margin-left: 40px;
  text-decoration: none;
}

.social-icon:hover {
  color: #6ea4f5b4;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background-color: #6ea4f5;
  color: white;
  cursor: pointer;
  z-index: 10000;
  position: relative;
  transition: transform 0.3s ease;
  left: 600px;
  top: 260px;
}

.btn:hover {
  background-color: #265df2;
  transform: scale(1.006);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
