.product-share-strip {
  display: flex;
}

.product-share-strip--compact {
  gap: 6px;
  justify-content: center;
  padding: 8px 14px 0;
}

.product-share-strip--full {
  gap: 8px;
}

.product-share-strip__copied {
  background: var(--color-green-light);
  color: var(--color-green);
  border-radius: 8px;
  padding: 8px 14px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
  text-align: center;
}

.product-share-strip__copied--compact {
  background: transparent;
  border-radius: 0;
  padding: 4px 0;
  margin-bottom: 0;
  font-size: 11px;
}

.product-share-btn {
  --share-color: var(--color-text-mid);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 5px 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.18s;
}

.product-share-btn--native:hover {
  background: rgba(85, 85, 85, 0.09);
  border-color: rgba(85, 85, 85, 0.27);
}

.product-share-btn--whatsapp:hover {
  background: rgba(37, 211, 102, 0.09);
  border-color: rgba(37, 211, 102, 0.27);
}

.product-share-btn--instagram:hover {
  background: rgba(225, 48, 108, 0.09);
  border-color: rgba(225, 48, 108, 0.27);
}

.product-share-btn--copy:hover {
  background: rgba(122, 98, 86, 0.09);
  border-color: rgba(122, 98, 86, 0.27);
}

.product-share-btn span {
  font-size: 10px;
  color: var(--share-color);
  font-family: var(--font-body);
  font-weight: 600;
}

.product-share-btn--native,
.product-share-btn-full--native {
  --share-color: #555;
}

.product-share-btn--whatsapp,
.product-share-btn-full--whatsapp {
  --share-color: #25D366;
}

.product-share-btn--instagram,
.product-share-btn-full--instagram {
  --share-color: #E1306C;
}

.product-share-btn--copy,
.product-share-btn-full--copy {
  --share-color: var(--color-text-mid);
}

.product-share-btn-full {
  flex: 1;
  background: var(--share-color);
  border: none;
  border-radius: 9px;
  padding: 9px 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  opacity: 1;
  transition: opacity 0.18s;
}

.product-share-btn-full:hover {
  opacity: 0.85;
}

.product-share-btn-full--instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.product-share-btn-full span {
  font-size: 11px;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  white-space: nowrap;
}

.product-redirect-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(255, 252, 249, 0.9);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.product-redirect-loader__image {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.product-redirect-loader__text {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-orange);
  font-family: var(--font-body);
  letter-spacing: 0.03em;
}

.product-image-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.product-image-nav--prev {
  left: 10px;
}

.product-image-nav--next {
  right: 10px;
}

.product-image-nav--dark {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(17, 24, 39, 0.58);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.product-image-nav--light {
  border: 1px solid var(--color-border-light);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-orange);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.product-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--color-border-light);
  transform: translateY(0);
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--color-orange);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(224, 107, 79, 0.13), 0 4px 16px rgba(0, 0, 0, 0.08);
}

.product-card__image-area {
  position: relative;
  padding-bottom: 130%;
  background: var(--color-orange-faint);
  overflow: hidden;
}

.product-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  transform: scale(1);
}

.product-card:hover .product-card__image {
  transform: scale(1.07);
}

.product-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-card__placeholder-icon {
  font-size: 40px;
  opacity: 0.15;
}

.product-card__placeholder-text {
  color: var(--color-text-light);
  font-size: 10px;
  margin-top: 6px;
  font-family: var(--font-body);
}

.product-card__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}

.product-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s;
}

.product-card__dot--active {
  width: 18px;
  background: var(--color-orange);
}

.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
}

.product-card__image-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.18));
}

.product-card__info {
  padding: 14px 14px 12px;
}

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

.product-card__fabric-chip {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-orange);
  background: var(--color-orange-faint);
  border: 1px solid var(--color-orange-mid);
  border-radius: 999px;
  padding: 4px 8px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-card__meta-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 10px;
}

.product-card__meta {
  font-size: 14px;
  color: var(--color-text-light);
  font-family: var(--font-body);
}

.product-card__meta span,
.product-card__price span {
  font-weight: 600;
  color: var(--color-text-mid);
}

.product-card__price-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: center;
}

.product-card__price {
  font-size: 15px;
  color: var(--color-green);
  font-family: var(--font-body);
}

.product-card__actions {
  padding: 0 14px 12px;
}

.product-card__view-link,
.product-card__whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 8px;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.product-card__view-link {
  background: var(--color-white);
  border: 1.5px solid var(--color-orange);
  color: var(--color-orange);
  margin-top: 10px;
}

.product-card__view-link:hover,
.product-card__view-link--loading {
  background: var(--color-orange);
  color: #fff;
}

.product-card__view-link--loading {
  pointer-events: none;
  opacity: 0.95;
}

.product-card__view-loader {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.product-card__whatsapp-link {
  background: #25D366;
  color: #fff;
  margin-top: 8px;
}

.product-card__whatsapp-link:hover {
  opacity: 0.88;
}

.product-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.product-modal__panel {
  background: var(--color-white);
  border-radius: 20px;
  max-width: 680px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  animation: fadeUp 0.3s;
}

.product-modal__accent {
  background: linear-gradient(90deg, var(--color-orange), var(--color-orange-light));
  height: 4px;
}

.product-modal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.product-modal__image-area {
  background: var(--color-orange-faint);
  position: relative;
  min-height: 380px;
}

.product-modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.product-modal__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  opacity: 0.15;
}

.product-modal__thumbs {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.product-modal__thumb {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.65;
  transition: all 0.2s;
}

.product-modal__thumb--active {
  border-color: var(--color-orange);
  opacity: 1;
}

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

.product-modal__details {
  padding: 28px 24px 24px;
  overflow-y: auto;
  max-height: 480px;
}

.product-modal__badge-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.product-modal__price {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.product-modal__spec-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.product-modal__spec {
  border-bottom: 1px solid var(--color-border-light);
  padding-bottom: 8px;
}

.product-modal__spec-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2px;
  font-family: var(--font-body);
}

.product-modal__spec-value {
  font-size: 13px;
  color: var(--color-text-mid);
  font-family: var(--font-body);
}

.product-modal__share {
  margin-bottom: 12px;
}

.product-modal__share-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.product-modal__whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  border-radius: 10px;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-body);
}

.product-modal__footer {
  padding: 10px 24px 14px;
  border-top: 1px solid var(--color-border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-modal__view-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-orange);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-body);
}

.product-modal__view-link:hover {
  text-decoration: underline;
}

.product-modal__close {
  background: none;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  padding: 6px 18px;
  color: var(--color-orange);
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  font-family: var(--font-body);
}

@media (max-width: 680px) {
  .product-modal__body {
    grid-template-columns: 1fr;
  }

  .product-modal__image-area {
    min-height: 320px;
  }
}
