/* Shared conversion, accessibility and on-demand media refinements for service pages. */
html {
  scroll-padding-top: 104px;
}

[id] {
  scroll-margin-top: 104px;
}

.ccc-skip-link {
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: #fff;
  color: #050505;
  padding: 11px 16px;
  font: 800 0.8rem/1.2 system-ui, sans-serif;
  text-decoration: none;
}

.ccc-skip-link:focus {
  transform: none;
}

.ccc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 16px;
}

.ccc-hero-actions a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  font: 800 0.76rem/1.15 Montserrat, Manrope, system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.ccc-hero-actions a:hover {
  transform: translateY(-2px);
}

.ccc-action-primary {
  background: #e12c20;
  box-shadow: 0 16px 40px -18px rgba(225, 44, 32, 0.9);
}

.ccc-action-primary:hover {
  background: #f13a2e;
}

.ccc-action-secondary {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(12px);
}

.ccc-action-secondary:hover {
  border-color: rgba(255, 255, 255, 0.48) !important;
}

.ccc-model-load {
  position: absolute;
  z-index: 30;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: #e12c20;
  color: #fff;
  box-shadow: 0 18px 52px -16px rgba(225, 44, 32, 0.9);
  cursor: pointer;
  font: 800 0.76rem/1.15 Montserrat, Manrope, system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ccc-model-load:hover {
  background: #f13a2e;
}

.ccc-model-load:focus-visible,
.ccc-hero-actions a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.ccc-model-load[hidden] {
  display: none;
}

@media (max-width: 680px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .navbar,
  .nav-inner,
  .menu-overlay,
  .ccc-grain,
  .ccc-frame {
    width: 100vw !important;
    max-width: 100vw !important;
  }

  .cart-overlay {
    right: -100vw !important;
    width: 100vw !important;
    max-width: 100vw !important;
    padding-right: 20px !important;
    padding-left: 20px !important;
  }

  .cart-overlay.active {
    right: 0 !important;
  }

  .cart-overlay > * {
    min-width: 0;
  }

  .addon-grid,
  .addon-card,
  .addon-info {
    min-width: 0;
  }

  .addon-card {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px !important;
  }

  .addon-card > div:first-child {
    flex: 1 1 220px;
    min-width: 0;
  }

  .addon-card > div:last-child {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .addon-info h4,
  .addon-info p {
    overflow-wrap: anywhere;
  }

  .ccc-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .ccc-hero-actions a {
    width: 100%;
  }

  .ccc-model-load {
    max-width: calc(100% - 40px);
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ccc-hero-actions a {
    transition: none;
  }
}
