@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500&amp;family=Playfair+Display:wght@700&amp;display=swap");

:root {
  --jockey-black: #1a1a1a;
  --jockey-gold: #f4c430;
}

* {
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  overflow-x: hidden;
} /* ← FIX SCROLLBAR */

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
}

.navbar-brand {
  font-family: "Playfair Display", sans-serif;
  font-size: 1.75rem;
  letter-spacing: -1px;
}

.sticky-top {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero {
  height: 90vh;
  min-height: 650px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)),
    url("https://www.jockey.in/cdn/shop/files/2-WIW-Desktop.webp") center/cover
      no-repeat;
  display: flex;
  align-items: center;
}

.section-header {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--jockey-black);
}

.product-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  background-color: white;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-img {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.carousel-control-prev,
.carousel-control-next {
  background: rgba(255, 255, 255, 0.9);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.color-bar {
  height: 8px;
  border-radius: 9999px;
  background: linear-gradient(
    to right,
    #000000,
    #1a1a1a,
    #3d2b1f,
    #8b5a2b,
    #d4a017,
    #f4c430,
    #ffeb99,
    #ffffff
  );
}

.nav-link {
  font-weight: 500;
  position: relative;
}

.nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--jockey-gold);
}

.nav-link:hover:after {
  width: 100%;
}

.footer-link {
  font-size: 0.9rem;
  color: #555;
}

.badge-new {
  background: #ff3b5c;
  color: white;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 9999px;
}

/* Parent MUST be relative */
.nav-item {
  position: relative;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;

  /* ✅ FIXED PERFECT LEFT ALIGN */
  left: -450px;
  width: 100vw;

  /* 🔥 BREAK OUT OF CONTAINER */
  transform: translateX(calc(-1 * (100vw - 100%) / 2)) translateY(10px);

  background: #fff;
  padding: 30px 0;
  z-index: 999;
  border-top: 1px solid #eee;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: all 0.25s ease;
}
/* SHOW MENU */
.nav-item:hover .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateX(calc(-1 * (100vw - 100%) / 2)) translateY(0);
}

/* GRID */
.mega-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.mega-menu {
  margin-top: 0; /* no gap */
}

/* invisible hover bridge */
.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 20px;
}

@media (max-width: 991px) {
  .desktop-menu {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* MOBILE MENU PANEL */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  transition: 0.3s;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

/* HEADER */
.mobile-header span {
  font-size: 22px;
  cursor: pointer;
}

/* ITEMS */
.mobile-item {
  border-bottom: 1px solid #eee;
}

.mobile-title {
  padding: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

/* SUBMENU */
.mobile-submenu {
  display: none;
  padding-left: 15px;
}

.mobile-submenu a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: #444;
  text-decoration: none;
}

/* ACTIVE */
.mobile-submenu.active {
  display: block;
}

.mega-columns h6 {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

.mega-columns a {
  display: block;
  color: #444;
  font-size: 14px;
  margin-bottom: 6px;
  text-decoration: none;
}

/* RIGHT */
.mega-right {
  display: flex;
  gap: 20px;
}

/* BIG CARD */
.mega-banner {
  width: 200px;
  background: #e9edf2;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  position: relative;
}

.mega-banner img {
  width: 100%;
  margin-top: 10px;
}

/* SMALL CARDS */
.mega-cards {
  display: flex;
  gap: 12px;
}

.mega-card {
  width: 110px;
  height: 180px;
  border-radius: 12px;
  background: #dfe6ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-align: center;
}

.mega-menu {
  transform: translateY(10px);
}

.nav-item:hover .mega-menu {
  transform: translateY(0);
}

/* LINKS */
.mega-menu a {
  display: block;
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
  text-decoration: none;
}

/* BANNER */
.kids-banner {
  width: 200px;
  background: #cfe6c7;
  border-radius: 16px;
  padding: 20px;
}

.kids-banner img {
  width: 100%;
  margin-top: 10px;
}

/* RIGHT SIDE */
.kids-right {
  flex: 1;
}

/* CARDS */
.kids-card {
  width: 90px;
  height: 140px;
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  padding-bottom: 10px;
  font-size: 13px;
}

.kids-card.small {
  height: 90px;
}

/* COLORS */
.bg-pink {
  background: #e6b5c5;
}
.bg-orange {
  background: #f3c58b;
}
.bg-blue {
  background: #a7d3e8;
}
.bg-teal {
  background: #3db3b3;
}
.bg-purple {
  background: #b49ac2;
}
.bg-yellow {
  background: #f2b24c;
}

.jockey_gamechanger .jockey_gamechanger_header {
  text-align: center;
  padding-bottom: 3%;
}
.jockey_gamechanger .gamechanger_main_heading {
  font-size: clamp(30px, calc(43 * (100vw / 1440)), 45px);
  font-family: "Jost-Variable", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.5;
  color: rgba(34, 31, 32, 0.78);
}
.jockey_gamechanger .jockey_gamechanger_container {
  width: 100%;
  padding: 4% 0;
}

.trend-section {
  background: #f5f5f5;
}

/* CARD */
.trend-card {
  position: relative;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
}

/* FULL IMAGE */
.trend-card .bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

/* DARK GRADIENT OVERLAY */
.trend-card::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)); */
}

