.user{}
.user img {
  border-radius : 0;
}

/* =========================================================
   MODERN E-COMMERCE HOMEPAGE — custom overrides
   ========================================================= */

/* ── CSS Custom Properties (synced via base_color if needed) ── */
:root {
  --clr-primary: #4f46e5;
  --clr-primary-dark: #3730a3;
  --clr-primary-light: #ede9fe;
  --clr-secondary: #f59e0b;
  --clr-dark: #111827;
  --clr-muted: #6b7280;
  --clr-surface: #f9fafb;
  --clr-white: #ffffff;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.15);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ── HERO SECTION (static background) ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,24,39,.75) 0%, rgba(79,70,229,.45) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-content {
  max-width: 680px;
  color: var(--clr-white);
}

.hero-badge {
  display: inline-block;
  background: var(--clr-secondary);
  color: var(--clr-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--clr-white);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Hero search */
.hero-search-form {
  margin-bottom: 32px;
}

.hero-search-wrap {
  display: flex;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 560px;
}

.hero-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-size: 1rem;
  color: var(--clr-dark);
  background: transparent;
}

.hero-search-btn {
  border: none;
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: 0 28px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.hero-search-btn:hover {
  background: var(--clr-primary-dark);
}

/* Hero CTA buttons */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: all var(--transition);
}

.hero-btn--primary {
  background: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(79,70,229,.4);
}

.hero-btn--primary:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-2px);
  color: var(--clr-white);
  box-shadow: 0 8px 28px rgba(79,70,229,.5);
}

.hero-btn--outline {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,.6);
}

.hero-btn--outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--clr-white);
  color: var(--clr-white);
  transform: translateY(-2px);
}

/* ── HERO SLIDER ── */
.hero-slider-section {
  position: relative;
}

.hero-slide-img {
  height: 100vh;
  object-fit: cover;
  filter: brightness(.65);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,24,39,.6) 0%, rgba(79,70,229,.3) 100%);
}

.hero-slide-caption {
  bottom: 50%;
  transform: translateY(50%);
  text-align: left;
  left: 10%;
  right: 10%;
}

.hero-indicators {
  bottom: 24px;
}

.hero-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  transition: all var(--transition);
}

.hero-indicators button.active {
  background: var(--clr-white);
  width: 28px;
  border-radius: 999px;
}

.hero-carousel-prev,
.hero-carousel-next {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: background var(--transition);
}

.hero-carousel-prev { left: 24px; }
.hero-carousel-next { right: 24px; }

.hero-carousel-prev:hover,
.hero-carousel-next:hover {
  background: rgba(255,255,255,.35);
}

.hero-nav-icon {
  font-size: 1.4rem;
  color: var(--clr-white);
}

/* ── TRUST BADGES STRIP ── */
.trust-strip {
  background: var(--clr-white);
  border-bottom: 1px solid #e5e7eb;
  padding: 18px 0;
  box-shadow: var(--shadow-sm);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 16px;
}

.trust-icon {
  font-size: 1.8rem;
  color: var(--clr-primary);
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--clr-dark);
  line-height: 1.3;
}

.trust-item span {
  font-size: .78rem;
  color: var(--clr-muted);
}

/* ── CATEGORIES SECTION ── */
.categories-section {
  background: var(--clr-surface);
}

.categories-scroll-wrap {
  overflow-x: auto;
  padding-bottom: 8px;
}

.categories-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 4px 0 8px;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--clr-white);
  border: 1.5px solid #e5e7eb;
  border-radius: 999px;
  text-decoration: none;
  color: var(--clr-dark);
  font-weight: 600;
  font-size: .88rem;
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.category-pill:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(79,70,229,.3);
}

.category-pill-icon {
  font-size: 1rem;
  opacity: .75;
}

/* ── Section header tweaks ── */
.section-header .subtitle {
  display: inline-block;
  background: var(--clr-primary-light);
  color: var(--clr-primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* ── Product card — modern lift ── */
.product-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.product-item .product-thumb {
  position: relative;
  overflow: hidden;
}

.product-item .product-thumb img {
  transition: transform .4s ease;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-item:hover .product-thumb img {
  transform: scale(1.06);
}

.product-item .product-content {
  padding: 16px 18px 20px;
}

.product-item .product-title a {
  font-weight: 700;
  color: var(--clr-dark);
  font-size: .95rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-item .product-title a:hover {
  color: var(--clr-primary);
}

.product-item .product-price .current-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-primary);
}

.product-item .add-to-cart.cmn--btn-2 {
  display: block;
  text-align: center;
  margin-top: 12px;
  padding: 9px 0;
  background: var(--clr-primary);
  color: var(--clr-white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  transition: background var(--transition);
}

.product-item .add-to-cart.cmn--btn-2:hover {
  background: var(--clr-primary-dark);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .hero-slide-img { height: 70vh; }
  .hero-slide-caption { left: 5%; right: 5%; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .hero-slide-img { height: 55vh; }
  .trust-strip-inner { justify-content: flex-start; }
  .categories-row { flex-wrap: nowrap; justify-content: flex-start; }
  .hero-carousel-prev, .hero-carousel-next { display: none; }
}

@media (max-width: 575px) {
  .hero-slide-caption { bottom: auto; top: 50%; transform: translateY(-50%); }
  .hero-cta-group { flex-direction: column; }
  .hero-btn { justify-content: center; }
}