:root {
  --sc-rose: #4a0360;
  --sc-rose-2: #FF4756;
  --sc-gold: #56136B;
  --sc-gold-2: #f4c76b;
  --sc-ink: #21151a;
  --sc-muted: #300605;
  --sc-cream: #fff8ef;
  --sc-soft: #fff2df;
  --sc-white: #ffffff;
  --sc-shadow: 0 24px 70px rgba(78, 24, 38, .14);
  --sc-radius: 28px;
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
 font-family: "Inter", sans-serif;
  color: var(--sc-ink);
  background: #fffdf9;
  line-height: 1.7;

}

h1,
h2,
h3,
h4,
.navbar-brand,
.section-title,
.hero-title {
  font-family: "Fjalla One", sans-serif;
  letter-spacing: 0rem;
}

h2 {
  font-size: 2.5rem !important;
}

a {
  color: inherit;
  text-decoration: none;
  transition: .25s ease
}

a:hover {
  color: var(--sc-gold);

}

img {
  max-width: 100%;
  display: block
}

.topbar {
  background-image: url(../images/background-texture-2.jpg);
  background-size: 100%;
  color: #fff;
  font-size: .92rem;
  position: relative;
}
.topbar::after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000069;
}
.topbar .container{
  position: relative;
  z-index: 1;
}
.topbar a {
  color: #fff;
  opacity: .85;
  transition: 0.5s ease-in-out;
}

.topbar a:hover {
  opacity: 1;
}

.navbar {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(80, 22, 36, .08);
}

.navbar-brand {
  font-weight: 800;
  color: var(--sc-rose) !important;
  font-size: 1.35rem
}

.brand-logo {
  width: 90px;
  height: auto
}

.nav-link {
  font-weight: 500;
  color: #3f2930 !important;
  margin: 0 .35rem;
  position: relative
}

.nav-link:after {
  content: '';
  position: absolute;
  left: .5rem;
  right: .5rem;
  bottom: .35rem;
  height: 2px;
  background: var(--sc-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: .25s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
  transform: scaleX(1)
}

.btn-sc {
  border: 0;
  border-radius: 999px;
  background-color:#56136B;
  color: #fff !important;
  font-weight: 600;
  padding: .85rem 1.45rem;
  box-shadow: 0 14px 30px rgba(139, 18, 56, .25);
}

.btn-sc:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(139, 18, 56, .32)
}

.btn-outline-sc {
  border: 1.5px solid rgba(139, 18, 56, .32);
  border-radius: 999px;
  color: var(--sc-rose) !important;
  font-weight: 600;
  padding: 0.8rem 1.35rem 0.625rem 1.35rem;
  background: #fff;
}

