/* ============================================
   KOVA — Product Page (Zalando-inspired)
   ============================================ */

/* ---------- Product Layout ---------- */
.product-page {
  padding: var(--space-md) 0 0;
}

.product-page__breadcrumb {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.product-page__breadcrumb a {
  transition: color 0.15s;
}

.product-page__breadcrumb a:hover {
  color: var(--color-text-primary);
  text-decoration: underline;
}

.product-page__layout {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 1024px) {
  .product-page__layout {
    flex-direction: row;
    gap: 0;
  }
}

/* ---------- Gallery (Zalando: grid of images on desktop) ---------- */
.gallery {
  flex: 1;
  min-width: 0;
}

@media (min-width: 1024px) {
  .gallery {
    flex: 0 0 60%;
    padding-right: 24px;
  }
}

.gallery__desktop {
  display: none;
}

@media (min-width: 1024px) {
  .gallery__desktop {
    display: flex;
    gap: 8px;
  }
  .gallery__mobile { display: none; }
}

/* Thumbnails — Zalando uses vertical strip */
.gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 64px;
  flex-shrink: 0;
  max-height: 600px;
  overflow-y: auto;
  scrollbar-width: none;
}

.gallery__thumbs::-webkit-scrollbar { display: none; }

.gallery__thumb {
  width: 64px;
  height: 80px;
  border: 1.5px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.15s;
  padding: 0;
  background: #F3F3F3;
  flex-shrink: 0;
}

.gallery__thumb:hover {
  border-color: #CCCCCC;
}

.gallery__thumb.active {
  border-color: var(--color-black);
}

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

/* Main image — Zalando: no zoom on hover, clean */
.gallery__main {
  flex: 1;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background-color: #F3F3F3;
  cursor: pointer;
}

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

/* Mobile: horizontal carousel */
.gallery__mobile {
  position: relative;
}

.gallery__carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
}

.gallery__carousel::-webkit-scrollbar { display: none; }

.gallery__carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  aspect-ratio: 3 / 4;
  background-color: #F3F3F3;
}

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

.gallery__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.gallery__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background-color: #D4D4D4;
  transition: background-color 0.2s, width 0.2s;
  padding: 0;
  border: none;
}

.gallery__dot.active {
  background-color: var(--color-black);
  width: 20px;
}

/* ---------- Product Info (Zalando style) ---------- */
.product-info {
  flex: 1;
  min-width: 0;
  padding: 16px 0;
}

@media (min-width: 1024px) {
  .product-info {
    flex: 0 0 40%;
    padding: 0 0 0 24px;
    position: sticky;
    top: calc(var(--header-height) + 16px);
    align-self: flex-start;
    max-height: calc(100vh - var(--header-height) - 32px);
    overflow-y: auto;
    scrollbar-width: none;
  }
  .product-info::-webkit-scrollbar { display: none; }
}

/* Brand — Zalando: bold, normal case, clickable look */
.product-info__brand {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 2px;
  text-decoration: none;
}

.product-info__brand:hover {
  text-decoration: underline;
}

/* Name — Zalando: lighter weight, smaller */
.product-info__name {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Price — Zalando: bold, clear hierarchy */
.product-info__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.product-info__price-current {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.product-info__price-current--sale {
  color: var(--color-text-primary);
}

.product-info__price-original {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.product-info__price-badge {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background-color: var(--color-sale);
  padding: 3px 8px;
  border-radius: 4px;
}

.product-info__price-save {
  display: block;
  font-size: 12px;
  color: var(--color-success);
  font-weight: 600;
  margin-top: 2px;
}

/* Rating — Zalando: compact */
.product-info__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 12px;
  color: var(--color-text-secondary);
}

.product-info__stars {
  display: flex;
  gap: 0;
  color: var(--color-black);
}

.product-info__stars svg {
  width: 13px;
  height: 13px;
}

/* Color selector — Zalando: horizontal swatches with label */
.product-info__colors {
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid #EEEEEE;
}

.product-info__color-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin-bottom: 10px;
}

.product-info__color-label strong {
  font-weight: 700;
  color: var(--color-text-primary);
}

.product-info__color-options {
  display: flex;
  gap: 8px;
}

.product-info__color-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  padding: 3px;
  transition: border-color 0.15s;
}

.product-info__color-btn:hover {
  border-color: #CCCCCC;
}

.product-info__color-btn.active {
  border-color: var(--color-black);
}

.product-info__color-inner {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  border: 2px solid #D9D9D9;
}

/* Size selector — Zalando: horizontal pills, tight */
.product-info__sizes {
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid #EEEEEE;
}

.product-info__size-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

/* Size section header */
.product-info__size-label {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}

.product-info__size-selected {
  font-weight: 400;
  color: #888;
}

.product-info__size-guide {
  font-size: 12px;
  color: #1a1a1a;
  text-decoration: underline;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-info__size-guide svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.5;
}

.product-info__size-guide:hover {
  color: #555;
}

/* Size grid — Nike/H&M style */
.product-info__size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.product-info__size-btn {
  height: 44px;
  padding: 0;
  border: 1.5px solid #D9D9D9;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.12s;
  background: var(--color-white);
  color: var(--color-text-primary);
  position: relative;
  font-family: inherit;
}

