
.pivenor-product-page {
  padding-block: var(--space-6) var(--space-section);
}

.pivenor-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xl);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.pivenor-breadcrumb a {
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-medium);
  transition: color var(--duration-fast) var(--ease-out);
}

.pivenor-breadcrumb a:hover {
  color: var(--color-accent-1);
}

.pivenor-breadcrumb__sep {
  color: var(--color-border-strong);
  font-size: var(--text-l);
}

.pivenor-breadcrumb__current {
  color: var(--color-text-primary);
  font-weight: var(--font-weight-semibold);
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pivenor-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

@media (min-width: 1024px) {
  .pivenor-product-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

.pivenor-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

@media (min-width: 1024px) {
  .pivenor-gallery {
    position: sticky;
    top: var(--space-6);
    height: fit-content;
  }
}

.pivenor-gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 520px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--color-accent-1) 6.5%, var(--color-surface)), var(--color-surface));
  border-radius: var(--radius-5xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.pivenor-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--duration-slow) var(--ease-out);
  cursor: zoom-in;
}

.pivenor-gallery__main:hover .pivenor-gallery__img {
  transform: scale(1.04);
}

.pivenor-gallery__wishlist {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 44px;
  height: 44px;
  background: rgba(var(--rgb-white), var(--alpha-95));
  backdrop-filter: blur(8px);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-half-percent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-muted);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-fast) var(--ease-out);
  z-index: 3;
  padding: 0;
}

.pivenor-gallery__wishlist:hover {
  transform: scale(1.1);
  border-color: var(--color-error);
  color: var(--color-error);
}

.pivenor-gallery__wishlist.is-active {
  color: var(--color-error);
  background: color-mix(in srgb, var(--color-error) 9.5%, var(--color-surface));
  border-color: var(--color-error);
}

.pivenor-gallery__wishlist.is-active svg {
  fill: currentColor;
  stroke: currentColor;
}

.pivenor-gallery__wishlist .pivenor-icon-svg {
  width: 20px;
  height: 20px;
}

.pivenor-gallery__share {
  position: absolute;
  top: calc(var(--space-4) + var(--space-11) + var(--space-2));
  right: var(--space-4);
  width: 44px;
  height: 44px;
  background: rgba(var(--rgb-white), var(--alpha-95));
  backdrop-filter: blur(8px);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-half-percent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-muted);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-fast) var(--ease-out);
  z-index: 3;
  padding: 0;
}

.pivenor-gallery__share:hover {
  transform: scale(1.1);
  border-color: var(--color-accent-1);
  color: var(--color-accent-1);
}

.pivenor-gallery__share .pivenor-icon-svg {
  width: 20px;
  height: 20px;
}

.pivenor-gallery__badge {
  position: absolute;
  z-index: 2;
  font-size: var(--text-l);
  font-weight: var(--font-weight-extrabold);
  padding: var(--space-1-25) var(--space-2-5);
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 8px rgba(var(--rgb-black), var(--alpha-15));
  letter-spacing: var(--tracking-fixed);
}

.pivenor-gallery__badge--discount {
  top: var(--space-4);
  left: var(--space-4);
  background: var(--color-accent-1);
  color: var(--color-text-on-accent);
}

.pivenor-gallery__badge--oos {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(var(--rgb-black), var(--alpha-75));
  color: white;
  font-size: var(--text-xl);
  padding: var(--space-2) var(--space-4);
}

.pivenor-gallery__badge--low {
  bottom: var(--space-4);
  left: var(--space-4);
  background: var(--color-warning);
  color: white;
}

.pivenor-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(var(--rgb-white), var(--alpha-95));
  backdrop-filter: blur(6px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-half-percent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-primary);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-fast) var(--ease-out);
  z-index: 3;
  padding: 0;
}

.pivenor-gallery__arrow:hover {
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  transform: translateY(-50%) scale(1.08);
}

.pivenor-gallery__arrow--prev {
  left: var(--space-3);
}

.pivenor-gallery__arrow--next {
  right: var(--space-3);
}

