/** Shopify CDN: Minification failed

Line 608:10 Expected identifier but found whitespace
Line 608:15 Unexpected ";"

**/
/* PawTee product page — layout & buy box */

/* ── Scope reset (Horizon theme conflicts) ── */
.pawtee-pdp-section {
  width: 100%;
  max-width: 100%;
}

.pawtee-pdp-section .pawtee-clone {
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}

/* Hide duplicate theme footer newsletter — PawTee PDP has its own */
body:has(.pawtee-pdp) [id$="footer_m9NzUG"] {
  display: none !important;
}

.pawtee-pdp .page-width {
  max-width: 87.5rem;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2.5rem);
  width: 100%;
  box-sizing: border-box;
}

/* ── Hero: 2-column product layout ── */
.pawtee-pdp__hero {
  padding: clamp(1rem, 2vw, 2rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  background: #fff;
}

.pawtee-pdp__grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
  width: 100%;
}

/* ── Gallery: main image + horizontal thumbs below ── */
.pawtee-pdp__media {
  position: relative;
  width: 100%;
  min-width: 0;
}

.pawtee-pdp__gallery-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.pawtee-pdp__gallery-main {
  position: relative;
  background: #f4f4f4;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  flex-shrink: 0;
}

.pawtee-pdp__social-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: #fff;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
  line-height: 1.2;
}

.pawtee-pdp__social-badge-num::before {
  content: '★ ';
  color: var(--pawtee-accent, #d2715a);
}

.pawtee-pdp__gallery-viewport {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f4f4f4;
}

.pawtee-pdp__gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.pawtee-pdp__gallery-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.pawtee-pdp__gallery-slide--video {
  object-fit: cover;
  background: #000;
  width: 100%;
  height: 100%;
}

.pawtee-pdp__gallery-slide--embed,
.pawtee-pdp__gallery-slide--model {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.pawtee-pdp__gallery-slide--embed .pawtee-pdp__gallery-embed,
.pawtee-pdp__gallery-slide--embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.pawtee-pdp__gallery-slide--model model-viewer {
  width: 100%;
  height: 100%;
}

.pawtee-pdp__thumb--video {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  overflow: hidden;
}

.pawtee-pdp__thumb-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pawtee-pdp__thumb-play {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
}

.pawtee-pdp__thumb--video.is-active {
  outline: 2px solid var(--pawtee-accent, #d2715a);
  outline-offset: -2px;
}

.pawtee-pdp__gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,.95);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  color: #333;
  transition: transform .15s ease;
}

.pawtee-pdp__gallery-arrow:hover { transform: translateY(-50%) scale(1.05); }

.pawtee-pdp__gallery-arrow--prev { left: 14px; }
.pawtee-pdp__gallery-arrow--next { right: 14px; }

.pawtee-pdp__gallery-counter {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 2;
  letter-spacing: .02em;
}

.pawtee-pdp__thumbs {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  max-height: none;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  padding: 2px 0 4px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  order: 2;
}

.pawtee-pdp__thumbs::-webkit-scrollbar { display: none; }

.pawtee-pdp__thumb {
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: #f4f4f4;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: border-color .15s ease;
}

.pawtee-pdp__thumb.is-active { border-color: var(--pawtee-accent, #d2715a); }

.pawtee-pdp__thumb img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: block;
}

.pawtee-pdp__dots {
  display: none !important;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  width: 100%;
}

.pawtee-pdp__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #d9d9d9;
  padding: 0;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}

.pawtee-pdp__dot.is-active {
  background: var(--pawtee-accent, #d2715a);
  transform: scale(1.15);
}

/* ── Buy box ── */
.pawtee-pdp__info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pawtee-pdp__title {
  font-size: clamp(1.375rem, 2.2vw, 1.875rem);
  font-weight: 700;
  color: var(--pawtee-navy, #112c45);
  margin: 0 0 14px;
  line-height: 1.25;
  letter-spacing: -.01em;
}

.pawtee-pdp__price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-bottom: 22px;
}

.pawtee-pdp__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pawtee-navy, #112c45);
  line-height: 1;
}

.pawtee-pdp__compare {
  font-size: 1rem;
  text-decoration: line-through;
  color: #9a9a9a;
  line-height: 1;
}

.pawtee-pdp__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.pawtee-pdp__option-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--pawtee-navy, #112c45);
}

.pawtee-pdp__select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
  color: var(--pawtee-navy, #112c45);
  cursor: pointer;
  appearance: auto;
  box-sizing: border-box;
}