.product-info__size-btn:hover {
  border-color: #1a1a1a;
  background: #FAFAFA;
}

.product-info__size-btn.active {
  background-color: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
  font-weight: 700;
}

.product-info__size-btn.unavailable {
  color: #C4C4C4;
  background: #FAFAFA;
  border-color: #EBEBEB;
  cursor: not-allowed;
  position: relative;
  overflow: hidden;
}

.product-info__size-btn.unavailable::after {
  content: '';
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 50%;
  width: 1px;
  background: #C4C4C4;
  transform: rotate(25deg);
}

/* Error state — shake + red border when no size selected */
.product-info__size-grid.error {
  animation: shake 0.3s ease;
}

.product-info__size-grid.error .product-info__size-btn:not(.unavailable):not(.active) {
  border-color: #E53935;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* Size error message */
.product-info__size-error {
  font-size: 12px;
  color: #E53935;
  font-weight: 500;
  margin-top: 6px;
  display: none;
}

.product-info__size-error.visible {
  display: block;
}

/* Stock warning */
.product-info__stock {
  font-size: 13px;
  color: #D4660A;
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Add to bag — Zalando: orange/accent CTA */
.product-info__add-btn {
  width: 100%;
  height: 48px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  border-radius: 4px;
  background-color: #1a1a1a;
  color: var(--color-white);
  border: none;
  cursor: pointer;
  transition: background-color 0.15s;
}

.product-info__add-btn:hover {
  background-color: #333;
}

.product-info__add-btn:disabled {
  background-color: #E5E5E5;
  color: #999999;
  cursor: not-allowed;
}

.product-info__add-btn.added {
  background-color: var(--color-success);
}

/* Wishlist — Zalando: outline, icon only or with text */
.product-info__wishlist-btn {
  width: 100%;
  height: 44px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #D4D4D4;
  border-radius: 4px;
  transition: border-color 0.15s;
  background: var(--color-white);
  cursor: pointer;
}

.product-info__wishlist-btn:hover {
  border-color: var(--color-black);
}

.product-info__wishlist-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

/* Shipping info — Zalando: simple list with icons */
.product-info__shipping {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid #EEEEEE;
  margin-bottom: 0;
}

.product-info__shipping-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-secondary);
}

.product-info__shipping-item svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
  flex-shrink: 0;
  color: var(--color-text-primary);
}

/* Delivery estimates */
.product-info__delivery {
  padding: 14px 16px;
  background-color: #F8F8F8;
  border-radius: 4px;
  margin: 12px 0 0;
}

.product-info__delivery-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.product-info__delivery-item {
  font-size: 12px;
  color: var(--color-text-secondary);
  padding: 2px 0;
}

.product-info__delivery-item.highlighted {
  color: var(--color-text-primary);
  font-weight: 600;
}

/* Accordion — Zalando: clean, subtle borders */
.product-accordion {
  border-top: 1px solid #EEEEEE;
  margin-top: 20px;
}

.product-accordion__item {
  border-bottom: 1px solid #EEEEEE;
}

.product-accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  user-select: none;
}

.product-accordion__header svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
  transition: transform 0.2s;
  color: var(--color-text-muted);
}

.product-accordion__item.open .product-accordion__header svg {
  transform: rotate(180deg);
}

.product-accordion__body {
  display: none;
  padding-bottom: 14px;
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.product-accordion__item.open .product-accordion__body {
  display: block;
}

/* Social share */
.product-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  font-size: 12px;
  color: var(--color-text-muted);
}

.product-share__btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid #D4D4D4;
  color: var(--color-text-secondary);
  transition: all 0.15s;
}

.product-share__btn:hover {
  color: var(--color-text-primary);
  border-color: var(--color-text-primary);
}

.product-share__btn svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.5;
}

/* ---------- Social Proof (Viewers) ---------- */
.pdp-viewers {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #555;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: #F9F9F9;
  border-radius: 6px;
}

.pdp-viewers__dot {
  width: 8px;
  height: 8px;
  background: #00A67E;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.pdp-viewers strong { color: #1a1a1a; }

/* ---------- Buy Now Pay Later ---------- */
.pdp-bnpl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}

