/* Page bundle: products.css */

:root {
  --shadow-xs: 0 10px 18px -18px rgba(85, 52, 27, 0.34), 0 2px 8px -7px rgba(208, 93, 38, 0.18);
  --shadow-sm: 0 14px 24px -20px rgba(85, 52, 27, 0.36), 0 4px 10px -8px rgba(208, 93, 38, 0.2);
  --shadow-md: 0 20px 32px -22px rgba(85, 52, 27, 0.42), 0 8px 14px -10px rgba(208, 93, 38, 0.22);
  --shadow-lg: 0 24px 36px -20px rgba(85, 52, 27, 0.48), 0 12px 20px -12px rgba(208, 93, 38, 0.28);
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-md);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: var(--space-sm) var(--space-md);
  z-index: 100;
  text-decoration: none;
}

.sr-only,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background-color: var(--color-primary);
  color: white;
}

.btn--primary:hover,
.btn--primary:focus {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--secondary:hover,
.btn--secondary:focus {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.125rem;
}

.page-hero {
  padding-top: 160px;
  padding-bottom: 30px;
  background-color: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.page-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: rgba(235, 146, 56, 0.1);
  backdrop-filter: blur(8px);
  border: 0.5px solid rgba(208, 93, 38, 0.25);
  color: var(--color-accent-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  box-shadow: var(--shadow-xs);
}

.page-hero__title {
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

.page-hero__subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

body.products-page .page-hero {
  background: transparent;
  overflow: visible;
}

body.products-page .page-hero__content {
  max-width: 900px;
}

body.products-page .page-hero__badge {
  margin-bottom: 1.35rem;
}

body.products-page .page-hero__title {
  font-size: clamp(2.45rem, 5.4vw, 3.85rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.3rem;
}

body.products-page .page-hero__subtitle {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.17rem;
  line-height: 1.62;
}

.products-filter {
  margin-top: var(--space-2xl);
}

.products-filter__desktop {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.products-filter__mobile {
  display: none;
}

.products-filter__mobile-header {
  width: 100%;
  border: 0;
  background: transparent;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.62rem 1.05rem;
  background-color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(85, 52, 27, 0.18);
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: rgba(235, 146, 56, 0.5);
  color: var(--color-accent-dark);
  transform: translateY(-1px);
}

.filter-btn--active {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  border-color: transparent;
  color: white;
  box-shadow: 0 16px 26px -18px rgba(208, 93, 38, 0.55), 0 6px 12px -10px rgba(85, 52, 27, 0.45);
}

.filter-btn--active:hover {
  background: linear-gradient(135deg, var(--color-accent-dark), #cf6f26);
  border-color: transparent;
  color: white;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: clamp(1.25rem, 2vw, 2rem);
  margin-bottom: var(--space-3xl);
}

.products__empty {
  text-align: center;
  padding: var(--space-3xl) 0;
}

.empty-state {
  max-width: 400px;
  margin: 0 auto;
}

.empty-state__icon {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
  opacity: 0.5;
}

.empty-state__title {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.empty-state__description {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  position: relative;
  overflow: hidden;
}

.cta--home .cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta__title {
  color: white;
  margin-bottom: var(--space-md);
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cta__description {
  max-width: 680px;
  margin: 0 auto var(--space-2xl);
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.cta__actions {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.cta--home .btn--primary {
  background: white;
  color: var(--color-primary);
  border: 1px solid white;
  border-radius: var(--radius-full);
  padding: 0.95rem 2.25rem;
}

.cta--home .btn--primary:hover,
.cta--home .btn--primary:focus {
  background: transparent;
  color: white;
  transform: none;
  box-shadow: none;
}

.cta--home .btn--secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  padding: 0.95rem 2.25rem;
}

.cta--home .btn--secondary:hover,
.cta--home .btn--secondary:focus {
  border-color: white;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  transform: none;
  box-shadow: none;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(235, 146, 56, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(235, 146, 56, 0); }
  100% { box-shadow: 0 0 0 0 rgba(235, 146, 56, 0); }
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes productStatusPulsePremium {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.5);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0);
  }
}

body.products-page .product-card {
  background: rgba(254, 254, 254, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1.5px solid rgba(235, 146, 56, 0.48);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1);
}

body.products-page .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1.5px rgba(235, 146, 56, 0.75), var(--shadow-lg);
  border-color: rgba(235, 146, 56, 0.8);
}

body.products-page .product-card__image-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(145deg, #4c2a14, #6a4324);
}

body.products-page .product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

body.products-page .product-card__badges {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  pointer-events: none;
}

body.products-page .product-card__badge,
body.products-page .product-card__platform {
  pointer-events: auto;
  box-sizing: border-box;
}

body.products-page .product-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 5px;
  padding: 3px 9px 3px 8px;
  background: linear-gradient(135deg, #d05d26, #b04e1e);
  border: 0.5px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
  color: white;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

body.products-page .product-card__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.28);
  animation: productStatusPulsePremium 2s infinite;
}

body.products-page .product-card__badge--live {
  background: linear-gradient(135deg, #16a34a, #15803d);
}

body.products-page .product-card__badge--live .product-card__badge-dot {
  background: #4ade80;
}

body.products-page .product-card__platform {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  flex-shrink: 0;
  gap: 4px;
  padding: 3px 9px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  border: 0.5px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-xs);
  color: var(--color-primary);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
  white-space: nowrap;
}

body.products-page .product-card__overlay {
  display: none;
}

body.products-page .product-card__content {
  padding: 22px 20px 20px;
}

body.products-page .product-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

body.products-page .product-card__title-group {
  flex: 1;
  min-width: 0;
}

body.products-page .product-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 4px;
}

body.products-page .product-card__subtitle {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-lighter);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

body.products-page .product-card__tech-icons {
  display: flex;
  gap: 4px;
}

body.products-page .tech-icon {
  min-width: 32px;
  height: 32px;
  padding: 0 6px;
  border-radius: 10px;
  background: rgba(85, 52, 27, 0.06);
  border: 0.5px solid rgba(85, 52, 27, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

body.products-page .product-card__description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

body.products-page .product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

body.products-page .product-tag {
  padding: 5px 10px;
  background: rgba(235, 146, 56, 0.1);
  border: 0.5px solid rgba(208, 93, 38, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  transition: background-color 0.2s ease;
}

body.products-page .product-tag:hover {
  background: rgba(235, 146, 56, 0.18);
}

body.products-page .product-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

body.products-page .product-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}

body.products-page .product-stat__value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 2px;
}

body.products-page .product-stat__label {
  display: block;
  font-size: 0.6rem;
  color: var(--color-text-lighter);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

body.products-page .product-card[data-category="building"] .product-stat:first-child .product-stat__value {
  color: var(--color-accent-dark);
}

body.products-page .product-card__actions {
  margin-top: 0;
}

body.products-page .product-card__actions--mobile {
  display: block;
}

body.products-page .product-card__actions .btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

body.products-page .product-card__actions .btn:not([disabled]):hover,
body.products-page .product-card__actions .btn:not([disabled]):focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--color-primary-dark), #2a1a0e);
}

body.products-page .product-card__actions .btn--product-web {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
}

body.products-page .product-card__actions .btn--product-web:not([disabled]):hover,
body.products-page .product-card__actions .btn--product-web:not([disabled]):focus {
  background: linear-gradient(135deg, var(--color-accent-dark), #a84a1f);
}

body.products-page .product-card__actions .btn[disabled],
body.products-page .product-card__actions .btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.7;
  box-shadow: var(--shadow-xs);
  transform: none;
}

@media (min-width: 1025px) {
  body.products-page .products.section {
    padding-top: calc(var(--space-3xl) - 1rem);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --container-padding: 1.25rem;
  }
}

@media (max-width: 768px) {
  body.products-page .page-hero .container,
  body.products-page .products .container {
    max-width: 480px;
    padding-left: 20px;
    padding-right: 20px;
  }

  body.products-page .page-hero {
    padding-top: calc(max(80px, env(safe-area-inset-top) + 66px));
    padding-bottom: 16px;
    text-align: center;
  }

  body.products-page .page-hero__badge {
    margin-bottom: 20px;
  }

  body.products-page .page-hero__title {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
  }

  body.products-page .page-hero__subtitle {
    font-size: 0.98rem;
    color: var(--color-text-light);
    padding: 0 4px;
    max-width: none;
  }

  body.products-page .products-filter {
    display: block;
    margin: 16px 0 0;
    padding: 0;
  }

  body.products-page .products-filter__desktop {
    display: none;
  }

  body.products-page .products-filter__mobile {
    display: block;
    background: rgba(254, 254, 254, 0.9);
    backdrop-filter: blur(12px);
    border: 0.5px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    overflow: hidden;
  }

  body.products-page .products-filter__mobile-header {
    min-height: 52px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-align: left;
    cursor: pointer;
  }

  body.products-page .products-filter__mobile-title {
    font-size: 0.9rem;
    font-weight: 650;
    color: var(--color-primary);
    letter-spacing: 0.01em;
  }

  body.products-page .products-filter__mobile-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
  }

  body.products-page .products-filter__mobile-current {
    font-size: 0.88rem;
    color: var(--color-text-light);
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.products-page .products-filter__mobile-toggle {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background: rgba(235, 146, 56, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-dark);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
  }

  body.products-page .products-filter__mobile-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  }

  body.products-page .products-filter__mobile.expanded .products-filter__mobile-content {
    max-height: 520px;
  }

  body.products-page .products-filter__mobile.expanded .products-filter__mobile-toggle {
    transform: rotate(180deg);
  }

  body.products-page .products-filter__mobile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 2px 12px 10px;
  }

  body.products-page .products-filter__mobile .filter-btn {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 8px;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--color-text-light);
    font-size: 0.95rem;
    font-weight: 500;
    transform: none;
  }

  body.products-page .products-filter__mobile .filter-btn:last-child {
    border-bottom: 0;
  }

  body.products-page .products-filter__mobile .filter-btn--active,
  body.products-page .products-filter__mobile .filter-btn--active:hover {
    color: var(--color-accent-dark);
    background: rgba(235, 146, 56, 0.12);
    border-color: rgba(235, 146, 56, 0.22);
    box-shadow: none;
  }

  body.products-page .products-filter__mobile .filter-btn:active {
    background: rgba(235, 146, 56, 0.15);
  }

  body.products-page .products-filter__mobile .filter-btn span {
    white-space: nowrap;
  }

  body.products-page .products.section {
    padding: 40px 0 36px;
  }

  body.products-page .products__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
  }

  body.products-page .products__empty {
    margin-top: 20px;
    padding: 0;
  }

  body.products-page .empty-state {
    text-align: center;
    padding: 40px 20px;
    background: rgba(254, 254, 254, 0.85);
    border-radius: var(--radius-lg);
    border: 0.5px solid rgba(255, 255, 255, 0.6);
  }

  body.products-page .empty-state__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(85, 52, 27, 0.06);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-primary);
    opacity: 1;
  }

  body.products-page .empty-state__title {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 8px;
  }

  body.products-page .empty-state__description {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
  }

  body.products-page #reset-filter {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(229, 229, 229, 0.7);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
  }

  body.products-page #reset-filter:active {
    background: rgba(235, 146, 56, 0.2);
    border-color: var(--color-accent);
  }

  .cta__title {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .cta__description {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
  }

  .cta__actions {
    flex-direction: column;
    margin-bottom: var(--space-sm);
  }

  .cta__actions .btn {
    width: 100%;
  }

  body.products-page .product-card {
    background: rgba(254, 254, 254, 0.85);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(235, 146, 56, 0.48);
    box-shadow: var(--shadow-md);
  }

  body.products-page .product-card:active {
    transform: scale(0.99);
    box-shadow: var(--shadow-md);
  }

  body.products-page .product-card__badges {
    top: 12px;
    left: 12px;
    right: 12px;
    gap: 8px;
  }

  body.products-page .product-card__content {
    padding: 18px 16px 20px;
  }

  body.products-page .product-card__header {
    margin-bottom: 10px;
  }

  body.products-page .product-card__title {
    font-size: 1.3rem;
  }

  body.products-page .product-card__subtitle {
    margin-top: 3px;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }

  body.products-page .tech-icon {
    width: 30px;
    min-width: 30px;
    height: 30px;
    font-weight: 700;
    font-family: var(--font-primary);
    letter-spacing: normal;
    padding: 0;
  }

  body.products-page .product-card__description {
    font-size: 0.92rem;
    margin-bottom: 14px;
    line-height: 1.5;
  }

  body.products-page .product-card__tags {
    margin-bottom: 16px;
  }

  body.products-page .product-tag {
    padding: 4px 10px;
    background: rgba(235, 146, 56, 0.12);
  }

  body.products-page .product-card__stats {
    margin-bottom: 14px;
    border-top: none;
    padding-top: 0;
  }

  body.products-page .product-stat {
    background: rgba(85, 52, 27, 0.04);
    border-radius: var(--radius-md);
    padding: 10px 8px;
    border: 0.5px solid rgba(85, 52, 27, 0.08);
    gap: 0;
  }

  body.products-page .product-stat__value {
    font-size: 0.85rem;
  }

  body.products-page .product-stat__label {
    font-size: 0.65rem;
    letter-spacing: 0.04em;
  }

  body.products-page .product-card__actions .btn {
    padding: 14px 16px;
    background: var(--color-primary);
    border: none;
  }

  body.products-page .product-card__actions .btn--product-web {
    background: var(--color-accent);
  }

  body.products-page .product-card__actions .btn:active {
    background: var(--color-primary-dark);
    transform: scale(0.97);
  }

  body.products-page .product-card__actions .btn--product-web:active {
    background: var(--color-accent-dark);
  }
}

@media (max-width: 480px) {
  h4 {
    font-size: clamp(1.05rem, 3.5vw, 1.25rem);
  }

  body.products-page .page-hero {
    padding-top: 100px;
  }

  body.products-page .page-hero__title {
    font-size: clamp(1.9rem, 7.5vw, 2.5rem);
  }

  body.products-page .product-card__content {
    padding: 18px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