/* TEXT CONTENT */
.overlay-content {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
  max-width: 60%;
}

.overlay-content h3 {
  font-size: 28px;
  font-weight: 500;
}

.overlay-content strong {
  font-weight: 700;
}

.overlay-content p {
  margin: 10px 0;
  opacity: 0.9;
}

/* BUTTON */
.overlay-content button {
  border: 1px solid #fff;
  background: transparent;
  padding: 8px 18px;
  border-radius: 25px;
  color: #fff;
  transition: 0.3s;
}

.overlay-content button:hover {
  background: #fff;
  color: #000;
}

/* HOVER EFFECT */
.trend-card:hover .bg-img {
  transform: scale(1.08);
}

/* SWIPER */
.swiper-slide {
  width: 520px; /* 🔥 slightly tighter */
}
/* ACTIVE CARD ON TOP */
.swiper-slide-active {
  transform: scale(1.1) !important;
  z-index: 10 !important;
}

/* SIDE CARDS */
.swiper-slide-prev,
.swiper-slide-next {
  opacity: 0.6;
  transform: scale(0.9);
  z-index: 1;
}
/* PAGINATION */
.swiper-pagination-bullet {
  background: #bbb;
}

.swiper-pagination-bullet-active {
  background: #000;
}
.swiper {
  padding: 40px 0 60px;
}

