 
/* HERO SECTION */
.Pure-Viso-hero {
  width: 100%;
margin-top: 120px;
  position: relative;
  overflow: hidden;
}

/* SWIPER FULL HEIGHT */
.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide {
  width: 100%;
  height: 100%;
    background-size: 100% 100%;
  background-position: center;
}

/* HERO SLIDE BACKGROUND */
.hero-slide {
  background-size: cover;        /* 🔥 important */
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* OPTIONAL DARK OVERLAY (LUXURY FEEL) */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

/* CONTENT ABOVE OVERLAY */
.hero-slide .container {
  position: relative;
  z-index: 2;
}




.Pure-Viso-hero {
  overflow: hidden;
  height: 700px;
}

.hero-slide {
  height: 100vh;
  display: flex;
  object-fit: contain;
  align-items: center;
  background-size: cover;
  background-position: center;
}


@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  transition: 0.4s ease;
}

.hero-btn:hover {
  background: #000;
  color: #fff;
}


/* Heading */
.section-title {
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 60px;
}

.ingredients-section {
  background: #E8E4DC;
  padding: 80px 0;
}

.ingredient-item h6 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 18px;
  margin-bottom: 6px;
}

.ingredient-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

.ingredient-img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 6px solid #fff;
  overflow: hidden;
  margin: 0 auto;
  background: #fff;
}

.ingredient-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* MOBILE SLIDER */

/* ---------------- MOBILE SLIDER ---------------- */
@media (max-width: 767px) {



  .ingredients-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }

  .ingredients-slider::-webkit-scrollbar {
    display: none;
  }

  .ingredient-slide {
    flex: 0 0 85%;
    margin: 0 7.5%;
    scroll-snap-align: center;
  }

  /* Arrows */
  .slider-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
  }

  .left-btn { left: 5px; }
  .right-btn { right: 5px; }

  /* Indicators */
  .slider-indicators {
    margin-top: 20px;
  }

  .slider-indicators .dot {
    height: 8px;
    width: 8px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: 0.3s;
  }

  .slider-indicators .dot.active {
    background-color: #000;
    width: 18px;
    border-radius: 10px;
  }
}


/* DESKTOP – NORMAL GRID */
@media (min-width: 768px) {
   .ingredients-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .ingredient-slide {
    flex: 0 0 16%;
    margin: 0;
  }
}

/* ===== SECTION ===== */
.prime-picks {
  padding: 80px 0;
}

/* Heading */
.small-heading {
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 10px;
}

/* Tabs */
.prime-tabs .nav-link {
  border: none;
 font-size: 20px;
  letter-spacing: 2px;

 color: #000 !important;
     font-weight: 500;

  padding-bottom: 6px;
}

.prime-tabs .nav-link:hover {
  border: none;
 font-size: 20px;
  letter-spacing: 2px;
  background-color: unset;
 color: #000 !important;
     font-weight: 500;

  padding-bottom: 6px;
}
.prime-tabs .nav-link.active {
  border-bottom: 1.5px solid #000;
background-color: #909c68;
color: #fff !important;
}

  /* PRODUCT CARD */
  /* Mobile view – horizontal slider */
@media (max-width: 767px) {
  .product-slider {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .product-slider::-webkit-scrollbar {
    display: none;
  }

  .product-slide {
    flex: 0 0 80%;
    max-width: 80%;
    scroll-snap-align: start;
  }
}

/* Desktop view – normal grid */
@media (min-width: 768px) {
  .product-slider {
    overflow: visible;
  }

  .product-slide {
    flex: unset;
    max-width: 33.3333%;
  }
}

.product-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  transition:.4s;
  height:100%;
}

.product-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 60px rgba(0,0,0,.15);
}

/* IMAGE AREA */
.card-image{
  position:relative;
  height:230px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fafafa;
  overflow:hidden;
}

