/* CroPuff VIP storefront — PDP aligned with homepage PuffShop tokens */
:root {
  --vip-bg: var(--cp-bg, #ffffff);
  --vip-surface: var(--cp-surface, #f4f6f8);
  --vip-surface-high: var(--cp-snow, #f7fbff);
  --vip-ink: var(--cp-ink, #0a0a0a);
  --vip-muted: var(--cp-muted, #5c6670);
  --vip-brand: var(--cp-brand, #008cba);
  --vip-accent: var(--cp-brand, #008cba);
  --vip-accent-dim: var(--cp-brand-dark, #006994);
  --vip-border: rgba(10, 10, 10, 0.12);
  --vip-radius: var(--cp-radius, 12px);
  --vip-shadow: var(--cp-shadow, 0 12px 40px rgba(15, 23, 42, 0.08));
  --vip-shadow-sm: 0 4px 16px rgba(15, 23, 42, 0.06);
  --cp-font-display: 'Space Grotesk', system-ui, sans-serif;
  --cp-font-body: 'DM Sans', system-ui, sans-serif;
}

.cropuff-vip-product-page {
  background: var(--vip-bg);
  min-height: 50vh;
  font-family: var(--cp-font-body);
}

.cropuff-vip-product-page h1,
.cropuff-vip-product-page .btn {
  font-family: var(--cp-font-display);
}

.product-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 16px 80px;
  position: relative;
}

@media (min-width: 768px) {
  .product-container {
    padding-left: 64px;
    padding-right: 64px;
  }
}

.product-container--loading .cp-loader--overlay {
  display: flex;
}

.cp-loader--overlay {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 20;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--vip-radius);
}

.vip-pdp-faq,
.vip-pdp-features,
.vip-pdp-related,
.vip-pdp-news,
.vip-reviews-section,
.cropuff-vip-reviews-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 768px) {
  .vip-pdp-faq,
  .vip-pdp-features,
  .vip-pdp-related,
  .vip-pdp-news,
  .vip-reviews-section,
  .cropuff-vip-reviews-wrap {
    padding-left: 64px;
    padding-right: 64px;
  }
}

.vip-pdp-faq {
  margin-bottom: 56px;
  margin-top: 56px;
}
.vip-pdp-faq h2,
.vip-pdp-features h2,
.vip-pdp-related h2,
.vip-pdp-news h2,
.vip-reviews-section h2 {
  font-family: var(--cp-font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 800;
  margin: 0 0 20px;
  color: var(--vip-ink);
}
.vip-pdp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vip-pdp-faq__item {
  background: #fff;
  border: 2px solid var(--vip-border);
  padding: 20px 22px;
  box-shadow: var(--vip-shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.vip-pdp-faq__item:hover {
  transform: translate(-1px, -1px);
  box-shadow: var(--vip-shadow);
}
.vip-pdp-faq h5 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.vip-pdp-faq p {
  margin: 0;
  color: var(--vip-muted);
  line-height: 1.55;
}

.vip-pdp-features {
  margin-bottom: 56px;
}
.vip-pdp-features__lead {
  margin: -8px 0 20px;
  color: var(--vip-muted);
  font-size: 14px;
}
.vip-pdp-features__layout {
  display: grid;
  gap: 28px;
  align-items: center;
}
.vip-pdp-features__layout--with-image {
  grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.85fr);
}
.vip-pdp-features__visual {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 12px;
  background:
    radial-gradient(ellipse at center, rgba(0, 140, 186, 0.08) 0%, transparent 65%),
    var(--vip-surface-high);
  border: 1px solid var(--vip-border);
  border-radius: var(--vip-radius);
}
.vip-pdp-features__visual img {
  width: min(100%, 380px);
  height: auto;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(15, 23, 42, 0.14));
}
@media (max-width: 800px) {
  .vip-pdp-features__layout--with-image {
    grid-template-columns: 1fr;
  }
  .vip-pdp-features__visual {
    order: -1;
    min-height: 200px;
  }
  .vip-pdp-features__visual img {
    max-height: 280px;
  }
}

.vip-pdp-related {
  margin-bottom: 56px;
}
.vip-pdp-related__status {
  color: var(--vip-muted);
  font-size: 14px;
}
.vip-pdp-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.vip-pdp-related__card {
  background: #fff;
  border: 2px solid var(--vip-border);
  box-shadow: var(--vip-shadow-sm);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vip-pdp-related__card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: var(--vip-surface);
}
.vip-pdp-related__name {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
}
.vip-pdp-related__price {
  font-weight: 800;
  font-size: 1.1rem;
}
.vip-pdp-related__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 10px 14px;
  border: 2px solid var(--vip-accent-dim);
  background: var(--vip-accent);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--vip-radius);
  box-shadow: var(--vip-shadow-sm);
}
.vip-pdp-related__btn:hover {
  background: var(--vip-accent-dim);
  color: #fff;
}

.vip-pdp-news {
  margin-bottom: 56px;
}
.vip-pdp-news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.vip-pdp-news__card {
  background: #fff;
  border: 2px solid var(--vip-border);
  padding: 18px;
  box-shadow: var(--vip-shadow-sm);
}
.vip-pdp-news__card h5 {
  margin: 0 0 8px;
  font-size: 1rem;
}
.vip-pdp-news__card h5 a {
  color: var(--vip-ink);
  text-decoration: none;
}
.vip-pdp-news__card h5 a:hover {
  text-decoration: underline;
}
.vip-pdp-news__card p {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--vip-muted);
  line-height: 1.5;
}
.vip-pdp-news__link,
.vip-pdp-news__more a {
  font-size: 13px;
  font-weight: 700;
  color: var(--vip-brand);
  text-decoration: none;
}
.vip-pdp-news__more {
  margin: 18px 0 0;
}

/* VIP shell has no breadcrumb nav */
.product-container .breadcrumb,
.breadcrumb {
  display: none !important;
}

/* Legacy Elementor stat bars (replaced by cp-spec-meters in unified shell) */
.product-container .stat-item,
.product-container .stats-grid {
  display: none !important;
}

.product-grid,
.product-grid--hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.product-visual {
  position: relative;
  perspective: 1200px;
}

.image-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--vip-radius);
  background: #fff;
  border: 2px solid var(--vip-border);
  box-shadow: var(--vip-shadow);
  min-height: 420px;
}
.product-visual:hover .image-carousel {
  transform: none;
}

.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.carousel-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 36px;
}
.carousel-slide img {
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.12));
}

