/* ================= MODAL ================= */
.wishlist-modal .modal-content {
  border-radius: 12px;
  border: none;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.wishlist-modal .modal-header {
  border-bottom: 1px solid #eee;
  padding: 16px 20px;
}

.wishlist-modal .modal-title {
  font-size: 18px;
  font-weight: 600;
}

.wishlist-modal .modal-body {
  padding: 20px;
}

/* ================= SEARCH ================= */
.search-box {
  position: relative;
}

.search-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 14px;
}

.search-box input {
  width: 100%;
  padding: 10px 12px 10px 38px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
}

.search-box input:focus {
  border-color: #000;
}

/* ================= GRID ================= */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

/* ================= CARD ================= */
.wishlist-card {
  position: relative;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  background: #fff;
  transition: all 0.3s ease;
}

.wishlist-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

/* remove */
.wishlist-card .remove {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #999;
}

.wishlist-card .remove:hover {
  color: #000;
}

/* checkbox */
.wishlist-card .select-item {
  position: absolute;
  top: 12px;
  left: 12px;
  transform: scale(1.1);
}

/* ================= IMAGE ================= */
.wishlist-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;   /* 👈 image kabhi stretch nahi hogi */
  margin-bottom: 10px;
}

/* ================= TEXT ================= */
.wishlist-card h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 8px 0;
  line-height: 1.4;
}

.wishlist-card .price {
  font-size: 15px;
  font-weight: 600;
  margin: 6px 0;
}

/* ================= QTY ================= */
.qty {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
}

.qty button {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50%;
}

.qty span {
  font-size: 14px;
}

/* ================= BUTTON ================= */
.move-cart {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: none;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.move-cart:hover {
  background: #333;
}
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #111;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(20px);
  transition: .3s;
  z-index: 9999;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}


/* ===============================
   WHATSAPP FLOAT BUTTON
================================ */
.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
     color: #fff !important;
    font-size: 35px;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover lift */
.whatsapp-float:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.65);
}

/* ===============================
   PULSE RING
================================ */
.whatsapp-float .wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: waPulse 2.5s infinite;
  z-index: -1;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* ===============================
   ICON MICRO ANIMATION
================================ */
.whatsapp-float i {
  animation: waBounce 2s infinite ease-in-out;
}

@keyframes waBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.not-found-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.not-found-popup.active {
  display: flex;
}

.not-found-card {
  background: #fff;
  padding: 25px 30px;
  max-width: 420px;
  width: 90%;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: scaleIn 0.25s ease;
  position: relative;
}

.not-found-card p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
}
/* WISHLIST */
.wishlist{
 position: absolute;
    top: 12px;
    right: 14px;
    background: #fff;
    font-size: 22px;
    padding: 0px 8px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    color: #bbb;
    user-select: none;
    transition: .25s;
}

.wishlist.active{
  color:#e63946;
  transform:scale(1.15);
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

 /* ================= CURSOR ================= */

    .cursor-dot {
      position: fixed;
      width: 6px;
      height: 6px;
      background: #000;
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
    }

    .cursor-ring {
      position: fixed;
      width: 40px;
      height: 40px;
      border: 2px solid rgba(0, 0, 0, 0.4);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition:
        width 0.2s ease,
        height 0.2s ease,
        background 0.2s ease,
        transform 0.15s cubic-bezier(.17,.67,.32,1.49);
    }

    /* ================= EMOJI ================= */

    .cursor-emoji {
      position: fixed;
      font-size: 18px;
      pointer-events: none;
      z-index: 9997;
      transform: translate(-50%, -50%) scale(0);
      transition: 0.2s ease;
    }

    /* ================= TRAIL ================= */

    .trail-dot {
      position: fixed;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      pointer-events: none;
      background: radial-gradient(circle, #ff9a9e, #fad0c4);
      animation: pop 0.6s ease-out forwards;
      z-index: 9996;
    }

    @keyframes pop {
      0% {
        transform: scale(1);
        opacity: 1;
      }
      100% {
        transform: scale(0);
        opacity: 0;
      }
    }





.vc-popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.vc-popup-box{
  width:100%;
  max-width:380px;
  background:#fff;
  padding:40px 30px;
  border-radius:12px;
  position:relative;
  animation:fadeIn .3s ease;
}

@keyframes fadeIn{
  from{transform:scale(.9);opacity:0}
  to{transform:scale(1);opacity:1}
}

.vc-close-btn{
  position:absolute;
  top:10px;
  right:15px;
  border:none;
  background:none;
  font-size:24px;
  cursor:pointer;
}

.vc-input-group{
  position:relative;
  margin-bottom:20px;
}

.vc-input-group i{
  position:absolute;
  left:10px;
  top:50%;
  transform:translateY(-50%);
  color:#999;
}

.vc-input-group input{
  width:100%;
  padding:10px 10px 10px 35px;
  border:none;
  border-bottom:2px solid #ccc;
  outline:none;
}

.vc-input-group input:focus{
  border-color:#d624ff;
}

.vc-btn{
  width:100%;
  padding:12px;
  border:none;
  border-radius:25px;
  background:linear-gradient(to right,#00dbde,#fc00ff);
  color:#fff;
  font-weight:600;
  cursor:pointer;
}

.vc-btn:disabled{
  opacity:.6;
  cursor:not-allowed;
}

.vc-link{
  font-size:13px;
  cursor:pointer;
  color:#555;
}

.vc-otp-input{
  display:flex;
  justify-content:center;
  gap:10px;
}

.vc-otp-input input{
  width:45px;
  height:45px;
  text-align:center;
  border:1px solid #ccc;
  border-radius:8px;
}

.vc-error{
  font-size:12px;
  color:red;
  margin-bottom:10px;
}

.vc-hidden{display:none;}
.vc-social{
  margin-top:25px;
  text-align:center;
}

.vc-social p{
  font-size:13px;
  margin-bottom:15px;
  color:#555;
}

.vc-social-icons{
  display:flex;
  justify-content:center;
  gap:12px;
}

.vc-social-icons i{
  width:40px;
  height:40px;
  line-height:40px;
  text-align:center;
  border-radius:50%;
  color:#fff;
  cursor:pointer;
  font-size:16px;
  transition:.3s;
}

/* Colors */
.vc-social-icons .fa-google{
  background:#db4437;
}

.vc-social-icons .fa-twitter{
  background:#1da1f2;
}

.vc-social-icons .fa-envelope{
  background:#ea4335;
}

.vc-social-icons i:hover{
  transform:translateY(-3px);
  box-shadow:0 5px 15px rgba(0,0,0,0.2);
}



/* ===============================
   MOBILE SAFE
================================ */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 26px;
    left: 16px;
    bottom: 16px;
  }
}
