/* ================================================
   NEW SHOP - Custom Styles
   Brand: newshopsangrur24hours
   ================================================ */

/* ---- UTILITIES ---- */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* ---- GLOBAL ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #1a1a2e;
  overflow-x: hidden;
}

:root {
  --accent-black: #111111;
  --accent-charcoal: #1f2937;
  --accent-gray: #4b5563;
  --accent-silver: #9ca3af;
  --accent-border: rgba(17, 17, 17, .12);
  --accent-shadow: rgba(17, 17, 17, .16);
  --accent-gradient: linear-gradient(135deg, #111111, #4b5563);
  --accent-gradient-soft: linear-gradient(135deg, rgba(17, 17, 17, .06), rgba(107, 114, 128, .14));
  --section-wash: linear-gradient(135deg, #ffffff, #f3f4f6);
  --brand-blue: #2563eb;
  --brand-teal: #0f766e;
  --brand-amber: #d97706;
  --brand-coral: #ea580c;
  --section-accent: linear-gradient(135deg, #0f172a, #2563eb);
  --section-accent-soft: linear-gradient(135deg, rgba(37, 99, 235, .08), rgba(20, 184, 166, .14));
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* ---- ANNOUNCEMENT BAR ---- */
.ann-bar {
  background: #000;
  animation: none;
  padding: 9px 0;
  overflow: hidden;
}

@keyframes gradShift {
  0% {
    background-position: 0% center
  }

  100% {
    background-position: -200% center
  }
}

.marquee-wrap {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  animation: marqueeRun 30s linear infinite;
}

@keyframes marqueeRun {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.marquee-content span {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 60px;
  white-space: nowrap;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
}

.marquee-content .dot {
  color: rgba(255, 255, 255, .5);
  margin-right: 60px; /* Keeps identical spacing after the dot */
}

/* ---- NAVBAR ---- */
#navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(67, 97, 238, .08);
  transition: box-shadow .3s;
}

#navbar.scrolled {
  box-shadow: 0 4px 30px rgba(67, 97, 238, .15);
}

.nav-link {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  color: #1a1a2e;
  transition: color .3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #4361EE, #7B2FBE);
  transition: width .3s ease;
}

.nav-link:hover {
  color: #4361EE;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.nav-caret {
  font-size: .65rem;
  transition: transform .25s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown-card {
  width: 230px;
  padding: .6rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(67, 97, 238, .1);
  box-shadow: 0 18px 40px rgba(17, 24, 39, .12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem .95rem;
  border-radius: 18px;
  color: #1a1a2e;
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.nav-dropdown-link:hover {
  background: linear-gradient(135deg, rgba(67, 97, 238, .1), rgba(123, 47, 190, .1));
  color: #4361EE;
  transform: translateX(2px);
}

/* ---- MOBILE MENU ---- */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: #fff;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
}

#mobile-menu.open {
  transform: translateX(0);
}

#menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(4px);
  display: none;
}

#menu-backdrop.show {
  display: block;
}

/* ---- HERO ---- */
.hero {
  min-height: calc(100vh - 72px);
  position: relative;
  overflow: hidden;
  background: #09090f;
  display: flex;
  align-items: center;
  padding-top: clamp(5rem, 8vw, 6.5rem);
}

.hero::before {
  content: '';
  position: absolute;
  inset: -10% auto auto -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(108, 92, 231, .28) 0%, rgba(108, 92, 231, 0) 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto -8% -18% auto;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(67, 97, 238, .22) 0%, rgba(67, 97, 238, 0) 70%);
  pointer-events: none;
}

.hero-gradient {
  background:
    linear-gradient(115deg, rgba(0, 0, 0, .82) 14%, rgba(0, 0, 0, .65) 48%, rgba(0, 0, 0, .50) 72%, rgba(0, 0, 0, .35) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, .30) 0%, rgba(0, 0, 0, .45) 52%, rgba(0, 0, 0, .20) 100%);
}

/* Hero BG subtle zoom animation */
#hero-bg {
  animation: heroBreath 18s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroBreath {
  0% {
    transform: translate3d(0, var(--parallax-shift, 0px), 0) scale(1);
  }
  100% {
    transform: translate3d(0, var(--parallax-shift, 0px), 0) scale(1.08);
  }
}

