/* direct shop */

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  text-align: center;
  padding: 0px 15px;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  color: #00A19D;
  margin-bottom: 5px;
  padding-top: 50px;
}

.subtitle {
  font-size: 16px;
  color: #00A19D;
  margin: 0 0 15px;
}

.divider {
  border: none;
  border-top: 1px solid #00A19D;
  width: 80%;
  margin: 20px auto;
}

h2 {
  margin-bottom: 25px;
  padding-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
  color: #00A19D;
}

.shop-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.shop-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 30px;
  background: rgba(0, 161, 157);
  color: #fff;
  border: 1px solid #00A19D;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 2px 3px rgba(0,0,0,0.3);
  width: 320px;
  max-width: 90%;
  transition: 0.3s;
}

.shop-btn:hover {
  background: #fff;
  color: #00A19D;
  border: 1px solid #00A19D;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-right: 15px;
  margin-left: -17px;
  background: #fff;
  border-radius: 6px;
  padding: 1px;
}