/* ===== 全局重置 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== 粒子容器 ===== */
#particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* ===== 导航 ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.5rem;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f0f0f0;
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.3s;
}
.nav-logo:hover {
  color: #7ae0c0;
}
.nav-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
}
.nav-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #7ae0c0;
  transition: width 0.3s;
}
.nav-links a:hover {
  color: #f0f0f0;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e0e0e0;
  transition: 0.3s;
}

/* ===== 容器 ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}
.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #f0f0f0;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.section-title--center {
  text-align: center;
}
.section-subtitle {
  text-align: center;
  color: #888;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* ===== 玻璃卡片 ===== */
.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(122, 224, 192, 0.3);
  box-shadow: 0 8px 40px rgba(122, 224, 192, 0.06);
  transform: translateY(-2px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem;
}
.hero-inner {
  max-width: 800px;
}
.hero-logo {
  font-size: 3.5rem;
  font-weight: 800;
  color: #f0f0f0;
  text-decoration: none;
  letter-spacing: 8px;
  display: inline-block;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.hero-logo:hover {
  color: #7ae0c0;
}
.hero-name {
  font-size: 3.8rem;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 0.5rem;
  letter-spacing: 4px;
}
.hero-tagline {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}
.btn-glass {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.4s;
}
.btn-glass:hover {
  background: rgba(122, 224, 192, 0.15);
  border-color: #7ae0c0;
  color: #7ae0c0;
  box-shadow: 0 0 40px rgba(122, 224, 192, 0.08);
  transform: scale(1.03);
}
.hero-contact {
  margin-top: 2.5rem;
  color: #666;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.hero-contact p {
  margin: 0.2rem 0;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
}
.about-card p {
  color: #bbb;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}
.skills-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.skill-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.skill-name {
  color: #ccc;
  font-size: 0.8rem;
}
.skill-percent {
  color: #7ae0c0;
  font-size: 0.75rem;
  font-weight: 600;
}
.skill-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #7ae0c0, #4db8a0);
  border-radius: 4px;
  transition: width 1s ease;
}

/* ===== 分类 ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.category-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.2rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}
.category-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #7ae0c0;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 48px rgba(122, 224, 192, 0.08);
}
.category-thumb {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.8rem;
  background: rgba(255, 255, 255, 0.04);
}
.category-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.category-card:hover .category-thumb img {
  transform: scale(1.05);
}
.category-card h3 {
  color: #f0f0f0;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.category-card p {
  color: #888;
  font-size: 0.8rem;
}

/* ===== 纯文字分类卡片 - 薄荷绿配色 ===== */
.category-grid--no-img {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-grid--no-img .category-card--text {
  padding: 2.8rem 1.5rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  border: 1px solid rgba(122, 224, 192, 0.2);
  background: rgba(122, 224, 192, 0.06);
  backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-grid--no-img .category-card--text:hover {
  background: rgba(122, 224, 192, 0.15);
  border-color: #7ae0c0;
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 48px rgba(122, 224, 192, 0.2), inset 0 0 40px rgba(122, 224, 192, 0.05);
}

.category-grid--no-img .category-card--text h3 {
  color: #7ae0c0;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.category-grid--no-img .category-card--text p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* ===== 作品行 ===== */
.work-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}
.work-row--reverse {
  direction: rtl;
}
.work-row--reverse .work-text {
  direction: ltr;
}
.work-image {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s;
}
.work-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.work-image:hover img {
  transform: scale(1.03);
}
.work-img-btn {
  display: block;
  width: 100%;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}
.work-text .work-tag {
  display: inline-block;
  padding: 0.15rem 0.8rem;
  background: rgba(122, 224, 192, 0.12);
  color: #7ae0c0;
  border-radius: 20px;
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.work-text h3 {
  color: #f0f0f0;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.work-text p {
  color: #999;
  font-size: 0.9rem;
}

/* ===== 建模 ===== */
.modeling-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.modeling-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: all 0.4s;
  padding: 0;
}
.modeling-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.modeling-item:hover img {
  transform: scale(1.04);
}

/* ============================================================
   板绘手绘 - 左边投影
   ============================================================ */
.illustration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.illustration-item-wrapper {
  position: relative;
  border-radius: 12px;
  aspect-ratio: 1/1;
}

/* 左边投影 */
.illustration-item-wrapper::before {
  content: '';
  position: absolute;
  top: 8px;
  left: -6px;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(122, 224, 192, 0.04);
  border-radius: 12px;
  box-shadow:
    -4px 4px 12px rgba(122, 224, 192, 0.03),
    -8px 8px 24px rgba(122, 224, 192, 0.02);
  transition: all 0.5s ease;
  pointer-events: none;
}
.illustration-item-wrapper:hover::before {
  background: rgba(122, 224, 192, 0.08);
  box-shadow:
    -8px 8px 20px rgba(122, 224, 192, 0.06),
    -16px 16px 40px rgba(122, 224, 192, 0.03);
  transform: translateX(-4px);
}
.illustration-item-wrapper::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -2px;
  width: 90%;
  height: 20%;
  z-index: 0;
  background: linear-gradient(to right, rgba(122, 224, 192, 0.03), transparent);
  border-radius: 50%;
  filter: blur(8px);
  transition: all 0.5s ease;
  pointer-events: none;
}
.illustration-item-wrapper:hover::after {
  background: linear-gradient(to right, rgba(122, 224, 192, 0.08), transparent);
  transform: translateX(-4px) scaleX(1.1);
}

.illustration-item {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: all 0.4s;
  padding: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.illustration-item:hover {
  border-color: #7ae0c0;
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(122, 224, 192, 0.08);
  z-index: 5;
}
.illustration-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.illustration-item:hover img {
  transform: scale(1.06);
}

/* ============================================================
   图片悬停提示 - 右上角
   ============================================================ */
.work-image,
.illustration-item-wrapper,
.ecommerce-item {
  position: relative;
  overflow: hidden;
}

.work-image .view-hint,
.illustration-item-wrapper .view-hint,
.ecommerce-item .view-hint {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 2;
  font-weight: 400;
  backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.work-image:hover .view-hint,
.illustration-item-wrapper:hover .view-hint,
.ecommerce-item:hover .view-hint {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 480px) {
  .work-image .view-hint,
  .illustration-item-wrapper .view-hint,
  .ecommerce-item .view-hint {
    font-size: 0.65rem;
    padding: 4px 10px;
    top: 8px;
    right: 8px;
  }
}

/* ============================================================
   电商/详情页设计 - 大图轮播（竖版长图）
   ============================================================ */
.ecommerce-carousel-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  justify-content: center;
}

.ecommerce-gallery-wrapper {
  flex: 1;
  max-width: 400px;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 9/16;
  max-height: 70vh;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ecommerce-gallery {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
}

.ecommerce-slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ecommerce-item {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
}

.ecommerce-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.4s;
}

.ecommerce-item:hover img {
  transform: scale(1.02);
}

/* 左右箭头 */
.ecommerce-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  color: #aaa;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  z-index: 2;
}
.ecommerce-arrow:hover {
  background: rgba(122, 224, 192, 0.12);
  border-color: #7ae0c0;
  color: #7ae0c0;
  transform: scale(1.08);
}
.ecommerce-arrow:active {
  transform: scale(0.95);
}

/* 底部小圆点 */
.ecommerce-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.ecommerce-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.4s;
  padding: 0;
}
.ecommerce-dot:hover {
  background: rgba(255, 255, 255, 0.3);
}
.ecommerce-dot.active {
  background: #7ae0c0;
  box-shadow: 0 0 16px rgba(122, 224, 192, 0.3);
  transform: scale(1.2);
}

/* 底部提示 */
.ecommerce-hint {
  text-align: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
  margin-top: 0.8rem;
  letter-spacing: 1px;
}

/* ===== 海娜手绘 ===== */
.henna-carousel-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
}