.hero-noise {
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-shell {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

@media(max-width: 768px) {
  .hero-shell {
    flex-direction: column-reverse;
    gap: 2.5rem;
    padding-top: 1.5rem;
  }
}

.hero-copy {
  position: relative;
  max-width: 640px;
  text-align: left;
  margin: 0;
}

@media(max-width: 768px) {
  .hero-copy {
    text-align: center;
    margin: 0 auto;
    padding-bottom: 2rem;
  }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88);
}

.hero-kicker-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7cf29a;
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(124, 242, 154, .45)
  }

  70% {
    box-shadow: 0 0 0 10px rgba(124, 242, 154, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(124, 242, 154, 0)
  }
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  line-height: 1.15;
  font-size: clamp(2.6rem, 5.5vw, 5.5rem);
  color: #fff;
  margin-top: 1.35rem;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-title-line {
  display: block;
}

.hero-title-sm {
  font-size: 0.82em;
  font-weight: 800;
  opacity: 0.92;
  letter-spacing: -0.01em;
}

.hero-title-lg {
  font-size: 1em;
  font-weight: 900;
}

.hero-title-highlight {
  font-style: normal;
  background: linear-gradient(135deg, #f59e0b, #ef4444, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-subtitle {
  max-width: 38rem;
  margin: 1.35rem auto 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
}

@media(max-width: 768px) {
  .hero-subtitle {
    margin-top: 2rem !important; /* Forces spacing from buttons */
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 10px;
  }
}

@media(min-width:1024px) {
  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-rotator {
  display: block;
  margin-top: .2em;
  height: 1.12em;
  overflow: hidden;
  color: #d6d2ff;
}

.hero-rotator-track {
  display: grid;
  animation: heroWordSwap 8s cubic-bezier(.7, 0, .3, 1) infinite;
}

.hero-rotator-track span {
  display: block;
  min-height: 1.12em;
  background: none;
  color: #dbeafe;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
  text-shadow: 0 10px 30px rgba(59, 130, 246, .16);
}

@keyframes heroWordSwap {

  0%,
  29% {
    transform: translateY(0);
  }

  33%,
  62% {
    transform: translateY(-100%);
  }

  66%,
  95% {
    transform: translateY(-200%);
  }

  100% {
    transform: translateY(0);
  }
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 1.6rem;
}

@media(min-width:1024px) {
  .hero-pill-row {
    justify-content: flex-start;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .84);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .01em;
  backdrop-filter: blur(12px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 2rem;
}

@media(max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 1.5rem;
  }
  .hero-actions a {
    width: 100%;
    justify-content: center;
  }
}

@media(min-width:1024px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 2rem;
}

.hero-stat:last-child {
  grid-column: 1 / -1;
}

@media(min-width:640px) {
  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stat:last-child {
    grid-column: auto;
  }
}

.hero-stat {
  padding: 1rem 1rem .95rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(16px);
  text-align: center;
}

.hero-stat .stat-num {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.hero-stat-label {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .62);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  width: 45%;
  max-width: 540px;
  margin: 0;
}

@media(max-width: 768px) {
  .hero-visual {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
}

/* ---- HERO PRODUCT SHOWCASE SLIDER ---- */
.hero-product-showcase {
  position: relative;
  height: 80vh;
  min-height: 520px;
  max-height: 850px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .45);
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(15, 23, 42, 0.4);
  transform: scale(1.02);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

@media(max-width: 768px) {
  .hero-product-showcase {
    height: 65vh;
    aspect-ratio: auto;
    min-height: auto;
    max-height: none;
    transform: none !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
    width: 100%;
    border-radius: 20px;
  }

  .hero-product-showcase:hover {
    transform: none !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
  }
}

.hero-product-showcase:hover {
  transform: scale(1.04);
  box-shadow: 0 50px 120px rgba(0, 0, 0, .6);
}

.hero-showcase-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  will-change: opacity, transform;
}

.hero-showcase-slide.enter-left {
  transform: translateX(-100% !important);
  transition: none !important;
}

.hero-showcase-slide.enter-right {
  transform: translateX(100% !important);
  transition: none !important;
}

.hero-showcase-slide.active {
  opacity: 1;
  transform: translateX(0) !important;
  transition: opacity 0.5s ease, transform 0.5s ease !important;
  pointer-events: auto;
}

.hero-showcase-slide.exit-left {
  opacity: 0;
  transform: translateX(-100%);
}

.hero-showcase-slide.exit-right {
  opacity: 0;
  transform: translateX(100%);
}

.hero-showcase-slide img {
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.6)) drop-shadow(0 0 20px rgba(255,255,255,0.15));
  transition: transform 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  will-change: transform;
}

@media(max-width: 768px) {
  .hero-showcase-slide img {
    width: auto;
    height: auto;
    max-width: 95%;
    max-height: 75%;
    object-fit: contain;
    padding: 0;
  }
}

.hero-showcase-slide:hover img {
  transform: scale(1.05);
}

.hero-showcase-info {
  text-align: center;
  margin-top: 1rem;
  padding: 0 1.5rem;
  z-index: 10;
}

.hero-showcase-name {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem; /* More predictable than clamp here */
  line-height: 1.25;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
  margin-bottom: 0.2rem;
}


.hero-showcase-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.hero-showcase-price .current {
  color: #7cf29a;
  font-weight: 800;
  font-size: 1.15rem;
}

.hero-showcase-price .mrp {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  text-decoration: line-through;
}

.hero-showcase-badge {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  transform: translateY(0);
}


/* Progress dots */
.hero-showcase-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-showcase-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-showcase-dot.active {
  width: 24px;
  border-radius: 4px;
  background: #7cf29a;
}

.hero-mini-panel {
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  color: #1a1a2e;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .22);
}

.hero-mini-panel p {
  margin-top: 8px;
  color: #5f6476;
  line-height: 1.55;
  font-size: .92rem;
}

.hero-mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(67, 97, 238, .12), rgba(123, 47, 190, .14));
  color: #4361EE;
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-scroll-note {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .68);
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .08), rgba(255, 255, 255, .8), rgba(255, 255, 255, .08));
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {

  0%,
  100% {
    transform: scaleY(.7);
    opacity: .5;
  }

  50% {
    transform: scaleY(1.15);
    opacity: 1;
  }
}

