
/* =====================================================
   HERO BANNER
===================================================== */

.hero-banner {
  position: relative;
  width: 100%;
  height: 68vh;
  min-height: 520px;
  max-height: 680px;
  overflow: hidden;
  font-family: var(--heading-font);
}

.hero-banner .carousel,
.hero-banner .carousel-inner,
.hero-banner .carousel-item {
  height: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.65) 35%,
    rgba(0,0,0,0.45) 65%,
    rgba(0,0,0,0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--color-white);
  max-width: 600px;
  margin-left: 72px;
}

.hero-tag {
  letter-spacing: 3px;
  font-size: clamp(11px, 1.5vw, 13px);
  opacity: .9;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(34px, 4.8vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 6px 22px rgba(0,0,0,.35);
}

.hero-text {
  font-family: var(--body-font);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  opacity: .95;
  margin-bottom: 28px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 42px;
  background: var(--color-accent);
  color: var(--color-white);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  border-radius: 30px;
  transition: var(--transition-base);
}

.hero-btn:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.carousel-control-prev,
.carousel-control-next {
  width: 6%;
}

/* HERO ANIMATION */

.hero-content > * {
  opacity: 0;
  transform: translateY(26px);
}

.carousel-item.active .hero-content > * {
  animation: heroFadeUp .75s ease forwards;
}

.carousel-item.active .hero-tag { animation-delay: .2s; }
.carousel-item.active .hero-title { animation-delay: .4s; }
.carousel-item.active .hero-text { animation-delay: .6s; }
.carousel-item.active .hero-btn { animation-delay: .8s; }

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO RESPONSIVE */

@media (max-width: 991px) {
  .hero-banner {
    height: 54vh;
    min-height: 420px;
    max-height: 520px;
  }
  .hero-bg { transform: none; }
  .hero-content {
    margin-left: 40px;
    max-width: 520px;
  }
  .hero-title { font-size: clamp(30px, 5vw, 42px); }
}

@media (max-width: 767px) {
  .hero-banner {
    height: 62vh;
    min-height: 380px;
    max-height: 460px;
  }
  .hero-overlay { background: rgba(0,0,0,.45); }
  .hero-content {
    margin-left: 0;
    padding: 24px 20px;
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
  .hero-title { font-size: clamp(26px, 7vw, 34px); }
  .hero-text { font-size: 15px; }
}


/* =====================================================
   CATEGORY SECTION
===================================================== */

.category-section {
  padding-top: 60px;
  background: var(--color-white);
}

.category-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.category-track {
  display: flex;
  gap: 48px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 70px;
  scrollbar-width: none;
}

.category-track::-webkit-scrollbar { display: none; }

.category-item {
  min-width: 160px;
  text-align: center;
  text-decoration: none;
  color: var(--color-primary);
  font-family: var(--heading-font);
}

.category-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  background: transparent;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: var(--transition-slow);
}

.category-item:hover .category-img img {
  transform: scale(1.06);
}

.category-item span {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

.cat-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-base);
}

.cat-nav:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.cat-prev { left: 10px; }
.cat-next { right: 10px; }

/* CATEGORY RESPONSIVE */

@media (max-width: 991px) {
  .category-track {
    gap: 36px;
    padding: 0 20px;
  }
  .category-item { min-width: 130px; }
  .category-img {
    width: 110px;
    height: 110px;
  }
  .category-item span {
    font-size: 10px;
    letter-spacing: 0.75px;
  }
}

@media (max-width: 767px) {
  .category-section { padding: 40px 0; }
  .category-track {
    gap: 18px;
    padding: 0 10px;
  }
  .category-item { min-width: 90px; }
  .category-img {
    width: 80px;
    height: 80px;
  }
  .category-item span {
    font-size: 9px;
    letter-spacing: 0.50px;
  }
  .cat-nav { display: none; }
}





/* =====================================================
   PRODUCT SECTION
===================================================== */

.product-section {
  padding-top: 50px;
  background: var(--color-white);
}

.product-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.product-track {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.product-track::-webkit-scrollbar { display: none; }

.product-card {
  min-width: 260px;
  font-family: var(--body-font);
}

.product-img {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--color-bg-light);
  height: 360px;
}

.product-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity var(--transition-image), transform var(--transition-slower);
}