.pdp-bnpl strong { color: #1a1a1a; }

/* ---------- Trust Badges ---------- */
.pdp-trust {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.pdp-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid #F5F5F5;
}

.pdp-trust__item:last-child { border-bottom: none; }

.pdp-trust__item svg { flex-shrink: 0; }

.pdp-trust__item strong {
  display: block;
  font-size: 12px;
  color: #1a1a1a;
}

.pdp-trust__item span {
  font-size: 11px;
  color: #888;
}

/* ---------- Order Countdown ---------- */
.pdp-countdown {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #FFF8E6;
  border: 1px solid #FFE082;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 12px;
  color: #5D4E37;
}

.pdp-countdown svg { flex-shrink: 0; }
.pdp-countdown strong { color: #1a1a1a; }

/* ---------- Sticky Add to Bag (mobile) ---------- */
.pdp-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border-top: 1px solid #EEEEEE;
  padding: 10px 16px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pdp-sticky.visible { display: flex; }

@media (min-width: 1024px) {
  .pdp-sticky { display: none !important; }
}

.pdp-sticky__price {
  font-size: 18px;
  font-weight: 700;
}

.pdp-sticky__btn {
  height: 44px;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 700;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}

.pdp-sticky__btn:hover { background: #333; }

/* ---------- Reviews Section ---------- */
.reviews-section {
  padding: 40px 0;
  border-top: 1px solid #EEEEEE;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-summary__stars { color: #F5A623; font-size: 18px; letter-spacing: 1px; }
.reviews-summary__score { font-size: 16px; font-weight: 700; }
.reviews-summary__count { font-size: 13px; color: #888; }

/* Rating bars */
.reviews-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 360px;
  margin-bottom: 28px;
}

.reviews-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.reviews-bar__label {
  width: 14px;
  text-align: right;
  font-weight: 600;
  color: #555;
}

.reviews-bar__track {
  flex: 1;
  height: 8px;
  background: #F0F0F0;
  border-radius: 4px;
  overflow: hidden;
}

.reviews-bar__fill {
  height: 100%;
  background: #F5A623;
  border-radius: 4px;
  transition: width 0.5s ease;
}

.reviews-bar__count {
  width: 28px;
  font-size: 11px;
  color: #999;
}

/* Review cards */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card {
  padding: 20px;
  background: #FAFAFA;
  border-radius: 10px;
}

.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #888;
}

.review-card__name {
  font-size: 13px;
  font-weight: 600;
}

.review-card__verified {
  font-size: 10px;
  color: #00A67E;
  display: flex;
  align-items: center;
  gap: 3px;
}

.review-card__date {
  font-size: 11px;
  color: #999;
}

.review-card__stars {
  color: #F5A623;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.review-card__text {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

.review-card__size {
  font-size: 11px;
  color: #888;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #EEEEEE;
}

/* ---------- Related / Recently Viewed ---------- */
.product-related {
  padding: 40px 0;
  border-top: 1px solid #EEEEEE;
}

/* ---------- Size Guide (Slide-in Panel) ---------- */
.sg-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.sg-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sg-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

/* Panel slides from right */
.sg-panel-slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 480px;
  max-width: 100vw;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,0.1);
}

.sg-overlay.active .sg-panel-slide {
  transform: translateX(0);
}

/* Header */
.sg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #EEEEEE;
  flex-shrink: 0;
}

.sg-title {
  font-size: 16px;
  font-weight: 700;
}

.sg-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s;
}

.sg-close:hover { background: #F5F5F5; }

/* Tabs */
.sg-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #EEEEEE;
  flex-shrink: 0;
  padding: 0 24px;
}

.sg-tab {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #999;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
  margin-bottom: -1px;
  white-space: nowrap;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  font-family: inherit;
}

.sg-tab.active {
  color: #1a1a1a;
  border-bottom-color: #1a1a1a;
}

/* Scrollable body */
.sg-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

/* Unit toggle row */
.sg-unit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.sg-unit-label {
  font-size: 12px;
  color: #888;
}

.sg-unit-toggle {
  display: flex;
  gap: 0;
  border: 1px solid #D9D9D9;
  border-radius: 6px;
  overflow: hidden;
}

.sg-unit-btn {
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  background: #fff;
  color: #888;
  border: none;
  font-family: inherit;
}

.sg-unit-btn.active {
  background: #1a1a1a;
  color: #fff;
}

/* How to measure */
.sg-measure {
  background: #F9F9F9;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
}

.sg-measure-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.sg-measure-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sg-measure-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.sg-measure-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sg-measure-item strong {
  display: block;
  font-size: 12px;
  color: #1a1a1a;
  margin-bottom: 1px;
}

.sg-measure-item span {
  font-size: 11px;
  color: #888;
  line-height: 1.4;
}

/* Panels */
.sg-panel { display: none; }
.sg-panel.active { display: block; }

/* Table */
.sg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 16px;
}

.sg-table th {
  text-align: left;
  padding: 10px 10px;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  border-bottom: 2px solid #EEEEEE;
  background: #FAFAFA;
}

.sg-table td {
  padding: 10px;
  border-bottom: 1px solid #F0F0F0;
  color: #555;
}

.sg-table td strong {
  color: #1a1a1a;
}

.sg-table tr:hover td {
  background: #F8F8F8;
}

/* Fit tip */
.sg-fit-tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 16px;
  background: #FFF8E6;
  border-radius: 8px;
  margin-top: 16px;
}

.sg-fit-tip svg { flex-shrink: 0; margin-top: 1px; }

.sg-fit-tip span {
  font-size: 12px;
  color: #5D4E37;
  line-height: 1.5;
}

.sg-fit-tip strong { color: #1a1a1a; }

/* ---------- Toast Notification ---------- */
.toast {
  position: fixed;
  top: calc(var(--header-height) + var(--announcement-height) + 12px);
  right: 16px;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  z-index: 2000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
  transform: translateX(120%);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast.visible {
  transform: translateX(0);
}

.toast svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}