@media(max-width:767px) {
  .hero {
    padding-top: 4.2rem;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-media-card {
    min-height: 360px;
  }

  .hero-media-float-top {
    width: 136px;
    height: 190px;
    top: -14px;
    right: -6px;
  }

  .hero-media-float-bottom {
    left: 8px;
    right: 8px;
    bottom: 12px;
    max-width: none;
  }
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #4361EE, #7B2FBE);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  border: none;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(67, 97, 238, .4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #4361EE;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  border: 2px solid #4361EE;
  cursor: pointer;
  transition: all .3s;
}

.btn-outline:hover {
  background: #4361EE;
  color: #fff;
  transform: translateY(-3px);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #1da851);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  border: none;
  cursor: pointer;
  transition: all .3s;
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, .4);
}

/* ---- FLOATING HERO CARDS ---- */
.float-card {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
  border: 1px solid rgba(255, 255, 255, .8);
}

.float-card:nth-child(1) {
  animation: floatUp 3s ease-in-out infinite;
}

.float-card:nth-child(2) {
  animation: floatUp 3s ease-in-out .6s infinite;
}

.float-card:nth-child(3) {
  animation: floatUp 3s ease-in-out 1.2s infinite;
}

.float-card:nth-child(4) {
  animation: floatUp 3s ease-in-out 1.8s infinite;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

/* ---- SECTION LABELS ---- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(67, 97, 238, .1), rgba(123, 47, 190, .1));
  border: 1px solid rgba(67, 97, 238, .2);
  border-radius: 100px;
  padding: 5px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: #4361EE;
  margin-bottom: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #1a1a2e;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  line-height: 1.2;
}

/* ---- CATEGORY CARDS ---- */
.cat-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  border: 1px solid rgba(67, 97, 238, .06);
  cursor: pointer;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(67, 97, 238, .2);
  border-color: rgba(67, 97, 238, .2);
}

.cat-card .img-wrap {
  overflow: hidden;
  position: relative;
}

.cat-card .img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .5s ease;
}

.cat-card:hover .img-wrap img {
  transform: scale(1.1);
}

.cat-card .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(67, 97, 238, .55), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.cat-card:hover .img-overlay {
  opacity: 1;
}

/* ---- PRODUCT CARDS ---- */
.prod-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  border: 1px solid rgba(67, 97, 238, .06);
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  position: relative;
}

.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(67, 97, 238, .2);
}

.prod-card .prod-img {
  overflow: hidden;
  position: relative;
  height: 240px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-card .prod-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
  background: #fff;
  /* 👈 fix */
  transform: scale(0.85);
  /* 👈 alag line */
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.prod-card:hover .prod-img img {
  transform: scale(0.95);
}

.prod-card {
  position: relative;
  z-index: 1;
  transition: all .4s ease;
}

.prod-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  z-index: 5;
}


.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 700;
}

