body {
  background-color: var(--cali-light, #faf9f6);
  overflow-x: hidden;
}

/* Smooth Parallax */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* --- PRODUCT IMAGE HOVER ANIMATION --- */
.product-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px; /* Slight premium curve */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
}

/* Dono images ek ke upar ek hongi */
.img-primary,
.img-secondary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Prevents stretching and white space */
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.img-secondary {
  opacity: 0;
  transform: scale(1.1); /* Halka sa zoom out hoga enter karte time */
}

/* Hover karne par magic */
.product-image-wrapper:hover .img-primary {
  opacity: 0;
  transform: scale(0.95);
}

.product-image-wrapper:hover .img-secondary {
  opacity: 1;
  transform: scale(1);
}

/* --- SPECS TABLE STYLING --- */
.spec-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}
.spec-row:last-child {
  border-bottom: none;
}
.spec-row:hover {
  background: rgba(255, 255, 255, 0.05);
}
