
:root {
  --nunua-ink: #111313;
  --nunua-cream: #fff7d6;
  --nunua-amber: #ffd100;
  --nunua-jade: #0a84ff;
  --nunua-slate: #4f5b62;
  --nunua-navy: #161f2b;
  --nunua-bg: #f6f6f6;
  --nunua-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
  --nunua-soft-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
  --nunua-border: 1px solid rgba(17, 19, 19, 0.08);
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Cairo", sans-serif;
  color: var(--nunua-ink);
  background: radial-gradient(circle at top left, #fff6cf 0%, #fff1b8 20%, #f6f6f6 55%, #eef1f6 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: "Rubik", sans-serif;
  letter-spacing: -0.02em;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img,
video {
  max-width: 100%;
  height: auto;
}

.container {
  padding-left: clamp(1rem, 3vw, 2.5rem);
  padding-right: clamp(1rem, 3vw, 2.5rem);
}


.nunua-nav {
  background: #11141a;
  padding: 0.8rem 0;
  border-bottom: 3px solid var(--nunua-amber);
}

.nunua-nav .navbar-collapse {
  transition: max-height 0.3s ease;
}

.nunua-nav .collapsing {
  transition: max-height 0.3s ease;
  max-height: 0;
  overflow: hidden;
}

.nunua-nav .navbar-collapse.show {
  max-height: 60vh;
  overflow-y: auto;
}

.nunua-nav__inner {
  gap: 1.2rem;
}


.navbar-brand {
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.navbar-brand span {
  color: var(--nunua-amber);
}

.nunua-nav__search {
  flex: 1 1 auto;
  max-width: 540px;
}

.nunua-search {
  border-radius: 999px 0 0 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.btn-nunua-search {
  border-radius: 0 999px 999px 0;
  background: var(--nunua-amber);
  color: #111313;
  font-weight: 700;
  padding: 0.55rem 1.2rem;
  border: none;
}

.btn-nunua-search:hover {
  background: #f3c200;
}

.nunua-nav__actions .btn {
  font-weight: 600;
}

.nunua-nav__actions .btn,
.nunua-nav__search .form-control,
.nunua-nav__search .btn {
  min-height: 40px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 0.45rem;
}

.btn-icon svg {
  width: 100%;
  height: 100%;
}

.btn-nunua-cart {
  background: #fff;
  color: #111313;
  border: none;
  font-weight: 700;
}

.btn-nunua-cart:hover {
  background: #f7f7f7;
}

.btn-nunua-cta {
  background: var(--nunua-amber);
  color: #111313;
  border: none;
  font-weight: 700;
}

.btn-nunua-cta:hover {
  background: #f3c200;
}


.nunua-hero {
  padding: 3.5rem 0 4.5rem;
  background: linear-gradient(135deg, #ffe169 0%, #ffd100 35%, #ffc857 100%);
  color: #111313;
  position: relative;
  overflow: hidden;
}

.nunua-hero::before,
.nunua-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  filter: blur(8px);
  z-index: 0;
}

.nunua-hero::before {
  width: 320px;
  height: 320px;
  top: -120px;
  right: -80px;
}

.nunua-hero::after {
  width: 240px;
  height: 240px;
  bottom: -120px;
  left: -60px;
}


.nunua-hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1.05;
}

.nunua-hero .nunua-lead {
  font-size: 1.05rem;
  color: #2b2b2b;
}

.noon-banner {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 1.4rem;
  padding: 2.2rem;
  box-shadow: var(--nunua-shadow);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 1.6rem;
  padding: 2.4rem;
  box-shadow: var(--nunua-shadow);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #111313;
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.4rem 0 1.4rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.hero-metrics div {
  background: rgba(17, 19, 19, 0.06);
  border-radius: 0.9rem;
  padding: 0.7rem 0.9rem;
  display: grid;
  gap: 0.2rem;
}

.hero-metrics strong {
  font-size: 1.1rem;
  color: var(--nunua-navy);
}

.hero-metrics span {
  font-size: 0.85rem;
  color: var(--nunua-slate);
}

.hero-slider {
  background: #111313;
  color: #fff;
  border-radius: 1.4rem;
  padding: 1.4rem;
  box-shadow: var(--nunua-shadow);
  overflow: hidden;
}

.hero-slider__track {
  display: flex;
  width: 300%;
  animation: hero-slide 12s infinite;
}

.hero-slide {
  border-radius: 1rem;
  padding: 1.4rem;
  min-height: 150px;
  display: grid;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  min-width: 100%;
}

.hero-slide span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.7;
}

.hero-slide a {
  color: #fff;
  text-decoration: underline;
}

.hero-slide--one {
  background: linear-gradient(120deg, rgba(255, 209, 0, 0.2), rgba(255, 255, 255, 0.05));
}

.hero-slide--two {
  background: linear-gradient(120deg, rgba(0, 132, 255, 0.2), rgba(255, 255, 255, 0.05));
}

.hero-slide--three {
  background: linear-gradient(120deg, rgba(255, 128, 128, 0.25), rgba(255, 255, 255, 0.05));
}

.hero-slider__dots {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 0.8rem;
}

.hero-slider__dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(17, 19, 19, 0.3);
  display: inline-block;
  animation: hero-dots 12s infinite;
}

.hero-slider__dots span:nth-child(2) {
  animation-delay: 4s;
}

.hero-slider__dots span:nth-child(3) {
  animation-delay: 8s;
}

.hero-slider:hover .hero-slider__track {
  animation-play-state: paused;
}

@keyframes hero-slide {
  0%, 28% {
    transform: translateX(0%);
  }
  33%, 61% {
    transform: translateX(-100%);
  }
  66%, 94% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(-200%);
  }
}

@keyframes hero-dots {
  0%, 28% {
    background: #111313;
    transform: scale(1.2);
  }
  33%, 100% {
    background: rgba(17, 19, 19, 0.3);
    transform: scale(1);
  }
}

.hero-mini-grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.hero-mini-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--nunua-soft-shadow);
  border: var(--nunua-border);
  font-weight: 600;
}