.card-image img{
     width: 100%;
    /* max-height: 190px; */
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.product-card:hover img{
  transform:scale(1.08);
}

/* WISHLIST */
.wishlist{
 position: absolute;
    top: 12px;
    right: 14px;
    background: #fff;
    font-size: 22px;
    padding: 0px 8px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    color: #bbb;
    user-select: none;
    transition: .25s;
}

.wishlist.active{
  color:#e63946;
  transform:scale(1.15);
}

/* NEW LAUNCH */
.badge-launch{
  position:absolute;
  top:18px;
  left:-45px;
  z-index: 990;
  background:#f7f4ee;
  color:#000;
  padding:6px 55px;
  font-size:12px;
  font-weight:600;
  transform:rotate(-45deg);
}

/* ADD TO CART – FIXED AT BOTTOM */
.cart-overlay{
 
  bottom: 16px;                 /* 🔥 always visible */
 
 
  width: 85%;
  border: none;
  border-radius: 30px;
  padding: 10px;

  background: #909c68;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
margin-bottom: 14px;
  opacity: 1;                   /* 🔥 always visible */
  transition: background 0.3s ease;
}
.cart-buy{
    bottom: 16px;                 /* 🔥 always visible */
 
 
  width: 85%;
  border: none;
  border-radius: 30px;
  padding: 10px;
border: 1px solid #909c68;
  background: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 600;
margin-bottom: 14px;
  opacity: 1;                   /* 🔥 always visible */
  transition: background 0.3s ease;
}
.cart-buy:hover{
  background: #222;
    color: #fff;
}
.cart-overlay:hover{
  background: #222;
    color: #fff;
}

/* .product-card:hover .cart-overlay{
  bottom:18px;
  opacity:1;
} */

/* BODY */
.card-body{
  padding:15px;
  text-align:center;
}

.product-title{
  font-size:14px;
  font-weight:600;
}

.price{
  font-size:15px;
  font-weight:600;
}

.price del{
  font-size:13px;
  color:#999;
}

.off{
display: inline-block;
  font-size:12px;
  color:#198754;
}
/* MOBILE OPTIMIZATION */
@media (max-width: 450px) {
  .Pure-Viso-hero {
    height: 350px;
    margin-top: 50px;
  }
  .prime-picks {
    padding: 50px 0;
}

  .ingredient-img {
    width: 140px;
    height: 140px;
  }

  .ingredient-item h6 {
    font-size: 15px;
  }

  .ingredient-item p {
    font-size: 13px;
    max-width: 160px;
  }

  .ingredients-slider {
    padding-left: 10px;
  }

  .hero-slide {
    background-position: center top;
  }
}
/* MOBILE */
@media(max-width:767px){
  .cart-overlay{
    opacity:1;
    bottom:18px;
  }
  .product-card:hover{
    transform:none;
  }
  .product-card:hover img{
    transform:none;
  }
}

/* Button */
.cart-btn {
  margin-top: 10px;
  background: #000;
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 10px 0;
  width: 100%;
}

.cart-btn:hover {
  background: #222;
  color: #fff;
}
/* ===============================
   WISHLIST CARD (ADVANCED)
================================ */
.wishlist-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wishlist-card {
  display: flex;
  gap: 18px;
  flex-direction: column;
  align-items: center;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.wishlist-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* ===============================
   IMAGE
================================ */
.wishlist-img {
  width: 90px;
  height: 90px;
  border-radius: 14px;
  background: #f4f6fb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wishlist-img img {
  max-width: 70px;
  max-height: 70px;
  object-fit: contain;
}

/* ===============================
   INFO
================================ */
.wishlist-info {
  flex: 1;
}

.wishlist-info h6 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 6px;
}

.wishlist-price {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

/* ===============================
   ACTIONS
================================ */
.wishlist-actions {
  display: flex;
  gap: 12px;
}

.btn-move {
  background: #909c68;
      color: #fff !important;
  border: none;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 25px;
  transition: 0.25s ease;
}

.btn-move:hover {
  background: #000;
}

.btn-remove {
  background: transparent;
  border: 1.5px solid #909c68;
  color: #909c68;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 25px;
  transition: 0.25s ease;
}

.btn-remove:hover {
  background: #e63946;
  color: #fff;
}

/* ===============================
   MOBILE VIEW
================================ */
@media (max-width: 576px) {
  .wishlist-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .wishlist-info {
    flex: 1;
    width: 100%;
}

  .wishlist-img {
    width: 100%;
    height: 150px;
  }

  .wishlist-actions {
    width: 100%;
    flex-direction: column;
  }

  .wishlist-actions button {
    width: 100%;
  }
}


/* Image */
.luxury-fragrance-section{
  background-color: #fff;
}
.luxury-img {
  border-radius: 2px;
}

/* Content */
.luxury-content {
  padding-left: 60px;
}



.luxury-title {
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.luxury-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  max-width: 420px;
  margin-bottom: 30px;
}


/* Button */
.luxury-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #909c68;
  color: #fff !important;
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
}

.luxury-btn:hover {
  background: #222;
  color: #fff;
}

/* ===== SECTION ===== */
.thoughtful-section {
  padding: 90px 0;
  /* background: #fff; */
}

/* Heading */
.thoughtful-title {
  font-size: 24px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23909c68'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23909c68'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.thoughtful-subtitle {
  font-size: 15px;
  max-width: 1000px;
  margin: 0 auto;
  color: #444;
}

/* Item */

.commitment-item img {
  height: 70px;
    object-fit: contain;
    width: 100%;
  margin-bottom: 15px;
}

.commitment-item h6 {
  font-size: 12px;
      font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.commitment-item p {
  font-size: 12px;
  color: #1c1c1c;
  margin-top: 12px;
  line-height: 1.5;
}
/* ===== SECTION ===== */
.art-gifting {
  background: #fff;
}



.art-title {
  font-size: 28px;
  letter-spacing: 2px;
}

/* Card */
.gift-card {
  position: relative;
  overflow: hidden;
}

.gift-card img {
  width: 100%;
  display: block;
}



/* Hover effect */
.gift-card img {
  transition: transform 0.4s ease;
}

.gift-card:hover img {
  transform: scale(1.05);
}
.collection-main-img{
  width: 100%;

 height: 410px;


    object-fit: cover;
    background: #f6f7fb;
    border-radius: 18px;
    padding: 0px;
}
/* ===== SECTION ===== */
.collection-section {
  padding: 20px 0;
}

.collection-title {
  font-size: 24px;
  letter-spacing: 3px;
  margin-bottom: 25px;
}

/* Tabs */
.collection-tabs .nav-link {
  border: 1px solid #ddd;
  margin: 5px;
  font-size: 15px;
  letter-spacing: 1.5px;
  color: #000 ;
  padding: 6px 14px;
}

.collection-tabs .nav-link.active {
  background: #000;
  color: #fff !important;
}

/* Big Image */
.collection-main-img {
  width: 100%;
}

/* Product Card */
.collection-card {
  position: relative;
  text-align: center;
}

.collection-card img {
  max-height: 220px;
  margin-bottom: 15px;
}
/* Mobile view – horizontal slide */
@media (max-width: 767px) {
  .collection-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  .collection-tabs::-webkit-scrollbar {
    display: none; /* clean look */
  }

  .collection-tabs .nav-item {
    flex: 0 0 auto;
  }

  .collection-tabs .nav-link {
    white-space: nowrap;
    margin-right: 10px;
  }
}

/* Desktop view – same as normal */
@media (min-width: 768px) {
  .collection-tabs {
    overflow: visible;
    flex-wrap: wrap;
  }
}




/* Title */
.collection-card h6 {
  font-size: 12px;
  letter-spacing: 1px;
  min-height: 23px;
}

/* Price & Rating */
.price {
  font-size: 14px;
  font-weight: 700;
}

.rating {
  font-size: 12px;
  color: #555;
}

/* Button */
.cart-btn {
  background: #000;
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
  width: 100%;
  margin-top: 10px;
}

.view-all-advanced {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1px;

  width: 140px;
  height: 46px;

  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;

  overflow: hidden;
  transition:
    width 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.3s ease,
    color 0.3s ease;
}

/* TEXT */
.view-all-advanced .text {
  transition: transform 0.4s ease;
}

/* ICON (hidden initially) */
.view-all-advanced .icon {
  opacity: 0;
  transform: translateX(-8px);
  font-size: 14px;
  transition: all 0.4s ease;
}

/* UNDERLINE */
.view-all-advanced::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #000;
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

/* HOVER */
.view-all-advanced:hover {
  width: 22%;
  background: #000;
 color: #fff !important;
}

.view-all-advanced:hover .text {
  transform: translateX(-4px);
}

.view-all-advanced:hover .icon {
    opacity: 1;
    transform: translateX(0);
    border: 1px solid #fff;
    padding: 2px 8px;
    border-radius: 50%;
}



/* MOBILE SAFE */
@media (max-width: 768px) {
  .view-all-advanced {
    width: 160px;
  }

  .view-all-advanced:hover {
    width: 160px;
  }

  .view-all-advanced .icon {
    opacity: 1;
    transform: none;
  }
}


/* ===== SECTION ===== */


/* ===== SECTION ===== */
.video-testimonial-section {
  padding: 50px 0;
  background: #fff;
  overflow: hidden;
}

.testimonial-title {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 2px;
}

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Optional – smooth performance */
.marquee-track {
  will-change: transform;
}

.review-card {
  width: 280px;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  font-family: "Poppins", sans-serif;
}

.review-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

.name {
  font-size: 13px;
  font-weight: 600;
  color: #111;
}


.video-card {
  min-width: 260px;
  margin: 0 15px;
  text-align: center;
}

.video-card video {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
}

.video-card .name {
  margin-top: 10px;
  font-weight: 600;
}

/* Pause on hover (optional) */
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .video-card {
    min-width: 220px;
  }
.cart-btn{
  width: 75%;
}
  .video-card video {
    height: 260px;
  }
}


/* Brand */
.brand-name {
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 15px;
}




   .video-wrapper {
      height: 400px;
      overflow: hidden;
      position: relative;
      border-radius: 12px;
    }

    .video-wrapper video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.08);
      animation: cinematicZoom 14s ease-in-out infinite;
      transition: transform 1.2s ease;
    }

 
    /* Mobile optimization */
    @media (max-width: 768px) {
      .video-wrapper {
        height: 260px;
        border-radius: 8px;
      }
    }