.badge-hot {
  background: linear-gradient(135deg, #FF6B35, #FF4F1F);
  color: #fff;
}

.badge-fast {
  background: linear-gradient(135deg, #FFE600, #FFC300);
  color: #1a1a2e;
}

.badge-new {
  background: linear-gradient(135deg, #4361EE, #7B2FBE);
  color: #fff;
}

.wish-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
  cursor: pointer;
  color: #ccc;
  transition: all .3s;
  font-size: .9rem;
}

.wish-btn:hover,
.wish-btn.active {
  color: #FF4F1F;
  transform: scale(1.1);
}

.add-cart-btn {
  width: 100%;
  padding: 11px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  background: linear-gradient(135deg, #93c5fd, #3b82f6);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.add-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, .32);
}

@media(max-width: 768px) {
  #products-grid {
    gap: 12px !important;
  }
  
  .prod-card {
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .prod-card:hover, .prod-card:active {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    z-index: 5;
  }
  
  .prod-card .prod-img {
    height: 155px; /* Between 150px-170px */
    flex-shrink: 0;
  }
  
  .prod-card .prod-img img {
    object-fit: cover;
    padding: 0;
    transform: none;
    width: 100%;
    height: 100%;
  }

  .prod-card:hover .prod-img img {
    transform: none;
  }

  /* Make content fill remaining space to push button down */
  .prod-card .p-4 {
    padding: 12px 10px !important;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .prod-card h3 {
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
    margin-bottom: 6px !important;
    word-break: break-word;
  }

  .prod-card .text-xs {
    font-size: 0.65rem !important;
  }

  .prod-card .text-xs {
    font-size: 0.65rem !important;
  }

  .add-cart-btn {
    width: 100%;
    padding: 8px;
    font-size: 0.8rem;
    height: 38px;
    border-radius: 10px;
    margin-top: auto !important; /* Forces button to the bottom */
  }

  .badge {
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    font-size: 0.6rem;
  }

  .wish-btn {
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}

/* ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  transform: scale(0);
  animation: rippleAnim .5s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.price-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  white-space: nowrap !important;
  width: 100%;
}

.price-group {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.price-sale {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #111111; /* Clean black as per current premium design */
}

.price-orig {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: .82rem;
  font-weight: 500;
}

.price-discount {
  color: #16a34a; /* Precise green-600 */
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}

/* Mobile specific font adjustments to ensure fit */
@media (max-width: 768px) {
  .price-group {
    gap: 5px !important;
  }
  .price-sale {
    font-size: 0.9rem !important;
  }
  .price-orig {
    font-size: 0.72rem !important;
  }
  .price-discount {
    font-size: 0.68rem !important;
  }
}


/* ---- FILTER PILLS ---- */
.filter-pill {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid rgba(67, 97, 238, .2);
  background: #fff;
  color: #666;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap;
}

.filter-pill:hover,
.filter-pill.active {
  background: linear-gradient(135deg, #4361EE, #7B2FBE);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(67, 97, 238, .35);
}

/* ---- INSTAGRAM CAROUSEL ---- */
.testimonials {
  overflow: hidden;
}

.carousel-container {
  overflow: hidden;
  width: 100%;
  padding: 60px 0 30px;
}

.carousel-track {
  display: flex;
  gap: 30px;
  align-items: center;
  width: max-content;
  transition: transform .5s ease;
  will-change: transform;
}

.video-card {
  position: relative;
  width: 220px;
  height: 380px;
  flex: 0 0 220px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .4s ease, opacity .4s ease, box-shadow .4s ease, filter .4s ease;
  transform: scale(.8);
  opacity: .5;
  filter: saturate(.85);
  box-shadow: 0 12px 30px rgba(17, 24, 39, .12);
  background: #111827;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #111827;
}

.video-card.active {
  transform: scale(1.2);
  opacity: 1;
  filter: saturate(1);
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

@media(max-width:900px) {
  .carousel-track {
    gap: 20px;
  }

  .video-card {
    width: 190px;
    height: 330px;
    flex-basis: 190px;
  }

  .video-card.active {
    transform: scale(1.08);
  }
}

@media(max-width:640px) {
  .carousel-container {
    padding: 44px 0 20px;
  }

  .video-card {
    width: 160px;
    height: 280px;
    flex-basis: 160px;
    border-radius: 20px;
  }

  .video-card.active {
    transform: scale(1.04);
  }
}

/* ---- WHY CHOOSE US ---- */
.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  border: 1px solid rgba(67, 97, 238, .06);
  transition: all .4s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(67, 97, 238, .15);
}

.why-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.2rem;
  transition: transform 0.3s ease;
}

@media(max-width: 768px) {
  #why .grid {
    gap: 14px !important;
  }

  .why-card {
    padding: 1.25rem 0.85rem;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .why-card:hover, .why-card:active {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  .why-card:hover .why-icon, .why-card:active .why-icon {
    transform: scale(1.1);
  }

  .why-icon {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    margin-bottom: 0.9rem;
    border-radius: 14px;
  }

  .why-card h3 {
    font-size: 0.85rem !important;
    margin-bottom: 6px !important;
  }

  .why-card p {
    font-size: 0.72rem !important;
    line-height: 1.5 !important;
    color: #6b7280;
  }
}

/* ---- COMBO CARDS ---- */
.combo-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
  transition: all .4s ease;
}

.combo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(67, 97, 238, .25);
}

.combo-stage {
  background: #101321;
}

.combo-banner-media {
  inset: -6% 0;
}

.combo-banner-image {
  opacity: .94;
  filter: saturate(1.05) contrast(1.04);
}

.combo-banner-tint {
  background: linear-gradient(135deg, rgba(67, 97, 238, .28), rgba(123, 47, 190, .36));
}

.combo-banner-vignette {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(to top, rgba(9, 11, 24, .34), rgba(9, 11, 24, .16) 42%, rgba(9, 11, 24, .4) 100%);
}

.combo-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.combo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, .85) 0%, rgba(26, 26, 46, .2) 60%, transparent 100%);
}

.combo-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #FF4F1F;
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  transform: rotate(8deg);
}

.contact-card-stage {
  background: #13172b;
  box-shadow: 0 24px 80px rgba(67, 97, 238, .22);
}

.contact-card-media {
  opacity: .34;
  filter: saturate(1.1) contrast(1.04);
}

.contact-card-tint {
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, .1) 0%, rgba(255, 255, 255, 0) 35%),
    linear-gradient(135deg, rgba(67, 97, 238, .42), rgba(123, 47, 190, .46));
}

/* ---- TESTIMONIALS ---- */
.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  border: 1px solid rgba(67, 97, 238, .06);
  transition: all .3s;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 18px;
  font-size: 5rem;
  color: #4361EE;
  opacity: .12;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(67, 97, 238, .15);
}

.stars {
  color: #FFB800;
  font-size: .9rem;
}

/* WhatsApp style */
.wa-bubble {
  background: #DCF8C6;
  border-radius: 18px 18px 4px 18px;
  padding: 12px 16px;
  font-size: .88rem;
  color: #1a1a2e;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  max-width: 85%;
  display: inline-block;
}

