/* ==========================================================================
   components.css — 导航、页脚、按钮、卡片、轮播、表格、分页、表单、Toast
   ========================================================================== */

/* ---------------- 按钮 ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px; padding: 0 26px;
  border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 600; white-space: nowrap;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }

.btn--primary { background: var(--grad-orange); color: #fff; box-shadow: var(--sh-orange); }
.btn--primary:hover { box-shadow: 0 14px 36px rgba(255, 107, 26, 0.4); }

.btn--ghost { border: 1.5px solid rgba(255, 255, 255, 0.35); color: #fff; backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: var(--c-orange-light); background: rgba(255, 107, 26, 0.14); }

.btn--outline { border: 1.5px solid var(--c-orange); color: var(--c-orange); }
.btn--outline:hover { background: var(--c-orange); color: #fff; box-shadow: var(--sh-orange); }

.btn--dark { background: var(--c-navy-700); color: #fff; }
.btn--dark:hover { background: var(--c-navy-500); }

.btn--light { background: #fff; color: var(--c-navy-700); box-shadow: var(--sh); }

.btn--sm { height: 38px; padding: 0 18px; font-size: 13.5px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.55; pointer-events: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--c-orange);
}
.link-arrow svg { width: 18px; height: 18px; transition: transform var(--dur) var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------------- 导航栏 ---------------- */
.site-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-nav__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.site-nav.is-scrolled {
  background: rgba(8, 18, 34, 0.82);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}
