@import url(https://db.onlinewebfonts.com/c/29ddb4605533a38e086b48fa105e0d12?family=Nohemi);
@import url(https://db.onlinewebfonts.com/c/fb01d83c9fe1d39a2abfa34ee1f4cc5c?family=Monosign);

body {
    background-color: #F7F4EA;
    overflow-x: hidden;
}
html{overflow-x: hidden;}
* {
    margin: 0;
    padding: 0;
}
a > .container {
    display: contents; /* Makes container transparent to layout */
}
/********************************************************************************/
/********************************* Header ************************************/
/********************************************************************************/
nav {
    font-family: "Nohemi";
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 8vh;
    margin-top: 2vh;
}

nav .logo {
    aspect-ratio: 16/9;
    height: 10vh;
    object-fit: cover;
    /* margin-left: 5.2vw; */
}

nav ul {
    list-style: none;
    display: flex;
}

nav a {
    text-decoration: none;
    position: relative;
    color: black;
    font-size: 1.25vw;
    padding: 1vh 1vh;
}
.navicons{
    display: flex;
    flex-direction: row;
}
.box .vector {
    right: 0;
    width: 2.08vw;
    height: 3.7vh;
}

/* SEARCHBOX */

.search {
    /* margin: 0 5.81vw 0 10.42vw; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    /* padding-left: 20vw; */
}

.search__input {
    font-family: inherit;
    font-size: clamp(0.4rem, 1.5vw, 1.2rem);
    /* Responsive font size */
    background-color: #E6BDBC;
    border: none;
    color: #646464;
    padding: 0.64vh 0.52vw;
    border-radius: 3vw;
    width: 15.42vw;
    height: 5.52vh;
    transition: all ease-in-out 0.5s;
    margin-right: -2.58vw;
}

.search__input:hover {
    box-shadow: 0 0 0.052vw #ffffff13;
}

.search__input:focus {
    outline: none;
    background-color: #E6BDBC;
}

.search__input::-webkit-input-placeholder {
    font-weight: 100rem;
    color: black;
}

.search__input:focus+.search__button {
    background-color: #E6BDBC;
}

.search__button {
    border: none;
    background-color: #E6BDBC;
    margin-top: 0.092vh;
}

.search__button:hover {
    cursor: pointer;
}

.search__icon {
    height: 3.7vh;
    width: 2.08vw;
    fill: black;
}
.user-dropdown-container {
    position: relative;
}

.user-dropdown {
    position: absolute;
    top: 110%;
    right: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 0.5vw;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    min-width: 10vw;
    z-index: 999;
}

.user-dropdown a {
    padding: 0.7vw 1vw;
    text-decoration: none;
    color: black;
    font-size: 1vw;
    transition: background-color 0.2s;
}

.user-dropdown a:hover {
    background-color: #f0f0f0;
}

.hidden {
    display: none;
}
.search-results {
  position: absolute;
  width: 100%;
  top: 105%;
  background-color: white;
  border-radius: 1.6vw;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-height: 40vh;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.search-result-item {
  display: flex;
  align-items: center;
  padding: 1vh 1vw;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}

.search-result-item:hover {
  background-color: #f9f9f9;
}

.search-result-item img {
  width:80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.5vw;
  margin-right: 1vw;
}

.search-result-item span {
  font-size: 1rem;
  color: #333;
}


@media (max-width: 768px) {
nav {
    font-family: "Nohemi";
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 5vh;
    margin-top: 2vh;
}
nav a{
    font-size: 1.8vw;
}
nav .logo {
    aspect-ratio: 16/9;
    height: 5vh;
}
nav .navicons{
    flex-direction: row;
}
.search__input{
    height: 2vh;
}
.search__icon{
    height: 1.4vh;
}
.box .vector {
    width: 3vh;
    height: 3vh;
}
.user-dropdown {
    min-width: 30vw;
}
.user-dropdown a {
    font-size: 3vw;
    padding: 2vw;
}
}
@media (max-width: 768px) {
  .search {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    max-height: 4vw;
    max-width: 4vw;
    transition: max-width 0.3s ease, padding 0.3s ease;
    overflow: visible;
    border-radius: 10vw;
    background-color: #E6BDBC;
    padding: 1vh 2vw;
  }

  .search.open {
    max-width: 18vw;
  }

  .search__input {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
    background-color: transparent;
    border: none;
    font-size: 3vw;
    color: black;
  }

  .search.open .search__input {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-left: 1vw;
  }

  .search__input:focus {
    outline: none;
  }

  .search__button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 2;
  }

  .search__icon {
    height: 2vh;
    width: 2vh;
    fill: black;
    transition: transform 0.3s ease;
  }

  .search__input::placeholder {
    font-size: 2vw; /* ya jitna chhota chahiye */
  }

  .search-results {
    position: absolute;;
    width: 200%;
    max-height: 40vh;
    overflow-y: auto;
    background-color: white;
    border-radius: 1vw;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    max-height: 30vh;
    /* left: 0; */
    right: 0;
  }

  .search-result-item {
    padding: 2vw;
    font-size: 3.5vw;
  }

  .search-result-item img {
    width: 15vw;
    height: 15vw;
    margin-right: 2vw;
  }

  .search-result-item span {
    font-size: 3.8vw;
  }
}
/********************************************************************************/
/********************************* section-1 ************************************/
/********************************************************************************/
.section-1 {
    height: 90vh;
}


.banner h2 {
    /* position: absolute; */
    /* left: 0; */
    margin-left: 5vw;
    margin-top: 0vh;
    color: #000;
    font-family: "Nohemi";
    font-size: 4.43vw;
    font-style: normal;
    font-weight: 400;
}


.banner h1 {
    color: #E6BDBC;
    font-family: "Monosign";
    font-size: 13.02vw;
    font-style: normal;
    font-weight: 400;
    position: absolute;
    left: 0;
    margin-left: 5vw;
    margin-top: -5vh;
}
.banner img{
    /* right: 0;
    top: 20vh; */
    /* position: absolute; */
    margin-right: 5.2vw;
    height: 70vh;
    /* top: 20vh; */
    aspect-ratio: 3/4;
}
.banner{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10vh;
}
.custom {
    width: 24.42vw;
    height: 10.37vh;
    position: absolute;
    left: 10vw;
    margin-bottom: 20vh;
    bottom: 0;
    padding: 2.78vh 2.6vw;
    border-radius: 5.2vw;
    cursor: pointer;
    border: 0;
    background-color: #E6BDBC;
    box-shadow: rgb(0 0 0 / 5%) 0 0 0.42vw;
    letter-spacing: 0.078vw;
    text-transform: uppercase;
    font-size: 1.56vw;
    font-family: "Nohemi";
    color: white;
    transition: all 0.5s ease;
}

.custom:hover {
    letter-spacing: 0.36vw;
    background-color: #F7F4EA;
    color: black;
    box-shadow: rgb(230, 188, 188) 0px 0.65vh 1.48vh 0px;
}

.custom:active {
    letter-spacing: 0.36vw;
    background-color: #F7F4EA;
    color: black;
    box-shadow: rgb(230, 188, 188) 0px 0px 0px 0px;
    transform: translateY(0.18vh);
    transition: 100ms;
}
.slider-container {
    position: relative;
    height: 70vh;
    margin-right: 5.2vw;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide-image.active {
    opacity: 1;
    z-index: 1;
}

/* 🔧 Mobile View Fix */
@media (max-width: 768px) {
    .slider-container {
        height: 25vh;
        margin-right: 2vw;
        aspect-ratio: 3/4;
    }
    .slide-image {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .section-1 {
       height: 30vh;
    }
    .banner{
        margin-top: 5vh;
    }
    .banner img{
        height: 25vh;
    }
    .banner h1{
        top: 21vh
    }
    .banner h2{
        margin-top: 5vh;
    }
    .custom{
    top: 30vh;
    width: 24.42vw;
    height: 4vh;
    padding: 1vh 1vw;
    }
}


/********************************************************************************/
/********************************* section-2 ************************************/
/********************************************************************************/
.section-2 {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.bgm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    /* padding-top: 2vw; */
    padding-bottom: 2vw;
    height: 100vh;
    background-color: #E6BDBC;
}


.bgm-top {
    width: 100%;
    position: absolute;
    top: 2rem;

}

.bgm-bottom {
    width: 100%;
    position: absolute;
    bottom: 2rem;

}

.bgm-top,
.bgm-bottom {
    position: absolute;
    left: 2rem;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.bgm-top h2 {
    color: #ffffff;
    font-family: "Monosign";
    font-size: 8vw;
    font-style: normal;
    font-weight: 400;
    position: relative;
    line-height: normal;
    margin-left: 8vw;
    padding-top: 2vh;
}

.bgm-top h3 {
    position: absolute;
    color: #000;
    font-family: "Nohemi";
    font-size: 5vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    left: 0;
    margin-top: 2vh;
    margin-left: 8vw;
}

.bgm-bottom h1 {
    position: absolute;
    color: #000;
    font-family: "Nohemi";
    font-size: 3vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    left: 0;
    margin-left: 8vw;
    bottom: 5vh;
}

.perfect-gift {
    color: #000;
    font-family: "Nohemi";
    font-size: 2.5vw;
    font-style: normal;
    font-weight: 400;
    position: fixed;
    margin-left: 8vw;
    margin-top: -10vh;
    z-index: 1;
    height: 10vh;
}




.slider-product-wrapper {
    width: 100vw;
    overflow: hidden;
    position: absolute;
    /* top: 2vh; */
    left: 0;
    z-index: 2;
    cursor: grab;
    /* margin-top: 5vh; */
    display: flex;
    align-items: center;
}

.slider-track {
    display: flex;
    gap: 3.82vw;
    position: relative;
    left: 50vw;
    transform: translateX(0px);
    transition: transform 0.3s ease;
}

.container {
    min-width: 250px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.slider-product-wrapper,
.slider-product-wrapper * {
    user-select: none;
}





@media (max-width: 768px) {
    .bgm{
        height: 80vw;
    }
    .section-2{
        height: 80vw;
    }
    .slider-product-wrapper{
        margin-top: 0vh;
        height: 80vw;
    }
    .slider-track {
        height: 90%;
        align-items: center;
    }
    .slider-track .container{
        width: 40vw;
        min-width: 0;
        height: 90%;
    }
    .slider-track .container .box{
        /* min-height: 32vh; */
        width:38vw;
        padding-bottom: 0px;
        margin-bottom: 0;
        justify-content: space-around;
        height: 100%;
    }
    .slider-track .container .box .product-name{
        font-size: 2vw;
    }
    
    .slider-track .container .box .price{
        font-size: 2vw;
    }
    .slider-track .container .box .product-desc{
        font-size: 2vw;
    }
    .slider-track .container .box .buttom{
        padding-bottom: 0;
    }
    .slider-track .container .box .buttom .btn{
        font-size: 2vw;
    }
    
    .slider-track .container .box .img img{
        width: 34vw;
        height: auto;
        border-radius: 3vw;
    }
    .box .buttom{
        padding-bottom: 10px;
    }
}

/********************************************************************************/
/********************************* Catagories ************************************/
/********************************************************************************/
.Title-Catagories h2 {
    color: #E6BDBC;
    font-family: "Monosign";
    font-size: 5vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.Title-Catagories h3 {
    color: #000;
    font-family: "Nohemi";
    font-size: 2vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.Title-Catagories a {
    text-decoration: none;
    color: black;
    font-family: "Nohemi";
    font-size: 1.5vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.Title-Catagories {
    height: 20vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2vh 10vh 0 10vh;
}
.hidden {
    display: none;
}
.Catagory {
    margin-bottom: 5vh;
}

.outer-wrapper {
    margin-top: -7vh;
    margin-bottom: -7vh;
    padding-left: 5.2vw;
    padding-top: 2vw;
    padding-bottom: 2vw;
    overflow: visible;
}

.product-wrapper {
    display: flex;
    /* justify-content: center; */
    flex-wrap: wrap;
    gap: 1.82vw;
    box-sizing: border-box;
}

.container {
    width: 21vw;
    height: 50vh;
    position: relative;
    transition: all 0.5s ease;
    cursor: pointer;
    border: 0;
    flex: 0 0 auto;
    overflow: visible;
    /* ✅ ensures shadow isn’t cut off */
}

.container .box {
    width: 21vw;
    height: 50vw;
    max-height: 80vh;
    background-color: #f7f4ea;
    border-radius: 0.78vw;
    position: relative;
    transition: all 0.5s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 1vw;
    margin-bottom: 1vw;
    box-shadow: rgba(0, 0, 0, 0.1) 0 10px 20px;
    padding-bottom: 1vw;
    overflow: visible;
}
.container {
    height: auto;
}

.container .box:hover {

    transform: scale(1.05);
}




.img img {
    /* max-height: 20vw; */
    width: 18vw;
    margin: 1vw auto 0 auto;
    display: block;
    width: 95%;
    border-radius: 0.78vw 0.78vw 0 0;
    object-fit: cover;
}

.name-price {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    margin: 1vw 0.5vw 0 0.5vw;
    /* ✅ removed negative margin */
    font-family: "Nohemi";
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.product-name {
    font-size: 1.25vw;
    margin: 0;
}

.price {
    font-size: 1.25vw;
    margin: 0;
    color: #d7a8a7;
}

.product-desc {
    margin-top: 0.5vw;
    /* ✅ changed from -10px */
    font-size: 0.8vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 10px;
    margin-left: 0.5vw;
    font-family: "Nohemi";
}

.buttom {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 1vw;
    box-sizing: border-box;
    /* ✅ prevents padding from overflowing */
}


.btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: black;
    font-size: 1.2vw;
    font-family: "Nohemi";
    width: 95%;
    /* ✅ use percentage instead of fixed width */
    padding: 1.3vw 0;
    border-radius: 100px;
    border: 0;
    background-color: #E6BDBC;
    transition: all 0.5s ease;
    box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
    cursor: pointer;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 1vw auto 0 auto;
    /* ✅ center and push from top */
}


.btn:hover {
    letter-spacing: 0.36vw;
    background-color: #F7F4EA;
    color: black;
    box-shadow: rgb(230, 188, 188) 0px 0.65vh 1.48vh 0px;
}

.btn:active {
    letter-spacing: 0.36vw;
    background-color: #F7F4EA;
    color: black;
    box-shadow: rgb(230, 188, 188) 0px 0px 0px 0px;
    transform: translateY(0.18vh);
    transition: 100ms;
}

.box:hover {
    background-color: #F7F4EA;
    color: black;
    box-shadow: rgb(230, 188, 188) 0px 0.65vh 1.48vh 0px;
}



@media (max-width: 768px) {
    .Catagory .img img{
        max-height: 40vw;
        /* overflow-x: visible; */
        width: 95%;
        /* margin-top: 1vh; */
        border-radius: 2vw;
        /* aspect-ratio: 3 / 4; */
        /* height: 30vw; */
    }
    .Title-Catagories{
        padding: 4vh 5vh 0vh 5vh;
        height: 10vh;
        margin-bottom: 5vh;
    }
    .Catagory .container .box{
        /* max-height: 20vh; */
        height: 80vw;
        min-height: 0;
        min-width: 45vw;
        justify-content: space-around;
    }
    .container .box{
        border-radius: 2vh;

    }
    .Catagory .container{
        /* padding-top: 5vh; */
        min-width: 0vw;
        width: 48%;
    }
    .Title-Catagories h2{
        font-size: 10vw;
    }
    .Title-Catagories h5 a{
        font-size: 3vw;
    }
    
    

    .name-price{
        gap:8px
    }

    .product-name {
    font-size: 3vw;
    margin: 0;
    text-align: center;
    }

    .price {
    font-size: 3vw;
    margin: 0;
    }

    .product-desc {
    margin-top: 0;
    text-align: center;
    font-size: 2vw;
    padding: 0;
    margin-left: 0;
    }

    .btn{
    padding: 3vw 0;
    font-size: 2vw;
    }
}










/********************************************************************************/
/********************************* Addons ************************************/
/********************************************************************************/
.blocks-section {
    padding: 20px;
    background-color: #F7F4EA;
}

.blocks-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 05px;
}

.block {
    width: calc(16.6% - 20px);
    text-align: center;
    text-decoration: none;
    color: #000;
    border: 1px solid #E6BDBC;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: "Nohemi";
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.block {
    height: auto;
}


.block img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #E6BDBC;
}


.block p {
    margin: 10px 0;
    height: 20px;
    font-size: 1.2vw;
    font-weight: 400;
    color: #E6BDBC;
    font-family: "Nohemi";
}

.block:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #E6BDBC;
    color: #fff;
}

.block:hover p {
    color: #fff;
}
@media (max-width: 768px) {
    .blocks-container{
        margin-top: -8vh;
    }
    .block {
        flex: 0 0 29%
    }
    .block p{
        margin: 10px 0 0 0;
        font-size: 3vw;
    }
}







/********************************************************************************/
/********************************* Footer ************************************/
/********************************************************************************/
footer {
  background: #E6BDBC;
  padding: 3rem 2rem;
  font-family: "Nohemi", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* LEFT COLUMN = 70% width */
.footer-left {
  flex: 0 0 70%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* 2 Rows in left */
.footer-row {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

/* RIGHT COLUMN = 30% width */
.footer-right {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 50%;
}

.footer-logo img {
  height: 20rem;
  width: auto;
  object-fit: contain;
}

.footer-section h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #000;
}

.footer-section ul {
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  list-style: none;
  margin-bottom: 0.7rem;
  font-size: 1.3rem;
  color: #000;
}
.footer-section ul li a{
  text-decoration: none;
  color: inherit;
  font-weight: bold;
}
.insta-embed {
  width: 100%;
  height: 80%;
  /* min-height: 400px; */
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.insta-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 1rem;
}

/* 🧠 MATCH HEIGHT both sides */
.footer-left, .footer-right {
  align-self: stretch;
}
.phone-link {
  text-decoration: none;
  color: inherit;
  font-weight: bold;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
    footer{
        margin-top: 10vh;
    }
  .footer-container {
    flex-direction: column;
  }

  .footer-left, .footer-right {
    flex: 1 1 100%;
  }

  .footer-row {
    flex-direction: row;
  }

  .footer-logo img {
    height: 20vw;
  }

  .footer-section h3 {
    font-size: 1.2rem;
  }

  .footer-section ul li {
    font-size: 3vw;
  }

  .insta-embed {
    height: 350px;
    margin-top: 1rem;
  }
}




/********************************************************************************/
/********************************* Custom Loader ********************************/
/********************************************************************************/
.custom-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(230, 189, 188, 0.2); /* translucent theme bg */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #f3dede; /* light border */
  border-top: 6px solid #E6BDBC; /* theme color */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Reuse same animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/********************************************************************************/
/******************************* Mini Search Loader *****************************/
/********************************************************************************/
.search-loader {
  width: 16px;
  height: 16px;
  border: 2px solid #f3dede; /* soft border */
  border-top: 2px solid #E6BDBC; /* theme border */
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 10px;
}