.pawtee-pdp__select:focus {
  outline: 2px solid var(--pawtee-accent, #d2715a);
  outline-offset: 1px;
}

.pawtee-pdp__select--compact {
  padding: 10px 12px;
  font-size: 13px;
}

/* Bundle & Save */
.pawtee-pdp__bundles {
  margin-bottom: 4px;
}

.pawtee-pdp__bundles-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--pawtee-navy, #112c45);
  margin: 0 0 12px;
}

.pawtee-pdp__bundle-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pawtee-pdp__bundle {
  position: relative;
  display: block;
  border: 1.5px solid #d8d8d8;
  border-radius: 10px;
  padding: 14px 14px 14px 42px;
  cursor: default;
  background: #fff;
  transition: border-color .15s ease, background .15s ease;
}

.pawtee-pdp__bundle-header {
  display: block;
  cursor: pointer;
  margin: 0;
  min-width: 0;
}

.pawtee-pdp__bundle.is-active {
  border-color: #9bb8d4;
  background: #eef4fa;
}

.pawtee-pdp__bundle--popular {
  overflow: hidden;
}

.pawtee-pdp__bundle-ribbon {
  position: absolute;
  top: 10px;
  right: -34px;
  transform: rotate(45deg);
  background: #2f2f2f;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 36px;
  z-index: 2;
  pointer-events: none;
}

.pawtee-pdp__bundle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pawtee-pdp__bundle-radio {
  position: absolute;
  left: 14px;
  top: 18px;
  width: 18px;
  height: 18px;
  border: 2px solid #bbb;
  border-radius: 50%;
  background: #fff;
}

.pawtee-pdp__bundle.is-active .pawtee-pdp__bundle-radio {
  border-color: var(--pawtee-navy, #112c45);
  box-shadow: inset 0 0 0 4px #fff, inset 0 0 0 8px var(--pawtee-navy, #112c45);
}

.pawtee-pdp__bundle-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.pawtee-pdp__bundle-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.pawtee-pdp__bundle-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.pawtee-pdp__bundle-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--pawtee-navy, #112c45);
  line-height: 1.2;
}

.pawtee-pdp__bundle-pill {
  display: inline-block;
  width: fit-content;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  background: #2f2f2f;
  color: #fff;
}

.pawtee-pdp__bundle-pill--value {
  background: var(--pawtee-accent, #d2715a);
}

.pawtee-pdp__bundle-note {
  font-size: 12px;
  color: #666;
  line-height: 1.3;
}

.pawtee-pdp__bundle-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.pawtee-pdp__bundle-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--pawtee-navy, #112c45);
  white-space: nowrap;
}

.pawtee-pdp__bundle-compare {
  font-size: 12px;
  text-decoration: line-through;
  color: #999;
  white-space: nowrap;
}

.pawtee-pdp__bundle-variant-panel {
  display: block;
  padding-top: 12px;
  min-width: 0;
}

.pawtee-pdp__bundle:not(.is-active) .pawtee-pdp__bundle-variant-panel {
  display: none;
}

.pawtee-pdp__bundle-selects select {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.pawtee-pdp__bundle-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.pawtee-pdp__bundle-item {
  min-width: 0;
}

.pawtee-pdp__bundle-item-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  color: #666;
  margin: 0 0 6px;
}

.pawtee-pdp__bundle-variant {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.pawtee-pdp__bundle-variant-panel .pawtee-pdp__bundle-variant {
  padding-top: 0;
}

.pawtee-pdp__bundle-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f4f4f4;
}

.pawtee-pdp__bundle-selects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.pawtee-pdp__checkout-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.pawtee-pdp__checkout-meta .pawtee-pdp__qty-row {
  margin: 0;
}

.pawtee-pdp__checkout-meta .pawtee-pdp-extras__subtotal {
  margin-left: auto;
}

.pawtee-pdp-below {
  padding-top: 8px;
}

.pawtee-pdp-iwt {
  padding-top: 16px;
}

.pawtee-pdp__qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pawtee-pdp__qty-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.pawtee-pdp__qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: #f7f7f7;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  color: var(--pawtee-navy, #112c45);
  transition: background .15s ease;
}