.best-seller-section {
  background: #fff;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

.best-title {
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #222;
}

.best-title span {
  font-weight: 600;
  color: #666;
}

.best-subtitle {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 300;
  color: #444;
  letter-spacing: -0.02em;
}

.best-tabs {
  border: 1px solid #bbb;
  border-radius: 14px;
  padding: 10px 4px 10px 4px;
  background: #fff;
  min-width: 380px;
  justify-content: space-between;
}

.best-tabs .nav-link {
  border-radius: 10px;
  border: none;
  color: #444;
  font-size: 18px;
  padding: 14px 56px;
  line-height: 1;
  min-width: 170px;
}

.best-tabs .nav-link.active {
  background: #404040;
  color: #fff;
}

.bestSellerSwiper {
  position: relative;
  padding-bottom: 56px;
}

.bestSellerSwiper .swiper-slide {
  width: 300px; /* 🔥 exact feel */
}
.product-card {
  border-radius: 20px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.product-image-wrap {
  margin: 8px;
  height: 360px; /* 🔥 balanced */
  border-radius: 16px;
  padding-bottom: 10px;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.bestseller-ribbon {
  position: absolute;
  top: 0;
  left: 16px;
  z-index: 3;

  width: 26px;
  height: 90px;

  background: #3b3b3b;
  color: #fff;

  font-size: 11px;
  font-weight: 500;

  display: flex;
  align-items: center;
  justify-content: center;

  writing-mode: vertical-rl;
  transform: rotate(360deg);

  line-height: 1;

  /* 🔥 REAL CUT USING CLIP-PATH */
  clip-path: polygon(0 0, 100% 0, 100% 78%, 75% 100%, 50% 85%, 25% 100%, 0 78%);
}

.wishlist-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;

  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95); /* 🔥 white circle */
  backdrop-filter: blur(4px);

  border: none;
  cursor: pointer;

  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.wishlist-btn i {
  font-size: 18px;
  color: #333;
  line-height: 1;
}

.wishlist-btn:hover i {
  color: #000;
}

.color-badge {
  margin-top: 5px;

  left: 12px;
  bottom: 12px;
  z-index: 5;
}
.swatch {
  display: inline-block;
  width: 12px;
  height: 18px;
  border-radius: 3px;
}

.swatch-blue {
  background: #6e8db1;
}
.swatch-orange {
  background: #d58a71;
}

.count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 27px;
  padding: 0 7px;
  margin: 0 -2px;
  background: #4a4a4a;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.product-meta {
  padding: 12px 14px 14px 14px; /* 🔥 increased top spacing */
}

.sku {
  font-size: 13px;
  color: #777;
}

.title {
  font-size: 16px; /* 🔥 reduced */
  line-height: 1.25;
  font-weight: 400;
  color: #111;
  min-height: 48px;
}

.price {
  font-size: 18px; /* 🔥 slightly smaller */
  font-weight: 700;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.strike {
  color: #666;
  text-decoration: line-through;
  font-size: 14px;
}

.price {
  font-weight: 700;
  color: #222;
  letter-spacing: -0.02em;
}

.bottom-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.add-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;

  background: #3d3d3d;
  color: #fff;
  border: none;

  padding: 7px 10px; /* 🔥 smaller */
  border-radius: 8px;

  font-size: 12px; /* 🔥 reduced */
  font-weight: 500;

  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.add-btn i {
  font-size: 14px;
  line-height: 1;
}

.best-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  text-align: center;
}

.best-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #c8c8c8;
  opacity: 1;
  margin: 0 5px !important;
}

.best-pagination .swiper-pagination-bullet-active {
  background: #111;
  transform: scale(1.15);
}

.best-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 10px;
}

.best-prev,
.best-next {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid #d4d4d4;
  background: #fff;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.best-next {
  background: #404040;
  color: #fff;
  border-color: #404040;
}

@media (max-width: 991px) {
  .best-title {
    font-size: 34px;
  }
  .best-subtitle {
    font-size: 18px;
  }
  .best-tabs {
    min-width: auto;
    width: 100%;
  }
  .best-tabs .nav-link {
    min-width: 0;
    padding: 12px 34px;
    font-size: 16px;
  }
  .bestSellerSwiper .swiper-slide {
    width: 300px;
  }
  .product-image-wrap {
    height: 360px;
  }
}

@media (max-width: 575px) {
  .best-title {
    font-size: 28px;
  }
  .best-subtitle {
    font-size: 16px;
  }
  .bestSellerSwiper .swiper-slide {
    width: 275px;
  }
  .product-image-wrap {
    height: 330px;
  }
  .title {
    font-size: 16px;
    min-height: 50px;
  }
  .price {
    font-size: 18px;
  }
  .add-btn {
    padding: 9px 12px;
    font-size: 13px;
  }
}

/* ===== SECTION ===== */
.checked-section {
  display: flex;
  height: 520px;
  overflow: hidden;
  background: #111;
}

/* LEFT */
.checked-left {
  width: 58%;
  background: url("YOUR-IMAGE.jpg") center/cover no-repeat;
  position: relative;
}

.checked-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.45),
    /* 🔥 lighter */ rgba(0, 0, 0, 0.1)
  );
}

/* TEXT */
.checked-content {
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffd400;
}

.checked-small {
  font-size: 26px;
  font-weight: 700;
}