.henna-gallery-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
}

.henna-gallery {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.8rem 0.3rem 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.henna-gallery::-webkit-scrollbar {
  display: none;
}

.henna-item {
  flex: 0 0 200px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: all 0.4s;
  scroll-snap-align: start;
  padding: 0;
  aspect-ratio: 4/5;
}
.henna-item:hover {
  border-color: #7ae0c0;
  transform: scale(1.06);
  box-shadow: 0 8px 40px rgba(122, 224, 192, 0.08);
  z-index: 5;
}
.henna-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.henna-item:hover img {
  transform: scale(1.05);
}

.henna-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  color: #aaa;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.henna-arrow:hover {
  background: rgba(122, 224, 192, 0.12);
  border-color: #7ae0c0;
  color: #7ae0c0;
  transform: scale(1.08);
}
.henna-arrow:active {
  transform: scale(0.95);
}

.henna-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}
.henna-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.4s;
  padding: 0;
}
.henna-dot:hover {
  background: rgba(255, 255, 255, 0.3);
}
.henna-dot.active {
  background: #7ae0c0;
  box-shadow: 0 0 12px rgba(122, 224, 192, 0.3);
  transform: scale(1.2);
}

/* ===== 页脚 ===== */
.footer {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  color: #555;
  font-size: 0.75rem;
  letter-spacing: 1px;
}
.footer-inner p {
  margin: 0.2rem 0;
}
.footer-contact {
  color: #666;
}