.wa-bubble.recv {
  background: #fff;
  border-radius: 18px 18px 18px 4px;
}

/* ---- CART SIDEBAR ---- */
#cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100vh;
  background: #fff;
  z-index: 200;
  transition: right .4s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -10px 0 60px rgba(0, 0, 0, .15);
  display: flex;
  flex-direction: column;
}

#cart-sidebar.open {
  right: 0;
}

#cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(4px);
}

#cart-backdrop.show {
  opacity: 1;
  pointer-events: all;
}

@media(max-width:480px) {
  #cart-sidebar {
    width: 100%;
    right: -100%;
  }
}

/* ---- SEARCH MODAL ---- */
#search-modal {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(20px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 90px;
}

#search-modal.open {
  opacity: 1;
  pointer-events: all;
}

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-l {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-l.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-r {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-r.visible {
  opacity: 1;
  transform: translateX(0);
}

.text-scroll-in {
  opacity: 0;
  transform: translateY(56px) scale(.96);
  filter: blur(14px);
  transition: opacity .85s ease, transform .85s cubic-bezier(.22, 1, .36, 1), filter .85s ease;
  will-change: transform, opacity, filter;
}

.text-scroll-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.d1 {
  transition-delay: .1s
}

.d2 {
  transition-delay: .15s
}

.d3 {
  transition-delay: .2s
}

.d4 {
  transition-delay: .25s
}

.d5 {
  transition-delay: .3s
}

.d6 {
  transition-delay: .35s
}

/* ---- FOOTER ---- */
.footer {
  background: #1a1a2e;
}

.footer-link {
  color: rgba(255, 255, 255, .55);
  font-size: .88rem;
  transition: color .3s;
}

.footer-link:hover {
  color: #4361EE;
}

/* ---- WHATSAPP FLOAT ---- */
#wa-float {
  position: fixed;
  bottom: 90px;
  right: 22px;
  z-index: 100;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  transition: all .3s;
  cursor: pointer;
}

#wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .6);
}

#wa-float::before {
  content: '';
  position: absolute;
  inset: -5px;
  background: rgba(37, 211, 102, .25);
  border-radius: 50%;
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 1
  }

  100% {
    transform: scale(1.5);
    opacity: 0
  }
}

/* ---- SCROLL TOP ---- */
#scroll-top {
  position: fixed;
  bottom: 90px;
  left: 22px;
  z-index: 100;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4361EE;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s;
  border: 1px solid rgba(67, 97, 238, .12);
}

#scroll-top.show {
  opacity: 1;
  transform: translateY(0);
}

#scroll-top:hover {
  background: #4361EE;
  color: #fff;
  transform: translateY(-3px);
}

/* ---- BOTTOM STICKY (mobile) ---- */
#sticky-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 98;
  background: #fff;
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .1);
  transform: translateY(100%);
  transition: transform .3s;
  display: none;
}

#sticky-cart.show {
  transform: translateY(0);
}

@media(max-width:640px) {
  #sticky-cart {
    display: block;
  }
}

/* ---- LAZY IMAGE ---- */
img.lazy {
  opacity: 0;
  transition: opacity .4s;
}

img.lazy.loaded {
  opacity: 1;
}

/* ---- GLASS ---- */
.glass {
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .6);
}

/* ---- INSTAGRAM SECTION HEADER ---- */
.ig-handle {
  color: #4361EE;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* ---- STATS BAR ---- */
.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #4361EE, #7B2FBE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: .8rem;
  color: #666;
  font-weight: 500;
  margin-top: 2px;
}

/* ---- HERO SLIDER ---- */
.parallax-layer {
  transform: translate3d(0, var(--parallax-shift, 0px), 0);
  will-change: transform;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.35s ease, transform 7s ease;
  background-size: cover;
  background-position: center;
  will-change: opacity, transform;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 15, .12), rgba(9, 9, 15, .38));
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.14);
  z-index: 1;
}

.hero-slide.prev {
  opacity: .42;
  transform: scale(1.08);
  z-index: 0;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(135deg, #8d7bff, #4f7cff);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(79, 124, 255, .28);
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 46px rgba(79, 124, 255, .38);
  filter: saturate(1.1);
}

.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .07);
  color: #fff;
  backdrop-filter: blur(14px);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform .35s ease, background .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .38);
  color: #fff;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(6, 8, 18, .24);
}

/* ---- CATEGORY MARQUEE ---- */
.category-marquee {
  animation: marquee 25s linear infinite;
}

.category-marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.cat-card-glass {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: max-content;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 60px;
  padding: 12px 30px 12px 14px;
  box-shadow: 0 8px 32px rgba(108, 92, 231, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.cat-card-glass:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(108, 92, 231, 0.15);
  border-color: rgba(108, 92, 231, 0.4);
}

.cat-icon-container {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.cat-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #1a1a2e;
  font-size: 1.15rem;
  margin: 0;
}

/* ---- NEUTRAL THEME OVERRIDES ---- */
#navbar {
  border-bottom-color: var(--accent-border);
}

#navbar.scrolled {
  box-shadow: 0 4px 30px rgba(17, 17, 17, .1);
}