.noon-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--nunua-navy);
}

.noon-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.4rem 0 1rem;
}

.noon-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.noon-stat {
  background: rgba(17, 19, 19, 0.06);
  border-radius: 0.9rem;
  padding: 0.7rem 0.9rem;
  display: grid;
  gap: 0.2rem;
}

.noon-stat__value {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--nunua-navy);
}

.noon-stat__label {
  font-size: 0.85rem;
  color: var(--nunua-slate);
}

.noon-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.noon-pills span {
  background: #111313;
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
}


.nunua-hero-card {
  background: #ffffff;
  color: var(--nunua-ink);
  padding: 1.6rem;
  border-radius: 1.2rem;
  box-shadow: var(--nunua-shadow);
}

.noon-hero-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.nunua-hero-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}


.nunua-mini-card {
  background: #fff8d9;
  border-radius: 0.9rem;
  padding: 0.9rem;
  min-height: 86px;
  border: 1px dashed rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nunua-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--nunua-soft-shadow);
}

.nunua-mini-card.empty {
  color: var(--nunua-slate);
}

.nunua-mini-title {
  font-weight: 600;
}


.nunua-mini-price {
  color: var(--nunua-navy);
  font-weight: 700;
}


.nunua-section {
  padding: 3.8rem 0;
}


.nunua-section--alt {
  background: #ffffff;
}

.nunua-featured-row {
  margin-top: 2.5rem;
}

.nunua-featured-carousel {
  grid-auto-columns: minmax(240px, 1fr);
}

.promo-banners {
  padding-top: 0;
}

.promo-card {
  border-radius: 1.2rem;
  padding: 1.6rem;
  color: #111313;
  box-shadow: var(--nunua-shadow);
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: grid;
  gap: 0.6rem;
  font-family: "Plus Jakarta Sans", "Rubik", sans-serif;
}

.promo-card span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.promo-card a {
  color: #111313;
  text-decoration: underline;
  font-weight: 700;
}

.promo-card--sun {
  background: linear-gradient(140deg, #ffe169, #ffd100, #ffc857);
}

.promo-card--cool {
  background: linear-gradient(140deg, #cde8ff, #e9f4ff, #ffffff);
}

.promo-card--mid {
  background: linear-gradient(140deg, #ffe4cf, #fff1e4, #ffffff);
}

.nunua-section__header {
  margin-bottom: 2rem;
}

.storefront-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
}

.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-grid__item {
  min-width: 0;
}

.product-grid__empty {
  grid-column: 1 / -1;
}

.nunua-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.nunua-filter--chips {
  margin-top: 0.8rem;
  margin-bottom: 1.2rem;
}

.nunua-chip-btn {
  border-radius: 999px;
  border: var(--nunua-border);
  background: #fff;
  font-weight: 600;
  color: var(--nunua-ink);
}

.nunua-chip-btn.is-active {
  background: #111313;
  color: #fff;
  border-color: #111313;
}

.nunua-price-filter {
  margin-top: 1.5rem;
  background: #ffffff;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 12px 28px rgba(9, 30, 66, 0.08);
}

.nunua-filter-panel {
  box-shadow: var(--nunua-soft-shadow);
  border: var(--nunua-border);
}

.nunua-price-filter__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  align-items: end;
}

.nunua-price-filter__actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nunua-sort {
  margin-top: 1rem;
  max-width: 280px;
}

.nunua-sort--inline {
  margin-top: 0;
  min-width: 240px;
}


.nunua-category {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.6rem;
  box-shadow: var(--nunua-soft-shadow);
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: var(--nunua-ink);
  border: var(--nunua-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nunua-category-carousel {
  grid-auto-columns: minmax(110px, 1fr);
  padding-bottom: 0.8rem;
}

.nunua-category--circle {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  padding: 0.8rem;
  justify-content: center;
  text-align: center;
  font-size: 0.95rem;
  background: #fffbe6;
  border: 1px solid rgba(17, 19, 19, 0.12);
}

.nunua-category--circle span {
  line-height: 1.1;
}

.nunua-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(9, 30, 66, 0.12);
}


.nunua-category__cta {
  font-size: 0.85rem;
  color: var(--nunua-navy);
}


.nunua-feature {
  background: #f9fafc;
  border-radius: 1rem;
  padding: 1.6rem;
  border: var(--nunua-border);
  box-shadow: var(--nunua-soft-shadow);
}


.nunua-product-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem;
  box-shadow: var(--nunua-soft-shadow);
  border: var(--nunua-border);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.nunua-product-card--overlay {
  position: relative;
}

.nunua-card-action {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
}

.nunua-icon-btn {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(17, 19, 19, 0.85);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: var(--nunua-soft-shadow);
}

.nunua-icon-btn:hover {
  background: #111313;
}

.nunua-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nunua-shadow);
}