.pivenor-gallery__counter {
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-4);
  background: rgba(var(--rgb-black), var(--alpha-55));
  color: white;
  font-size: var(--text-l);
  font-weight: var(--font-weight-semibold);
  padding: var(--space-1) var(--space-2-5);
  border-radius: var(--radius-semi-max);
  letter-spacing: var(--tracking-4);
  z-index: 3;
}

.pivenor-gallery__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-2) 0;
}

.pivenor-gallery__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-semi-max);
  border: none;
  padding: 0;
  background: var(--color-border);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.pivenor-gallery__dot:hover {
  background: var(--color-text-secondary);
  transform: scale(1.2);
}

.pivenor-gallery__dot.is-active {
  width: 24px;
  background: var(--color-accent-1);
}

.pivenor-product-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.pivenor-product-info__title {
  font-size: var(--text-6xl);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-n2);
  color: var(--color-text-primary);
  margin: 0;
}

@media (min-width: 768px) {
  .pivenor-product-info__title {
    font-size: var(--text-9xl);
  }
}

.pivenor-product-info__rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: nowrap;
  line-height: var(--leading-mtight);
  margin-top: calc(var(--space-1) - var(--space-6));
  margin-bottom: calc(var(--space-1) * -1);
}

.pivenor-rating-stars {
  display: inline-flex;
  align-items: center;
  gap: var(--space-0-5);
  color: var(--color-rating-star);
  flex: 0 0 auto;
  line-height: var(--leading-mtight);
}

.pivenor-rating-star {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  color: var(--color-rating-star-empty);
  font-size: inherit;
  line-height: var(--leading-mtight);
}

.pivenor-rating-star__empty,
.pivenor-rating-star__fill {
  position: absolute;
  inset: 0;
  display: block;
  line-height: var(--leading-mtight);
}

.pivenor-rating-star__fill {
  color: var(--color-rating-star);
  overflow: hidden;
  white-space: nowrap;
}

.pivenor-rating-stars--pdp {
  font-size: var(--text-2xl);
  transform: translateY(0.08em);
}

.pivenor-product-info__rating-value {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xl);
  line-height: var(--leading-mtight);
  color: var(--color-text-primary);
  font-weight: var(--font-weight-extrabold);
}

.pivenor-product-info__rating-text {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xl);
  line-height: var(--leading-mtight);
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-medium);
  white-space: nowrap;
}

.pivenor-product-info__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.pivenor-product-info__price-current {
  font-size: var(--text-9xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-accent-1);
  line-height: var(--leading-mtight);
  letter-spacing: var(--tracking-n3);
}

@media (min-width: 768px) {
  .pivenor-product-info__price-current {
    font-size: var(--text-15xl);
  }
}

.pivenor-product-info__price-mrp {
  font-size: var(--text-2xl);
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-weight: var(--font-weight-medium);
}

.pivenor-product-info__short-desc {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
}

.pivenor-product-info__short-desc p {
  margin: 0;
}

.pivenor-product-info__variations {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.pivenor-variation {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.pivenor-variation__label {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-text-primary);
}

.pivenor-variation__options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.pivenor-variation__btn {
  min-width: 48px;
  height: 40px;
  padding: 0 var(--space-3);
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pivenor-variation__btn:hover {
  border-color: var(--color-accent-1);
  color: var(--color-accent-1);
}

.pivenor-variation__btn.is-selected {
  border-color: var(--color-accent-1);
  background: var(--color-accent-1);
  color: var(--color-text-on-accent);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--color-accent-1) 25%, transparent);
}

.pivenor-variation__btn.is-unavailable {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.pivenor-variation__error {
  font-size: var(--text-xl);
  color: var(--color-error);
  font-weight: var(--font-weight-semibold);
  margin: 0;
}

.pivenor-product-info__purchase {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.pivenor-product-info__qty-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.pivenor-product-info__qty-label {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-text-primary);
}

.pivenor-product-info__qty-controls {
  display: flex;
  align-items: center;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-3xl);
  width: fit-content;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pivenor-product-info__qty-btn {
  width: 46px;
  height: 46px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-accent-1);
  transition: all var(--duration-fast) var(--ease-out);
  padding: 0;
}

.pivenor-product-info__qty-btn:hover:not(:disabled) {
  background: color-mix(in srgb, var(--color-accent-1) 6.5%, var(--color-surface));
}