/* Mobile */
@media (max-width: 768px) {
  .testimonial-text {
    font-size: 13px;
  }
}


/* Mobile */
@media (max-width: 768px) {
  .logo-item {
    padding: 0 30px;
  }

  .logo-item img {
    height: 35px;
  }
}


/* Mobile */
@media (max-width: 768px) {
  .category-card p {
    font-size: 12px;
  }
}

/* Mobile */
@media (max-width: 991px) {
  .collection-main-img {
    margin-bottom: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .art-title {
    font-size: 22px;
  }

  .gift-label {
    font-size: 12px;
  }
}


/* Mobile */
@media (max-width: 768px) {
  .thoughtful-title {
    font-size: 16px;
  }
}


/* ===== MOBILE ===== */
@media (max-width: 991px) {
  .luxury-content {
    padding-left: 0;
    text-align: center;
  }

  .luxury-text {
    margin-left: auto;
    margin-right: auto;
  }
}



/* Mobile */
@media (max-width: 576px) {
  .iconic-img {
    width: 130px;
    height: 130px;
  }
  .collection-main-img{
 
    height: 200px;
   
}
}




/* ===== MOBILE ===== */
@media (max-width: 991px) {
  .logo {
    font-size: 24px;
  }

  .navbar-nav {
    padding-top: 10px;
  }
}
/* ===== MOBILE ===== */
@media (max-width: 430px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-text {
    margin-top: 80px;
  }
  .prime-tabs .nav-link {
    border: none;
    font-size: 14px;
  }
}