@import url('https://fonts.googleapis.com/css2?family=Cedarville+Cursive&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@font-face {
  font-family: 'Bromello';
  src: url(bromello-Regular.ttf) format('TrueType');
  font-weight: normal;
  font-style: normal ;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root{
  --primarycolor:#ff8fab;
  --secondarycolor:#f66f92;
  --advent-color:#ffc2d1;
  --advent-color-dark:#ffb3c6;
  --padding-inline:20px;
}
body{
  font-family: "Playfair Display", serif;
  background-color: #ffe5ec;
}
h1{
  font-size: 3rem;
}
h2{
  font-size: 2rem;
}
h3{
  font-size: 1.5rem;
}
p{
  font-family: "Lora", serif;
  font-size: 1.25rem;
  color: #914e5e;
}
a{
  text-decoration: none;
  display: inline-block;
}
ul{
  list-style: none;
}
.container{
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--padding-inline);
}
.flex{
  display: flex;
  align-items: center;
}
.prim-button{
    background-color: #d14d72c8;
    border-radius: 6px;
    font-weight: 500;
    color: white !important;
    padding: 6px 12px;
    box-shadow: 0 0 2px var(--secondarycolor);
    transition: 0.2s ease-out;
}
.prim-button:hover{
    background-color: var(--primarycolor);
    text-decoration: none !important;
}
.sec-button{
    border: 0.5px solid var(--secondarycolor);
    border-radius: 6px;
    font-weight: 500;
    color: var(--primarycolor) !important;
    padding: 6px 12px;
    transition: 0.2s ease-out;
}
.sec-button:hover{
    color: var(--advent-color-dark) !important;
    text-decoration: none !important;
    border-color: var(--advent-color);
}

/*top-banner*/
.top-banner{
  background-color: #ffbfcf;
background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23f66f92' fill-opacity='0.52' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.tp-text{
  font-family: "Cedarville Cursive", cursive;
  color: white;
  text-align: center;
}

/*nav*/
.main-nav{
  justify-content: space-between;
  background-color: #ffb3c633;
  padding: 20px var(--padding-inline) 5px;
  width: 100%;
  transition: 0.2s ease-out;
}
.main-nav:hover{
  background-color: #ffb3c610;
}
.logo{
  gap: 10px;
}
.logo h3{
  font-family: 'Bromello',cursive;
  color: #f66f92;
}
.logo img{
  width: 40px;
  display: inline;
  border-radius: 50%;
}
.nav-links{
  flex-grow: 1;
}
.nav-links ul{
    justify-content: end;
    gap: 40px;
}
.hover-link{
    color: var(--primarycolor);
    transition: 0.2s ease-out;
}
.hover-link:hover{
    color: var(--secondarycolor);
    text-decoration: underline;
    text-decoration-color: var(--secondarycolor);
}

/*hero*/
.hero-fea{
  justify-content: space-between;
  margin-top: 40px;
}
.left{
  flex-direction: column;
  align-items: flex-start;
  max-width: 40vw;
}
.left h3{
  color: #d14d72;
}
.left h1{
  color: #6e2f40;
}
.left:hover h1{
  text-decoration: underline;
}
.left p{
  color: #a56776;
  margin-bottom: 10px;
}
.right img{
  max-width:500px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.7s ease-out;
}
.right:hover img {
  box-shadow: 0 0 10px var(--advent-color-dark),0 0 12px var(--advent-color);
  transform: rotate(2deg) scale(1.1);
}

/*bestsellers*/
.best-sellers{
  margin-top: 40px;
}
.best-products{
  padding-left: 25%;
}
.items{
  justify-content: space-around;
}
.item{
  width:100%;
  max-width: 180px;
  transition: transform 0.2s ease-in-out;
}
.item:hover{
  cursor: pointer;
  transform: scale(1.1);
  background: var(--advent-color);
  border-radius: 50%;
  box-shadow: 0 0 4px var(--advent-color-dark);
}
/*cat*/
.cat{
  gap: 40px;
}
.topimg{
  display: flex;
  position: relative;
  width: 50%;
  height: 700px;
  flex-direction: column;
  z-index: 1;
  box-shadow: 0 0 6px var(--advent-color-dark);
}
.topimg::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.5),rgba(255, 179, 198,0.8)),url(assets/bg1.jpg);
  background-size: cover;
  filter: blur(3px);
  z-index: -1;
}
.imgg{
  width: 100%;
  display: flex;
}
.imgg img{
  width: 100%;
  max-width: 160px;
}
.lleft{
  justify-content: flex-start;
  transform: rotate(7deg);
  transition: all 2s ease;
}
.lleft:hover img{
  transform: scale(1.5) rotate(2deg);
}
.rright{
  justify-content: flex-end;
  transform: rotate(-7deg);
  margin-top: -50px;
  transition: all 2s ease-in-out;
}
.rright:hover img{
  transform: scale(1.5) rotate(-180deg);
}
.desc{
  width: 50%;
}
.desc h2{
  color: #6e2f40;
}
.desc p{
  margin-block: 10px;
}
.bg2::before{
  background: linear-gradient(rgba(255, 255, 255, 0.5),rgba(255, 179, 198,0.8)),url(assets/bg2.jpg);
}
.bg3::before{
  background: linear-gradient(rgba(255, 255, 255, 0.5),rgba(255, 179, 198,0.8)),url(assets/bg1.jpg);
}
.r2{
  margin-top: -20%;
}
.r3{
  margin-top: -20%;
}

/*CTA*/
.cta{
  background: linear-gradient(rgba(255, 255, 255, 0.5),rgba(255, 179, 198,0.8)), url(assets/ctabg.jpg);
  background-repeat: repeat;
  background-size: contain;
  margin-top: 40px;
}
.cta-txt{
  flex-direction: column;
}
.cta-txt h3{
  margin-top: 100px;
  color: #6e2f40;
  text-shadow:0 0 4px var(--secondarycolor);
  font-style: italic;
}
.cta-txt h2{
  color: #914e5e;
  transition: 0.3s ease-out;
}
.cta-txt a{
  margin-bottom: 60px;
}
.cta-txt p{
  color: #6e2f40;
}
.cta-txt h2:hover{
  transform: scale(1.1);
  color: #7b3948;
  cursor: pointer;
}

/*footer*/
footer{
    padding: 20px;
    background-color: var(--advent-color);
}
.link{
  margin-top: 10px;
    align-items: flex-start;
    gap: 20px;
}
.link a{
  color: var(--secondarycolor);
}
.foot-cont{
    align-items: flex-start;
    justify-content: space-between;
}

/*sub-footer*/
.sub-footer{
   background-color: var(--advent-color-dark);
  padding: var(--padding-inline);
}
.sub-foot-cont{
    justify-content: center;
    gap: 30px;
}
.sub-foot-cont a{
  color: #914e5e;
}
.sub-foot-cont a:hover{
  color: var(--secondarycolor);
  text-decoration: none;
}
.sub-footer p{
  /* color: var(--secondarycolor); */
  font-size: 1rem;
  text-align: center;
}