/* STYLE TAGS */
.style-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.style-tag-btn {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 18px;
  border: 1.5px solid #ddd;
  background: #fff; color: #aaa;
  cursor: pointer; transition: all 0.2s;
}
.style-tag-btn:hover, .style-tag-btn.active {
  background: var(--ink); border-color: var(--ink); color: #fff;
}

/* STYLE GRID */
.top-style-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px;
}
@media (max-width: 1024px) { .top-style-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 767px)  { .top-style-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .top-style-grid { grid-template-columns: repeat(2, 1fr); } }

.style-item { cursor: pointer; overflow: hidden; position: relative; }
.style-item .style-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 0.5s; display: block; }
.style-item:hover .style-img img { transform: scale(1.06); }
.style-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(32,32,32,0.8));
  color: #fff; font-size: 11px; padding: 24px 8px 8px;
  opacity: 0; transition: opacity 0.3s;
}
.style-item:hover .style-label { opacity: 1; }

/* MODAL */
.style-modal { display: none; position: fixed; inset: 0; z-index: 5000; }
.style-modal.open { display: flex; align-items: center; justify-content: center; }
.style-modal__bg { position: absolute; inset: 0; background: rgba(0,0,0,0.85); cursor: pointer; }
.style-modal__content {
  position: relative; background: #fff;
  width: 90%; max-width: 800px;
  display: grid; grid-template-columns: 1fr 1fr;
  max-height: 92vh; overflow: hidden;
  z-index: 1;
}
@media (max-width: 640px) { .style-modal__content { grid-template-columns: 1fr; } }
.style-modal__close {
  position: absolute; top: 14px; right: 18px;
  font-size: 1.6rem; cursor: pointer; color: #bbb; z-index: 10; line-height: 1;
}
.style-modal__close:hover { color: var(--ink); }
.style-modal__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 640px) { .style-modal__img { display: none; } }
.style-modal__info { padding: 44px 36px; overflow-y: auto; }
.style-modal__name { font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; }
.style-modal__recs {
  font-size: 13px; color: #555; line-height: 1.9;
  background: #f6f6f6; padding: 16px; margin-bottom: 20px;
  border-left: 1px solid #d0d0d0; white-space: pre-line;
}
.style-modal__recs strong {
  font-size: 10px; color: #999; letter-spacing: 2px; text-transform: uppercase;
  display: block; margin-bottom: 6px; font-style: normal;
}
.style-modal__row { margin-bottom: 14px; }
.style-modal__row dt { font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #bbb; margin-bottom: 4px; }
.style-modal__row dd { font-size: 14px; color: #444; }
.style-modal__reserve {
  display: block; margin-top: 28px;
  background: var(--ink); color: #fff;
  font-family: 'Archivo', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  text-align: center; padding: 16px;
  transition: background 0.3s;
}
.style-modal__reserve:hover { background: #444; }