.vip-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 2px solid var(--vip-ink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--vip-ink);
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  transition: transform 0.15s, background 0.2s, color 0.2s;
}
.vip-carousel-arrow:hover {
  background: var(--vip-brand);
  border-color: var(--vip-brand);
  color: #fff;
}
.vip-carousel-arrow--prev { left: 12px; }
.vip-carousel-arrow--next { right: 12px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c8c8c2;
  cursor: pointer;
  transition: width 0.25s, background 0.25s;
}
.carousel-dot.active {
  width: 22px;
  background: var(--vip-ink);
}

.product-details {
  padding: 8px 4px 0;
}

@media (min-width: 961px) {
  .product-grid--hero {
    align-items: start;
  }
  .product-details {
    position: sticky;
    top: calc(var(--cp-nav-h, 64px) + 16px);
  }
}

.vip-assurance {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.vip-assurance li {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid var(--vip-border, rgba(10, 10, 10, 0.1));
  border-radius: 12px;
  background: var(--vip-surface, #f7fbff);
}

.vip-assurance strong {
  font-family: var(--vip-font-display, 'Space Grotesk', system-ui, sans-serif);
  font-size: 0.92rem;
  color: var(--vip-ink, #0a0a0a);
}

.vip-assurance span {
  font-size: 0.88rem;
  color: var(--vip-muted, #5c6670);
  line-height: 1.45;
}

.vip-assurance a {
  color: var(--vip-brand, #008cba);
  font-weight: 650;
  text-decoration: none;
}

.vip-assurance a:hover,
.vip-assurance a:focus-visible {
  text-decoration: underline;
}

.vip-pdp-recent {
  margin-top: 8px;
}

.product-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 2px solid var(--vip-border);
  background: var(--vip-surface);
}
.product-badge.available {
  background: var(--vip-surface-high);
  color: var(--vip-ink);
}
.product-badge.unavailable {
  background: var(--vip-ink);
  color: #fff;
}

.product-title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: var(--vip-ink);
}

.product-title-stars {
  display: block !important;
  margin: 0 0 16px;
  min-height: 28px;
}
.vip-stars { display: inline-flex; gap: 3px; }
.vip-s-on { color: var(--vip-brand); font-size: 20px; font-weight: 900; }
.vip-s-off { color: #d0d0ca; font-size: 20px; font-weight: 900; }
.vip-review-count { font-size: 12px; color: var(--vip-muted); margin-top: 6px; }

.product-subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: var(--vip-muted);
  margin-bottom: 18px;
}

.price-section { margin-bottom: 12px; }
.vip-price-current,
.vip-price-sale {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--vip-ink);
  letter-spacing: -0.02em;
}
.vip-price-regular {
  margin-left: 10px;
  font-size: 1rem;
  color: #9a9a94;
  text-decoration: line-through;
  font-weight: 600;
}

.see-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: none;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--vip-muted);
  cursor: pointer;
}
.see-more:hover { color: var(--vip-ink); }
.see-more-arrow { transition: transform 0.25s; }
.see-more-arrow.open { transform: rotate(180deg); }

