/* VSHub Quiz - Exact vshub24.com Branding */
/* Note: Inter font is loaded via index.html to avoid duplicate requests */

:root {
  --primary: #FFC107;
  --primary-hover: #e6ac00;
  --secondary: #1a1a1a;
  --background: #ffffff;
  --surface: #f5f5f5;
  --text: #1a1a1a;
  --text-muted: #666666;
  --border: #e0e0e0;
  --success: #00b67a;

  /* Border Radius Scale */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 24px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.05);
  --shadow-gold: 0 4px 14px rgba(255,184,0,0.25);

  /* Transitions */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Quiz Container - Clean, no shadow for embed */
.vshub-quiz {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  background: var(--background);
  color: var(--text);
}

/* Header */
.vshub-quiz-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 16px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.vshub-quiz-step {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.vshub-quiz-progress-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Progress Bar - Thin yellow line */
.vshub-quiz-progress {
  margin-bottom: 24px;
  padding: 0 0 16px 0;
  border-bottom: 1px solid var(--border);
}

.vshub-progress-bar {
  height: 6px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.vshub-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, #FFCA28 100%);
  border-radius: var(--radius-sm);
  transition: width 0.3s ease;
}

.vshub-progress-text {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Question Container */
.vshub-quiz-question {
  animation: vshub-fadeIn 0.3s ease;
}

@keyframes vshub-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.vshub-quiz-question h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
  color: var(--text);
}

.vshub-quiz-question p,
.vshub-quiz-subtitle {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 14px;
}

/* Answer Options - Card style like VSHub categories */
.vshub-quiz-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Flavor options - 3 columns for 7 items */
.vshub-quiz-options.vshub-flavor-options {
  grid-template-columns: repeat(3, 1fr);
}

/* Style options - 2 columns for 4 items */
.vshub-quiz-options.vshub-style-options {
  grid-template-columns: repeat(2, 1fr);
}

.vshub-quiz-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  background: var(--surface);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s var(--ease-out), transform 0.15s ease;
  position: relative;
}

.vshub-quiz-option:hover {
  background: #ebebeb;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.vshub-quiz-option.selected {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2), 0 4px 12px rgba(255, 193, 7, 0.15);
}

.vshub-quiz-option.selected .vshub-quiz-option-content h3,
.vshub-quiz-option.selected .vshub-quiz-option-content p {
  color: var(--secondary);
}

.vshub-quiz-option-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.vshub-quiz-option-icon svg {
  width: 32px;
  height: 32px;
}

/* Emoji icons for flavors */
.vshub-quiz-option-icon.vshub-emoji-icon {
  font-size: 32px;
  line-height: 1;
}

.vshub-quiz-option.selected .vshub-quiz-option-icon {
  color: var(--secondary);
}

.vshub-quiz-option-content h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.vshub-quiz-option-content p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* Multi-select Options */
.vshub-quiz-options.vshub-multi-select .vshub-quiz-option::before {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  background: #fff;
  transition: all 0.2s ease;
}