.nunua-product-thumb {
  background: #f4f6f8;
  border-radius: 1rem;
  overflow: hidden;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.nunua-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nunua-product-thumb__placeholder {
  color: var(--nunua-slate);
  font-size: 0.9rem;
}

.nunua-product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  font-weight: 600;
}

.nunua-product-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.nunua-card-actions {
  margin-top: auto;
  display: grid;
  gap: 0.5rem;
}

.nunua-card-actions .btn {
  white-space: nowrap;
}

.nunua-product-card__body p {
  min-height: 44px;
}

.nunua-product-card h5,
.nunua-product-card h6 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nunua-product-card__body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.nunua-tag {
  display: inline-block;
  margin-top: 0.5rem;
  background: rgba(255, 209, 0, 0.2);
  color: #8a6d00;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.nunua-link {
  color: inherit;
  text-decoration: none;
}

.nunua-link:hover {
  text-decoration: underline;
}

.nunua-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--nunua-slate);
  background: rgba(255, 255, 255, 0.7);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: var(--nunua-border);
}

.nunua-breadcrumb a {
  color: var(--nunua-slate);
  text-decoration: none;
}

.nunua-breadcrumb a:hover {
  text-decoration: underline;
}

.nunua-product-hero__media {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 6rem 1rem;
  text-align: center;
  color: var(--nunua-slate);
  box-shadow: var(--nunua-soft-shadow);
  border: var(--nunua-border);
  overflow: hidden;
}

.nunua-product-hero__media img {
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
  object-fit: cover;
}

.nunua-product-hero__thumbs {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.nunua-product-hero__thumbs img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 0.8rem;
  border: 1px solid rgba(9, 30, 66, 0.12);
}

.nunua-image-panel {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem;
  margin: 0.5rem 0 1.5rem;
  box-shadow: 0 12px 28px rgba(9, 30, 66, 0.08);
}

.nunua-image-panel__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}

.nunua-image-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.nunua-image-thumb {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
}

.nunua-image-actions {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
}

.nunua-image-thumb img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.7rem;
  border: 1px solid rgba(9, 30, 66, 0.12);
}

.nunua-image-upload {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 220px;
}

.nunua-product-price {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0.8rem 0;
}

.nunua-product-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--nunua-slate);
}

.product-detail__panel {
  border: var(--nunua-border);
  box-shadow: var(--nunua-shadow);
}

.product-detail__price {
  font-size: 1.9rem;
}

.product-detail__meta {
  gap: 0.6rem;
}

.product-detail__shipping {
  margin-top: 1rem;
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: var(--nunua-slate);
}

.product-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.product-detail__gallery {
  display: grid;
  gap: 1.2rem;
}

.product-detail__info {
  display: grid;
  gap: 1.2rem;
}

.product-info-card {
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 1.6rem;
  box-shadow: var(--nunua-shadow);
  border: var(--nunua-border);
}

.product-info__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: #111313;
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.8rem;
}

.product-meta-grid {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.8rem;
  color: var(--nunua-slate);
}

.product-cta {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.product-cta__row {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-accordion {
  display: grid;
  gap: 0.8rem;
}

.product-accordion details {
  background: #fff;
  border-radius: 1rem;
  padding: 0.8rem 1rem;
  border: var(--nunua-border);
  box-shadow: var(--nunua-soft-shadow);
}

.product-accordion summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.product-accordion summary::-webkit-details-marker {
  display: none;
}

.product-trust {
  display: grid;
  gap: 0.5rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  border: var(--nunua-border);
  box-shadow: var(--nunua-soft-shadow);
  color: var(--nunua-slate);
  font-size: 0.95rem;
}

.product-sticky-spacer {
  height: 76px;
}

.product-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-top: var(--nunua-border);
  box-shadow: 0 -12px 30px rgba(15, 23, 42, 0.12);
  z-index: 1050;
}

.product-sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.product-sticky-info {
  display: grid;
  gap: 0.2rem;
}

.product-sticky-title {
  font-weight: 600;
  max-width: min(320px, 60vw);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-sticky-price {
  font-weight: 700;
  color: var(--nunua-navy);
}

.product-sticky-form .btn {
  white-space: nowrap;
}

.product-thumbs {
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scroll-snap-type: x mandatory;
}

.product-thumbs img {
  scroll-snap-align: start;
}

.nunua-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.6rem 0;
}

.nunua-rating__score {
  font-weight: 700;
  font-size: 1.1rem;
}

.nunua-rating__stars {
  color: #c6cbd1;
  font-size: 1rem;
}

.nunua-rating__stars .filled {
  color: #ffb703;
}

.nunua-rating__count {
  color: var(--nunua-slate);
  font-size: 0.9rem;
}

.nunua-rating--compact {
  font-size: 0.85rem;
  margin-top: 0.6rem;
}

.nunua-reviews {
  margin-top: 3rem;
}

.nunua-review-list {
  display: grid;
  gap: 1rem;
}

.nunua-review-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 12px 28px rgba(9, 30, 66, 0.08);
}

