#orderEnquiryModal .iti {
  width: 100%;
}
#orderEnquiryModal .iti__flag-container {
  z-index: 99999;
}

/* ══════════════════════════════════════════════════════════════
   NS-WAB — Watch & Buy Section Styles
══════════════════════════════════════════════════════════════ */
.ns-wab-section {
  margin: 28px 0 36px;
  margin-bottom: 0px;
}
.ns-wab-title {
  margin-bottom: 18px;
}

.ns-wab-slider-wrap {
  position: relative;
  padding: 0 48px;
  box-sizing: border-box;
  overflow: visible;
}
.ns-wab-track-outer {
  overflow: hidden;
  border-radius: 14px;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ns-wab-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: flex-start;
}
.ns-wab-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 4px 0;
}
.ns-wab-card {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: row;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.09);
  transition: box-shadow 0.2s;
}
.ns-wab-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

.ns-wab-gallery {
  width: 42%;
  min-width: 180px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: #f7f7f7;
  border-right: 1px solid #f0f0f0;
}
.ns-wab-main-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #ffffff;
  flex-shrink: 0;
}
.ns-wab-main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
  background: #ffffff;
}
.ns-wab-main-img.active {
  opacity: 1;
  pointer-events: auto;
}

.ns-wab-video-modal-btn {
  display: none !important;
}

.ns-gal-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.18);
  padding: 0;
  transition: background 0.15s;
}
.ns-gal-arr:hover {
  background: #fff;
}
.ns-gal-arr.hidden {
  opacity: 0;
  pointer-events: none;
}
.ns-gal-prev {
  left: 5px;
}
.ns-gal-next {
  right: 5px;
}
.ns-gal-counter {
  position: absolute;
  bottom: 7px;
  right: 9px;
  background: rgba(0, 0, 0, 0.48);
  color: #fff;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 20px;
  pointer-events: none;
  line-height: 1.6;
}

.ns-wab-thumb-row {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 6px 5px;
  background: #f7f7f7;
}
.ns-thumb-arr {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: none;
  background: #e8e8e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s;
}
.ns-thumb-arr:hover {
  background: #d0d0d0;
}
.ns-thumb-arr.hidden {
  opacity: 0;
  pointer-events: none;
}
.ns-wab-thumbs-wrap {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.ns-wab-thumbs-track {
  display: flex;
  gap: 5px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ns-wab-thumb {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  overflow: hidden;
  border: 1.5px solid #ddd;
  cursor: pointer;
  transition: border-color 0.2s;
  position: relative;
}
.ns-wab-thumb.active {
  border-color: #c0392b;
}
.ns-wab-thumb:hover {
  border-color: #c0392b;
}
.ns-wab-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: top;
}
.ns-thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
}

.ns-wab-details {
  flex: 1;
  min-width: 0;
  padding: 22px 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.ns-wab-cat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #c0392b;
  text-transform: uppercase;
}
.ns-wab-name {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
}
.ns-wab-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.ns-wab-name a:hover {
  color: #c0392b;
}
.ns-wab-code {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}
.ns-wab-code span {
  color: #444;
  font-weight: 600;
}
.ns-wab-price {
  font-size: 22px;
  font-weight: 700;
  color: #c0392b;
  letter-spacing: -0.3px;
  margin: 2px 0;
}
.ns-wab-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.ns-wab-opt-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ns-wab-opt-label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}
.ns-wab-opt-label span {
  font-weight: 400;
  color: #888;
  margin-left: 4px;
}
.ns-wab-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}
.ns-swatch-label {
  cursor: pointer;
  margin: 0;
}
.ns-color-swatch {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ddd;
  transition:
    border 0.2s,
    transform 0.2s;
  vertical-align: middle;
  cursor: pointer;
}
.ns-color-radio:checked + .ns-color-swatch,
.ns-color-swatch.selected {
  border: 3px solid #888 !important;
  transform: scale(1.2);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}
.ns-color-swatch:hover {
  transform: scale(1.1);
}
.ns-size-swatch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 5px 14px;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  font-size: 12px;
  color: #333;
  background: #fff;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
  user-select: none;
  cursor: pointer;
  white-space: nowrap;
}
.ns-size-radio:checked + .ns-size-swatch,
.ns-size-swatch.selected {
  border-color: #e07b00 !important;
  background: #fff5e6 !important;
  color: #e07b00 !important;
  font-weight: 600;
}
.ns-size-swatch:hover {
  border-color: #e07b00;
  color: #e07b00;
}

