*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}
#one{
    width: 100vw;
    height: 100vh;
}
.navBar-wrapper{
    width: 100%;
    height: 10vh;
    background: #d3dfff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5rem;
}
.menu nav ul{
    display: flex;
}
.menu nav ul li{
    padding: 0 15px
}
.menu nav ul li a{
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}
.hero-wrapper{
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-content{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero-content h1{
    font-size: 5rem;
}
.hero-content h3{
    font-size: 3rem;
}
.hero-content p{
    width: 40%;
}
.hero-chatBox-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
form{
    width: 60%;
    position: relative;
}
form textarea{
    width: 100%;
    position:relative;
	height:100px!important;
	background: rgba(255, 255, 255, 1)!important;
	backdrop-filter:blur(5px);
	z-index:3;
	border-radius:20px;
	box-shadow:3px 3px 5px rgba(3, 56, 53,0.2);
    padding: 10px;
}
.chtBtn{
    position: absolute;
    bottom: 10px;
    right: 15px;
    z-index: 3;
    padding: 7px 15px;
    border-radius: 10px;
}
.resultbox-popup{
    display: none;
    position: absolute;
    bottom: -2vh;
    width: 100%;
    height: 50vh;
    background: linear-gradient(135deg, #0d5c52 0%, #03362d 100%);
    /*border: 10px solid rgba(255, 255, 255, .1);*/
    backdrop-filter: blur(5px);
    z-index: 100;
    border-radius:20px;
    padding: 10px 20px;
}

.resultbox-popup.active{
    display: block;
}
.questionBox{
    width: 60%;
    margin-left: auto;
    background: rgba(255,255,255,0.2);
    padding: 10px;
    border-radius: 10px;
    margin-bottom:10px;
}
.questionBox p{
    margin-bottom:0;
    font-size:.8rem;
}
.answerBox{
     background: rgba(255,255,255,0.1);
     padding: 10px;
    border-radius: 10px;
    margin-bottom:10px;
    width: 90%;
}
.answerBox p{
    margin-bottom:0;
    font-size:.8rem;
}
.resultbox-popup{

    overflow-y: auto;
    overflow-x: hidden;

}
.gift-card{

    width:100%;

    background: rgba(255,255,255,0.8);

    border-radius:18px;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    margin-top:25px;

}

.gift-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.15);

}
.gift-image{

    position:relative;

    overflow:hidden;

}

.gift-image img{

    width:100%;

    display:block;

    transition:.5s;

}

.gift-card:hover img{

    transform:scale(1.06);

}
.gift-match{
    position: absolute;
    top: 5px;
    left: 10px;
    background: #04461c;
    color: white;
    padding: 2px 4px;
    border-radius: 40px;
    font-size: 9px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(14, 165, 233, .3);
}
.gift-info{

    padding:10px;

}

.gift-info h3{

    font-size:12px;
    margin-bottom:7px;
     line-height: 1;
  max-height: calc(1.5em * 2);

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
 color: #053e09;
}
.gift-price{

    color:#16a34a;

    font-size:22px;

    font-weight:bold;

    margin-bottom:10px;

}
.gift-reasons{

    list-style:none;

    padding:0;

    margin:0;

}

.gift-reasons li{

    margin:5px 0;

    color:#444;

    font-size:12px;

    position:relative;

    padding-left:22px;

}

.gift-reasons li::before{

    content:"✔";

    position:absolute;

    left:0;

    color:#16a34a;

    font-weight:bold;

}
.gift-info button{

    width:100%;

    margin-top:10px;

    padding:10px;

    border:none;

    border-radius:12px;

    background:#111827;

    color:white;

    font-size:14px;

    cursor:pointer;

    transition:.3s;

}


.gift-info button:hover{

    background:#0f172a;

}
.product-list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr ;
  grid-template-rows: 1fr;
  gap:20px;
}
.gift-image img{
    width: 100%;
    height: 100px!important;
    object-fit: cover;
}
.gift-match img{
    height:auto!important;
}
.gift-view-product{
    background:#04461c;
    color:#fff;
    border-radius:15px;
    padding:7px 15px;
    font-size:.9rem;
}
.gift-price h5{
    color: #57995f;
}