/* ============================================
   PRODUCTS PAGE — catalog mockup layout
   ============================================ */

.products-page,
.product-detail-page {
  --products-serif: var(--font-heading);
}

/* Match home section width (navbar / products-collection) */
.products-page .products-page-inner,
.product-detail-page .products-page-inner {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  box-sizing: border-box;
}

.products-page .about-serif,
.products-page .products-page-title,
.products-page .products-cta-title,
.products-page .product-card-name,
.product-detail-page .about-serif,
.product-detail-page .products-page-title {
  font-family: var(--products-serif);
}

/* ---- Hero ---- */
.products-page-hero {
  position: relative;
  padding: 52px 0 56px;
  background-color: #f8f1f1;
  background-image: url('../images/title-shape-2.png');
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 17% auto;
  text-align: center;
  overflow: hidden;
  min-height: 320px;
}

.products-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url('../images/title-shape-1.png');
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 17% auto;
  pointer-events: none;
  z-index: 1;
}

.products-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.products-page-title {
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  font-weight: 700;
  color: #001d3d;
  margin: 0 0 12px;
  letter-spacing: 0.06em;
  line-height: 1.05;
}

.products-hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: var(--pink-primary);
  margin: 0 0 10px;
  line-height: 1.3;
}

.products-hero-desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: #5a6478;
  margin: 0 0 16px;
  line-height: 1.6;
}

.products-breadcrumb {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
}

.products-breadcrumb a {
  color: #5a6478;
  text-decoration: none;
}

.products-breadcrumb a:hover {
  color: var(--pink-primary);
}

.products-breadcrumb .bc-sep {
  color: var(--pink-primary);
  margin: 0 6px;
}

.products-breadcrumb .bc-current {
  color: var(--pink-primary);
  font-weight: 600;
}

.products-hero-trust {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 36px;
  padding: 14px 40px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(14, 31, 74, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.products-hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.products-trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fce8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.products-trust-icon img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.products-trust-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #001d3d;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* ---- Catalog toolbar ---- */
.products-catalog {
  padding: 40px 0 56px;
  background: #fff;
}

.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.products-toolbar-center {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.products-count {
  flex: 0 0 auto;
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  white-space: nowrap;
}

.products-count::before {
  content: 'Showing ';
}

.products-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.products-filter-btn {
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #4b5563;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.products-filter-btn:hover {
  border-color: rgba(208, 38, 137, 0.35);
  color: var(--pink-primary);
}

.products-filter-btn.active {
  background: var(--pink-primary);
  border-color: var(--pink-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(208, 38, 137, 0.25);
}

.products-sort {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
  white-space: nowrap;
}

.products-sort-select {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 32px 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 12px center;
  appearance: none;
  cursor: pointer;
}

.products-sort-select:focus {
  outline: none;
  border-color: var(--pink-primary);
  box-shadow: 0 0 0 3px rgba(208, 38, 137, 0.12);
}

/* ---- Product grid (3 per row) ---- */
.products-page .products-grid {
  margin-bottom: 48px;
}

.products-page .product-grid-col.is-hidden {
  display: none;
}

.products-page .product-card {
  display: flex;
  flex-direction: column;
  background: #fdfafb;
  border: 1px solid #f0e8ec;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(14, 31, 74, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.products-page .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14, 31, 74, 0.1);
}

.products-page .product-card-media {
  background: linear-gradient(180deg, #faf3f6 0%, #fff 100%);
  padding: 24px 20px 12px;
  text-align: center;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-page .product-card-media.product-card-theme-ruby {
  background: linear-gradient(180deg, #fce6ef 0%, #fff 100%);
}

.products-page .product-card-media.product-card-theme-blue {
  background: linear-gradient(180deg, #e7f1fb 0%, #fff 100%);
}

.products-page .product-card-media.product-card-theme-purple {
  background: linear-gradient(180deg, #f1e7fb 0%, #fff 100%);
}

.products-page .product-card-media img {
  width: 100%;
  max-width: 180px;
  height: auto;
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(14, 31, 74, 0.1));
}

.products-page .product-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 20px 22px;
}

.products-page .product-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--pink-primary);
  margin: 0 0 6px;
}

.products-page .product-card-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #001d3d;
  line-height: 1.3;
  margin: 0 0 8px;
}

.products-page .product-card-price {
  margin: 0 0 10px;
}

.products-page .product-card-desc {
  font-size: 12.5px;
  line-height: 1.65;
  color: #6b7280;
  margin: 0 0 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.products-page .product-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.products-page .product-card-rating {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  color: #6b7280;
}

.products-page .product-card-rating i {
  color: var(--pink-primary);
  font-size: 10px;
}

.products-page .product-card-rating span {
  margin-left: 4px;
  font-weight: 500;
}

.products-page .product-card-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.products-page .product-card-name a:hover {
  color: var(--pink-primary);
}

.products-page .product-card-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--pink-primary);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.products-page .product-card-link:hover {
  color: #b01f6e;
}

.products-page .product-card-link i {
  font-size: 13px;
  transition: transform 0.2s ease;
}

.products-page .product-card-link:hover i {
  transform: translateX(3px);
}

/* ---- Pagination ---- */
.products-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.products-page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #4b5563;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.products-page-btn--arrow {
  min-width: auto;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.products-page-btn:hover:not(:disabled):not(.active) {
  border-color: var(--pink-primary);
  color: var(--pink-primary);
}

.products-page-btn.active {
  background: var(--pink-primary);
  border-color: var(--pink-primary);
  color: #fff;
}

.products-page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ---- Stats bar ---- */
.products-stats {
  padding: 8px 0 56px;
  background: #fff;
}

.products-stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: #fdf2f8;
  border-radius: 20px;
  border: 1px solid rgba(208, 38, 137, 0.08);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(14, 31, 74, 0.04);
}

.products-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  position: relative;
  justify-content: center;
}

.products-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 18%;
  height: 64%;
  width: 1px;
  background: rgba(208, 38, 137, 0.12);
}

.products-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  color: var(--pink-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(14, 31, 74, 0.08);
}

.products-stat-icon i {
  font-size: 18px;
  line-height: 1;
  display: block;
}

.products-stat-content {
  min-width: 0;
}

.products-stat-value {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 2px;
  line-height: 1;
}

.products-stat-num {
  font-family: var(--font-body);
  font-size: clamp(1.65rem, 2.4vw, 2.1rem);
  font-weight: 700;
  color: #001d3d;
  line-height: 1;
}

.products-stat-suffix {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  color: #001d3d;
  line-height: 1;
}

.products-stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #5a6478;
  margin-top: 8px;
  line-height: 1.35;
}

