.glossary-detail { max-width: 900px; margin: 0 auto; padding: 20px; }
.glossary-detail__content { margin-bottom: 40px; }
.glossary-detail__image { margin-bottom: 25px; border-radius: 16px; overflow: hidden; }
.glossary-detail__image img { max-width: 100%; height: auto; display: block; }
.glossary-detail__text { font-size: 16px; line-height: 1.7; color: #333; margin-bottom: 40px; }
.glossary-detail__text h2, .glossary-detail__text h3 { margin-top: 30px; margin-bottom: 10px; color: #1a1a1a; }
.glossary-detail__text p { margin-bottom: 15px; }
.glossary-detail__text ul, .glossary-detail__text ol { margin-bottom: 15px; padding-left: 25px; }
.glossary-detail__text li { margin-bottom: 5px; }
.glossary-detail__products { margin-top: 50px; padding-top: 30px; border-top: 1px solid #e8e8e8; }
.glossary-detail__products-title { font-size: 24px; font-weight: 700; color: #1a1a1a; margin: 0 0 20px; }
.glossary-detail__products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.glossary-product-card { display: block; background: #fff; border: 1px solid #e8e8e8; border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; transition: all 0.2s ease; }
.glossary-product-card:hover { border-color: #FF7FC9; box-shadow: 0 4px 16px rgba(255,127,201,0.15); transform: translateY(-2px); text-decoration: none; }
.glossary-product-card__image { aspect-ratio: 1; overflow: hidden; background: #f5f5f5; }
.glossary-product-card__image img { width: 100%; height: 100%; object-fit: cover; }
.glossary-product-card__image--empty { display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 13px; }
.glossary-product-card__info { padding: 12px; }
.glossary-product-card__name { font-size: 14px; font-weight: 500; color: #333; line-height: 1.3; margin-bottom: 6px; }
.glossary-product-card:hover .glossary-product-card__name { color: #FF7FC9; }
.glossary-product-card__price { font-size: 16px; font-weight: 700; color: #FF7FC9; }
.glossary-detail__back { margin-top: 40px; padding-top: 20px; border-top: 1px solid #e8e8e8; }
.glossary-detail__back-link { display: inline-flex; align-items: center; color: #FF7FC9; text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.2s; }
.glossary-detail__back-link:hover { color: #e060b0; text-decoration: underline; }
@media (max-width: 768px) { .glossary-detail__products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .glossary-detail__products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }