/* Onesies Coming Soon Page */
.onesies-section {
  padding: 120px 20px 80px;
  background: #050c2c;
  display: flex;
  justify-content: center;
  align-items: center;
}

.onesies-card {
  max-width: 850px;
  width: 100%;
  background: #ffffff;
  padding: 45px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.onesies-img {
  width: 380px;
  max-width: 100%;
  border-radius: 18px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.onesies-img:hover {
  transform: scale(1.03);
}

.onesies-card h1 {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.onesies-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #c4894f;
  margin-bottom: 20px;
}

.onesies-description {
  color: #666;
  font-size: 17px;
  line-height: 1.8;
  max-width: 700px;
  margin: auto;
}

.coming-soon {
  display: inline-block;
  margin-top: 25px;
  padding: 10px 25px;
  background: #ffc107;
  color: #222;
  border-radius: 50px;
  font-weight: 600;
}

.onesies-btn {
  margin-top: 35px;
}

.onesies-btn a {
  display: inline-block;
  background: #c4894f;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.onesies-btn a:hover {
  background: #a66f38;
  color: white;
}

/* Mobile */

@media (max-width: 768px) {
  .onesies-section {
    padding: 100px 15px 50px;
  }

  .onesies-card {
    padding: 25px 20px;
    margin-top: 50px;
  }

  .onesies-card h1 {
    font-size: 32px;
  }

  .onesies-subtitle {
    font-size: 18px;
  }

  .onesies-description {
    font-size: 15px;
  }
}
/* 
Rompers

*/

.romp-section {
  padding: 120px 20px 80px;
  background: #050c2c;
  display: flex;
  justify-content: center;
  align-items: center;
}

.romp-card {
  max-width: 850px;
  width: 100%;
  background: #ffffff;
  padding: 45px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.romp-img {
  width: 380px;
  max-width: 100%;
  border-radius: 18px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.romp-img:hover {
  transform: scale(1.03);
}

.romp h1 {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.romp-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #c4894f;
  margin-bottom: 20px;
}

.romp-description {
  color: #666;
  font-size: 17px;
  line-height: 1.8;
  max-width: 700px;
  margin: auto;
}

.romp-btn {
  margin-top: 35px;
}

.romp-btn a {
  display: inline-block;
  background: #c4894f;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.romp-btn a:hover {
  background: #a66f38;
  color: white;
}

/* Mobile */

@media (max-width: 768px) {
  .romp-section {
    padding: 100px 15px 50px;
  }

  .romp-card {
    padding: 25px 20px;
    margin-top: 50px;
  }

  .romp-card h1 {
    font-size: 32px;
  }

  .romp-subtitle {
    font-size: 18px;
  }

  .romp-description {
    font-size: 15px;
  }
}

/* ==============================
   Newborn Page Design
================================ */

.newborn-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12rem 20px 70px;
  background: #050c2c;
}

.newborn-card {
  max-width: 700px;

  width: 100%;

  background: #ffffff;

  padding: 55px 45px;

  text-align: center;

  border-radius: 30px;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);

  position: relative;

  overflow: hidden;

  transition: 0.4s ease;
}

.newborn-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Top color line */

.newborn-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;

  height: 8px;

  background: linear-gradient(90deg, #c4894f, #f6d7a7);
}

/* Baby icon */

.newborn-icon img {
  width: 190px;
  height: 190px;
  border-radius: 50%;
}

/* Heading */

.newborn-card h1 {
  font-size: 30px;
  font-weight: 700;
  color: #333;
  margin: 20px 0 20px 0;
}

/* Short text */

.newborn-text {
  font-size: 22px;

  color: #555;

  margin-bottom: 15px;
}

/* Description */

.newborn-description {
  font-size: 17px;

  line-height: 1.8;

  color: #777;

  margin-bottom: 10px;
}

/* Badge */

.newborn-coming {
  display: inline-block;

  background: #c4894f;

  color: white;

  padding: 12px 35px;

  border-radius: 50px;

  font-size: 17px;

  font-weight: 600;

  box-shadow: 0 10px 25px rgba(196, 137, 79, 0.35);
}

@media (max-width: 768px) {
  .newborn-card {
    padding: 40px 25px;
  }

  .newborn-card h1 {
    font-size: 32px;
  }

  .newborn-text {
    font-size: 18px;
  }

  .newborn-description {
    font-size: 15px;
  }
}