.expanded-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--vip-muted);
  font-size: 14px;
  line-height: 1.75;
}
.expanded-content.open {
  max-height: 640px;
  margin: 16px 0 20px;
}
.expanded-content ul { list-style: none; padding: 0; margin-top: 12px; }
.expanded-content li {
  padding: 6px 0 6px 18px;
  position: relative;
}
.expanded-content li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--vip-brand);
  font-weight: 700;
}

.divider {
  height: 1px;
  background: var(--vip-border);
  margin: 24px 0;
}

.options-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
}
.option-column { flex: 1 1 200px; }
.option-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--vip-ink);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: none;
}
.qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  color: var(--vip-ink);
}
.qty-btn:hover:not(:disabled) { background: #efefea; }
.qty-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.qty-value {
  width: 48px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}

.flavor-dropdown { position: relative; }
.dropdown-selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border: 2px solid var(--vip-ink);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  box-shadow: none;
}
.dropdown-selected.disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.dropdown-arrow { font-size: 10px; transition: transform 0.2s; }
.dropdown-arrow.open { transform: rotate(180deg); }

.dropdown-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--vip-ink);
  border-radius: 10px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  z-index: 20;
  transition: all 0.25s ease;
  box-shadow: var(--vip-shadow);
}
.dropdown-options.open {
  max-height: 260px;
  opacity: 1;
  overflow-y: auto;
}
.dropdown-option {
  padding: 12px 14px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
}
.dropdown-option:hover { background: #2a2a2a; }
.dropdown-option.out-of-stock {
  opacity: 0.45;
  cursor: not-allowed;
}
.flavor-stock { font-size: 11px; color: #aaa; }
.stock-info { font-size: 12px; color: var(--vip-muted); margin-top: 6px; }
.stock-info.low { color: #c62828; font-weight: 600; }

.cta-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.btn {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.12s;
}
.btn:active:not(:disabled) {
  transform: translate(2px, 2px);
  box-shadow: none !important;
}
.btn-primary {
  background: var(--vip-accent);
  color: #fff;
  border: 2px solid var(--vip-accent-dim);
  box-shadow: var(--vip-shadow-sm);
}
.btn-primary:hover:not(:disabled) {
  background: var(--vip-accent-dim);
  color: #fff;
}
.btn-outline {
  background: #fff;
  color: var(--vip-ink);
  border: 2px solid var(--vip-border);
  box-shadow: var(--vip-shadow-sm);
}
.btn-outline:hover:not(:disabled) { background: var(--vip-surface); }
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.error-message {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #ffebee;
  color: #b71c1c;
  font-size: 13px;
  border: 1px solid rgba(183, 28, 28, 0.2);
}
.error-message.show { display: block; }

.loading {
  text-align: center;
  padding: 64px 20px;
  color: var(--vip-muted);
  font-size: 15px;
}

@media (max-width: 960px) {
  .product-grid,
  .product-grid--hero { grid-template-columns: 1fr; gap: 28px; }
  .cta-buttons { grid-template-columns: 1fr; }
}

.vip-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 16px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--vip-muted);
}

.vip-trust-row span::before {
  content: '✓ ';
  color: var(--vip-brand);
}

.vip-nicotine-warning--subtle {
  margin: 8px 0 18px;
  font-size: 12px;
  line-height: 1.45;
  color: #8a8a8a;
  font-weight: 400;
}

.vip-nicotine-warning:not(.vip-nicotine-warning--subtle) {
  margin: 0 0 16px;
  padding: 10px 12px;
  border-left: 4px solid var(--vip-border);
  background: var(--vip-surface);
  font-size: 13px;
  font-weight: 700;
  color: var(--vip-muted);
}

.vip-express-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.vip-express-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--vip-muted);
  background: var(--vip-surface);
  border: 1px solid var(--vip-border);
  border-radius: 6px;
}