.nav-link::after {
  background: linear-gradient(90deg, #111111, #6b7280);
}

.nav-link:hover,
.nav-dropdown-link:hover {
  color: var(--accent-black);
}

.nav-dropdown-card {
  border-color: rgba(17, 17, 17, .08);
}

.nav-dropdown-link:hover {
  background: var(--accent-gradient-soft);
}

#logo-link .leading-tight span:last-child,
#mobile-menu .leading-tight span:last-child {
  color: var(--accent-gray) !important;
}

#cart-count {
  background: var(--accent-black) !important;
}

#navbar a[href="checkout.html"] {
  background: var(--accent-black) !important;
  box-shadow: 0 4px 15px rgba(17, 17, 17, .18) !important;
}

#navbar a[href="checkout.html"]:hover {
  background: #374151 !important;
}

#mobile-menu .mt-4 .rounded-2xl.p-4.text-center {
  background: var(--accent-gradient-soft) !important;
}

#mobile-menu .grid.grid-cols-2 .mobile-nav-link:hover {
  background: #f3f4f6 !important;
}

#search-input {
  border-color: var(--accent-black) !important;
  box-shadow: 0 10px 40px rgba(17, 17, 17, .08) !important;
}

#search-modal .fa-search {
  color: var(--accent-black) !important;
}

.hero::before {
  background: radial-gradient(circle, rgba(107, 114, 128, .22) 0%, rgba(107, 114, 128, 0) 70%);
}

.hero::after {
  background: radial-gradient(circle, rgba(17, 17, 17, .22) 0%, rgba(17, 17, 17, 0) 70%);
}

.hero-rotator {
  color: #d1d5db;
}

.hero-rotator-track span {
  background: none !important;
  color: #dbeafe;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: currentColor;
  text-shadow: 0 10px 30px rgba(59, 130, 246, .16);
}

.hero-media-badge span {
  color: #e5e7eb;
}

.hero-mini-label {
  background: var(--accent-gradient-soft);
  color: var(--accent-black);
}

.btn-primary,
.hero-btn-primary {
  background: var(--accent-gradient);
}

.btn-primary:hover {
  box-shadow: 0 12px 30px rgba(17, 17, 17, .24);
}

.add-cart-btn {
  background: linear-gradient(135deg, #93c5fd, #3b82f6);
}

.add-cart-btn:hover {
  box-shadow: 0 12px 30px rgba(59, 130, 246, .32);
}

.hero-btn-primary {
  box-shadow: 0 18px 40px rgba(17, 17, 17, .26);
}

.hero-btn-primary:hover {
  box-shadow: 0 24px 46px rgba(17, 17, 17, .34);
  filter: none;
}

.btn-outline {
  color: var(--accent-black);
  border-color: var(--accent-black);
}

.btn-outline:hover {
  background: var(--accent-black);
}

.section-tag {
  background: var(--accent-gradient-soft);
  border-color: rgba(17, 17, 17, .12);
  color: var(--accent-black);
}

.gradient-text,
#shop h2 span {
  display: inline-block;
  background: none !important;
  color: var(--accent-black) !important;
  -webkit-text-fill-color: currentColor !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
}

#categories {
  background: #fff !important;
}

#categories>.absolute.left-0 {
  background: linear-gradient(to right, #fff, transparent) !important;
}

#categories>.absolute.right-0 {
  background: linear-gradient(to left, #fff, transparent) !important;
}

.cat-card,
.prod-card,
.why-card,
.review-card {
  border-color: rgba(17, 17, 17, .08);
}

.cat-card:hover,
.prod-card:hover,
.why-card:hover,
.review-card:hover {
  box-shadow: 0 20px 50px rgba(17, 17, 17, .14);
}

.cat-card .img-overlay {
  background: linear-gradient(to top, rgba(17, 17, 17, .55), transparent);
}

.cat-card-glass {
  background: rgba(255, 255, 255, .9);
  border-color: rgba(17, 17, 17, .08);
  box-shadow: 0 8px 32px rgba(17, 17, 17, .06);
}

.cat-card-glass:hover {
  box-shadow: 0 15px 30px rgba(17, 17, 17, .12);
  border-color: rgba(17, 17, 17, .16);
}

.badge-hot {
  background: linear-gradient(135deg, #111111, #374151);
}

.badge-fast {
  background: linear-gradient(135deg, #e5e7eb, #cbd5e1);
  color: #111111;
}

.badge-new {
  background: linear-gradient(135deg, #4b5563, #111111);
}

.filter-pill {
  border-color: rgba(17, 17, 17, .14);
  color: #4b5563;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--accent-gradient);
  box-shadow: 0 4px 15px rgba(17, 17, 17, .22);
}

#why,
#reviews {
  background: var(--section-wash) !important;
}

.why-icon {
  background: var(--accent-gradient-soft) !important;
  color: var(--accent-black);
}

.combo-card:hover {
  box-shadow: 0 25px 60px rgba(17, 17, 17, .18);
}

.combo-stage,
.contact-card-stage {
  background: #111111;
}

.combo-banner-tint {
  background: linear-gradient(135deg, rgba(17, 17, 17, .26), rgba(107, 114, 128, .32));
}

.combo-badge,
#combos .inline-block {
  background: var(--accent-black) !important;
}

#combos button {
  background: var(--accent-black) !important;
  box-shadow: 0 10px 30px rgba(17, 17, 17, .24) !important;
}