.product-img .img-main {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.product-img .img-hover {
  opacity: 0;
  transform: scale(1.08);
  z-index: 2;
}

.product-card:hover .img-main {
  opacity: 0;
  transform: scale(1.05);
}

.product-card:hover .img-hover {
  opacity: 1;
  transform: scale(1);
}

.product-info { padding-top: 14px; }

.product-title {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-price {
  display: flex;
  gap: 10px;
  align-items: center;
}

.product-price .offer {
  color: var(--color-accent);
  font-size: 15px;
  font-weight: 500;
}

.product-price .mrp {
  color: var(--color-text-muted);
  font-size: 14px;
  text-decoration: line-through;
}

.prod-nav {
  position: absolute;
  top: 40%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border-light);
  background: var(--color-white);
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.prod-nav:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.prod-nav.prev { left: 10px; }
.prod-nav.next { right: 10px; }

/* PRODUCT MOBILE */

@media (max-width: 768px) {
  .product-track { gap: 5px; }
  .product-card { min-width: 200px; }
  .prod-nav { display: none; }
  .product-img { height: 260px; }
}

/* =====================================================
   NEW ARRIVALS
===================================================== */

.new-arrivals {
  padding: 80px 0;
  background: var(--color-white);
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.na-viewport { overflow: hidden; }

.na-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.na-track::-webkit-scrollbar { display: none; }

.na-item {
  width: 350px;
  min-width: 320px;
  flex-shrink: 0;
  text-align: center;
}

.na-img-box {
  width: 350px;
  height: 460px;
  overflow: hidden;
  position: relative;
}

.na-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slower);
}

.na-item:hover .na-img-box img {
  transform: scale(1.08);
}

.na-item h3{
  margin:16px 0 6px;
  font-size:15px;
  line-height:1.4;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  font-family:var(--heading-font);
  font-weight:500;
}

.price {
  display: flex;
  justify-content: center;
  gap: 7px;
  font-family: var(--heading-font);
}

.offer {
  color: var(--color-accent);
  text-decoration:none !important;
  font-size: 15px;
}

.mrp {
  color: var(--color-text-muted);
  font-size: 14px;
  text-decoration: line-through;
}

/* NEW ARRIVALS MOBILE */

@media (max-width: 768px) {
  .new-arrivals { padding: 60px 0; }
  .na-item {
    width: 240px;
    min-width: 240px;
  }
  .na-img-box {
    width: 240px;
    height: 320px;
  }
  .na-item h3 { font-size: 14px; }
  .offer { font-size: 14px; }
  .mrp { font-size: 13px; }
}


/* =====================================================
   REEL SECTION
===================================================== */

.reel-section {
  padding: 40px 20px;
  font-family: var(--body-font);
}

.reel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.reel-header h2 {
  font-family: var(--heading-font);
  font-size: 22px;
}

.reel-nav {
  display: flex;
  gap: 8px;
}

.reel-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--color-primary);
  color: var(--color-white);
  cursor: pointer;
}

.reel-wrapper { overflow: hidden; }

.reel-track {
  display: flex;
  gap: 20px;
  transition: transform var(--transition-slow);
}

.reel-card {
  min-width: 320px;
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
}

.reel-video {
  height: 420px;
  background: var(--color-black);
}

.reel-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-info {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
}

.reel-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.reel-text h4 {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 190px;
}

.reel-price {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 2px;
}

.offer-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
}

.original-price {
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.reel-view {
  display: block;
  margin: 4px 12px 10px;
  padding: 10px;
  text-align: center;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-base);
}

.reel-view:hover {
  background: var(--color-black);
}

/* =====================================================
   FEATURED PRODUCT
===================================================== */

.featured-product {
  padding: 80px 20px 20px;
  background: var(--color-white);
  font-family: var(--body-font);
}

.featured-heading {
  text-align: center;
  font-family: var(--heading-font);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.featured-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.featured-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.featured-main-img {
  width: 280px;
  height: 380px;
  margin-bottom: 24px;
}

.featured-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.featured-info h3 {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 14px 0;
}

.rating {
  font-size: 13px;
  color: var(--color-primary);
}

.rating span {
  color: var(--color-text-gray);
  margin-left: 6px;
}

.featured-btn {
  display: inline-block;
  padding: 14px 42px;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  border-radius: 30px;
  transition: var(--transition-base);
}

.featured-btn:hover {
  background: var(--color-black);
}

/* FEATURED MOBILE */

@media (max-width: 768px) {
  .featured-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .featured-image { display: none; }
  .featured-product { padding: 60px 16px; }
  .featured-main-img {
    width: 240px;
    height: 320px;
  }
}

/* =====================================================
   SERVICE SECTION
===================================================== */

.service-section {
  padding: 20px 20px;
  background: var(--color-white);
}

.service-wrap {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px 40px;
}

.service-box {
  flex: 0 0 calc(25% - 40px);
  max-width: calc(25% - 40px);
  text-align: center;
}

.service-box i {
  font-size: 34px;
  margin-bottom: 18px;
  display: inline-block;
}

.service-box h4 {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.service-box p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-light);
}

@media (max-width: 1199px) {
  .service-box {
    flex: 0 0 calc(33.333% - 40px);
    max-width: calc(33.333% - 40px);
  }
}

@media (max-width: 600px) {
  .service-box {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


/* =====================================================
   SOCIAL FOLLOW
===================================================== */

.social-follow {
  padding: 80px 20px;
  background: var(--color-white);
  text-align: center;
}

.social-header .tag {
  color: var(--color-black);
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
  font-family:var(--heading-font);
}

.social-header h2 {
  font-size: 36px;
  margin: 10px 0;
  font-family:var(--body-font) !important;
}

.social-header p {
  max-width: 650px;
  margin: 0 auto 40px;
  color: var(--color-text-gray);
}

.social-wrapper {
  position: relative;
  max-width: 1400px;
  margin: auto;
}

.social-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  scrollbar-width: none;
}

.social-track::-webkit-scrollbar { display: none; }

.social-card {
  flex: 0 0 calc(20% - 16px);
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-black);
}

.social-card img,
.social-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  z-index: 10;
}

.scroll-btn.left { left: -10px; }
.scroll-btn.right { right: -10px; }

@media (max-width: 992px) {
  .social-card { flex: 0 0 calc(33.33% - 14px); }
}

@media (max-width: 576px) {
  .social-card { flex: 0 0 calc(50% - 10px); }
}