.vip-return-link {
  margin: 12px 0 0;
  font-size: 13px;
}

.vip-return-link a {
  color: var(--vip-brand);
}

.vip-mobile-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--vip-border);
  backdrop-filter: blur(8px);
}

.vip-mobile-atc .btn {
  width: 100%;
}

.cp-spec-meters {
  margin: 16px 0;
  display: grid;
  gap: 14px;
}

.cp-spec-meter__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
  padding: 2px 8px;
  background: var(--vip-surface);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cp-spec-meter__bar {
  height: 12px;
  background: var(--vip-surface);
  border: 2px solid var(--vip-border);
  border-radius: 0;
  overflow: hidden;
}

.cp-spec-meter__fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--vip-accent);
  border-radius: 0;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.cp-spec-meter__hint {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--vip-muted);
  line-height: 1.45;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 640px) {
  .product-container { padding: 16px 16px 48px; }
  .carousel-slide {
    padding: 20px 12px;
  }
  .carousel-slide img { max-height: 260px; }
  .product-visual {
    margin-top: 0;
    overflow: hidden;
  }
  .image-carousel {
    max-height: 320px;
  }
}

.vip-reviews-section,
.cropuff-vip-reviews-wrap {
  margin: 56px auto;
  padding: 0 16px;
  max-width: 1280px;
  border-top: none;
}
@media (min-width: 768px) {
  .vip-reviews-section,
  .cropuff-vip-reviews-wrap {
    padding-left: 64px;
    padding-right: 64px;
  }
}
.vip-reviews-section__lead {
  margin: -8px 0 24px;
  color: var(--vip-muted);
  font-size: 14px;
}