.vshub-quiz-options.vshub-multi-select .vshub-quiz-option.selected::before {
  background: var(--secondary);
  border-color: var(--secondary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Navigation Buttons - VSHub style */
.vshub-quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.vshub-quiz .vshub-quiz-btn,
.vshub-quiz button.vshub-quiz-btn,
.vshub-quiz-btn[type="button"] {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  line-height: 16px;
}

.vshub-quiz .vshub-quiz-btn-back,
.vshub-quiz button.vshub-quiz-btn-back,
.vshub-quiz-btn-back[type="button"] {
  background: transparent !important;
  color: var(--text-muted) !important;
  padding: 12px 0;
  border-radius: var(--radius-md);
}

.vshub-quiz .vshub-quiz-btn-back:hover,
.vshub-quiz .vshub-quiz-btn-back:focus,
.vshub-quiz button.vshub-quiz-btn-back:hover,
.vshub-quiz button.vshub-quiz-btn-back:focus,
.vshub-quiz-btn-back[type="button"]:hover,
.vshub-quiz-btn-back[type="button"]:focus {
  background: var(--surface) !important;
  color: var(--text) !important;
  text-decoration: none !important;
}

.vshub-quiz .vshub-quiz-btn-next,
.vshub-quiz button.vshub-quiz-btn-next,
.vshub-quiz-btn-next[type="button"] {
  background: var(--primary) !important;
  color: var(--secondary) !important;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  text-decoration: none !important;
}

.vshub-quiz .vshub-quiz-btn-next:hover:not(:disabled),
.vshub-quiz .vshub-quiz-btn-next:focus:not(:disabled),
.vshub-quiz button.vshub-quiz-btn-next:hover:not(:disabled),
.vshub-quiz button.vshub-quiz-btn-next:focus:not(:disabled),
.vshub-quiz-btn-next[type="button"]:hover:not(:disabled),
.vshub-quiz-btn-next[type="button"]:focus:not(:disabled) {
  background: var(--primary-hover) !important;
  color: var(--secondary) !important;
  box-shadow: 0 6px 16px rgba(255, 184, 0, 0.35);
  text-decoration: none !important;
}

.vshub-quiz .vshub-quiz-btn:disabled,
.vshub-quiz button.vshub-quiz-btn:disabled,
.vshub-quiz-btn[type="button"]:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Results Header */
.vshub-quiz-results-header {
  text-align: center;
  padding: 24px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.vshub-quiz-results-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.vshub-quiz-results-header p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Results Section */
.vshub-quiz-results h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vshub-quiz-results > p,
.vshub-results-subtitle {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 14px;
}

/* No Results State */
.vshub-quiz-no-results {
  text-align: center;
  padding: 32px 16px;
}

.vshub-quiz-no-results p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.vshub-quiz-no-results .vshub-quiz-btn-next {
  display: inline-block;
  text-decoration: none;
}

.vshub-quiz-no-results h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.vshub-suggestion-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 20px 0;
  flex-wrap: wrap;
}

.vshub-quiz .vshub-quiz-btn-secondary,
.vshub-quiz button.vshub-quiz-btn-secondary,
.vshub-quiz-btn-secondary[type="button"] {
  background: transparent !important;
  border: 2px solid var(--primary) !important;
  color: var(--text) !important;
  border-radius: var(--radius-md);
  text-decoration: none !important;
}

.vshub-quiz .vshub-quiz-btn-secondary:hover,
.vshub-quiz .vshub-quiz-btn-secondary:focus,
.vshub-quiz button.vshub-quiz-btn-secondary:hover,
.vshub-quiz button.vshub-quiz-btn-secondary:focus,
.vshub-quiz-btn-secondary[type="button"]:hover,
.vshub-quiz-btn-secondary[type="button"]:focus {
  background: var(--primary) !important;
  color: var(--secondary) !important;
  text-decoration: none !important;
}

.vshub-quiz-btn-link {
  display: block;
  background: transparent !important;
  color: var(--text-muted) !important;
  text-decoration: underline !important;
  font-size: 13px;
  padding: 8px;
  margin-top: 12px;
}

.vshub-quiz-btn-link:hover,
.vshub-quiz-btn-link:focus {
  background: transparent !important;
  color: var(--text) !important;
  text-decoration: underline !important;
}

/* Product Cards - Matching VSHub product grid */
.vshub-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.vshub-product-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.vshub-product-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--primary);
}

.vshub-product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--primary);
  color: var(--secondary);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
  letter-spacing: 0.5px;
  z-index: 1;
}

.vshub-product-image {
  width: 100%;
  height: 120px;
  object-fit: contain;
  background: #ffffff;
  padding: 8px;
  transition: transform 0.3s ease;
}

.vshub-product-card:hover .vshub-product-image {
  transform: scale(1.03);
}