.ns-wab-qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 2px 0;
  margin-top: 30px;
}
.ns-wab-qty-label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}
.ns-wab-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  height: 36px;
}
.ns-qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: #f5f5f5;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: #333;
  transition: background 0.15s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ns-qty-btn:hover {
  background: #eee;
}
.ns-qty-input {
  width: 40px;
  border: none;
  border-left: 1.5px solid #ccc;
  border-right: 1.5px solid #ccc;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  background: #fff;
  height: 36px;
  -moz-appearance: textfield;
  outline: none;
}
.ns-qty-input::-webkit-inner-spin-button,
.ns-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.ns-wab-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 8px;
  padding-top: 0;
  width: 100%;
}
.ns-wab-actions .ns-btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  padding: 11px 16px;
  background: #fff;
  color: #222;
  border: 1.5px solid #333;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  letter-spacing: 0.2px;
  box-sizing: border-box;
  position: static !important;
  transform: none !important;
}
.ns-wab-actions .ns-btn-cart:hover {
  background: #222;
  color: #fff;
}
.ns-wab-actions .ns-btn-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: 1;
  padding: 11px 16px;
  background: #e07b00;
  color: #fff;
  border: none;
  border-radius: 8px !important;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  box-sizing: border-box;
  position: static !important;
  transform: none !important;
  margin: 0 !important;
}
.ns-wab-actions .ns-btn-order:hover {
  background: #c96d00;
}

.ns-wab-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  padding: 0;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    opacity 0.2s;
}
.ns-wab-arr:hover {
  background: #f8f8f8;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.ns-wab-arr.disabled {
  opacity: 0.35;
  pointer-events: none;
}
.ns-wab-prev {
  left: 2px;
}
.ns-wab-next {
  right: 2px;
}

.ns-wab-dots {
  display: none !important;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}
.ns-wab-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s,
    transform 0.2s;
}
.ns-wab-dot.active {
  background: #c0392b;
  transform: scale(1.35);
}

/* VIDEO PLAY BUTTON */
.nallur-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: #f5bd41;
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.2s ease,
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(245, 189, 65, 0.6);
  outline: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nallur-video-btn:hover {
  transform: translate(-50%, -50%) scale(1.13);
}
.nallur-video-btn:active {
  transform: translate(-50%, -50%) scale(0.96);
}
.nallur-play-icon {
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 2;
  left: 4px;
}
.nallur-ripple {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.75);
  animation: nallur-ripple 2.2s ease-out infinite;
  pointer-events: none;
}
.nallur-ripple-2 {
  border-color: rgba(245, 189, 65, 0.6);
  animation-delay: 1.1s;
}
@keyframes nallur-ripple {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* ── Responsive tablet ─────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1100px) {
  .ns-wab-card {
    max-width: 720px;
  }
  .ns-wab-gallery {
    width: 42%;
    min-width: 160px;
  }
  .ns-wab-name {
    font-size: 15px;
  }
  .ns-wab-price {
    font-size: 19px;
  }
  .ns-wab-desc {
    font-size: 12px;
  }
  .ns-wab-details {
    padding: 16px 16px 14px;
    gap: 7px;
  }
  .ns-wab-thumb {
    width: 40px;
    height: 40px;
  }
  .ns-wab-slider-wrap {
    padding: 0 44px;
  }
}