.pivenor-product-info__qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pivenor-product-info__qty-val {
  min-width: 52px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-extrabold);
  font-size: var(--text-3xl);
  color: var(--color-accent-1);
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.pivenor-product-info__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.pivenor-product-info__btn-atc,
.pivenor-product-info__btn-buy {
  height: 52px;
  border: none;
  border-radius: var(--radius-3xl);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  font-family: inherit;
  position: relative;
}

.pivenor-product-info__btn-atc span,
.pivenor-product-info__btn-buy span,
.pivenor-sticky-bar__atc span {
  white-space: nowrap;
}

.pivenor-product-info__btn-atc {
  background: var(--color-surface);
  color: var(--color-accent-1);
  border: 2px solid var(--color-accent-1);
}

.pivenor-product-info__btn-atc:hover:not(:disabled) {
  background: color-mix(in srgb, var(--color-accent-1) 6.5%, var(--color-surface));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--color-accent-1) 20%, transparent);
}

.pivenor-product-info__btn-atc:disabled {
  background: var(--color-surface-alt);
  border-color: var(--color-border);
  color: var(--color-text-muted);
  cursor: not-allowed;
}

.pivenor-product-info__btn-buy {
  background: var(--color-accent-1);
  color: var(--color-text-on-accent);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--color-accent-1) 25%, transparent);
  border: 2px solid transparent;
}

.pivenor-product-info__btn-buy:hover:not(:disabled) {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--color-accent-1) 35%, transparent);
}

.pivenor-product-info__btn-buy:disabled {
  background: var(--color-surface-alt);
  box-shadow: none;
  cursor: not-allowed;
  color: var(--color-text-muted);
}

.pivenor-product-info__cart-status {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--color-success-bg);
  border-radius: var(--radius-3xl);
  border: 1px solid var(--color-success-border);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-success-text);
}

.pivenor-product-info__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(135deg, color-mix(in srgb, var(--color-accent-1) 6.5%, var(--color-surface)), var(--color-surface));
  border-radius: var(--radius-5xl);
  border: 1px solid var(--color-border);
}

.pivenor-product-info__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 0;
}

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

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

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

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

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

.pivenor-product-info__trust-icon svg {
  width: 20px;
  height: 20px;
}

.pivenor-product-info__trust-title {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  line-height: var(--leading-tight);
}

@media (max-width: 768px) {
  .pivenor-product-info__trust {
    gap: var(--space-2);
    padding: var(--space-3);
    background: var(--color-surface);
    border-radius: var(--radius-3xl);
  }

  .pivenor-product-info__trust-item {
    flex-direction: column;
    justify-content: flex-start;
    gap: var(--space-2);
    min-height: 92px;
    padding: var(--space-3) var(--space-2);
    text-align: center;
    background: var(--color-surface-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-3xl);
  }

  .pivenor-product-info__trust-icon {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-xl);
  }

  .pivenor-product-info__trust-icon svg {
    width: 17px;
    height: 17px;
  }

  .pivenor-product-info__trust-title {
    font-size: var(--text-l);
    line-height: var(--leading-tight);
  }
}

.pivenor-product-tabs {
  margin-bottom: var(--space-12);
}

.pivenor-tabs-header {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--color-border);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.pivenor-tabs-header::-webkit-scrollbar {
  display: none;
}

.pivenor-tab-btn {
  padding: var(--space-3) var(--space-5);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
}

.pivenor-tab-btn:hover {
  color: var(--color-text-primary);
}

.pivenor-tab-btn.is-active {
  color: var(--color-accent-1);
  border-bottom-color: var(--color-accent-1);
}

.pivenor-tabs-body {
  padding: var(--space-6) 0;
}

.pivenor-tab-panel {
  display: none;
}

.pivenor-tab-panel.is-active {
  display: block;
  animation: pivenor-tab-fade var(--duration-normal) var(--ease-out);
}

@keyframes pivenor-tab-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pivenor-tab-content {
  font-size: var(--text-2xl);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
  max-width: 800px;
}

.pivenor-tab-content p {
  margin-bottom: var(--space-4);
}

.pivenor-tab-content p:last-child {
  margin-bottom: 0;
}

