
.pivenor-home-content {
  min-height: calc(100vh - 200px);
}

.pivenor-hero {
  background: transparent;
  margin: var(--space-3) 0 var(--space-1);
}

.pivenor-hero__viewport {
  position: relative;
  background: transparent;
}

.pivenor-hero__track {
  background: transparent;
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.pivenor-hero__track::-webkit-scrollbar { display: none; }

.pivenor-hero__track:focus-visible {
  outline: 3px solid var(--color-accent-1);
  outline-offset: 2px;
}

.pivenor-hero__slide {
  position: relative;
  flex: 0 0 auto;
  width: min(84vw, 440px);
  scroll-snap-align: start;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: flex-end;
  border-radius: var(--radius-7xl);
  box-shadow: none;
  z-index: 0;
  transform: translateZ(0);
}

.pivenor-hero__slide-inner {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  z-index: 0;
  transform: translateZ(0);
}

.pivenor-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pivenor-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pivenor-hero__glow {
  position: absolute;
  z-index: 1;
  border-radius: var(--radius-half-percent);
  pointer-events: none;
}
.pivenor-hero__glow--a {
  width: 55%;
  height: 55%;
  top: -18%;
  right: -12%;
  background: rgba(var(--rgb-white), var(--alpha-35));
  filter: blur(clamp(20px, 9vw, 44px));
}
.pivenor-hero__glow--b {
  width: 42%;
  height: 42%;
  bottom: -14%;
  right: 16%;
  background: rgba(var(--rgb-white), var(--alpha-20));
  filter: blur(clamp(16px, 7vw, 34px));
}

.pivenor-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(var(--rgb-black), var(--alpha-55)) 0%, rgba(var(--rgb-black), var(--alpha-20)) 45%, transparent 75%);
}

.pivenor-hero__dot:focus-visible {
  outline: 2px solid var(--color-accent-1);
  outline-offset: 2px;
}

.pivenor-hero__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2-5);
  margin-top: var(--space-2-5);
}

.pivenor-hero__dots {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.pivenor-hero__dot {
  width: 12px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.pivenor-hero__dot::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: var(--radius-semi-max);
  background: rgba(var(--rgb-black), var(--alpha-15));
  transition: width 220ms ease,
              background-color 220ms ease,
              transform 220ms ease;
}
.pivenor-hero__dot.is-active {
  width: 32px;
}
.pivenor-hero__dot.is-active::after {
  width: 32px;
  background: var(--color-accent-1);
}

@media (max-width: 768px) {
  .pivenor-hero {
    margin-top: 0;
  }
  .pivenor-hero .pivenor-container {
    padding-inline: 0;
  }
  .pivenor-hero__track {
    gap: var(--space-2);
    border-radius: 0;
    box-shadow: none;
  }
  .pivenor-hero__slide {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .pivenor-section-header {
    margin-top: var(--space-3);
  }
}



.pivenor-home-section {
  margin-bottom: var(--space-5);
}

.pivenor-home-section--no-hero {
  margin-top: var(--space-5);
}

.pivenor-home-section .pivenor-container {
  padding-bottom: var(--space-2);
}

.pivenor-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-2);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--color-border);
}



.pivenor-section-title {
  margin-top: 0;
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
}

.pivenor-section-link {
  font-size: var(--text-l);
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent-1);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.pivenor-section-link:hover {
  color: var(--color-accent-hover);
}

.pivenor-cat-scroll-outer {
  overflow-x: auto;
  padding: var(--space-1) 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.pivenor-cat-scroll-outer::-webkit-scrollbar { display: none; }

.pivenor-cat-scroll-inner {
  display: flex;
  gap: var(--space-5);
  flex-wrap: nowrap;
  width: max-content;
}

.pivenor-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2-5);
  text-decoration: none;
  flex-shrink: 0;
  width: 80px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.pivenor-cat-item:active { transform: scale(0.95); }

.pivenor-cat-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-semi-max);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(var(--rgb-black), var(--alpha-06));
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
  background: color-mix(in srgb, var(--color-accent-1) 6.5%, var(--color-surface));
}

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

.pivenor-cat-item:hover .pivenor-cat-img {
  transform: translateY(-4px);
}

.pivenor-cat-name {
  font-size: var(--text-l);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  text-align: center;
  line-height: var(--leading-ltight);
}

.pivenor-trust-strip {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-4) 0;
  margin-top: var(--space-4);
}

.pivenor-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--space-2);
  row-gap: var(--space-3-5);
}

.pivenor-trust-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-2);
  padding: var(--space-2-5);
  height: 70px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-3xl);
  box-shadow: 0 1px 4px rgba(var(--rgb-black), var(--alpha-05));
  overflow: hidden;
}

.pivenor-trust-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pivenor-trust-icon--price {
  background: var(--color-trust-price-bg);
  color: var(--color-trust-price-icon);
}

.pivenor-trust-icon--shipping {
  background: var(--color-trust-shipping-bg);
  color: var(--color-trust-shipping-icon);
}

.pivenor-trust-icon--authentic {
  background: var(--color-trust-authentic-bg);
  color: var(--color-trust-authentic-icon);
}

.pivenor-trust-icon--support {
  background: var(--color-trust-support-bg);
  color: var(--color-trust-support-icon);
}

.pivenor-trust-icon svg {
  width: 16px !important;
  height: 16px !important;
}

.pivenor-trust-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-0-5);
  min-width: 0;
}

.pivenor-trust-title {
  font-size: var(--text-m);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  line-height: var(--leading-tight);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pivenor-trust-sub {
  font-size: var(--text-s);
  color: var(--color-text-secondary);
  line-height: var(--leading-tight);
}

@media (min-width: 1024px) {

  .pivenor-home-section { margin-bottom: var(--space-4); }

  .pivenor-section-title { font-size: var(--text-6xl); }
  .pivenor-section-header {
    margin-bottom: var(--space-2);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid var(--color-border);
  }

  .pivenor-cat-scroll-inner { gap: var(--space-7); }
  .pivenor-cat-item { width: 100px; }
  .pivenor-cat-img  { width: 100px; height: 100px; }
  .pivenor-cat-name { font-size: var(--text-l); }

  .pivenor-trust-strip {
    padding: var(--space-7) 0;
    margin-top: var(--space-10);
  }

  .pivenor-trust-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
  }

  .pivenor-trust-item {
    flex: 1;
    flex-direction: row;
    height: auto;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 var(--space-6);
    justify-content: center;
    gap: var(--space-3-5);
  }

  .pivenor-trust-item:first-child {
    justify-content: flex-start;
    padding-left: 0;
  }

  .pivenor-trust-item:last-child {
    justify-content: flex-end;
    padding-right: 0;
  }

  .pivenor-trust-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-3xl);
  }

  .pivenor-trust-icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .pivenor-trust-title { font-size: var(--text-xl); white-space: normal; }
  .pivenor-trust-sub   { font-size: var(--text-l); }

  .pivenor-trust-divider {
    width: 1px;
    height: 44px;
    background: var(--color-border);
    flex-shrink: 0;
  }
}

@media (max-width: 1023px) {
  .pivenor-trust-divider { display: none; }
}