.nunua-review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.nunua-review-card__title {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.nunua-recent {
  margin-top: 3rem;
}

.nunua-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.nunua-carousel__item {
  scroll-snap-align: start;
}

.nunua-pagination {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.pagination .page-link {
  border-radius: 999px;
  margin: 0 0.2rem;
  border: var(--nunua-border);
  color: var(--nunua-ink);
}

.pagination .page-item.active .page-link {
  background: #111313;
  border-color: #111313;
}

.nunua-compare__title {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.nunua-compare__image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 0.8rem;
  border: 1px solid rgba(9, 30, 66, 0.12);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.nunua-table {
  min-width: 640px;
}

.nunua-chip {
  background: rgba(27, 127, 121, 0.12);
  color: var(--nunua-jade);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.nunua-auth {
  padding: 4rem 0;
}

.nunua-auth__card {
  max-width: 460px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 18px 45px rgba(9, 30, 66, 0.12);
}

.nunua-auth__logo {
  text-align: center;
  margin-bottom: 1.5rem;
}

.nunua-auth__logo img {
  max-height: 60px;
  width: auto;
}

.nunua-empty {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 12px 25px rgba(9, 30, 66, 0.08);
}

.nunua-cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 1.2rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 10px 24px rgba(9, 30, 66, 0.08);
}

.nunua-qty {
  width: 90px;
  max-width: 100%;
}

.nunua-summary {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1.2rem;
  box-shadow: 0 12px 28px rgba(9, 30, 66, 0.1);
}

.nunua-summary__row {
  display: flex;
  justify-content: space-between;
  margin: 0.5rem 0;
}

.nunua-summary__total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-top: 1rem;
}


.nunua-footer {
  background: #11141a;
  color: #d7e2e4;
  padding: 3rem 0 2rem;
}

@keyframes nunua-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.noon-banner,
.nunua-hero-card,
.nunua-category,
.nunua-feature,
.nunua-product-card {
  animation: nunua-fade-up 0.6s ease both;
}

.nunua-footer a {
  color: #d7e2e4;
  text-decoration: none;
}

.nunua-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .nunua-hero {
    text-align: center;
  }

  .nunua-nav__inner {
    gap: 0.8rem;
  }

  .nunua-nav__search {
    max-width: 100%;
    width: 100%;
    margin: 0.6rem 0;
  }

  .nunua-nav__actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .noon-banner {
    padding: 1.6rem;
  }

  .hero-panel {
    padding: 1.8rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .nunua-category--circle {
    width: 96px;
    height: 96px;
    font-size: 0.85rem;
  }

  .nunua-cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nunua-cart-item form {
    width: 100%;
  }

  .nunua-qty {
    width: 100%;
    max-width: 120px;
  }

  .nunua-summary form .d-flex {
    flex-wrap: wrap;
  }

  .nunua-summary form .d-flex .btn,
  .nunua-summary form .d-flex .form-select,
  .nunua-summary form .d-flex .form-control {
    width: 100%;
  }

  .nunua-product-hero__thumbs {
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .nunua-carousel {
    grid-auto-columns: minmax(180px, 1fr);
  }

  .nunua-category-carousel {
    grid-auto-columns: minmax(90px, 1fr);
  }

  .nunua-featured-carousel {
    grid-auto-columns: minmax(200px, 1fr);
  }

  .nunua-action-bar {
    flex-wrap: wrap;
  }

  .nunua-table {
    min-width: 0;
  }

  .nunua-table thead {
    display: none;
  }

  .nunua-table tr {
    display: block;
    margin-bottom: 1rem;
    border: var(--nunua-border);
    border-radius: 1rem;
    padding: 0.75rem;
    background: #fff;
  }

  .nunua-table td {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0;
    border: none;
  }

  .nunua-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--nunua-slate);
  }

  .nunua-table td[colspan] {
    justify-content: center;
    text-align: center;
  }

  .nunua-table td[colspan]::before {
    content: none;
  }

  .product-detail__layout {
    grid-template-columns: 1fr;
  }

  .product-cta__row {
    grid-template-columns: 1fr;
  }

  .product-sticky-bar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .product-sticky-form .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 360px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1440px) and (max-width: 1919px) {
  .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1920px) {
  .product-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .container {
    max-width: 1600px;
  }
}

/* ==========================================================================
   Product Detail Page — Redesigned (conversion-optimised)
   ========================================================================== */
.pdp {
  background: #fff;
  padding: 0 0 20px;
  color: #111313;
}

/* ---------- Breadcrumb ---------- */
.pdp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 12px;
  padding-top: 10px;
}
.pdp-breadcrumb a { color: #6b7280; text-decoration: none; }
.pdp-breadcrumb a:hover { color: #111313; text-decoration: underline; }
.pdp-breadcrumb__current { color: #111313; font-weight: 600; }

/* ---------- Main Layout (desktop 3-column) ---------- */
.pdp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}

/* ---------- Gallery ---------- */
.pdp-gallery {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 14px;
  position: sticky;
  top: 90px;
}
.pdp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 2px;
  scrollbar-width: thin;
}
.pdp-thumbs::-webkit-scrollbar { width: 4px; }
.pdp-thumbs::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 4px; }
.pdp-thumb {
  border: 2px solid rgba(17,19,19,0.1);
  background: #fff;
  border-radius: 8px;
  padding: 0;
  width: 68px;
  height: 82px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  flex: 0 0 auto;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-thumb:hover { border-color: rgba(17,19,19,0.4); }
.pdp-thumb.is-active { border-color: #111313; box-shadow: 0 0 0 1px #111313; }
.pdp-stage {
  position: relative;
  background: #f4f4f4;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  min-height: 380px;
  max-height: 520px;
  width: 100%;
}
.pdp-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.pdp-stage__count {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(17,19,19,0.82);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  z-index: 2;
  letter-spacing: 0.03em;
}

/* ---------- Info (center column) ---------- */
.pdp-info { min-width: 0; }
.pdp-brand {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 700;
  margin-bottom: 6px;
}
.pdp-title {
  font-size: 1.35rem;
  line-height: 1.35;
  font-weight: 600;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
}
.pdp-title.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.pdp-title__more {
  display: inline;
  font-size: 0.78rem;
  color: #2563eb;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  margin-left: 2px;
}
.pdp-title.is-expanded .pdp-title__more { display: none; }

.pdp-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #111313;
  margin-bottom: 10px;
}
.pdp-rating__stars { color: #d4d4d4; font-size: 0.9rem; letter-spacing: 1px; }
.pdp-rating__stars .filled { color: #f5a623; }
.pdp-rating__value { font-weight: 700; font-size: 0.85rem; }
.pdp-rating__count { color: #6b7280; font-size: 0.8rem; }
.pdp-rating__verified {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.72rem;
  color: #1e8e4e;
  font-weight: 600;
  margin-left: 4px;
}

.pdp-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 2px;
  flex-wrap: wrap;
}
.pdp-price__now { font-size: 1.75rem; font-weight: 700; color: #111313; line-height: 1.2; }
.pdp-price__was { font-size: 1rem; color: #6b7280; text-decoration: line-through; }
.pdp-save {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #dc2626;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.pdp-save__pct {
  background: #fef2f2;
  color: #dc2626;
  padding: 1px 8px;
  border-radius: 4px;
  font-size: 0.78rem;
}

.pdp-divider { border: none; border-top: 1px solid rgba(17,19,19,0.08); margin: 14px 0; }

/* ---------- Purchase Panel (right column on desktop) ---------- */
.pdp-panel {
  position: sticky;
  top: 90px;
  background: #fff;
  border: 1px solid rgba(17,19,19,0.1);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(17,19,19,0.04);
}
.pdp-panel__title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  font-weight: 700;
  margin-bottom: 14px;
}

/* ---------- Variation Selector ---------- */
.pdp-options { margin-bottom: 16px; }
.pdp-option { margin-bottom: 14px; }
.pdp-option__label {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pdp-option__label span { font-weight: 400; color: #111313; }
.pdp-vars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pdp-var {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 64px;
  cursor: pointer;
  border: 2px solid rgba(17,19,19,0.1);
  border-radius: 10px;
  padding: 6px 4px 4px;
  background: #fff;
  transition: border-color 0.12s, box-shadow 0.12s, transform 0.12s;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.pdp-var:hover { border-color: rgba(0,0,0,0.25); transform: translateY(-1px); }
.pdp-var:active { transform: scale(0.97); }
.pdp-var.is-active {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37,99,235,0.25);
  transform: translateY(-1px);
}
.pdp-var.is-active::after {
  content: "\2713";
  position: absolute;
  top: -7px;
  right: -7px;
  width: 20px;
  height: 20px;
  background: #2563eb;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.pdp-var__img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 3px;
  font-size: 18px;
  color: #bbb;
  flex-shrink: 0;
}
.pdp-var__img img { width: 100%; height: 100%; object-fit: cover; }
.pdp-var__name {
  font-size: 10.5px;
  color: #333;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  word-break: break-word;
  max-width: 100%;
}
.pdp-var--text {
  flex-direction: row;
  width: auto;
  padding: 8px 14px;
  gap: 0;
  min-height: 36px;
  justify-content: center;
}
.pdp-var--text .pdp-var__name { font-size: 12px; }
.pdp-var--text .pdp-var__img { display: none; }

/* ---------- Quantity ---------- */
.pdp-qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.pdp-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17,19,19,0.2);
  border-radius: 10px;
  overflow: hidden;
}
.pdp-qty__btn {
  width: 46px;
  height: 46px;
  border: none;
  background: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  color: #111313;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.pdp-qty__btn:hover { background: #f2f2f2; }
.pdp-qty__input {
  width: 54px;
  height: 46px;
  border: none;
  border-left: 1px solid rgba(17,19,19,0.12);
  border-right: 1px solid rgba(17,19,19,0.12);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  -moz-appearance: textfield;
}
.pdp-qty__input::-webkit-outer-spin-button,
.pdp-qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pdp-stock { font-size: 0.82rem; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.pdp-stock.in { color: #1e8e4e; }
.pdp-stock.in::before { content: "\2713"; font-weight: 700; }
.pdp-stock.out { color: #dc2626; }

/* ---------- Action Buttons ---------- */
.pdp-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}
.pdp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 15px 24px;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
  -webkit-tap-highlight-color: transparent;
}
.pdp-btn:active { transform: scale(0.98); }
.pdp-btn--primary {
  flex: 1;
  background: #111313;
  color: #fff;
}
.pdp-btn--primary:hover { background: #000; color: #fff; }
.pdp-btn--primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.pdp-btn--dark { background: #111313; color: #fff; }
.pdp-btn--icon {
  width: 52px;
  padding: 0;
  font-size: 1.2rem;
  background: #fff;
  color: #111313;
  border-color: rgba(17,19,19,0.2);
  flex-shrink: 0;
}
.pdp-btn--icon:hover { border-color: #111313; background: #fafafa; }
.pdp-btn--icon.is-wishlisted { border-color: #dc2626; color: #dc2626; }

.pdp-compare { margin: 6px 0 0; }
.pdp-linkbtn {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
.pdp-linkbtn:hover { color: #111313; text-decoration: underline; }

/* ---------- Payments ---------- */
.pdp-payments { margin: 14px 0 0; }
.pdp-payments__label {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 6px;
}
.pdp-payments__list { display: flex; flex-wrap: wrap; gap: 6px; }
.pdp-pay {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #6b7280;
  background: #f4f4f4;
  border: 1px solid rgba(17,19,19,0.06);
  border-radius: 5px;
  padding: 5px 8px;
}

/* ---------- Sticky Purchase Bar (mobile) ---------- */
:root {
  --nn-mobile-nav-h: 64px;
}
.pdp-sticky-wrap { display: none; }
.pdp-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid rgba(17,19,19,0.1);
  box-shadow: 0 -4px 20px rgba(15,23,42,0.12);
  z-index: 1070;
  padding: 10px 0;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
}
.pdp-sticky__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pdp-sticky__info { min-width: 0; flex: 1; }
.pdp-sticky__price { font-weight: 700; font-size: 1rem; color: #111313; white-space: nowrap; }
.pdp-sticky__variant { font-size: 0.75rem; color: #6b7280; margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pdp-sticky__btn { flex-shrink: 0; font-size: 0.85rem; padding: 12px 24px; }
.pdp-sticky__btn .pdp-btn--primary { width: 100%; }

/* ---------- Details / Accordions ---------- */
.pdp-details {
  margin: 40px 0 8px;
  max-width: none;
  grid-column: 1 / -1;
}
.pdp-acc {
  border-bottom: 1px solid rgba(17,19,19,0.1);
}
.pdp-acc > summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}
.pdp-acc > summary::-webkit-details-marker { display: none; }
.pdp-acc > summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  color: #6b7280;
  transition: transform 0.2s;
}
.pdp-acc[open] > summary::after { content: "\2212"; transform: rotate(180deg); }
.pdp-acc__body { padding: 0 0 18px; color: #4b5563; font-size: 0.88rem; line-height: 1.65; }
.pdp-spec { display: grid; gap: 0; margin: 0; }
.pdp-spec > div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(17,19,19,0.06);
}
.pdp-spec dt { margin: 0; font-weight: 600; color: #111313; font-size: 0.85rem; }
.pdp-spec dd { margin: 0; font-size: 0.85rem; }

/* ---------- Reviews ---------- */
.pdp-section-head { margin: 32px 0 16px; }
.pdp-section-head h3 { font-size: 1.2rem; font-weight: 700; margin: 0 0 2px; }
.pdp-section-head p { margin: 0; color: #6b7280; font-size: 0.85rem; }
.pdp-reviews { margin-top: 16px; }
.pdp-review-form {
  background: #faf9f5;
  border: 1px solid rgba(17,19,19,0.06);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 20px;
}
.pdp-review-list { display: grid; gap: 14px; }
.pdp-review-card {
  border: 1px solid rgba(17,19,19,0.08);
  border-radius: 10px;
  padding: 14px 16px;
}
.pdp-review-card__header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 4px;
}
.pdp-review-card__title { font-weight: 700; margin-bottom: 2px; font-size: 0.9rem; }
.pdp-review-card p { margin: 0; color: #4b5563; font-size: 0.88rem; }
.pdp-review-card__date { font-size: 0.75rem; color: #9ca3af; }
.pdp-empty {
  border: 1px dashed rgba(17,19,19,0.15);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: #6b7280;
}
.pdp-verified-badge {
  font-size: 0.72rem;
  color: #1e8e4e;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

/* ---------- Related carousels ---------- */
.pdp-related { margin-top: 8px; grid-column: 1 / -1; }
.pdp-related__scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.pdp-card {
  flex: 0 0 180px;
  scroll-snap-align: start;
  text-decoration: none;
  color: #111313;
}
.pdp-card__thumb {
  background: #f4f4f4;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin-bottom: 6px;
}
.pdp-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.pdp-card:hover .pdp-card__thumb img { transform: scale(1.04); }
.pdp-card__placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: #6b7280; font-size: 0.8rem; }
.pdp-card__name { font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; line-height: 1.3; }
.pdp-card__price { font-size: 0.85rem; color: #111313; font-weight: 700; }

/* ---------- Fullscreen Lightbox ---------- */
.pdp-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.92);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pdp-lightbox.is-open { display: flex; }
.pdp-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-lightbox__close:hover { background: rgba(255,255,255,0.25); }
.pdp-lightbox__img {
  max-width: 95vw;
  max-height: 85vh;
  object-fit: contain;
  user-select: none;
  touch-action: pan-x pan-y pinch-zoom;
  transition: transform 0.15s;
}
.pdp-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.pdp-lightbox__nav--prev { left: 12px; }
.pdp-lightbox__nav--next { right: 12px; }
.pdp-lightbox__count {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 999px;
}

/* ---------- Mobile-only title inline info ---------- */
.pdp-mobile-title { display: none; }
.pdp-mobile-brand { display: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet: collapse to 2-col */
@media (max-width: 1024px) {
  .pdp-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
    gap: 24px;
  }
  .pdp-panel {
    padding: 16px;
    position: sticky;
    top: 80px;
  }
  .pdp-title { font-size: 1.25rem; }
  .pdp-price__now { font-size: 1.5rem; }
}

/* Small tablet / large phone: single column */
@media (max-width: 767px) {
  .pdp-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .pdp-gallery {
    grid-template-columns: 1fr;
    position: static;
    margin: 0 -16px;
    border-radius: 0;
  }
  .pdp-thumbs {
    display: none;
  }
  .pdp-stage {
    border-radius: 0;
    aspect-ratio: auto;
    height: clamp(300px, 45vw, 370px);
    min-height: 290px;
    max-height: 370px;
  }
  .pdp-stage img {
    object-fit: contain;
    object-position: center;
  }
  .pdp-info {
    padding: 12px 0 0;
  }
  .pdp-panel {
    position: static;
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
  }
  .pdp-panel__title { display: none; }
  .pdp-mobile-title { display: block; }
  .pdp-mobile-brand { display: block; }

  .pdp { padding-bottom: calc(72px + var(--nn-mobile-nav-h, 64px) + env(safe-area-inset-bottom, 0px)); }
  .pdp-sticky-wrap { display: block; }
  .pdp-sticky {
    bottom: calc(var(--nn-mobile-nav-h, 64px) + env(safe-area-inset-bottom, 0px));
    z-index: 1070;
  }
  .pdp-var { width: 56px; padding: 5px 3px 3px; }
  .pdp-var__img { width: 38px; height: 38px; }
  .pdp-var__name { font-size: 10px; }

  .pdp-details { margin-top: 28px; }
  .pdp-spec > div { grid-template-columns: 1fr; gap: 2px; }
  .pdp-related__scroll { gap: 10px; }
  .pdp-card { flex: 0 0 150px; }
}

/* Small phones */
@media (max-width: 480px) {
  .pdp { padding-bottom: calc(68px + var(--nn-mobile-nav-h, 64px) + env(safe-area-inset-bottom, 0px)); }
  .pdp-breadcrumb { font-size: 0.72rem; margin-bottom: 6px; padding-top: 6px; }
  .pdp-stage {
    height: clamp(290px, 80vw, 360px);
    min-height: 290px;
    max-height: 360px;
  }
  .pdp-title { font-size: 1.15rem; line-height: 1.3; }
  .pdp-price__now { font-size: 1.35rem; }
  .pdp-price__was { font-size: 0.9rem; }
  .pdp-save { font-size: 0.8rem; }
  .pdp-btn { padding: 14px 18px; font-size: 0.85rem; }
  .pdp-btn--icon { width: 46px; }
  .pdp-qty__btn { width: 42px; height: 42px; }
  .pdp-qty__input { width: 48px; height: 42px; }
  .pdp-var { width: 50px; padding: 4px 2px 2px; }
  .pdp-var__img { width: 34px; height: 34px; }
  .pdp-var__name { font-size: 9.5px; }
  .pdp-sticky__price { font-size: 0.9rem; }
  .pdp-sticky__btn { padding: 10px 16px; font-size: 0.8rem; }
}

/* Tiny phones */
@media (max-width: 360px) {
  .pdp-var { width: 44px; }
  .pdp-var__img { width: 30px; height: 30px; }
  .pdp-var__name { font-size: 9px; }
  .pdp-btn { padding: 12px 14px; font-size: 0.8rem; }
  .pdp-btn--icon { width: 42px; }
}



/* ============================================================
   NOON-STYLE MEGA MENU
   ============================================================ */
.nn-catbar {
  background:var(--nn-bg-card);
  border-bottom:1px solid var(--nn-border);
  position:relative;
  z-index:100;
}
.nn-catbar__scroll {
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.nn-catbar__scroll::-webkit-scrollbar { display:none; }
.nn-catbar__list {
  display:flex;
  list-style:none;
  margin:0;
  padding:0;
  gap:0;
  white-space:nowrap;
}
.nn-catbar__item {
  position:static;
}
.nn-catbar__link {
  display:flex;
  align-items:center;
  padding:10px 14px;
  font-size:13px;
  font-weight:500;
  color:var(--nn-text);
  text-decoration:none;
  transition:color .15s,background .15s;
  white-space:nowrap;
  gap:3px;
}
.nn-catbar__link:hover,
.nn-catbar__item:hover .nn-catbar__link {
  color:var(--nn-accent);
  background:var(--nn-bg-hover);
}
.nn-catbar__link--hot {
  color:var(--nn-accent) !important;
  font-weight:600;
}
.nn-catbar__icon {
  width:18px;
  height:18px;
  object-fit:contain;
  margin-right:4px;
  border-radius:3px;
}
.nn-mega {
  position:absolute;
  left:0;
  right:0;
  top:100%;
  background:var(--nn-bg-card);
  border:1px solid var(--nn-border);
  border-top:2px solid var(--nn-accent);
  box-shadow:0 8px 24px rgba(0,0,0,.1);
  opacity:0;
  visibility:hidden;
  transition:opacity .2s,visibility .2s;
  z-index:200;
  padding:20px;
}
.nn-catbar__item:hover .nn-mega {
  opacity:1;
  visibility:visible;
}
.nn-mega__cols {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  max-width:1100px;
  margin:0 auto;
}
.nn-mega__col h4 {
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:var(--nn-text-muted);
  margin:0 0 10px;
  padding-bottom:6px;
  border-bottom:1px solid var(--nn-border);
}
.nn-mega__link {
  display:block;
  padding:5px 0;
  font-size:13px;
  color:var(--nn-text);
  text-decoration:none;
  transition:color .15s;
}
.nn-mega__link:hover { color:var(--nn-accent); }
.nn-mega__link--all {
  font-weight:600;
  color:var(--nn-accent);
  padding-top:8px;
  border-top:1px dashed var(--nn-border);
  margin-top:4px;
}
.nn-mega__col--deal {
  background:linear-gradient(135deg,#fff5f5,#fff0e6);
  border-radius:8px;
  padding:12px;
}
.nn-mega__col--deal h4 { color:#e63946; }

/* Mobile menu enhancements */
.nn-mobilemenu {
  position:fixed;
  top:0;
  left:0;
  bottom:0;
  width:300px;
  max-width:85vw;
  background:var(--nn-bg-card);
  z-index:2000;
  transform:translateX(-100%);
  transition:transform .3s cubic-bezier(.4,0,.2,1);
  display:flex;
  flex-direction:column;
  overflow:hidden;
  box-shadow:2px 0 12px rgba(0,0,0,.15);
}
.nn-mobilemenu.is-open {
  transform:translateX(0);
}
.nn-mobilemenu__head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 16px;
  border-bottom:1px solid var(--nn-border);
  flex-shrink:0;
}
.nn-mobilemenu__head .nn-logo { margin:0; }
.nn-mobilemenu__head .nn-iconbtn {
  font-size:1.6rem;
  width:36px;
  height:36px;
  padding:0;
}
.nn-mobilemenu__search {
  padding:10px 16px;
  border-bottom:1px solid var(--nn-border);
  flex-shrink:0;
}
.nn-mobilemenu__search form,
.nn-mobilemenu__search {
  display:flex;
  gap:6px;
}
.nn-mobilemenu__search input {
  flex:1;
  padding:8px 12px;
  border:1px solid var(--nn-border);
  border-radius:6px;
  font-size:14px;
  outline:none;
  background:var(--nn-bg);
}
.nn-mobilemenu__search input:focus {
  border-color:var(--nn-accent);
}
.nn-mobilemenu__search button {
  background:var(--nn-accent);
  color:#fff;
  border:none;
  border-radius:6px;
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.nn-mobilemenu__user {
  display:flex;
  align-items:center;
  gap:8px;
  padding:12px 16px;
  background:var(--nn-bg);
  border-bottom:1px solid var(--nn-border);
  font-size:14px;
  font-weight:500;
  flex-shrink:0;
}
.nn-mobilemenu__user svg { width:20px;height:20px;flex-shrink:0; }
.nn-mobilemenu__user a { color:var(--nn-accent);text-decoration:none; }
.nn-mobilemenu__section {
  padding:8px 0;
  border-bottom:1px solid var(--nn-border);
  overflow-y:auto;
  flex-shrink:0;
}
.nn-mobilemenu__section:last-of-type {
  flex:1;
  overflow-y:auto;
}
.nn-mobilemenu__section h4 {
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.8px;
  color:var(--nn-text-muted);
  padding:8px 16px 4px;
  margin:0;
}
.nn-mobilemenu__cats {
  display:flex;
  flex-direction:column;
}
.nn-mobilemenu__cat {
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  font-size:14px;
  color:var(--nn-text);
  text-decoration:none;
  transition:background .15s;
  border-bottom:1px solid var(--nn-border-light);
}
.nn-mobilemenu__cat:last-child { border-bottom:none; }
.nn-mobilemenu__cat:hover { background:var(--nn-bg-hover); }
.nn-mobilemenu__cat--all {
  font-weight:600;
  color:var(--nn-accent);
}
.nn-mobilemenu__cat-icon {
  width:20px;
  height:20px;
  object-fit:contain;
  border-radius:3px;
}
.nn-mobilemenu__cat.has-sub { cursor:pointer; }
.nn-mobilemenu__cat .nn-mobilemenu__arrow {
  margin-left:auto;
  transition:transform .2s;
  flex-shrink:0;
  color:var(--nn-text-muted);
}
.nn-mobilemenu__cat.is-open .nn-mobilemenu__arrow {
  transform:rotate(90deg);
}
.nn-mobilemenu__sub {
  display:none;
  background:var(--nn-bg);
  padding:4px 0;
}
.nn-mobilemenu__sub.is-open { display:block; }
.nn-mobilemenu__sub-link {
  display:block;
  padding:8px 16px 8px 46px;
  font-size:13px;
  color:var(--nn-text-muted);
  text-decoration:none;
  transition:color .15s,background .15s;
}
.nn-mobilemenu__sub-link:hover {
  color:var(--nn-accent);
  background:var(--nn-bg-hover);
}

@media(max-width:768px) {
  .nn-catbar { display:none; }
  .nn-bottom-nav { display:flex; }
}
@media(min-width:769px) {
  .nn-bottom-nav { display:none; }
}