.pivenor-tab-empty {
  color: var(--color-text-muted);
  font-size: var(--text-xl);
  padding: var(--space-8) 0;
  text-align: center;
}

.pivenor-specs-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 600px;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.pivenor-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) var(--space-4);
  background: var(--color-background);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-xl);
}

.pivenor-spec-row:last-child {
  border-bottom: none;
}

.pivenor-spec-row:nth-child(even) {
  background: var(--color-surface);
}

.pivenor-spec-label {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-secondary);
}

.pivenor-spec-value {
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  text-align: right;
}

.pivenor-reviews-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 800px;
}

.pivenor-review {
  padding: var(--space-4);
  background: var(--color-surface);
  border-radius: var(--radius-3xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.pivenor-review-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-3);
}

.pivenor-review-author {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
}

.pivenor-rating-stars--review {
  font-size: var(--text-xl);
}

.pivenor-review-date {
  font-size: var(--text-l);
  color: var(--color-text-muted);
  margin-left: auto;
}

.pivenor-review-text {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
  margin: 0;
}

.pivenor-related-section {
  padding-top: var(--space-12);
  border-top: 2px solid var(--color-border);
}

.pivenor-section-title--center {
  text-align: center;
  margin-bottom: var(--space-8);
}

.pivenor-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(var(--rgb-white), var(--alpha-95));
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-border);
  z-index: 997;
  transform: translateY(100%);
  transition: transform var(--duration-normal) var(--ease-out);
  box-shadow: 0 -4px 20px var(--color-shadow);
}

.pivenor-sticky-bar.is-visible {
  transform: translateY(0);
}

.pivenor-sticky-bar__inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.pivenor-sticky-bar__info {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.pivenor-sticky-bar__price {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-accent-1);
}

.pivenor-sticky-bar__mrp {
  font-size: var(--text-xl);
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-weight: var(--font-weight-regular);
}

.pivenor-sticky-bar__actions {
  display: flex;
  gap: var(--space-2);
}

.pivenor-sticky-bar__wl {
  width: 44px;
  height: 44px;
  border: 2px solid var(--color-border);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: all var(--duration-fast) var(--ease-out);
  padding: 0;
  flex-shrink: 0;
}

.pivenor-sticky-bar__wl:hover {
  border-color: var(--color-error);
  color: var(--color-error);
}

.pivenor-sticky-bar__wl.is-active {
  color: var(--color-error);
  background: color-mix(in srgb, var(--color-error) 9.5%, var(--color-surface));
  border-color: var(--color-error);
}

.pivenor-sticky-bar__wl.is-active svg {
  fill: currentColor;
  stroke: currentColor;
}

.pivenor-sticky-bar__wl .pivenor-icon-svg {
  width: 18px;
  height: 18px;
}

.pivenor-sticky-bar__atc {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-accent-1);
  color: var(--color-text-on-accent);
  border: none;
  border-radius: var(--radius-xl);
  padding: 0 var(--space-4);
  height: 44px;
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  font-family: inherit;
  transition: background var(--duration-fast) var(--ease-out);
  flex-shrink: 0;
  white-space: nowrap;
}

.pivenor-sticky-bar__atc:hover {
  background: var(--color-accent-hover);
}

.pivenor-sticky-bar__atc:disabled {
  background: var(--color-surface-alt);
  color: var(--color-text-muted);
  cursor: not-allowed;
}

.pivenor-sticky-bar__atc .pivenor-icon-svg {
  width: 18px;
  height: 18px;
}

@media (min-width: 768px) {
  .pivenor-sticky-bar {
    display: none;
  }
}

@media (max-width: 767px) {
  .pivenor-product-page {
    padding-bottom: calc(var(--bottom-nav-height) + var(--space-6));
  }
}

@media (max-width: 480px) {
  .pivenor-product-info__actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pivenor-gallery__img,
  .pivenor-tab-panel.is-active,
  .pivenor-sticky-bar {
    transition: none;
    animation: none;
  }
}

.pivenor-product-info__btn-atc .pivenor-icon-svg,
.pivenor-product-info__btn-buy .pivenor-icon-svg,
.pivenor-sticky-bar__atc .pivenor-icon-svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