.checked-big {
  font-size: 105px;
  font-weight: 900;
  line-height: 0.9;
}

/* RIGHT */
.checked-right {
  width: 42%;
  display: flex;
  flex-direction: column;
  padding: 20px 0 10px 20px;
}

/* ===== TABS (WORKING) ===== */
.checked-tabs {
  border: 1px solid #bbb;
  border-radius: 14px;
  padding: 4px;
  background: #fff;
  display: flex;
}

.checked-tabs .nav-link {
  border-radius: 10px;
  border: none;
  color: #444;
  font-size: 16px;
  padding: 10px 30px;
  min-width: 120px;
}

.checked-tabs .nav-link.active {
  background: #404040;
  color: #fff;
}
/* ===== SWIPER ===== */
.checkedSwiper {
  flex: 1;
  overflow: visible; /* 🔥 FIX */
}

.checkedSwiper .swiper-slide {
  width: 260px;
}

.checked-left {
  filter: brightness(1.05) contrast(1.05);
}
.checkedSwiper .swiper-wrapper {
  padding-left: 5px; /* slight breathing */
}

/* ===== CARD (NEW CLASS) ===== */
.checked-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.checked-card {
  opacity: 1; /* 🔥 ensure no dim */
  filter: none;
}

/* IMAGE */
.checked-img-wrap {
  position: relative;
  height: 260px;
  margin: 8px;
  border-radius: 14px;
  overflow: hidden;
}

.checked-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HEART */
.checked-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* COLOR BADGE */
.checked-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: flex;
}

/* META */
.checked-meta {
  padding: 10px 14px 14px;
}

.checked-sku {
  font-size: 13px;
  color: #777;
}

.checked-title {
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 8px;
}

/* PRICE ROW */
.checked-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checked-price {
  font-size: 18px;
  font-weight: 700;
}

/* BUTTON */
.checked-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #3d3d3d;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
}

/* ===== HERO BASE ===== */
.jk-hero {
  position: relative;
}
.jk-slide {
  height: 90vh;
  min-height: 650px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}
.jk-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.1)
  );
}
.jk-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}
.jk-title {
  font-size: 68px;
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.jk-sub {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 26px;
}
.jk-btn {
  background: #fff;
  color: #000;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}
.jk-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  z-index: 2;
}
.jk-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.4;
}
.jk-dots .active {
  opacity: 1;
}

/* Mobile Responsive Hero */
@media (max-width: 991px) {
  .jk-slide {
    height: 70vh;
    min-height: 480px;
  }
  .jk-title {
    font-size: 42px;
  }
}
@media (max-width: 576px) {
  .jk-slide {
    height: 65vh;
    min-height: 420px;
  }
  .jk-title {
    font-size: 30px;
    line-height: 1.2;
  }
  .jk-sub {
    font-size: 14px;
  }
  .jk-btn {
    padding: 10px 24px;
    font-size: 12px;
  }
  .jk-badge {
    bottom: 15px;
    right: 15px;
    font-size: 11px;
  }
}
/* OVERLAY (JOCKEY STYLE GRADIENT) */

/*CART OVERLAY */
/* ===== CART SIDEBAR FIX ===== */
.cart-sidebar {
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;

  width: 420px;
  max-width: 100vw; /* 🔥 prevents overflow */

  height: 100vh;
  background: #fff;

  transform: translateX(100%);
  transition: transform 0.35s ease;

  z-index: 9999;

  display: flex;
  flex-direction: column;

  will-change: transform; /* 🔥 removes lag */
  padding: 0px 20px 0px 10px;
}

/* ACTIVE STATE */
.cart-sidebar.active {
  transform: translateX(0);
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .cart-sidebar {
    width: 100vw; /* full screen on mobile */
  }
}

/* OVERLAY */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);

  opacity: 0;
  visibility: hidden;

  transition: 0.3s;

  z-index: 9998;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* PREVENT PAGE SCROLL */
body.cart-open {
  overflow: hidden;
}

/* HEADER */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid #eee;
}

