/* Home Page Styles */
body {
  margin: 0;
  background: #f6f7fb;
  padding:0;
  
}
#heroCarousel{
  margin-top:0;
}
header{
  margin-bottom:0;
}
.section-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-soft {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #eee;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arrival-card img {
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

.arrival-card {
  min-width: 260px;
}

.scroll-wrapper {
  overflow: hidden;
  position: relative;
}

.scroll-track {
  display: flex;
  gap: 16px;
  scroll-behavior: smooth;
  overflow-x: auto;
  padding-bottom: 6px;
}

.scroll-track::-webkit-scrollbar {
  height: 6px;
}

.scroll-track::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 6px;
}

.scroll-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #111;
  color: #fff;
}

.category-arrival-card {
  min-width: 260px;
  transition: transform 0.2s ease;
}

.category-arrival-card:hover {
  transform: translateY(-4px);
}

.category-arrival-card img {
  height: 220px;
  width: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  background: #f8fafc;
  padding: 8px;
}

.brand-logo {
  height: 80px;
  object-fit: contain;
  
}
.custom-caption {
  position: absolute;
  top: 6%;
  left: 10%;   /* now this WILL work */
  z-index: 10;
}
.custom-btn {
  background-color: #000;   /* pure black */
  color: #fff;              /* white text */
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease;
}
.custom-btn:hover {
  background-color: #222;   /* slightly lighter black */
  transform: translateY(-2px);
}