@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

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

body {
  font-family: 'Zilla Slab', serif;
  background-color: #9c9ec4;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-width: 450px;
  margin: 0 auto;
}

.watch--product--card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
.banner {
  position: absolute;
  top: 15px;
  left: -20px;
  padding: 10px;
  z-index: 100;
  background-color: #ffefb1;
  border-radius: 5px 30px 30px 5px;
  
}

.banner p {
  font-size: 1.2rem;
  color: #000000;
  font-weight: 900;
}


.watch--product--card--image{
  position: relative;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.watch--product--card--image img {
  
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.watch--product--card--content {
  padding: 20px;
}

.watch--product--card--content--title {
  display: flex;
  align-items: center;
}

.watch--product--card--content--title h1 {
  font-size: 2rem;
  font-weight: 500;
  color: #333;
  margin-right: 10px;
}

.watch--product--card--content--title span {
  font-size: 1rem;
  color: #333;
}

.watch-description {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #000;
}

@media screen and (max-width: 450px) {
  .container {
    padding: 0 10px;
  }
  .watch--product--card--content--title h1 {
    font-size: 1.5rem;
  }
  .watch--product--card--content--title span {
    font-size: 0.8rem;
  }
  .watch-description {
    font-size: 1rem;
  }
  
}
