.mobile-collection-section {
  background: #fff;
  padding: 12px 0 10px;
}

.mobile-collection-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 2px 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.mobile-collection-track::-webkit-scrollbar {
  display: none;
}

.mobile-collection-item {
  min-width: 58px;
  text-decoration: none;
  text-align: center;
  color: #16365c;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.mobile-collection-thumb {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border: 2px solid #d8d8d8;
  margin: 0 auto 8px;
}

.mobile-collection-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mobile-collection-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

.video-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.video-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 16px;
}

.video-hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.video-hero-heading {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.video-hero-subtext {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}

.video-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.video-hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-arrow {
  display: block;
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
}

.trust-badges-section {
  background: #f4f5f7;
  border-bottom: 1px solid #e2e4e8;
  padding: 28px 0;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 16px;
}

.trust-badge-icon {
  width: 64px;
  height: 64px;
  background: #1a2e4a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-icon svg {
  width: 36px;
  height: 36px;
  color: #fff;
}

.trust-badge-label {
  font-size: 13px;
  font-weight: 600;
  color: #1a2e4a;
  text-align: center;
  margin: 0;
}

.trust-badges-dots {
  display: none;
}

.trust-badge-dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 999px;
  background: rgba(26, 46, 74, 0.24);
}

.trust-badge-dot.is-active {
  width: 22px;
  background: #1a2e4a;
}

.collection-banner-section {
  background: #fff;
  padding: 40px 0;
}

.collection-banner-card {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  text-decoration: none;
}

.collection-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-banner-card:hover .collection-banner-img {
  transform: scale(1.05);
}

.collection-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.18) 55%, transparent 100%);
  z-index: 1;
}

.collection-banner-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 20px;
  color: #fff;
  text-align: center;
  z-index: 2;
}

.collection-banner-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}

.collection-banner-title {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.collection-banner-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/*.pop-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(3, minmax(0, 1fr));*/
/*  gap: 20px;*/
/*}*/

.pop-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
   padding: 20px !important;
}

.pop-cat-card {
  border: 1px solid #e8edf3;
  /*border-radius: 12px;*/
  overflow: hidden;
  background: #fff;
}

.pop-cat-img-wrap {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.pop-cat-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.pop-cat-body {
  padding: 14px 14px 16px;
  text-align: center;
}

.pop-cat-name {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: #16365c;
}

/*.pop-cat-btn {*/
/*  text-decoration: none;*/
/*  font-size: 12px;*/
/*  font-weight: 700;*/
/*  letter-spacing: 0.3px;*/
/*}*/

.pop-cat-btn{
        text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    background: #000000;
    padding: 2px;
    border-radius: 20px;
    width: 120px;
    color: white;
}

@media (max-width: 991px) {
  .pop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .trust-badges-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 calc(50vw - 84px) 4px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .trust-badges-grid::-webkit-scrollbar {
    display: none;
  }

  .trust-badge-item {
    min-width: 280px;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .trust-badges-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .pop-grid {
    /*grid-template-columns: 1fr;*/
    grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 0px !important;
  }
}

