/* accesorios.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* SECTION */

.accessories {
  max-width: 1300px;
  margin: auto;
  padding: 80px 20px;
}

/* HEADER */

.accessories-header {
  text-align: center;
  margin-bottom: 60px;
}

.badge {
  display: inline-block;
  background: #111;
  border: 1px solid #222;
  padding: 10px 18px;
  border-radius: 999px;
  color: #22c55e;
  font-size: 14px;
  margin-bottom: 20px;
}

.accessories-header h1 {
  font-size: 52px;
  margin-bottom: 15px;
}

.accessories-header p {
  max-width: 700px;
  margin: auto;
  color: #888;
  line-height: 1.6;
}

/* GRID */

.accessories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

/* CARD */

.accessory-card {
  background: #0f0f0f;
  border: 1px solid #1f1f1f;
  border-radius: 20px;
  padding: 30px;
  transition: 0.3s;
}

.accessory-card:hover {
  transform: translateY(-5px);
  border-color: #22c55e;
}

/* ICON */

.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: #151515;
  border: 1px solid #222;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;
}

.icon-box svg {
  width: 32px;
  height: 32px;
  stroke: #22c55e;
}

/* TITLES */

.accessory-card h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.description {
  color: #888;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* LIST */

.accessory-card ul {
  list-style: none;
  margin-bottom: 25px;
}

.accessory-card ul li {
  margin-bottom: 12px;
  color: #d1d1d1;
}

/* BUTTON */

.btn-card {
  display: inline-block;
  width: 100%;

  text-align: center;
  text-decoration: none;

  padding: 14px;
  border-radius: 14px;

  background: #22c55e;
  color: #000;

  font-weight: bold;

  transition: 0.3s;
}

.btn-card:hover {
  opacity: 0.9;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .accessories-header h1 {
    font-size: 38px;
  }
}
