/* CSS cho thanh điều hướng */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
}

.loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader>div {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 5px solid rgb(45, 45, 216);
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

.loader img {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50px;
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

.navbar {
  font-weight: 1000;
  background: linear-gradient(to right, #4F8EF7, #3A5FCD);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
}

.logo a {
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.logo img {
  height: 100px;
  width: 100px;
  border-radius: 5px;
}

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

.navbar-items a {
  color: white;
  text-decoration: none;
  margin-right: 20px;
}

.navbar-items button {
  background-color: orange;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
}

.navbar-items a.join,
.navbar-items a.login {
  background-color: orange;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none; /* Đảm bảo không có gạch chân dưới liên kết */
  font-weight: 1000;
  margin-right: 10px;
}

.navbar-items a.join:hover,
.navbar-items a.login:hover {
  background-color: white;
  color: black;
  cursor: pointer;
}

/* CSS cho menu di động */
.menu-icon {
  display: none;
  /* Ẩn nút menu trên các kích thước lớn hơn */
  flex-direction: column;
  cursor: pointer;
}

.menu-icon span {
  width: 30px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
}

/* Sử dụng media queries để xác định phản hồi của thanh điều hướng */
@media screen and (max-width: 768px) {
  .navbar-items {
    display: none;
    /* Ẩn menu trên các kích thước nhỏ hơn */
    margin-top: 60px;
    text-align: center;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #333;
    text-align: center;
    z-index: 1;
  }

  .navbar-items.active {
    display: flex;
  }

  .menu-icon {
    display: flex;
  }
}

.store_head {
  margin-top: 200px;
  margin-bottom: 100px;
  text-align: center;
}

.store_containter {
  justify-content: center;
  text-align: center;
  display: flex;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 100px;
}

.store_containter_2 {
  justify-content: center;
  text-align: center;
  display: flex;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 100px;
}

.store_containter_3 {
  justify-content: center;
  text-align: center;
  display: flex;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 100px;
}

.product {
  border: 10px outset;
  margin-left: 10px;
  margin-right: 10px;

}

.product img {
  width: 500px;
  height: 500px;
}

.product button {
  color: white;
  background-color: blueviolet;
  width: 500px;
  font-size: 30px;
}

.product button:hover {
  background-color: aliceblue;
  color: black;
  cursor: pointer;
}

/* CSS cho store_containter */
.store_containter {
  display: flex;
  flex-wrap: wrap;
  /* Cho phép các sản phẩm xuống dòng khi không còn không gian */
  justify-content: space-around;
  /* Các sản phẩm được căn giữa theo chiều ngang */
  align-items: flex-start;
  /* Các sản phẩm được căn lề trên theo chiều dọc */
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 100px;
}

/* Sử dụng media query để điều chỉnh bố cục khi màn hình nhỏ hơn 768px */
@media screen and (max-width: 768px) {
  .store_containter {
    flex-direction: column;
    /* Các sản phẩm sẽ xếp theo cột khi màn hình nhỏ */
    align-items: center;
    /* Các sản phẩm được căn giữa theo chiều ngang */
  }
}


/* CSS cho store_containter_2 */
.store_containter_2 {
  display: flex;
  flex-wrap: wrap;
  /* Cho phép các sản phẩm xuống dòng khi không còn không gian */
  justify-content: space-around;
  /* Các sản phẩm được căn giữa theo chiều ngang */
  align-items: flex-start;
  /* Các sản phẩm được căn lề trên theo chiều dọc */
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 100px;
}

/* Sử dụng media query để điều chỉnh bố cục khi màn hình nhỏ hơn 768px */
@media screen and (max-width: 768px) {
  .store_containter_2 {
    flex-direction: column;
    /* Các sản phẩm sẽ xếp theo cột khi màn hình nhỏ */
    align-items: center;
    /* Các sản phẩm được căn giữa theo chiều ngang */
  }
}

/* CSS cho store_containter_3 */
.store_containter_3 {
  display: flex;
  flex-wrap: wrap;
  /* Cho phép các sản phẩm xuống dòng khi không còn không gian */
  justify-content: space-around;
  /* Các sản phẩm được căn giữa theo chiều ngang */
  align-items: flex-start;
  /* Các sản phẩm được căn lề trên theo chiều dọc */
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 100px;
}

/* Sử dụng media query để điều chỉnh bố cục khi màn hình nhỏ hơn 768px */
@media screen and (max-width: 768px) {
  .store_containter_3 {
    flex-direction: column;
    /* Các sản phẩm sẽ xếp theo cột khi màn hình nhỏ */
    align-items: center;
    /* Các sản phẩm được căn giữa theo chiều ngang */
  }
}
.footer {
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 20px;
  margin-bottom: 0px;
}


.logof {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.logof img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.logof h2 {
  font-size: 24px;
  margin: 0;
}

.social-media a {
  color: #fff;
  font-size: 20px;
  margin-right: 10px;
  text-decoration: none;
}


footer p {
  margin: 0;
  text-align: center;
}


.social-media a:hover {
  opacity: 0.7;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
}

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

.container {
  max-width: 1170px;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

ul {
  list-style: none;
}

.footer {
  background-color: #24262b;
  padding: 70px 0;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #e91e63;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

/*responsive*/
@media(max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media(max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}