/* ===== 模态框 ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  cursor: pointer;
}
.modal-content {
  position: relative;
  z-index: 10;
  max-width: 85vw;
  max-height: 85vh;
  padding: 1.5rem;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modal-close {
  position: absolute;
  top: 6px;
  right: 12px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 2;
}
.modal-close:hover {
  color: #f0f0f0;
}
.modal-title {
  color: #f0f0f0;
  margin-bottom: 0.8rem;
  text-align: center;
  font-size: 1.1rem;
  width: 100%;
}
.modal-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.modal-image img {
  max-width: 100%;
  max-height: 60vh;
  border-radius: 8px;
  display: block;
  object-fit: contain;
  width: auto;
  height: auto;
}

/* ============================================================
   响应式适配
   ============================================================ */
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  .category-grid--no-img {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.96);
    padding: 1.2rem 1.5rem;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .work-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
  }
  .work-row--reverse {
    direction: ltr;
  }
  .work-image img {
    aspect-ratio: 3/2;
  }
  .modeling-grid {
    grid-template-columns: 1fr;
  }
  .illustration-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  .category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  .category-grid--no-img {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  .category-grid--no-img .category-card--text {
    padding: 1.8rem 1rem;
    min-height: 120px;
  }
  .category-grid--no-img .category-card--text h3 {
    font-size: 1rem;
  }
  .category-grid--no-img .category-card--text p {
    font-size: 0.75rem;
  }
  .hero-name {
    font-size: 2.5rem;
  }
  .hero-logo {
    font-size: 2.5rem;
  }
  .hero-tagline {
    font-size: 0.95rem;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .section {
    padding: 2.5rem 0;
  }
  .container {
    padding: 0 1rem;
  }
  .glass-card {
    padding: 1.2rem;
  }
  .henna-item {
    flex: 0 0 150px;
  }
  .henna-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .ecommerce-gallery-wrapper {
    max-width: 280px;
    max-height: 60vh;
  }
  .ecommerce-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .hero-name {
    font-size: 2rem;
  }
  .hero-logo {
    font-size: 2rem;
    letter-spacing: 4px;
  }
  .illustration-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  .category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  .category-grid--no-img {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  .category-grid--no-img .category-card--text {
    padding: 1.2rem 0.8rem;
    min-height: 90px;
  }
  .category-grid--no-img .category-card--text h3 {
    font-size: 0.85rem;
  }
  .category-grid--no-img .category-card--text p {
    display: none;
  }
  .category-card {
    padding: 0.8rem;
  }
  .category-card h3 {
    font-size: 0.85rem;
  }
  .category-card p {
    font-size: 0.7rem;
  }
  .henna-item {
    flex: 0 0 120px;
  }
  .henna-arrow {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }
  .section {
    padding: 2rem 0;
  }
  .container {
    padding: 0 0.8rem;
  }
  .modal-content {
    max-width: 95vw;
    padding: 1rem;
  }
  .modal-image img {
    max-height: 50vh;
  }
  .ecommerce-gallery-wrapper {
    max-width: 200px;
    max-height: 50vh;
  }
  .ecommerce-arrow {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }
}