/* ── Mobile ────────────────────────────────────────────── */
@media (max-width: 767px) {
  .ns-wab-slider-wrap {
    padding: 0 36px;
    overflow: visible;
  }
  .ns-wab-track-outer {
    overflow: hidden;
    border-radius: 10px;
  }
  .ns-wab-track {
    align-items: flex-start;
  }
  .ns-wab-slide {
    align-items: flex-start;
    height: auto;
    min-height: unset;
  }
  .ns-wab-card {
    flex-direction: column;
    max-width: 100%;
    min-height: unset !important;
    height: auto !important;
  }
  .ns-wab-gallery {
    width: 100%;
    min-width: unset;
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    height: auto;
  }
  .ns-wab-main-stage {
    aspect-ratio: unset;
    height: 260px;
  }
  .ns-wab-main-img {
    object-position: center;
    object-fit: contain;
    background: #ffffff;
  }
  .ns-wab-details {
    padding: 12px 12px 10px;
    gap: 6px;
    flex: 0 0 auto !important;
    height: auto !important;
  }
  .ns-wab-actions {
    margin-top: 10px !important;
    padding-top: 0 !important;
    flex-direction: column;
    gap: 8px;
  }
  .ns-wab-prev {
    left: 0;
  }
  .ns-wab-next {
    right: 0;
  }
  .ns-wab-arr {
    width: 32px;
    height: 32px;
  }
  .ns-wab-name {
    font-size: 14px;
  }
  .ns-wab-price {
    font-size: 17px;
  }
  .ns-wab-desc {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .ns-wab-cat-label {
    font-size: 10px;
  }
  .ns-qty-btn {
    width: 30px;
    font-size: 16px;
  }
  .ns-qty-input {
    width: 32px;
    font-size: 13px;
  }
  .ns-wab-actions .ns-btn-cart,
  .ns-wab-actions .ns-btn-order {
    padding: 10px 12px;
    font-size: 13px;
  }
  .ns-wab-thumb {
    width: 40px;
    height: 40px;
  }
  .nallur-video-btn {
    width: 44px;
    height: 44px;
  }
  .nallur-play-icon {
    width: 30px;
    height: 30px;
  }

  .ns-wab-qty-row { 
    margin: 2px 0;
  }
}

@media (max-width: 480px) {
  .nallur-video-btn {
    width: 38px;
    height: 38px;
    border-width: 2px;
  }
  .nallur-play-icon {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 420px) {
  .ns-wab-slider-wrap {
    padding: 0 32px;
  }
  .ns-wab-details {
    padding: 10px 10px 10px;
    gap: 5px;
  }
  .ns-wab-name {
    font-size: 13px;
  }
  .ns-color-swatch {
    width: 28px;
    height: 28px;
  }
  .ns-size-swatch {
    min-width: 34px;
    padding: 4px 10px;
    font-size: 11px;
  }
}

.nallur-slide-img,
.mgrid-img,
.img-1,
.nvbs-bg-img,
#enq-product-img {
  filter: blur(4px);
  opacity: 0.6;
  transform: scale(1.02);
  transition:
    filter 0.8s ease,
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: filter, opacity, transform;
  display: block;
  width: 100%;
}
.nallur-slide-img.img-loaded,
.mgrid-img.img-loaded,
.img-1.img-loaded,
.nvbs-bg-img.img-loaded,
#enq-product-img.img-loaded {
  filter: blur(0);
  opacity: 1;
  transform: scale(1);
}
.product-image-container,
.left-block,
.mgrid-img-box {
  overflow: hidden;
}
/* ── WAB Zoom Button ───────────────────────────────────── */
.ns-wab-zoom-btn {
  position: absolute;
  bottom: 9px;
  right: 9px;
  width: 32px;
  height: 32px;
  background: rgb(3 18 102);
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
  padding: 0;
  transition:
    background 0.15s,
    transform 0.15s;
}
.ns-wab-zoom-btn:hover {
  background: rgb(3 18 102);
  transform: scale(1.1);
}
.ns-wab-zoom-btn svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

/* ── WAB Image Lightbox Modal ──────────────────────────── */
.ns-img-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.ns-img-lightbox.open {
  display: flex;
}
.ns-img-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  cursor: pointer;
}
.ns-img-lightbox-card {
  position: relative;
  z-index: 1;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  max-width: 92vw;
  max-height: 92vh;
  width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ns-img-lightbox-img-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
  line-height: 0;
}
.ns-img-lightbox-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}
.ns-img-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: #fff;
  transition: background 0.15s;
}
.ns-img-lightbox-close:hover {
  background: rgba(0, 0, 0, 0.8);
}
.ns-img-lightbox-counter {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.45);
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  pointer-events: none;
  white-space: nowrap;
}
.ns-img-lightbox-arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    transition: background 0.15s;
    color: #000;
}
.ns-img-lightbox-arr svg {
  stroke: #000;
}
.ns-img-lightbox-arr:hover {
   background: white;
}
.ns-img-lightbox-arr.disabled {
  opacity: 0.25;
  pointer-events: none;
}
.ns-img-lightbox-prev {
  left: 12px;
}
.ns-img-lightbox-next {
  right: 12px;
}
@media (max-width: 600px) {
  .ns-img-lightbox-prev {
    left: 6px;
  }
  .ns-img-lightbox-next {
    right: 6px;
  }
  .ns-img-lightbox-card {
    width: 96vw;
  }
}


.na-product-container .product-image-container img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  background: white;
  object-position: center center;
  transition: transform 0.5s ease;
  display: block !important;
}