#combos button:hover {
  background: #374151 !important;
}

.contact-card-stage {
  box-shadow: 0 24px 80px rgba(17, 17, 17, .22);
}

.contact-card-tint {
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, 0) 35%),
    linear-gradient(135deg, rgba(17, 17, 17, .56), rgba(107, 114, 128, .42));
}

.review-card::before {
  color: var(--accent-black);
}

#reviews .review-card .w-10.h-10.rounded-full,
#reviews .max-w-md .w-10.h-10.rounded-full {
  background: var(--accent-gradient) !important;
}

#contact a[href^="https://wa.me"] {
  color: var(--accent-black) !important;
}

#contact a[href*="instagram"]:hover {
  color: var(--accent-black) !important;
}

.footer-link:hover {
  color: #d1d5db;
}

#footer .fa-map-marker-alt {
  color: #9ca3af !important;
}

#scroll-top {
  color: var(--accent-black);
  border-color: rgba(17, 17, 17, .12);
}

#scroll-top:hover {
  background: var(--accent-black);
  color: #fff;
}

.stat-num {
  display: inline-block;
  background: linear-gradient(135deg, #111111, #6b7280);
}

#cart-total {
  color: var(--accent-black) !important;
}

.price-sale {
  color: var(--accent-black);
}

.ig-handle {
  color: var(--accent-black);
}

/* ---- PRODUCT DETAIL EXTRAS ---- */
#main-product-image {
  transition: opacity 0.3s ease-in-out;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@keyframes pulse-soft {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(0.98);
  }
}

.badge-scarcity {
  animation: pulse-soft 2s infinite;
}

/* Ensure module-based interactions work with global onclicks */
.ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-effect 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ================================================================
   ADMIN HERO BUTTON (Desktop only, floating in hero)
   ================================================================ */
.admin-btn-hero {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: all .3s ease;
  letter-spacing: 0.02em;
}

.admin-btn-hero:hover {
  background: rgba(17, 17, 17, 0.92);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.admin-btn-hero i {
  font-size: .78rem;
  opacity: .85;
}

/* Hide on mobile — admin button stays in hamburger menu instead */
@media (max-width: 1023px) {
  .admin-btn-hero {
    display: none !important;
  }
}

/* ================================================================
   AUTH MODAL
   ================================================================ */
#auth-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

#auth-modal.open {
  opacity: 1;
  pointer-events: all;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.auth-modal-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  max-height: calc(100vh - 32px);
  margin: 0 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 1.6rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.auth-modal-container::-webkit-scrollbar {
  display: none;
}

#auth-modal.open .auth-modal-container {
  animation: authSlideUp .4s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes authSlideUp {
  0% {
    transform: translateY(30px) scale(.96);
    opacity: 0;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.auth-modal-card {
  background: #fff;
  border-radius: 2rem;
  padding: 2rem 1.8rem 1.6rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .2);
  position: relative;
}

.auth-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: #f3f4f6;
  color: #6b7280;
  cursor: pointer;
  transition: all .25s;
  font-size: .9rem;
}

.auth-modal-close:hover {
  background: #e5e7eb;
  color: #111111;
  transform: rotate(90deg);
}

.auth-modal-header {
  text-align: center;
  margin-bottom: 1.2rem;
}

.auth-modal-logo {
  width: 44px;
  height: 44px;
  border-radius: .8rem;
  object-fit: cover;
  margin: 0 auto .7rem;
  box-shadow: 0 6px 18px rgba(17, 17, 17, .1);
}

.auth-modal-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #1a1a2e;
  margin: 0;
}

.auth-modal-sub {
  font-size: .9rem;
  color: #9ca3af;
  margin-top: .4rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-field label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: #374151;
  margin-bottom: .4rem;
}

.auth-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  padding: 0 16px;
  transition: border-color .25s, box-shadow .25s;
}

.auth-input-wrap:focus-within {
  border-color: #111111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, .08);
}

.auth-input-wrap i {
  color: #9ca3af;
  font-size: .9rem;
  flex-shrink: 0;
}

.auth-input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 0;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: #1a1a2e;
  outline: none;
}

.auth-input-wrap input::placeholder {
  color: #d1d5db;
}

.auth-error {
  color: #ef4444;
  font-size: .84rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  min-height: 0;
}

.auth-success {
  color: #059669;
  font-size: .84rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  background: rgba(5, 150, 105, .08);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(5, 150, 105, .15);
}

.auth-submit-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: #111111;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: .4rem;
}

.auth-submit-btn:hover {
  background: #374151;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 17, 17, .18);
}

.auth-submit-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

.auth-spinner {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, .3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: authSpin .7s linear infinite;
}

@keyframes authSpin {
  to {
    transform: rotate(360deg);
  }
}

.auth-switch {
  text-align: center;
  font-size: .88rem;
  color: #9ca3af;
  margin-top: .2rem;
}

.auth-switch a {
  color: #111111;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
}