.products-stat-value--single .products-stat-num {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

/* ---- CTA banner ---- */
.products-cta {
  padding: 0 0 88px;
  background: #fff;
}

.products-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px 40px;
  align-items: center;
  background: linear-gradient(135deg, #060d24 0%, #0a1538 45%, #121a42 100%);
  border-radius: 28px;
  padding: 48px 48px 48px 52px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(6, 13, 36, 0.35);
}

.products-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.products-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
}

.products-cta-orb--1 {
  width: 220px;
  height: 220px;
  top: -60px;
  left: 12%;
  background: rgba(208, 38, 137, 0.35);
}

.products-cta-orb--2 {
  width: 180px;
  height: 180px;
  bottom: -40px;
  left: 28%;
  background: rgba(120, 80, 200, 0.3);
}

.products-cta-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
}

.products-cta-content {
  position: relative;
  z-index: 2;
}

.products-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.products-cta-badge-icon {
  color: var(--pink-primary);
  flex-shrink: 0;
}

.products-cta-title {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 16px;
}

.products-cta-gradient {
  display: inline-block;
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  background: linear-gradient(90deg, #ff8ec4 0%, #d02689 45%, #b06cf0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.products-cta-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 28px;
  max-width: 480px;
}

.products-cta-features {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 28px;
  max-width: 520px;
}

.products-cta-feature {
  flex: 1 1 22%;
  min-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 0 10px;
  position: relative;
}

.products-cta-feature:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 8px;
  height: 48px;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.products-cta-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(208, 38, 137, 0.45);
  background: rgba(208, 38, 137, 0.12);
  box-shadow: 0 0 20px rgba(208, 38, 137, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
}

.products-cta-feature span:last-child {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
}

.products-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  margin-bottom: 28px;
}

.products-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e91e8c 0%, #d02689 50%, #c2187a 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 32px rgba(208, 38, 137, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.products-cta-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(208, 38, 137, 0.55);
}

.products-cta-btn i {
  font-size: 14px;
}