.btn-outline-sc:hover {
  background: var(--sc-rose);
  color: #fff !important;
  border-color: var(--sc-rose)
}
.btn:hover{
  background-color: #8D29AD;
  color: #ffffff;
}
.hero-carousel {
  position: relative;
  overflow: hidden;
  background-color:#fe305938;
  background-image: url(../images/background-texture-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-slide {
  min-height: 740px;
  display: flex;
  align-items: center;
  padding: 72px 0 92px;
  position: relative
}

.hero-title {
  font-size: clamp(2rem, 3.3854vw, 4.5rem);
  font-weight: 800;
  line-height: 1.3;
  color: #FF4756;
}

.hero-title span {
  color: var(--sc-gold)
}

.section-text {
  color: var(--sc-muted);
  font-size: 1.06rem
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1px solid var(--sc-gold);
  border-radius: 999px;
  background: #fffaf1;
  color: var(--sc-rose);
  font-weight: 600;
  letter-spacing: -0.01px;
  font-size: .78rem;
  text-transform: uppercase;
  padding: .48rem .85rem 0.38rem .85rem;
  margin-bottom: 12px;
}

.hero-visual {
  position: relative;
  min-height: 560px
}

.hero-visual:before {
  content: '';
  position: absolute;
  inset: 8% 8% 2% 12%;
  border-radius: 44% 56% 54% 46% / 48% 42% 58% 52%;
  background: linear-gradient(135deg, var(--sc-rose), var(--sc-gold));
  transform: rotate(-4deg);
  opacity: .95;
}

.hero-img-wrap {
  position: absolute;
  inset: 0 3% 0 15%;
  overflow: hidden;
  border-radius: 46% 54% 34% 66% / 44% 34% 66% 56%;
  box-shadow: var(--sc-shadow);
  border: 10px solid #fff;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.floating-card {
  position: absolute;
  z-index: 3;
  bottom: 44px;
  left: 0;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(214, 155, 45, .22);
  box-shadow: var(--sc-shadow);
  border-radius: 24px;
  padding: 1.15rem;
  max-width: 260px;
}

.stat-box {
  background: #fff;
  border: 1px solid rgba(139, 18, 56, .12);
  box-shadow: 0 16px 36px rgba(139, 18, 56, .08);
  border-radius: 22px;
  padding: 1rem;
  text-align: center
}

.stat-box strong {
  display: block;
  font-size: 1.6rem;
  color: var(--sc-rose);
  line-height: 1;

}

.stat-box span {
  font-weight: 800;
  font-size: .86rem;
  color: var(--sc-muted)
}

.carousel-control-prev,
.carousel-control-next {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  top: auto;
  bottom: 60px;
  opacity: 1
}

.carousel-control-prev {
  left: calc(50% - 70px)
}

.carousel-control-next {
  right: calc(50% - 70px)
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
}
.carousel-inner{
  background-color: #0000007d;
}
.section-padding {
  padding: 96px 0
}

.section-soft {
  /* background: linear-gradient(127deg, #F6DE64 0%, #f6de6470, #ff000000, #ff000061 100%); */
  background-color: #8d29ad14;
}

.section-title {
  color: #4a0360;
  font-weight: 800;
  line-height: 1.3
}

.pattern-band {
  border-radius: var(--sc-radius);
  background:#fe4c54;
  overflow: hidden;
  position: relative;
  box-shadow: var(--sc-shadow);
}

.pattern-band:before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image: radial-gradient(circle at 20% 20%, #fff 0 2px, transparent 2px), radial-gradient(circle at 80% 35%, #fff 0 2px, transparent 2px);
  background-size: 34px 34px;
}

.pattern-band>* {
  position: relative;
  z-index: 1
}

.about-photo {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--sc-shadow);
  position: relative;
  
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.about-card {
  background: #fff;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--sc-shadow);
  border: 1px solid rgba(139, 18, 56, .08)
}

.category-card,
.product-card,
.why-card,
.review-card,
.contact-card,
.faq-card {
  background: #fff;
  border: 1px solid rgba(139, 18, 56, .08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(80, 22, 36, .08);
  transition: .25s ease;
  height: 100%;
}

.category-card:hover,
.product-card:hover,
.why-card:hover,
.contact-card:hover {
 
  box-shadow: 0 28px 70px rgba(80, 22, 36, .15)
}

.category-img,
.product-img {
  height: 310px;
  width: 100%;
  object-fit: cover
}

.category-img {
  height: 280px
}

.icon-badge,
.why-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background-color: #fbd9ff87;
  color: var(--sc-rose);
  font-size: 1.5rem;
}

.badge-soft {
  background: #fff2c7;
  color: #7f1d1d;
  border: 1px solid #56136B;
  font-weight: 800
}

.price-text {
  font-weight: 600;
  color: var(--sc-rose)
}

.arrival-grid .product-card:nth-child(even) {
  transform: translateY(24px)
}

.arrival-grid .product-card:nth-child(even):hover {
  transform: translateY(16px)
}

.trending-image {
  border-radius: 10px;
  overflow: hidden;

  box-shadow: var(--sc-shadow)
}

.trending-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.gallery-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(80, 22, 36, .12);
  height: 340px;
  background: #fff
}



.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s ease
}

.gallery-card:hover img {
  transform: scale(1.07)
}

.gallery-card:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(58, 10, 28, .62));
  opacity: 0;
  transition: .25s ease
}

.gallery-card:hover:after {
  opacity: 1
}

.review-card {
  padding: 2.1rem;
  min-height: 260px
}

.review-stars {
  color: #d69b2d;
  letter-spacing: .18em;
  font-size: 1.1rem
}

.swiper {
  padding: 10px 8px 48px
}

.swiper-pagination-bullet-active {
  background: var(--sc-rose)
}

.accordion-item {
  border: 1px solid rgba(139, 18, 56, .1) !important;
  border-radius: 20px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 34px rgba(80, 22, 36, .06)
}

