/* ============================================================
   index.css — Original Editorial Design for MORE ECOM
   ============================================================ */

/* ---------- Hero — Cinematic Slider ---------- */
.hero-section {
  position: relative;
  overflow: hidden;
  background: #0a0f1a;
  padding: 0;
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 600px;
  min-height: 500px;
  max-height: 650px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 800ms ease, visibility 800ms ease;
  z-index: 1;
}
.hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 8s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

/* Dark gradient overlay for text readability */
.hero-slide::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Slide overlay content */
.hero-slide-overlay {
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 5;
  max-width: 480px;
}
.hero-slide-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}
.hero-slide-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.hero-slide-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  line-height: 1.5;
}
.hero-slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #fff;
  color: var(--color-text-dark);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
}
.hero-slide-cta:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero counter indicator */
.hero-counter {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 10;
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #fff;
  font-family: var(--font-heading);
}
.hero-counter .current {
  font-size: 2rem;
  font-weight: 700;
}
.hero-counter .divider {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  margin: 0 4px;
}
.hero-counter .total {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

/* Progress bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 10;
}
.hero-progress-bar {
  height: 100%;
  background: var(--color-primary);
  width: 0%;
  transition: width 0.3s linear;
}

/* Hero nav — pill-shaped */
.hero-slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 44px;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.hero-slider-control:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.4);
}
.hero-slider-control.prev { left: 24px; }
.hero-slider-control.next { right: 24px; }

/* Hide old-style indicators */
.hero-slider-indicators { display: none; }

/* Hide old floating cards */
.hero-float-card-wrapper { display: none !important; }


/* ---------- Marquee Strip ---------- */
.marquee-strip {
  background: linear-gradient(135deg, #111827 0%, #1e293b 100%);
  color: rgba(255,255,255,0.65);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.marquee-track i { color: var(--color-primary); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ---------- Editorial Section Utilities ---------- */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}
.section-heading-editorial {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.15;
  margin-bottom: 0;
}
.accent-line {
  width: 50px;
  height: 3px;
  background: var(--color-text-dark);
  margin-top: 16px;
}


/* ---------- About / Company — Numbered Editorial ---------- */
.about-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.about-section .section-watermark {
  position: absolute;
  top: -30px;
  left: -20px;
  font-family: var(--font-display);
  font-size: 18rem;
  font-weight: 700;
  color: rgba(0,0,0,0.02);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.about-large-img-box {
  background: #ffffff;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  max-width: 100%;
}
.about-large-img-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
}
.about-large-img-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
}
.about-large-img-box:hover img {
  transform: scale(1.02);
}
.about-content-block {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}
.about-content-block:last-child {
  border-bottom: none;
}
.about-content-block:hover {
  padding-left: 8px;
}
.about-block-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-text-dark);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}
.about-block-img {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
}
.about-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.about-content-block:hover .about-block-img img {
  transform: scale(1.06);
}
.about-block-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}
.about-block-text p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 0;
}


/* ---------- Our Product — Showcase Strip ---------- */
.product-section {
  background: var(--color-bg);
}
.product-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.product-section-header .view-all {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-text-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}
.product-section-header .view-all:hover {
  color: var(--color-primary);
  gap: 10px;
}

/* Product card — new design */
.carousel-track-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carousel-track-container::-webkit-scrollbar { display: none; }
.carousel-track {
  display: flex;
  gap: 20px;
  padding: 4px 2px;
}
.our-product-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
}
@media (max-width: 991px) { .our-product-card { flex: 0 0 calc(33.333% - 14px); } }
@media (max-width: 767px) { .our-product-card { flex: 0 0 calc(50% - 10px); } }
@media (max-width: 479px) { .our-product-card { flex: 0 0 100%; } }