.products-cta-shipping {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.products-cta-shipping i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.products-cta-social {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.products-cta-avatars {
  display: flex;
  align-items: center;
}

.products-cta-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0a1538;
  margin-left: -10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.products-cta-avatars img:first-child {
  margin-left: 0;
}

.products-cta-proof p {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.products-cta-stars {
  display: flex;
  gap: 2px;
}

.products-cta-stars i {
  color: #f5b942;
  font-size: 12px;
}

.products-cta-visual {
  position: relative;
  z-index: 2;
}

.products-cta-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 0 0 1px rgba(208, 38, 137, 0.2),
    0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 0 40px rgba(208, 38, 137, 0.08);
}

.products-cta-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 140, 200, 0.5), rgba(180, 100, 240, 0.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.products-cta-frame img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.products-page .navbar-nav-main .nav-link[data-nav="products"],
.products-page .navbar-nav-main .nav-link.active[data-nav="products"] {
  color: var(--pink-primary) !important;
}

.products-page .navbar-nav-main .nav-link[data-nav="products"]::before,
.products-page .navbar-nav-main .nav-link.active[data-nav="products"]::before {
  transform: scaleX(1);
  opacity: 1;
}

.products-page .navbar-nav-main .nav-link.active:not([data-nav="products"]) {
  color: var(--navy) !important;
}

.products-page .navbar-nav-main .nav-link.active:not([data-nav="products"])::before {
  transform: scaleX(0);
  opacity: 0;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .products-toolbar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .products-toolbar-center {
    justify-content: center;
  }

  .products-sort {
    justify-content: center;
  }

  .products-cta-inner {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    text-align: center;
    gap: 28px;
  }

  .products-cta-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .products-cta-features {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .products-cta-actions {
    justify-content: center;
  }

  .products-cta-social {
    justify-content: center;
  }

  .products-cta-proof {
    text-align: left;
  }

  .products-hero-trust {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 22px;
    border-radius: 20px;
    width: 100%;
    max-width: 100%;
  }

  .products-hero-trust-item {
    justify-content: center;
  }

  .products-trust-label {
    white-space: normal;
    text-align: center;
  }

  .products-page .product-grid-col.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .products-page .product-card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 575px) {
  .products-page-hero {
    padding: 40px 0 44px;
    background-size: 32% auto;
    min-height: 280px;
  }

  .products-hero-bg-overlay {
    background-size: 32% auto;
  }

  .products-hero-trust {
    gap: 14px 20px;
    padding: 16px 22px;
    border-radius: 20px;
    width: calc(100% - 8px);
    max-width: 100%;
  }

  .products-trust-label {
    font-size: 13px;
    white-space: normal;
  }

  .products-page .product-grid-col.col-md-6,
  .products-page .product-grid-col.col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .products-page .product-card-media {
    min-height: 200px;
  }

  .products-stats-row {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .products-stat {
    justify-content: flex-start;
    padding: 22px 24px;
  }

  .products-stat::after {
    display: none !important;
  }

  .products-stat:not(:last-child) {
    border-bottom: 1px solid rgba(208, 38, 137, 0.08);
  }

  .products-cta-inner {
    padding: 32px 20px;
  }

  .products-cta-features {
    gap: 16px 0;
  }

  .products-cta-feature {
    flex: 1 1 45%;
    min-width: 120px;
  }

  .products-cta-feature:nth-child(odd)::after {
    display: none;
  }

  .products-cta-feature:not(:last-child)::after {
    display: none;
  }

  .products-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .products-cta-shipping {
    text-align: center;
    justify-content: center;
  }

  .products-catalog {
    padding: 32px 0 48px;
  }

  .products-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    padding-bottom: 6px;
    max-width: 100%;
  }

  .products-filters::-webkit-scrollbar {
    display: none;
  }

  .products-filter-btn {
    flex-shrink: 0;
  }

  .products-count {
    white-space: normal;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .products-page-hero {
    padding: 44px 0 40px;
    min-height: auto;
  }

  .products-breadcrumb {
    margin-bottom: 24px;
  }

  .products-hero-trust {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 22px;
    border-radius: 20px;
    width: 100%;
    max-width: 100%;
  }

  .products-hero-trust-item {
    justify-content: center;
  }

  .products-trust-label {
    white-space: normal;
    text-align: center;
  }

  .products-page .product-card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .products-page .product-card-link {
    align-self: flex-start;
  }

  .products-stats {
    padding: 0 0 40px;
  }

  .products-cta {
    padding: 0 0 56px;
  }

  .products-cta-visual {
    order: -1;
  }
}