.cart-header .title {
  font-weight: 600;
  font-size: 15px;
}

.close-btn {
  font-size: 20px;
  cursor: pointer;
}

/* COUNT */
.cart-count {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  font-size: 13px;
  color: #777;
}

.cart-count .icons i {
  margin-left: 10px;
  cursor: pointer;
}

/* BODY */
.cart-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* smooth iOS scroll */
}
/* ITEM */
.cart-item {
  display: flex;
  gap: 10px;
  background: #f7f7f7;
  border-radius: 14px;
  padding: 10px;
  position: relative;
}

.cart-item img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
}

.cart-details {
  flex: 1;
}

.cart-title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.cart-options {
  display: flex;
  gap: 8px;
  margin: 6px 0;
}

.cart-options select {
  border: 1px solid #ddd;
  padding: 4px 6px;
  font-size: 12px;
  border-radius: 6px;
  background: #fff;
}

.cart-price {
  font-size: 14px;
  font-weight: 600;
}

.cart-price span {
  font-size: 12px;
  color: #777;
  margin-left: 6px;
}

.remove-item {
  position: absolute;
  right: 10px;
  top: 8px;
  cursor: pointer;
  font-size: 16px;
}

/* GIFT */
.gift-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 12px;
  font-size: 13px;
}

.gift-card button {
  background: #2d2d2d;
  color: #fff;
  border: none;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 12px;
}

/*CART FOOTER */

.cart-footer {
  position: sticky;
  bottom: 0;
  background: #fff;
}

.order-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 10px;
}

.total-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 12px;
}

.total-box strong {
  font-size: 16px;
}

.tax {
  font-size: 11px;
  color: #777;
}

.place-order {
  background: #2d2d2d;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
}

.featured-categories .section-header {
  font-size: 2.35rem;
  font-weight: 700;
}

/* Clean Card - No Zoom Overflow */
.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 260px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.09);
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.category-card .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Label */
.category-card .card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: white;
  padding: 28px 20px 22px;
  font-size: 1.28rem;
  font-weight: 600;
  text-align: center;
}

/* Swiper */
.featuredSwiper .swiper-slide {
  width: 310px;
}

.featuredSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
}

.featuredSwiper .swiper-pagination-bullet-active {
  background: #1a1a1a;
}

/* Responsive */
@media (max-width: 992px) {
  .featuredSwiper .swiper-slide {
    width: 280px;
  }
  .category-card {
    height: 230px;
  }
}

@media (max-width: 576px) {
  .featuredSwiper .swiper-slide {
    width: 88%;
  }
  .category-card {
    height: 200px;
  }
}

/* MOBILE MENU PANEL */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  transition: 0.3s;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

/* HEADER */
.mobile-header span {
  font-size: 22px;
  cursor: pointer;
}

/* ITEMS */
.mobile-item {
  border-bottom: 1px solid #eee;
}

.mobile-title {
  padding: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

/* SUBMENU */
.mobile-submenu {
  display: none;
  padding-left: 15px;
}

.mobile-submenu a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: #444;
  text-decoration: none;
}

/* ACTIVE */
.mobile-submenu.active {
  display: block;
}

.carousel-item {
  transition: transform 1s ease-in-out !important;
}

.carousel-item {
  transition: transform 1s ease-in-out !important;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.image-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.image-card:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.explore-btn:hover {
  background: #1a1a1a;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
  .image-card[style*="grid-row"] {
    grid-row: auto !important;
  }
}

.journal-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.journal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.image-container {
  position: relative;
}

.share-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.hashtag {
  position: absolute;
  font-size: 13px;
  font-weight: 600;
  color: white;
  z-index: 10;
}

.badge {
  background: #f0f0f0;
  color: #333;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 500;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 8px;
}

.card-date {
  font-size: 13.5px;
  color: #666;
}

.journal-carousel::-webkit-scrollbar {
  display: none;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #000;
  transform: scale(1.3);
}

.GST-announcement-bar {
  width: 100%;
  font-size: 10px;
  font-weight: 400;
  font-family: "Jost";
  padding: 13px 0;
  overflow: hidden;
  background: #f0f0f0;
  color: #ffffff;
}

.GST-announcement-bar .GST-announcement-scroll {
  width: 100%;
}

.GST-announcement-bar .GST-announcement-track {
  display: flex;
  width: max-content;
}

.GST-announcement-bar .GST-marquee-enabled {
  animation: marquee 30s linear infinite;
}

.GST-announcement-bar:hover .GST-marquee-enabled {
  animation-play-state: paused;
}

/* ✅ FIXED ALIGNMENT */
.GST-announcement-bar .GST-announcement-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0px 5px;
  flex-shrink: 0;
  list-style: none;
  line-height: 1; /* 🔥 important */
}