.vshub-product-info {
  padding: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.vshub-product-brand {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.vshub-product-name {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--text);
  height: auto;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
}

.vshub-product-details {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.vshub-product-tag {
  font-size: 10px;
  padding: 2px 6px;
  background: var(--surface);
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.vshub-product-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-top: auto;
  margin-bottom: 10px;
  padding-top: 8px;
}

.vshub-product-price .from {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
}

.vshub-btn-view-product,
.vshub-btn-add-cart {
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--primary);
  color: var(--secondary) !important;
  border: none;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none !important;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vshub-btn-view-product:hover,
.vshub-btn-add-cart:hover {
  background: var(--primary-hover);
  color: var(--secondary) !important;
  text-decoration: none !important;
}

/* Bundle Section - Dark background like VSHub about section */
.vshub-bundle-section {
  background: var(--secondary);
  padding: 24px;
  margin-bottom: 32px;
  position: relative;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.vshub-bundle-badge {
  position: absolute;
  top: 0;
  right: 24px;
  background: var(--primary);
  color: var(--secondary);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vshub-bundle-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vshub-bundle-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.vshub-bundle-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #ccc;
}

.vshub-bundle-item::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
}

.vshub-bundle-pricing {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.vshub-bundle-original {
  font-size: 14px;
  color: #888;
  text-decoration: line-through;
}

.vshub-bundle-price {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.vshub-bundle-savings {
  background: var(--success);
  color: white;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
}

.vshub-btn-bundle {
  display: inline-block;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--secondary);
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vshub-btn-bundle:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 16px rgba(255, 184, 0, 0.35);
}

/* Add-ons Section */
.vshub-addons-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.vshub-addons-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vshub-addons-grid {
  grid-template-columns: repeat(2, 1fr) !important;
}

/* Restart Button - Fixed with border-radius and hover shadow */
.vshub-quiz-restart {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.vshub-quiz .vshub-btn-restart,
.vshub-quiz button.vshub-btn-restart,
.vshub-btn-restart[type="button"] {
  padding: 10px 24px;
  background: transparent !important;
  color: var(--text-muted) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none !important;
}

.vshub-quiz .vshub-btn-restart:hover,
.vshub-quiz .vshub-btn-restart:focus,
.vshub-quiz .vshub-btn-restart:active,
.vshub-quiz button.vshub-btn-restart:hover,
.vshub-quiz button.vshub-btn-restart:focus,
.vshub-quiz button.vshub-btn-restart:active,
.vshub-btn-restart[type="button"]:hover,
.vshub-btn-restart[type="button"]:focus,
.vshub-btn-restart[type="button"]:active {
  background-color: #ffc107 !important;
  color: var(--text) !important;
  border-color: #ffffff !important;
  box-shadow: var(--shadow-sm);
  text-decoration: none !important;
  outline: none;
}

/* Loading State */
.vshub-quiz-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.vshub-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--surface);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: vshub-spin 0.8s linear infinite;
  margin-bottom: 16px;
}

@keyframes vshub-spin {
  to { transform: rotate(360deg); }
}

.vshub-quiz-loading p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Suggestion Grid */
.vshub-suggestion-grid {
  margin-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .vshub-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .vshub-quiz-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .vshub-quiz-options.vshub-flavor-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .vshub-quiz-option {
    padding: 16px 12px;
  }

  .vshub-quiz-option-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }

  .vshub-quiz-option-icon svg {
    width: 28px;
    height: 28px;
  }

  .vshub-quiz-option-icon.vshub-emoji-icon {
    font-size: 28px;
  }

  .vshub-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .vshub-quiz-question h2 {
    font-size: 20px;
  }

  .vshub-quiz-nav {
    flex-direction: column-reverse;
    gap: 12px;
  }

  .vshub-quiz-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .vshub-bundle-pricing {
    flex-wrap: wrap;
  }

  .vshub-quiz-results-header h1 {
    font-size: 22px;
  }
}

@media (max-width: 600px) and (min-width: 481px) {
  .vshub-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vshub-quiz-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .vshub-quiz-options {
    grid-template-columns: 1fr;
  }

  .vshub-quiz-options.vshub-flavor-options {
    grid-template-columns: 1fr;
  }

  .vshub-quiz-options.vshub-style-options {
    grid-template-columns: 1fr;
  }

  .vshub-quiz-option {
    flex-direction: row;
    text-align: left;
    padding: 14px;
  }

  .vshub-quiz-option-icon {
    margin-bottom: 0;
    margin-right: 12px;
    flex-shrink: 0;
  }

  .vshub-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .vshub-product-info {
    padding: 10px;
  }

  .vshub-product-image {
    height: 100px;
  }

  .vshub-product-name {
    font-size: 12px;
    height: auto;
  }

  .vshub-addons-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ============================================
   WORDPRESS THEME OVERRIDE - MUST BE LAST
   Overrides theme's [type=button]:hover styles
   ============================================ */
.vshub-quiz [type=button]:hover,
.vshub-quiz [type=button]:focus,
.vshub-quiz [type=submit]:hover,
.vshub-quiz [type=submit]:focus,
.vshub-quiz button:hover,
.vshub-quiz button:focus {
  background-color: inherit;
  color: inherit;
  text-decoration: none !important;
}

/* Back button - transparent with gray hover */
.vshub-quiz .vshub-quiz-btn-back:hover,
.vshub-quiz .vshub-quiz-btn-back:focus,
.vshub-quiz button.vshub-quiz-btn-back:hover,
.vshub-quiz button.vshub-quiz-btn-back:focus {
  background-color: var(--surface) !important;
  color: var(--text) !important;
}

/* Next button - gold with darker gold hover */
.vshub-quiz .vshub-quiz-btn-next:hover,
.vshub-quiz .vshub-quiz-btn-next:focus,
.vshub-quiz button.vshub-quiz-btn-next:hover,
.vshub-quiz button.vshub-quiz-btn-next:focus {
  background-color: var(--primary-hover) !important;
  color: var(--secondary) !important;
  box-shadow: 0 6px 16px rgba(255, 184, 0, 0.35);
}

/* Secondary button - transparent to gold on hover */
.vshub-quiz .vshub-quiz-btn-secondary:hover,
.vshub-quiz .vshub-quiz-btn-secondary:focus,
.vshub-quiz button.vshub-quiz-btn-secondary:hover,
.vshub-quiz button.vshub-quiz-btn-secondary:focus {
  background-color: var(--primary) !important;
  color: var(--secondary) !important;
}

/* Restart button - gold on hover */
.vshub-quiz .vshub-btn-restart:hover,
.vshub-quiz .vshub-btn-restart:focus,
.vshub-quiz button.vshub-btn-restart:hover,
.vshub-quiz button.vshub-btn-restart:focus {
  background-color: #ffc107 !important;
  color: var(--text) !important;
  border-color: #ffffff !important;
}

/* View Product button - darker gold on hover */
.vshub-quiz .vshub-btn-view-product:hover,
.vshub-quiz .vshub-btn-view-product:focus,
.vshub-quiz a.vshub-btn-view-product:hover,
.vshub-quiz a.vshub-btn-view-product:focus {
  background-color: var(--primary-hover) !important;
  color: var(--secondary) !important;
}
