/* Accessories Grid Styles */
.section.accessories {
  padding: 80px 32px;
}

.section.accessories .section-tag {
  margin-top: 14px;
  font-size: 14px;
  color: var(--gray);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
  letter-spacing: 4px;
}

.section.accessories .section-tag::before {
  content: "★ ";
  color: var(--yellow);
}

.section.accessories .section-tag::after {
  content: " ★";
  color: var(--yellow);
}

.acc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.acc-card {
  aspect-ratio: 1/1;
  background: white;
  border: 2px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.acc-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
}

.acc-icon {
  font-size: 32px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.acc-name {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.acc-from {
  font-size: 10px;
  color: var(--pink);
  margin-top: 2px;
  font-weight: 700;
  text-align: center;
}

.section-head h2 .pink {
  color: var(--pink);
}

@media (max-width: 1024px) {
  .acc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .acc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .acc-card {
    padding: 10px;
  }

  .acc-icon {
    font-size: 28px;
    margin-bottom: 8px;
  }
}