body{

}

.ad-regular {
    font-family: "ADLaM Display", system-ui;
}

.sora-font {
  font-family: "Sora", sans-serif;
  font-weight: 400;
}


/* Header Style */
.brand-name {
    font-family: Sora;
    font-weight: 600;
    font-size: 28px;
}
.header-menus {
    font-family: Sora;
    font-size: 20px;
}
.custom-btn{
    padding: 5px 30px 7px 30px;
    border: 1px solid var(--Accent, rgba(255, 220, 38, 1));
    border-radius: 8px;
    font-size: 20px;
    font-weight: 400;
    background: rgba(255, 220, 38, 1);
}

.btn-login {
    font-family: Sora;
    padding: 5px 30px 5px 30px;
    border: 1px solid var(--Accent, rgba(255, 220, 38, 1));
    border-radius: 8px;
    font-size: 20px;
    font-weight: 400;
}
.btn-login:hover {
    background: rgba(255, 220, 38, 1);
}
.btn-register {
    font-family: Sora;
    padding: 5px 30px 5px 30px;
    background: rgba(255, 220, 38, 1);
    border-radius: 8px;
    font-size: 20px;
    font-weight: 400;
}
.icon {
    align-items: center;
    font-size: 27px;
}

/* HERO SECTION */
.hero-section{ 
    height: 89vh;
    background-image: url('../assets/cat-big.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}

.hero-title {
    /* height: 219px; */
    /* width: 681px; */
}
.hero-title h1 {
    /* line-height: 100%; */
 /* font-weight: 400; */
}

/* Category Section */

.category {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    padding: 34px 45px;
    justify-items: center;
    border-radius: 12px;
    background: rgba(249, 223, 138, 1);
}
.category .icon {
    padding: 16px;
    border-radius: 100%;
    background-color: #fff;
}



/* Trending Pets Product */
.btn-pets{
    padding: 10px 30px;
    border-radius: 10px;
    background-color: #fff;

}

.category-title {
    color: var(--Text, rgba(17, 17, 17, 1));
    font-family: Sora;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
}
.bed-pets-price {
    font-size: 16px;
    font-weight: 600;
    font-family: Sora;
}

/* Everyday Low Price */
.low-price-card-info {
  background: linear-gradient(to right, rgba(248, 204, 251, 1),
rgba(172, 210, 253, 1));
  border-radius: 12px;
  padding: 10px 10px 5px 70px;
}

.low-price-card-info .low-price {
  font-size: 56px;
  font-weight: 400;
  color: rgba(0, 0, 0, 1);
}



.t-shirt-for-dog {
  background: linear-gradient(134.71deg, rgba(255, 249, 244, 1),rgba(249, 223, 138, 1) 100%);
  border-radius: 12px;
  padding-top: 50px;
  padding-left: 50px;
}
.t-shirt-for-dog .low-price {
  font-size: 56px;
  font-weight: 400;
  color: var(--Accent, rgba(255, 220, 38, 1));
}










/* Responsive For Mobile */

@media (max-width: 640px) {
  .hero-section {
    background-image: none; /* background image remove হবে */
    height: 40vh;
  }
  .container{
    padding-left: 15px;
    padding-right: 15px;
  }
  .news-latter-info {
    text-align: center;
  }
  .category-title {
    font-size: 16px;
  }
  .low-price-card-info {
  padding: 5px 5px 5px 20px;
}
.t-shirt-for-dog .low-price{
  font-size: 30px;
}
.low-price-card-info .low-price{
font-size: 30px;
}
.t-shirt-for-dog {
    padding-top: 15px;
  padding-left: 15px;
}
}


/* Animation */
@keyframes gradient {
  0% { background-position: 10% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 10% 50%; }
}

.animate-gradient {
  animation: gradient 5s ease infinite;
}

