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

body {
  font-family: Arial, sans-serif;
  background: #f1f3f6;
}

.shop-section {
  width: 100%;
  padding: 25px 30px 50px;
  text-align: center;

  background: #fff;
}

.shop-section h2 {
  font-size: 34px;
  color: #243b75;
  font-weight: 700;
  margin-bottom: 15px;
}

.shop-description {
  max-width: 1050px;
  margin: 0 auto 45px;
  font-size: 22px;
  line-height: 1.35;
  color: #222;
}

.product-container {
  max-width: 1150px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;

  align-items: start;
}

.product-card {
  min-height: 470px;
  padding: 20px 18px;

  background: #fff;

  border: 1px solid #e1e5e9;
  border-radius: 15px;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);

  display: flex;
  flex-direction: column;
  align-items: center;

  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.product-image {
  width: 100%;
  height: 155px;

  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 12px;
}

.product-image img {
  max-width: 100%;
  max-height: 150px;

  object-fit: contain;
}

.rating {
  width: 100%;
  margin-bottom: 10px;

  color: #54aeb5;
  font-size: 14px;
  font-weight: bold;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.rating span {
  color: #222;
  font-size: 11px;
  letter-spacing: 0.3px;
}

.product-card h3 {
  min-height: 65px;

  color: #21457f;
  font-size: 18px;
  line-height: 1.45;

  font-weight: 700;

  margin-bottom: 10px;
}

.price {
  font-size: 16px;
  color: #222;

  margin-bottom: 15px;
}

.product-card p {
  font-size: 14px;
  line-height: 1.4;
  color: #555;

  min-height: 45px;

  margin-bottom: 5px;
}

.read-more {
  color: #666;
  text-decoration: none;

  font-size: 12px;

  margin-bottom: 15px;
}

.read-more:hover {
  color: #21457f;
}

.product-card button {
  margin-top: auto;

  width: 135px;
  height: 42px;

  border: none;
  border-radius: 8px;

  background: #d83d76;
  color: white;

  font-size: 15px;
  font-weight: 600;

  cursor: pointer;

  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.18);

  transition: 0.3s ease;
}

.product-card button:hover {
  background: #b92d62;
  transform: translateY(-2px);
}

@media (max-width: 1000px) {

  .product-container {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }

  .shop-description {
    font-size: 19px;
  }

}

@media (max-width: 600px) {

  .shop-section {
    padding: 25px 15px 40px;
  }

  .shop-section h2 {
    font-size: 26px;
  }

  .shop-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  .product-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-card {
    width: 100%;
    max-width: 350px;
    margin: auto;
  }

}

.home-modafinil{
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 16px 30px;
  background: #fff;
  border-bottom: 1px solid #e6e9ee;
  margin-bottom: 0;
  padding-left: 12rem;
}
.home-modafinil h2{
  font-size: 17px;
  font-weight: 600;
  color: skyblue;
}

.home-modafinil h2 a{
  text-decoration: none;

  color: #21457f;

  transition: color 0.3s ease;
}
.home-modafinil h2 a:hover{
  color: #d83d76;
}

.home-modafinil p{
  color: #21457fc2;
  font-size: 17px;
  font-weight: 600;
}