.product-card-v2 {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}
.product-card-v2-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f1f5f9;
}
.product-card-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card-v2:hover .product-card-v2-img img {
  transform: scale(1.08);
}
.product-quick-pill {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-text-dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: bottom 0.35s ease;
  z-index: 3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-card-v2:hover .product-quick-pill {
  bottom: 14px;
}
.product-card-v2-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-v2-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card-v2-sub {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card-v2-price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.product-card-v2-price .dp {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-dark);
}
.product-card-v2-price .mrp {
  font-size: 0.82rem;
  color: var(--color-text-light);
  text-decoration: line-through;
}

/* Carousel navigation — pill style */
.carousel-nav-pill {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 40px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  outline: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.carousel-nav-pill:hover {
  background: var(--color-text-dark);
  color: #fff;
  border-color: var(--color-text-dark);
}
.carousel-nav-pill.prev-btn { left: -22px; }
.carousel-nav-pill.next-btn { right: -22px; }
@media (max-width: 575px) {
  .carousel-nav-pill { width: 36px; height: 34px; }
  .carousel-nav-pill.prev-btn { left: -12px; }
  .carousel-nav-pill.next-btn { right: -12px; }
}


/* ---------- Core Values — Side Timeline & Image ---------- */
.core-values-section {
  background: linear-gradient(180deg, #fff 0%, #f0f4ff 100%);
  position: relative;
  overflow: hidden;
}
.cv-side-timeline {
  position: relative;
  padding-left: 45px;
}
.cv-side-timeline::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 17px;
  width: 2px;
  background: var(--color-border);
}
.cv-side-item {
  position: relative;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.cv-side-item.in-view {
  opacity: 1;
  transform: translateY(0);
}
.cv-side-node {
  position: absolute;
  left: -45px;
  top: 6px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-text-dark);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.cv-side-content {
  background: #fff;
  padding: 18px 22px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}
.cv-side-content:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateX(4px);
}
.cv-side-content h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}
.cv-side-content p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.55;
  margin-bottom: 0;
}

.core-values-img-box {
  position: sticky;
  top: 110px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 36px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.core-values-img-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.07);
}
.core-values-img-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

/* Timeline mobile */
@media (max-width: 991px) {
  .core-values-img-box {
    position: static;
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .cv-side-timeline {
    padding-left: 35px;
  }
  .cv-side-timeline::before {
    left: 14px;
  }
  .cv-side-node {
    left: -35px;
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
  .cv-side-content {
    padding: 14px 16px;
  }
  .core-values-img-box {
    padding: 16px;
  }
}


/* ---------- Achievers — Spotlight Circles ---------- */
.achievers-section {
  background: #fff;
}
.achievers-carousel-track-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.achievers-carousel-track-container::-webkit-scrollbar { display: none; }
.achievers-carousel-track {
  display: flex;
  gap: 28px;
  padding: 8px;
}
.achiever-carousel-card {
  flex: 0 0 calc(16.666% - 23px);
  min-width: 0;
  text-align: center;
}
@media (max-width: 1199px) { .achiever-carousel-card { flex: 0 0 calc(20% - 22px); } }
@media (max-width: 991px) { .achiever-carousel-card { flex: 0 0 calc(25% - 21px); } }
@media (max-width: 767px) { .achiever-carousel-card { flex: 0 0 calc(33.333% - 19px); } }
@media (max-width: 479px) { .achiever-carousel-card { flex: 0 0 calc(50% - 14px); } }

.achiever-card-v2 {
  position: relative;
  aspect-ratio: 1 / 1.15;
  width: 100%;
  max-width: 160px;
  margin: 0 auto 14px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
}
.achiever-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--color-primary);
}
.achiever-card-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.achiever-card-v2:hover img {
  transform: scale(1.04);
}
.achiever-name-v2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-text-dark);
  margin: 0;
  transition: color 0.25s ease;
}
.achiever-carousel-card:hover .achiever-name-v2 {
  color: var(--color-primary);
}


/* ---------- Latest News — Editorial Quote ---------- */
.news-section {
  background: var(--color-bg);
  position: relative;
}
.news-carousel-track-container {
  overflow: hidden;
  width: 100%;
}
.news-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}
.news-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  padding: 1rem 0;
}
.news-quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.8;
  color: var(--color-primary);
  opacity: 0.3;
  margin-bottom: 10px;
  user-select: none;
}
.news-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 1.6;
  max-width: 740px;
  margin: 0 auto 24px;
}
.news-stars-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
}
.news-stars-pill i {
  color: #F59E0B;
  font-size: 0.85rem;
}

/* News nav — text based */
.news-nav-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}
.news-nav-btn {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-text-light);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
  padding: 8px 0;
}
.news-nav-btn:hover {
  color: var(--color-text-dark);
}
.news-nav-divider {
  width: 1px;
  height: 20px;
  background: var(--color-border);
}


/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children.in-view > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.stagger-children.in-view > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.stagger-children.in-view > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.19s; }
.stagger-children.in-view > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
.stagger-children.in-view > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.33s; }
.stagger-children.in-view > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.40s; }
.stagger-children.in-view > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.47s; }