/* ✅ DOT PERFECT CENTER */
.GST-announcement-bar .GST-announcement-dot,
.GST-announcement-bar .GST-announcement-dot-separator {
  width: 9px;
  height: 9px;
  background-color: #428bc1;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  align-self: center; /* 🔥 key fix */
}

/* TEXT FIX */
.GST-announcement-bar .GST-announcement-text {
  font-weight: 400;
  color: #ffffff;
}

/* REMOVE DEFAULT P MARGIN (CRITICAL FIX) */
.GST-announcement-bar .GST-announcement-text p {
  margin: 0;
}

/* LINK ALIGNMENT */
.GST-announcement-bar .GST-announcement-text a {
  color: black;
  margin-left: 1px;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  line-height: 1.4; /* better alignment */
}

.GST-announcement-bar .GST-announcement-text a:hover {
  color: black;
}

.GST-announcement-bar .GST-announcement-text strong {
  color: #0074d9;
  font-weight: 600;
}

.GST-announcement-bar .GST-announcement-text em {
  color: #999;
  margin-left: 1px;
  font-style: normal;
}

/* MARQUEE */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .GST-announcement-bar .GST-announcement-text a {
    font-size: 12px;
  }
  .GST-announcement-bar {
    padding: 11px 0;
  }
}

/*New  Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transition: left 0.4s ease;
  overflow-y: auto;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
  left: 0;
}

.nav-tabs-mobile .tab-btn {
  border: none;
  background: transparent;

  color: #666;
}

.nav-tabs-mobile .tab-btn.active {
  background: #1e3a8a;
  color: white;
  border-radius: 8px;
  margin: 6px;
}

.category-card {
  border-radius: 12px;
  padding: 12px 16px;
  color: white;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 85px;
  display: flex;
  align-items: center;
}

.category-title {
  flex: 1;
}

.category-img {
  height: 85px;
  width: 85px;
  object-fit: cover;
  border-radius: 8px;
}

.mobile-bottom-nav {
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.chat-icon {
  position: relative;
}

/* Active Tab Colors */
#men-tab.active {
  background: #1e3a8a !important;
  color: white !important;
}

#women-tab.active {
  background: #e63939 !important;
  color: white !important;
}

#kids-tab.active {
  background: #2e9d3c !important;
  color: white !important;
}

#accessories-tab.active {
  background: #1f1f1f !important;
  color: white !important;
}

/* Default inactive tabs */
.nav-tabs-mobile .nav-link {
  background: transparent;
  color: #555;
  font-size: 14px;
  border: none;
  border-radius: 0;
}

.nav-tabs-mobile .nav-link:hover {
  color: #333;
}

.category-card {
  padding: 12px 16px;
  border-radius: 10px;
}

.card-content {
  width: 100%;
}

.category-title {
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}

.category-img {
  margin-left: auto; /* pushes image to extreme right */
  max-width: 120px;
  height: auto;
}

/* Collections Section  */
.collections-scroll::-webkit-scrollbar {
  display: none;
}

.collection-card {
  width: 210px;
  height: 110px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.card-content {
  position: absolute;
  bottom: 12px;
  left: 14px;
  color: white;
  font-weight: 700;
  font-size: 17px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.collection-name {
  display: block;
}