.site-nav--solid { background: rgba(8, 18, 34, 0.92); backdrop-filter: blur(14px); }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.25; }
.brand__name { font-size: 17px; font-weight: 700; color: #fff; letter-spacing: 0.5px; }
.brand__slogan { font-size: 11.5px; color: var(--c-orange-light); letter-spacing: 2.5px; }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu__link {
  position: relative; display: block; padding: 10px 18px;
  font-size: 15px; font-weight: 500; color: rgba(255, 255, 255, 0.82);
}
.nav-menu__link::after {
  content: ''; position: absolute; left: 18px; right: 18px; bottom: 2px;
  height: 2px; background: var(--grad-orange); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav-menu__link:hover { color: #fff; }
.nav-menu__link:hover::after,
.nav-menu__link.is-active::after { transform: scaleX(1); }
.nav-menu__link.is-active { color: #fff; font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.8); font-size: 14px; }
.nav-phone svg { width: 17px; height: 17px; color: var(--c-orange-light); }

.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-toggle span {
  position: relative; display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px;
  transition: background 160ms var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform var(--dur) var(--ease), top var(--dur) var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

.nav-drawer {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: rgba(6, 14, 27, 0.97);
  backdrop-filter: blur(18px);
  padding: 28px 24px 40px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%);
  transition: transform 340ms var(--ease);
  overflow-y: auto;
}
.nav-drawer.is-open { transform: none; }
.nav-drawer a {
  padding: 16px 6px; font-size: 17px; color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.nav-drawer a.is-active { color: var(--c-orange-light); font-weight: 600; }

/* ---------------- 页脚 ---------------- */
.site-footer { background: var(--c-navy-900); color: #93A5BC; padding-top: 72px; position: relative; }
.site-footer::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--c-orange), transparent);
  opacity: 0.65;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer-col__title {
  font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 22px;
  position: relative; padding-bottom: 12px;
}
.footer-col__title::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px;
  background: var(--grad-orange); border-radius: 2px;
}
.footer-col li + li { margin-top: 11px; }
.footer-col a:hover { color: var(--c-orange-light); }
.footer-about p { margin-top: 18px; font-size: 14px; line-height: 1.9; color: #7E90A8; }
.footer-contact li { display: flex; gap: 10px; font-size: 14px; }
.footer-contact svg { width: 16px; height: 16px; flex: none; margin-top: 5px; color: var(--c-orange); }
.footer-qr {
  width: 116px; height: 116px; border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06); border: 1px dashed rgba(255, 255, 255, 0.18);
  display: grid; place-items: center; font-size: 12px; color: #7E90A8; text-align: center;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 0; font-size: 13px; color: #6B7C93;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* ---------------- 轮播 ---------------- */
.carousel { position: relative; height: 640px; overflow: hidden; background: var(--c-navy-900); }
.carousel__track { position: absolute; inset: 0; }
.carousel__slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 800ms var(--ease), visibility 800ms;
}
.carousel__slide.is-active { opacity: 1; visibility: visible; }
.carousel__media { position: absolute; inset: 0; }
.carousel__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  transition: transform 7000ms linear;
}
.carousel__slide.is-active .carousel__media img { transform: scale(1); }
.carousel__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 22, 0.94) 0%, rgba(5, 11, 22, 0.75) 42%, rgba(5, 11, 22, 0.25) 100%),
    linear-gradient(0deg, rgba(5, 11, 22, 0.85) 0%, transparent 55%);
}
.carousel__content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 660px;
}
.carousel__tag {
  display: inline-flex; align-items: center; gap: 9px; align-self: flex-start;
  padding: 7px 16px; border-radius: var(--radius-pill);
  background: rgba(255, 107, 26, 0.16); border: 1px solid rgba(255, 107, 26, 0.4);
  color: var(--c-orange-light); font-size: 13px; font-weight: 600; letter-spacing: 1px;
}
.carousel__title {
  margin-top: 22px; font-size: 52px; line-height: 1.18; color: #fff; font-weight: 700;
  letter-spacing: -0.5px;
}
.carousel__subtitle { margin-top: 20px; font-size: 18px; line-height: 1.8; color: #B9C8DC; max-width: 560px; }
.carousel__actions { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }

.carousel__slide.is-active .carousel__tag { animation: slideUp 700ms var(--ease) both; }
.carousel__slide.is-active .carousel__title { animation: slideUp 700ms 120ms var(--ease) both; }
.carousel__slide.is-active .carousel__subtitle { animation: slideUp 700ms 240ms var(--ease) both; }
.carousel__slide.is-active .carousel__actions { animation: slideUp 700ms 360ms var(--ease) both; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

.carousel__arrow {
  position: absolute; top: 50%; z-index: 3; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff; backdrop-filter: blur(8px);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.carousel__arrow:hover { background: var(--c-orange); border-color: var(--c-orange); }
.carousel__arrow svg { width: 22px; height: 22px; }
.carousel__arrow--prev { left: 32px; }
.carousel__arrow--next { right: 32px; }

.carousel__dots { position: absolute; right: 48px; bottom: 44px; z-index: 3; display: flex; gap: 10px; }
.carousel__dot {
  width: 34px; height: 4px; border-radius: 2px;
  background: rgba(255, 255, 255, 0.28);
  transition: background var(--dur) var(--ease), width var(--dur) var(--ease);
}
.carousel__dot.is-active { width: 48px; background: var(--grad-orange); }

.carousel__progress {
  position: absolute; left: 0; bottom: 0; z-index: 3; height: 3px; width: 100%;
  background: rgba(255, 255, 255, 0.08);
}
.carousel__progress span {
  display: block; height: 100%; width: 0; background: var(--grad-orange);
}

/* ---------------- 卡片 ---------------- */
.card {
  background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }

.media { position: relative; overflow: hidden; background: var(--c-navy-700); }
.media::before { content: ''; display: block; padding-top: 75%; }
.media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms var(--ease);
}
.card:hover .media img { transform: scale(1.06); }
.media--wide::before { padding-top: 66.66%; }
.media--square::before { padding-top: 100%; }

/* 产品卡片 */
.product-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.product-card__model {
  font-size: 19px; font-weight: 700; color: var(--t-strong); letter-spacing: 0.3px;
  transition: color var(--dur) var(--ease);
}
.card:hover .product-card__model { color: var(--c-orange); }
.product-card__name { margin-top: 6px; font-size: 14px; color: var(--t-body); }
.product-card__specs {
  margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--bg-soft);
  display: flex; gap: 22px; flex-wrap: wrap;
}
.product-card__spec { font-size: 13px; color: var(--t-muted); }
.product-card__spec b { display: block; font-size: 15px; color: var(--t-strong); font-weight: 600; }
.product-card__foot {
  margin-top: auto; padding-top: 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.product-card__more { font-size: 13.5px; font-weight: 600; color: var(--c-orange); display: flex; align-items: center; gap: 6px; }
.product-card__more svg { width: 15px; height: 15px; transition: transform var(--dur) var(--ease); }
.card:hover .product-card__more svg { transform: translateX(4px); }

/* 色标 */
.load-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 13px 5px 9px; border-radius: var(--radius-pill);
  background: rgba(5, 11, 22, 0.7); backdrop-filter: blur(6px);
  font-size: 12px; font-weight: 600; color: #fff;
}
.load-badge__dot { width: 9px; height: 9px; border-radius: 50%; box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16), inset 0 0 0 1px rgba(15, 23, 42, 0.25); }
.load-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: var(--radius-pill);
  background: var(--bg-soft); font-size: 13.5px; font-weight: 600; color: var(--t-strong);
}