.auth-switch a:hover {
  color: #374151;
  text-decoration: underline;
}

/* ================================================================
   AUTH NAV UI (user pill / login button)
   ================================================================ */
.auth-nav-slot {
  display: flex;
  align-items: center;
}

.auth-nav-user {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f3f4f6;
  padding: 5px 12px 5px 5px;
  border-radius: 999px;
  transition: all .3s;
}

.auth-nav-user:hover {
  background: #e5e7eb;
}

.auth-nav-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #111111, #4b5563);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .8rem;
}

.auth-nav-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: #1a1a2e;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-nav-logout {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #9ca3af;
  border-radius: 50%;
  cursor: pointer;
  transition: all .25s;
  font-size: .8rem;
}

.auth-nav-logout:hover {
  background: rgba(239, 68, 68, .1);
  color: #ef4444;
}

.auth-nav-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 2px solid #111111;
  background: transparent;
  color: #111111;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  transition: all .3s;
}

.auth-nav-login-btn:hover {
  background: #111111;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 17, 17, .18);
}

/* ================================================================
   CHECKOUT PAGE STYLES
   ================================================================ */
.checkout-card {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, .06);
  border-radius: 1.8rem;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(17, 17, 17, .04);
}

.checkout-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #f3f4f6;
}

.checkout-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(17, 17, 17, .06), rgba(107, 114, 128, .12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.checkout-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #1a1a2e;
  margin: 0;
}

.checkout-card-sub {
  font-size: .82rem;
  color: #9ca3af;
  margin: 2px 0 0;
}

.checkout-field label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: #374151;
  margin-bottom: .4rem;
}

.checkout-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  padding: 0 16px;
  transition: border-color .25s, box-shadow .25s;
}

.checkout-input-wrap:focus-within {
  border-color: #111111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, .06);
  background: #fff;
}

.checkout-input-wrap i {
  color: #9ca3af;
  font-size: .9rem;
  flex-shrink: 0;
}

.checkout-input-wrap input,
.checkout-input-wrap textarea {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 0;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: #1a1a2e;
  outline: none;
  resize: none;
}

.checkout-input-wrap input::placeholder,
.checkout-input-wrap textarea::placeholder {
  color: #d1d5db;
}

.checkout-textarea-wrap {
  align-items: flex-start;
}

/* Payment Option Cards */
.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 18px;
  cursor: pointer;
  transition: all .3s;
  background: #fff;
  position: relative;
}

.payment-option:hover {
  border-color: #9ca3af;
}

.payment-option.selected {
  border-color: #111111;
  background: rgba(17, 17, 17, .02);
  box-shadow: 0 4px 16px rgba(17, 17, 17, .08);
}

.payment-radio-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}

.payment-option.selected .payment-radio-dot {
  border-color: #111111;
}

.payment-option.selected .payment-radio-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #111111;
  animation: dotPop .25s ease;
}

@keyframes dotPop {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

.payment-option-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.payment-option-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: #1a1a2e;
}

.payment-option-sub {
  font-size: .75rem;
  color: #9ca3af;
}

.payment-option-badge {
  position: absolute;
  top: -8px;
  right: 12px;
  background: #111111;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .65rem;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Order Summary */
.checkout-summary-card {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, .06);
  border-radius: 1.8rem;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(17, 17, 17, .06);
}

.checkout-place-btn {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 16px;
  background: #111111;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: .02em;
}

.checkout-place-btn:hover {
  background: #374151;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(17, 17, 17, .2);
}

.checkout-place-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

/* Mobile Checkout Bar — hidden by default, shown via JS .active class */
.mobile-checkout-bar {
  display: none !important;
}

.mobile-checkout-bar.active {
  display: block !important;
}

/* Hide mobile bar on large screens even when active */
@media (min-width: 1024px) {
  .mobile-checkout-bar.active {
    display: none !important;
  }
}

/* Smaller Place Order button */
.checkout-place-btn {
  padding: 14px;
  font-size: .92rem;
}

/* Mobile responsiveness for checkout */
@media (max-width: 640px) {
  .checkout-card {
    padding: 1.4rem;
    border-radius: 1.4rem;
  }

  .checkout-summary-card {
    padding: 1.4rem;
    border-radius: 1.4rem;
  }

  .auth-modal-card {
    padding: 1.8rem 1.4rem 1.4rem;
    border-radius: 1.6rem;
  }

  #mobile-checkout-bar {
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
}

/* Cart Sidebar */
#cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#cart-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

#cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #fff;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

#cart-sidebar.open {
  transform: translateX(0);
}

@media (max-width: 640px) {
  #cart-sidebar {
    max-width: 100%;
  }
}

/* =========================================================
   BOTTOM STICKY CART BAR
   ========================================================= */
#sticky-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #f3f4f6;
  padding: 12px 24px;
  z-index: 50;
  display: none; /* Hidden by default or when empty */
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

#sticky-cart.visible {
  display: flex;
}

/* Hide only on mobile devices as requested */
@media (max-width: 768px) {
  #sticky-cart, #sticky-cart.visible {
    display: none !important;
  }
}


.cart-bottom-text {
  font-weight: 700;
  color: #1a1a2e;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
}