/**
 * SKSculpts Premium — Benefits Strip
 * Covers: .sk-benefits, .sk-benefit-grid, .sk-benefit, .sk-benefit-icon
 * Depends on: tokens.css
 */

.sk-benefits {
  background: var(--sk-bg);
  padding: 0;
}

.sk-benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--sk-border);
  background: var(--sk-card);
  box-shadow: 0 12px 34px rgba(19, 28, 36, 0.04);
}

.sk-benefit {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--sk-border);
}
.sk-benefit:last-child { border-right: 0; }

.sk-benefit-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  color: var(--sk-gold2);
  font-size: 29px;
}
.sk-benefit strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--sk-text);
}
.sk-benefit span {
  margin-top: 10px;
  color: var(--sk-muted);
  font-size: 10px;
  letter-spacing: 0.02em;
}

/* Dark theme */
html[data-theme="dark"] .sk-benefit-grid {
  background: linear-gradient(115deg, #182127, #14202a);
  border-color: rgba(202, 170, 109, 0.16);
  box-shadow: none;
}
html[data-theme="dark"] .sk-benefit { border-right-color: rgba(255, 255, 255, 0.09); }
html[data-theme="dark"] .sk-benefit strong { color: #f5f1e9; }

/* Responsive */
@media (max-width: 768px) {
  .sk-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sk-benefit:nth-child(2n) { border-right: 0; }
  .sk-benefit:last-child    { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .sk-benefit-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .sk-benefit-grid::-webkit-scrollbar { display: none; }
  .sk-benefit {
    flex: 0 0 78%;
    min-height: 132px;
    scroll-snap-align: center;
    border-right: 1px solid var(--sk-border);
  }
}

@media (max-width: 600px) {
  .sk-benefit            { min-height: 120px; padding: 14px 8px; }
  .sk-benefit strong     { font-size: 11px; }
  .sk-benefit span       { font-size: 9px; }
}