/* Align shortcode reviews UI with VIP PDP tokens */
.cropuff-vip-reviews-wrap .cr-wrap {
  padding: 0 !important;
  font-family: var(--cp-font-body) !important;
  color: var(--vip-ink) !important;
  max-width: none;
}
.cropuff-vip-reviews-wrap .cr-summary-card,
.cropuff-vip-reviews-wrap .cr-form-card,
.cropuff-vip-reviews-wrap .cr-list-card {
  background: #fff !important;
  border: 2px solid var(--vip-border) !important;
  border-radius: var(--vip-radius) !important;
  box-shadow: var(--vip-shadow-sm);
  max-width: none;
}
.cropuff-vip-reviews-wrap .cr-summary-card {
  margin: 0 0 20px !important;
  padding: 24px 28px !important;
  gap: 36px;
}
.cropuff-vip-reviews-wrap .cr-form-card,
.cropuff-vip-reviews-wrap .cr-list-card {
  padding: 24px 28px !important;
}
.cropuff-vip-reviews-wrap .cr-body-grid {
  max-width: none;
  gap: 20px;
}
.cropuff-vip-reviews-wrap .cr-big-avg,
.cropuff-vip-reviews-wrap .cr-card-title,
.cropuff-vip-reviews-wrap .cr-success h4,
.cropuff-vip-reviews-wrap .cr-author {
  font-family: var(--cp-font-display) !important;
  color: var(--vip-ink) !important;
}
.cropuff-vip-reviews-wrap .cr-card-title {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  border-bottom-color: var(--vip-border) !important;
  margin-bottom: 20px !important;
  padding-bottom: 14px !important;
}
.cropuff-vip-reviews-wrap .cr-summary-stars .cr-s-on,
.cropuff-vip-reviews-wrap .cr-stars .cr-s-on,
.cropuff-vip-reviews-wrap .cr-star-btn.cr-star-active {
  color: var(--vip-brand) !important;
}
.cropuff-vip-reviews-wrap .cr-req {
  color: var(--vip-brand) !important;
}
.cropuff-vip-reviews-wrap .cr-bar-fill {
  background: var(--vip-brand) !important;
  border-radius: 2px !important;
}
.cropuff-vip-reviews-wrap .cr-bar-track {
  background: var(--vip-surface) !important;
  border-radius: 2px !important;
  height: 10px !important;
}
.cropuff-vip-reviews-wrap .cr-summary-count,
.cropuff-vip-reviews-wrap .cr-label,
.cropuff-vip-reviews-wrap .cr-bar-label,
.cropuff-vip-reviews-wrap .cr-bar-pct,
.cropuff-vip-reviews-wrap .cr-review-meta,
.cropuff-vip-reviews-wrap .cr-success p {
  color: var(--vip-muted) !important;
}
.cropuff-vip-reviews-wrap .cr-wrap .cr-input {
  border: 2px solid var(--vip-border) !important;
  border-radius: var(--vip-radius) !important;
  background: #fff !important;
  color: var(--vip-ink) !important;
  font-family: var(--cp-font-body) !important;
  box-shadow: none !important;
}
.cropuff-vip-reviews-wrap .cr-wrap .cr-input:focus {
  border-color: var(--vip-brand) !important;
  box-shadow: 0 0 0 3px rgba(0, 140, 186, 0.18) !important;
}
.cropuff-vip-reviews-wrap .cr-wrap .cr-star-btn {
  border: 2px solid var(--vip-border) !important;
  border-radius: var(--vip-radius) !important;
  background: var(--vip-surface) !important;
  color: var(--vip-muted) !important;
}
.cropuff-vip-reviews-wrap .cr-wrap .cr-star-btn.cr-star-active,
.cropuff-vip-reviews-wrap .cr-wrap .cr-star-btn:hover {
  background: #fff !important;
  border-color: var(--vip-brand) !important;
  color: var(--vip-brand) !important;
}
.cropuff-vip-reviews-wrap .cr-wrap .cr-submit-btn {
  background: var(--vip-brand) !important;
  border: 2px solid var(--vip-accent-dim) !important;
  border-radius: var(--vip-radius) !important;
  font-family: var(--cp-font-display) !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  box-shadow: var(--vip-shadow-sm) !important;
}
.cropuff-vip-reviews-wrap .cr-wrap .cr-submit-btn:hover {
  background: var(--vip-accent-dim) !important;
  transform: none !important;
}
.cropuff-vip-reviews-wrap .cr-wrap .cr-submit-btn:disabled {
  background: #b3d9e8 !important;
  border-color: #b3d9e8 !important;
  box-shadow: none !important;
}
.cropuff-vip-reviews-wrap .cr-success-check {
  background: var(--vip-brand) !important;
  border-radius: var(--vip-radius) !important;
}
.cropuff-vip-reviews-wrap .cr-review-card {
  border-bottom-color: var(--vip-border) !important;
}
.cropuff-vip-reviews-wrap .cr-review-text {
  color: var(--vip-ink) !important;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .cropuff-vip-reviews-wrap .cr-body-grid {
    grid-template-columns: 1fr !important;
  }
  .cropuff-vip-reviews-wrap .cr-summary-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