.pawtee-pdp__qty-btn:hover { background: #eee; }

.pawtee-pdp__qty-input {
  width: 52px;
  height: 40px;
  border: none;
  border-left: 1px solid #d4d4d4;
  border-right: 1px solid #d4d4d4;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  -moz-appearance: textfield;
  background: #fff;
}

.pawtee-pdp__qty-input::-webkit-outer-spin-button,
.pawtee-pdp__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pawtee-pdp__atc {
  width: 100%;
  background: #d2715a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, opacity .2s ease;
  letter-spacing: .01em;
  line-height: 1.2;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.pawtee-pdp__atc:hover { background: #c0644f; }
.pawtee-pdp__atc:disabled { opacity: .5; cursor: not-allowed; }

/* Accordions */
.pawtee-pdp__accordions {
  margin-top: 28px;
  border-top: 1px solid rgba(0,0,0,.1);
  padding-bottom: 12px;
}

.pawtee-pdp__acc {
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.pawtee-pdp__acc summary {
  padding: 18px 28px 18px 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--pawtee-navy, #112c45);
  position: relative;
  text-decoration: none !important;
}

.pawtee-pdp__acc summary::-webkit-details-marker { display: none; }

.pawtee-pdp__acc summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 400;
  color: #666;
  line-height: 1;
}

.pawtee-pdp__acc[open] summary::after { content: '−'; }

.pawtee-pdp__acc-body {
  padding: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--pawtee-navy, #112c45);
}

.pawtee-pdp__acc-body ul {
  padding-left: 20px;
  margin: 10px 0 0;
}

.pawtee-pdp__acc-body li { margin-bottom: 6px; }

/* Desktop: sticky buy box — no max-height (prevents ticker overlap) */
@media (min-width: 990px) {
  .pawtee-pdp__info {
    position: sticky;
    top: calc(var(--header-height, 96px) + 16px);
    align-self: start;
    padding-bottom: 16px;
  }

  .pawtee-pdp__dots { display: none !important; }
  .pawtee-pdp__thumbs { display: flex !important; }
  .pawtee-pdp__gallery-arrow { display: flex; }
}

/* Tablet / mobile — keep horizontal thumbs below main image */
@media (max-width: 989px) {
  .pawtee-pdp__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .pawtee-pdp__info {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .pawtee-pdp__thumbs {
    display: flex;
  }

  .pawtee-pdp__thumb img {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 768px) {
  .pawtee-pdp__title { font-size: 1.375rem; }
  .pawtee-pdp__gallery-arrow { display: none; }
  .pawtee-pdp__dots { display: none !important; }
  .pawtee-pdp__thumbs { display: flex !important; }
  .pawtee-pdp__gallery-viewport { aspect-ratio: 4 / 5; }
  .pawtee-pdp-benefits-heading__title { font-size: 1.5625rem; }
}

@media (min-width: 769px) {
  .pawtee-pdp__dots { display: none !important; }
}

.pawtee-pdp-benefits-heading {
  padding: clamp(1.5rem, 3vw, 2rem) 0 0;
  background: #fff;
}

.pawtee-pdp-benefits-heading__title {
  font-size: clamp(1.5625rem, 3vw, 2.1875rem);
  font-weight: 700;
  text-align: center;
  color: var(--pawtee-navy, #112c45);
  margin: 0 0 12px;
  line-height: 1.2;
}

.pawtee-pdp-extras {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.pawtee-pdp-extras__save-badge {
  display: inline-block;
  background: var(--pawtee-accent, #d2715a);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  width: fit-content;
  letter-spacing: .02em;
}

.pawtee-pdp-extras__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pawtee-pdp-extras__avatars {
  display: flex;
}

.pawtee-pdp-extras__avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -8px;
}

.pawtee-pdp-extras__avatars img:first-child { margin-left: 0; }

.pawtee-pdp-extras__social-text {
  font-size: 13px;
  margin: 0;
  line-height: 1.4;
}

.pawtee-pdp-extras__subtotal {
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--pawtee-navy, #112c45);
}

.pawtee-pdp-extras__subtotal strong {
  font-size: 16px;
}

.pawtee-pdp-extras__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pawtee-pdp-extras__trust li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  text-align: center;
  color: var(--pawtee-navy, #112c45);
}

.pawtee-pdp-extras__reviews {
  position: relative;
  overflow: hidden;
  margin-top: 4px;
}

.pawtee-pdp-extras__reviews-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: 10px;
}

.pawtee-pdp-extras__reviews-track::-webkit-scrollbar { display: none; }

.pawtee-pdp-extras__review-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: #111;
  color: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 88px;
}

.pawtee-pdp-extras__review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.15);
}

.pawtee-pdp-extras__review-content {
  min-width: 0;
  flex: 1;
}

.pawtee-pdp-extras__review-name {
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 2px;
  color: #fff;
}

.pawtee-pdp-extras__review-loc {
  font-size: 11px;
  color: rgba(255,255,255,.65);
  margin: 0 0 6px;
}

.pawtee-pdp-extras__review-text {
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
  color: rgba(255,255,255,.92);
}

.pawtee-pdp-extras__reviews-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 8px;
}

.pawtee-pdp-extras__reviews-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  padding: 0;
  cursor: pointer;
}

.pawtee-pdp-extras__reviews-dots button.is-active {
  background: #111;
}

.pawtee-pdp-extras__reviews-label {
  text-align: center;
  font-size: 11px;
  color: #888;
  margin: 8px 0 0;
}

.pawtee-pdp__payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .pawtee-pdp-extras__trust {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pawtee-pdp-extras__trust li {
    justify-content: flex-start;
  }

  .pawtee-pdp__bundle-selects {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .pawtee-pdp__bundle-variant {
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
  }

  .pawtee-pdp__bundle-selects {
    flex: 1;
  }

  .pawtee-pdp__bundle-ribbon {
    display: none;
  }
}

/* Product page buy box overrides (Horizon theme bleed) */
body:has(.pawtee-pdp) .button-primary,
body:has(.pawtee-pdp) .add-to-cart-button,
body:has(.pawtee-pdp) [name="add"] {
  background: #d2715a !important;
  border-color: #d2715a !important;
  color: #fff !important;
}

.pawtee-pdp__qty-wrap.is-locked {
  opacity: .55;
  pointer-events: none;
}

/* Ticker — full-width bar after hero, matches reference */
.pawtee-pdp-ticker {
  background: #000;
  color: #fff;
  overflow: hidden;
  padding: 8px 0;
  margin: 0;
  position: relative;
  z-index: 1;
  clear: both;
  width: 100%;
}

.pawtee-pdp-ticker__track {
  display: flex;
  gap: 48px;
  animation: pawtee-ticker 30s linear infinite;
  width: max-content;
}

.pawtee-pdp-ticker__item {
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes pawtee-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.pawtee-pdp-iwt .pawtee-iwt__heading {
  font-size: 35px;
}

/* Customer reviews section */
.pawtee-pdp-reviews {
  padding: 36px 0;
  background: #fff;
}

.pawtee-pdp-reviews__heading {
  font-size: 35px;
  text-align: center;
  color: var(--pawtee-navy, #112c45);
  margin: 0 0 8px;
  font-weight: 700;
}

.pawtee-pdp-reviews__badge {
  text-align: center;
  font-size: 14px;
  color: var(--pawtee-accent, #d2715a);
  margin: 0 0 24px;
}

.pawtee-pdp-reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pawtee-pdp-reviews__card {
  background: var(--pawtee-cream, #f8ede3);
  border-radius: 8px;
  padding: 16px;
}

.pawtee-pdp-reviews__name {
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 8px;
}

.pawtee-pdp-reviews__text {
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
  color: var(--pawtee-navy, #112c45);
}

@media (max-width: 1024px) {
  .pawtee-pdp-reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

.pawtee-size-guide__content { padding-bottom: 16px; font-size: 14px; line-height: 1.5; }
.pawtee-size-guide__table { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 13px; }
.pawtee-size-guide__table th, .pawtee-size-guide__table td { border: 1px solid #ddd; padding: 8px; text-align: center; }
.pawtee-size-guide__table th { background: #f8ede3; font-weight: 600; }

@media (max-width: 768px) {
  .pawtee-pdp-iwt .pawtee-iwt__heading { font-size: 22px; }
  .pawtee-pdp-reviews__heading { font-size: 25px; }
  .pawtee-pdp-reviews__grid { grid-template-columns: 1fr; }
  .pawtee-pdp-extras__review-card { flex: 0 0 100%; }
}

.pawtee-pdp--preview-only {
  display: none !important;
}

/* Payment icons */
.pawtee-pdp__payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.pawtee-pdp__payment-icon {
  line-height: 0;
}

.pawtee-pdp__payment-svg,
.pawtee-pdp__payment-icon svg {
  height: 24px;
  width: auto;
  display: block;
}

/* Sticky add to cart */
.pawtee-pdp-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  pointer-events: none;
}

.pawtee-pdp-sticky:not([hidden]) {
  pointer-events: auto;
}

.pawtee-pdp-sticky__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  padding: 10px 16px;
  min-height: 64px;
}

.pawtee-pdp-sticky__close {
  border: none;
  background: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #666;
  padding: 0 4px;
}

.pawtee-pdp-sticky__img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.pawtee-pdp-sticky__info {
  flex: 1;
  min-width: 0;
}

.pawtee-pdp-sticky__title {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pawtee-pdp-sticky__price {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--pawtee-accent, #d2715a);
}

.pawtee-pdp-sticky__btn {
  flex-shrink: 0;
  background: var(--pawtee-accent, #d2715a);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.pawtee-pdp-sticky__btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .pawtee-pdp-sticky__title { display: none; }
  .pawtee-pdp-sticky__bar { padding: 8px 12px; }
  .pawtee-pdp-sticky__btn { padding: 10px 16px; font-size: 13px; }
}