.tag {
  display: inline-flex; align-items: center; padding: 6px 14px;
  border-radius: var(--radius-pill); background: var(--bg-soft);
  font-size: 13px; color: var(--t-body);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.tag:hover { background: rgba(255, 107, 26, 0.12); color: var(--c-orange-dark); }

/* ---------------- 表格 ---------------- */
.spec-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--sh-sm); }
.spec-table { min-width: 480px; background: #fff; }
.spec-table thead th {
  background: var(--c-navy-700); color: #fff; font-weight: 600; font-size: 14px;
  text-align: left; padding: 15px 22px;
}
.spec-table tbody td { padding: 14px 22px; font-size: 14.5px; border-bottom: 1px solid var(--bg-soft); }
.spec-table tbody tr:nth-child(even) { background: #FAFCFE; }
.spec-table tbody tr:hover { background: rgba(255, 107, 26, 0.05); }
.spec-table tbody td:first-child { color: var(--t-body); width: 38%; }
.spec-table tbody td:nth-child(2) { color: var(--t-strong); font-weight: 600; }
.spec-table tbody td:last-child { color: var(--t-muted); width: 18%; }

/* ---------------- 分页 ---------------- */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.pagination button {
  min-width: 42px; height: 42px; padding: 0 12px; border-radius: var(--radius-sm);
  background: #fff; color: var(--t-body); font-size: 14px; font-weight: 500;
  box-shadow: var(--sh-sm);
  transition: all var(--dur) var(--ease);
}
.pagination button:hover:not(:disabled):not(.is-active) { color: var(--c-orange); transform: translateY(-2px); }
.pagination button.is-active { background: var(--grad-orange); color: #fff; box-shadow: var(--sh-orange); }
.pagination button:disabled { opacity: 0.4; cursor: not-allowed; }
.pagination__ellipsis { color: var(--t-muted); padding: 0 4px; }

/* ---------------- 表单 ---------------- */
.field { position: relative; margin-bottom: 22px; }
.field__label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 600; color: var(--t-strong); }
.field__label .req { color: var(--f-danger); margin-left: 3px; }
.input, .textarea, .select {
  width: 100%; padding: 13px 16px;
  background: #fff; border: 1.5px solid #DCE4EE; border-radius: var(--radius-sm);
  font-size: 15px; color: var(--t-strong);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.input::placeholder, .textarea::placeholder { color: #B4C0CE; }
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--c-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.12);
}
.textarea { min-height: 130px; resize: vertical; line-height: 1.7; }
.select {
  appearance: none; cursor: pointer; padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B6B7F' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 17px;
}
.field__error { margin-top: 6px; font-size: 12.5px; color: var(--f-danger); min-height: 18px; }
.field.has-error .input, .field.has-error .textarea, .field.has-error .select { border-color: var(--f-danger); }

.checkbox { display: flex; align-items: center; gap: 10px; cursor: pointer; padding: 7px 0; font-size: 14px; }
.checkbox input { position: absolute; opacity: 0; pointer-events: none; }
.checkbox__box {
  width: 18px; height: 18px; border-radius: 4px; border: 1.5px solid #C6D0DC;
  display: grid; place-items: center; flex: none;
  transition: all var(--dur) var(--ease);
}
.checkbox__box svg { width: 12px; height: 12px; color: #fff; opacity: 0; transition: opacity 140ms; }
.checkbox input:checked + .checkbox__box { background: var(--c-orange); border-color: var(--c-orange); }
.checkbox input:checked + .checkbox__box svg { opacity: 1; }
.checkbox:hover .checkbox__box { border-color: var(--c-orange); }

/* ---------------- Toast ---------------- */
.toast-stack {
  position: fixed; top: 92px; right: 24px; z-index: 300;
  display: flex; flex-direction: column; gap: 12px; pointer-events: none;
}
.toast {
  display: flex; align-items: flex-start; gap: 12px;
  min-width: 280px; max-width: 380px; padding: 14px 18px;
  border-radius: var(--radius); background: #fff;
  box-shadow: var(--sh-lg); border-left: 4px solid var(--f-info);
  font-size: 14px; color: var(--t-strong);
  animation: toastIn 320ms var(--ease) both;
  pointer-events: auto;
}
.toast--success { border-left-color: var(--f-success); }
.toast--error { border-left-color: var(--f-danger); }
.toast--warning { border-left-color: var(--f-warning); }
.toast.is-leaving { animation: toastOut 260ms var(--ease) both; }
.toast svg { width: 19px; height: 19px; flex: none; margin-top: 2px; }
.toast--success svg { color: var(--f-success); }
.toast--error svg { color: var(--f-danger); }
.toast--info svg { color: var(--f-info); }
.toast--warning svg { color: var(--f-warning); }

/* 单例 toast：由 utils.toast() 动态创建，无需 .toast-stack 容器 */
#toast {
  position: fixed; top: 92px; right: 24px; z-index: 300;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 240ms var(--ease), visibility 240ms var(--ease);
}
#toast.toast--show { opacity: 1; visibility: visible; pointer-events: auto; }

@keyframes toastIn { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: none; } }
@keyframes toastOut { to { opacity: 0; transform: translateX(40px); } }

/* ---------------- 骨架屏 / 空态 ---------------- */
.skeleton {
  background: linear-gradient(90deg, #E9EEF5 25%, #F4F7FA 37%, #E9EEF5 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

.skeleton-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sh-sm); }
.skeleton-card__media { padding-top: 75%; position: relative; }
.skeleton-card__media > div { position: absolute; inset: 0; }
.skeleton-card__body { padding: 22px 24px 26px; }

.empty-state { padding: 72px 20px; text-align: center; }
.empty-state svg { width: 86px; height: 86px; margin: 0 auto 22px; color: #C3CFDD; }
.empty-state__title { font-size: 18px; color: var(--t-strong); font-weight: 600; }
.empty-state__desc { margin-top: 10px; font-size: 14.5px; color: var(--t-muted); }

/* ---------------- 面包屑 ---------------- */
.breadcrumb { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: rgba(255, 255, 255, 0.6); flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--c-orange-light); }
.breadcrumb__sep { opacity: 0.45; }
.breadcrumb__current { color: #fff; }

/* ---------------- 页面 Banner ---------------- */
.page-banner {
  position: relative; padding: calc(var(--nav-h) + 62px) 0 62px;
  background: var(--grad-dark); overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 46px 46px;
}
.page-banner::after {
  content: ''; position: absolute; right: -80px; top: -120px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.2) 0%, transparent 68%);
}
.page-banner__inner { position: relative; z-index: 2; }
.page-banner__title { margin-top: 16px; font-size: 40px; color: #fff; }
.page-banner__desc { margin-top: 12px; font-size: 16px; color: #9DB0C7; max-width: 620px; }

/* ---------------- 响应式 ---------------- */
@media (max-width: 1024px) {
  .carousel { height: 560px; }
  .carousel__title { font-size: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-banner__title { font-size: 32px; }
}

@media (max-width: 900px) {
  .nav-menu, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn { display: none; }
}

@media (max-width: 768px) {
  .carousel { height: 520px; }
  .carousel__title { font-size: 29px; }
  .carousel__subtitle { font-size: 15px; margin-top: 14px; }
  .carousel__actions { margin-top: 26px; }
  .carousel__arrow { display: none; }
  .carousel__dots { left: 24px; right: auto; bottom: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-banner { padding: calc(var(--nav-h) + 44px) 0 44px; }
  .page-banner__title { font-size: 26px; }
  .toast-stack { top: auto; bottom: 20px; left: 16px; right: 16px; }
  .toast { min-width: 0; max-width: none; }
  #toast { top: auto; bottom: 20px; left: 16px; right: 16px; }
  .btn { height: 44px; padding: 0 20px; font-size: 14.5px; }
}

/* ---------------- 生产设备 ---------------- */
.equipment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.equipment-item {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.equipment-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.equipment-item .media::before {
  padding-top: 56%;
}
.equipment-item__name {
  padding: 18px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--t-strong);
}
@media (max-width: 768px) {
  .equipment__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .equipment__grid {
    grid-template-columns: 1fr;
  }
}