.accordion-button {
  font-size: 1.4rem;
  font-weight: 900;
  color: #4a0360;
  background: #fff !important;
  box-shadow: none !important
}

.accordion-button:not(.collapsed) {
  color: var(--sc-rose)
}

.page-hero {
  padding: 60px 0;
 background: url(../images/background-texture-3.avif);
  overflow: hidden;
  position: relative;
}
.page-hero::after{
  position: absolute;
  content: "";
  left: 0;
  top:0;
  height: 100%;
  width: 100%;
  background-color: #00000069;
}
.page-hero-row{
  position: relative;
  z-index: 9;
}

.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.product-filter .btn {
  border-radius: 999px;
  font-weight: 500
}

.product-filter .btn.active {
  background: var(--sc-rose);
  color: var(--sc-cream) !important;
  border-color: var(--sc-rose)
}

.product-listing-card {
  display: block
}

.form-control,
.form-select {
  border-radius: 16px;
  border: 1px solid rgba(139, 18, 56, .16);
  padding: .9rem 1rem
}

.form-control:focus,
.form-select:focus {
  border-color: var(--sc-gold);
  box-shadow: 0 0 0 .25rem rgba(214, 155, 45, .18)
}

.map-box {
  border-radius: 28px;
  background: linear-gradient(135deg, #7f1236, #d69b2d);
  padding: 2.5rem;
  color: #fff;
  min-height: 340px;
  display: flex;
  align-items: center
}

.footer {
  background-image: url(../images/background-texture-2.jpg);
  color: #fff;
  padding: 72px 0 28px;
  position: relative;
}
.footer::after{
  content: "";
  content: "";
  position: absolute;
  top:0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #06060663;
}
.footer .container{
  position: relative;
  z-index: 1;
}

.footer p,
.footer li {
  color: #fff8f8;
}

.footer a {
  color: rgba(255, 255, 255, .82);
  transition: 0.5s ease-in-out;
}

.footer a:hover {
  color:#fff;
}

.footer-logo {
  width: 90px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .15));
  background-color: #fff;
  border-radius: 10px;
}

.footer-bottom {
  border-top: 1px solid #ffffff70;
  margin-top: 42px;
  padding-top: 24px;
  color: #fff8f8;
  font-size: .95rem
}

.sticky-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 18px 40px rgba(37, 211, 102, .36)
}

.sticky-whatsapp:hover {
  color: #fff;
  transform: translateY(-4px)
}
.stat-box{
  width: 100%;
}
@media (max-width:991px) {
  .brand-logo {
    width: 70px
  }

  .hero-slide {
    min-height: auto;
    padding: 52px 0 100px
  }

  .hero-visual {
    min-height: 590px;
    margin-top: 2rem
  }
  .hero-one-text-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-one-text-wrap p{
    max-width: 600px;
    
  }
  .hero-one-button-wrap{
    align-items: center;
    justify-content: center;
  }
  .hero-one-counter{
    max-width: 500px;
    width: 100%;
  }
  .section-padding {
    padding: 72px 0
  }

  .arrival-grid .product-card:nth-child(even) {
    transform: none
  }

  .category-img,
  .product-img {
    height: 260px
  }

  .page-hero {
    padding: 80px 0
  }

  .page-hero-img {
    height: 380px;
    transform: none
  }

  /* .gallery-card,
  .gallery-card.tall {
    height: 320px
  } */

  h2 {
    font-size: 24px !important;
  }
}

@media (max-width:575px) {
  .topbar {
    font-size: .82rem
  }

  .brand-logo {
    width: 60px
  }

  .hero-title {
    font-size: 3.2rem
  }

  .floating-card {
    position: relative;
    bottom: -295px;
    left: 0;
    margin-top: 1rem
  }

  .hero-visual {
    min-height: 420px
  }

  .hero-img-wrap {
    inset: 0
  }

  .hero-visual:before {
    inset: 8% 0 2% 5%
  }

  .carousel-control-prev,
  .carousel-control-next {
    bottom: 18px
  }

  .section-padding {
    padding: 58px 0
  }

  .category-img,
  .product-img {
    height: 240px
  }

  /* .gallery-card,
  .gallery-card.tall {
    height: 290px
  } */

}

/* --------------- */
.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 1.5rem;
  height: 1.5rem;
  filter: invert(1);
}

/* ------------------ */
/* ----------------- */
.color-white {
  color: #ffff;
}

.stat-box h6 {
  font-size: 25px;
  color: var(--sc-rose);
  font-weight: 600;
}

.stat-box h6 span {
  font-size: 25px;
  color: var(--sc-rose);
  font-weight: 600;
}

.img-wrapper {
  position: relative;
  margin-top: 15px;
  img {
    width: 100%;
  }
}
.img-overlay {
  background: rgba(0,0,0,0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  i {
    color: #fff;
    font-size: 3em;
  }
}
.product-hero-wrapper{
  display:flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  max-width: 600px;
  margin: auto;
}
.navbar{
  padding-top:5px;
  padding-bottom: 5px;
}
.navbar-brand{
  padding-bottom: 0;
  padding-top: 0;
}
.text-color-blue{
  color: var(--sc-gold);
}
/* ----------------------- */
/* -------Light bx css start----------- */
.g_image {
    width: 100%;
}

.g_image img {
    width: 100%;
}

.lightboxpreview {
    transition: all .3s linear;
    padding-top: 60%;
    cursor: pointer;
    background-size: cover;
}

.lightbox-content {
    max-height: 75vh;
    height: 75vh;
    width: 100%;
    max-width: 1000px;
}

.lightbox-close {
    cursor: pointer;
    margin-left: auto;
    position: absolute;
    right: -30px;
    top: -30px;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.modal_inner_image {
    min-height: 500px;
    z-index: 1000;
}

.modal-content {
    width: 100%;
}


.modalscale {
    transform: scale(0);
    opacity: 0;
}

.lightbox-container,
.lightbox-btn,
.lightbox-image-wrapper,
.lightbox-enabled {
    transition: all .4s ease-in-out;
}

.lightbox_img_wrap {
    padding-top: 65%;
    min-height: 300px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.lightbox-enabled:hover {
    transform: scale(1.1)
}

.lightbox-enabled {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
    cursor: pointer;
}

.lightbox-container {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .6);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
}

.lightbox-container.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-image-wrapper {
    display: flex;
    transform: scale(0);
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-container.active .lightbox-image-wrapper {
    transform: scale(1);
}

.lightbox-btn,
#close {
    color: white;
    z-index: 9999999;
    cursor: pointer;
    position: absolute;

    font-size: 35px;
}

.lightbox-btn:focus {
    outline: none;
}

.left {
    left: 50px;
}

.right {
    right: 50px;
}

#close {
    top: 50px;
    right: 50px;
}

.lightbox-image {
    width: 100%;
    -webkit-box-shadow: 5px 5px 20px 2px rgba(0, 0, 0, 0.19);
    box-shadow: 5px 5px 20px 2px rgba(0, 0, 0, 0.19);
    max-height: 95vh;
    object-fit: cover;
}

@keyframes slideleft {
    33% {
        transform: translateX(-300px);
        opacity: 0;
    }

    66% {
        transform: translateX(300px);
        opacity: 0;
    }
}


.slideleft {
    animation-name: slideleft;
    animation-duration: .5s;
    animation-timing-function: ease;
}

@keyframes slideright {
    33% {
        transform: translateX(300px);
        opacity: 0;
    }

    66% {
        transform: translateX(-300px);
        opacity: 0;
    }
}


.slideright {
    animation-name: slideright;
    animation-duration: .5s;
    animation-timing-function: ease;
}

/* light box css end */

@media (min-width: 992px) {
    .ms-lg-2 {
        margin-left: 4.5rem !important;
    }
}
@media (max-width:991.99px){
  .container{
    width: 100%;
    max-width: none;
    padding: 0 15px;
  }
  
}
  .product-card{
    min-height: 310px;
  }
  .background-texture{
    background-image: url(../images/body-texture.png);
    background-size: cover;
    background-position: center;

  }
  .background-texture-two{
    background-size:100%;
  }
.lightbox-image{
  width: 40vw;
 
}
@media (max-width:767px) {
  .lightbox-image{
  width: 80vw;
 
}
}
.inner-page-title{
  font-size:40px;
}
@media (max-width:991px) {
  .inner-page-title{
  font-size:30px;
}
.why-us{
  overflow: hidden;
}
}
@media (max-width:776px) {
  .inner-page-title{
  font-size:25px;
}
}
.overflow-hidden{
  overflow: hidden;
}

.contact-card .price-text:hover{
  color: var(--sc-gold);
}