/* ═══════════════════════════════════════════════════
   TOPCOM — Shopbranding & Shopmöbel Page
   ═══════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.shop-hero {
  position: relative; width: 100%; height: 75vh; min-height: 480px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--black);
}
.shop-hero .hero-abstract { position: absolute; inset: 0; z-index: 1; }
.shop-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.shop-hero .abs-gradient {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.5) 70%),
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
}
.shop-hero .page-hero-content {
  position: relative; z-index: 3; text-align: center;
  padding: 0 var(--space-lg); max-width: 800px;
}

.hero-label {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: var(--space-xl); opacity: 0;
  animation: fadeInDown 0.8s var(--ease-out) 0.3s forwards;
}
.hero-label span:not(.label-line) {
  font-size: var(--fs-sm); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.25em; color: rgba(255,255,255,0.8);
}
.label-line {
  display: block; height: 1px; width: 0; background: rgba(255,255,255,0.4);
  animation: lineDraw 1s var(--ease-out) 0.8s forwards;
}
@keyframes lineDraw { to { width: 60px; } }

.hero-heading {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  margin-bottom: var(--space-lg);
}
.hh-line {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem); font-weight: 800;
  color: var(--white); line-height: 1.15; opacity: 0;
}
.hh-1 { animation: fadeInUp 0.8s var(--ease-out) 0.5s forwards; }
.hh-2 { animation: fadeInUp 0.8s var(--ease-out) 0.7s forwards; }
.hh-2 em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.5); }

.hero-sub {
  font-size: var(--fs-md); color: rgba(255,255,255,0.4); line-height: 1.6;
  opacity: 0; animation: fadeIn 0.8s var(--ease-out) 1.2s forwards;
}

.hero-corner {
  position: absolute; width: 70px; height: 70px; z-index: 3;
  pointer-events: none; opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.2s forwards;
}
.hero-corner-tl { top: 30px; left: 30px; border-top: 2px solid rgba(255,255,255,0.15); border-left: 2px solid rgba(255,255,255,0.15); }
.hero-corner-br { bottom: 30px; right: 30px; border-bottom: 2px solid rgba(255,255,255,0.15); border-right: 2px solid rgba(255,255,255,0.15); }

/* ══════════════════════════════════════════════════
   INTRO — Two Column
   ══════════════════════════════════════════════════ */
.shop-intro { background: var(--white); overflow: hidden; }

.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl); align-items: start;
}

.intro-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--black); color: var(--white);
  margin-bottom: var(--space-lg);
}
.intro-badge svg { color: rgba(255,255,255,0.5); }

.intro-text h2 {
  font-size: var(--fs-2xl); font-weight: 800; color: var(--black);
  margin-bottom: var(--space-lg); line-height: 1.2;
}
.intro-text h2 em { font-style: italic; font-weight: 300; color: var(--gray-400); }

.intro-text p {
  font-size: var(--fs-md); line-height: 1.8; color: var(--gray-600);
  margin-bottom: var(--space-md);
}

/* Feature Cards */
.intro-features { display: flex; flex-direction: column; gap: 16px; }
.feature-card {
  background: var(--gray-100); border-radius: 20px;
  padding: var(--space-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease-out);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }

.fc-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-sm);
}
.feature-card h4 { font-size: var(--fs-base); font-weight: 700; color: var(--black); margin-bottom: 4px; }
.feature-card p { font-size: var(--fs-sm); color: var(--gray-500); line-height: 1.5; }

/* ══════════════════════════════════════════════════
   DETAIL CARD
   ══════════════════════════════════════════════════ */
.shop-detail { background: var(--white); overflow: hidden; padding-top: 0; }

.detail-card {
  background: var(--black); border-radius: 24px;
  padding: var(--space-2xl);
}
.detail-inner { max-width: 700px; }

.detail-card h3 { font-size: var(--fs-xl); font-weight: 800; color: var(--white); margin-bottom: var(--space-md); }
.detail-card h3 em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.4); }
.detail-card p { font-size: var(--fs-md); line-height: 1.8; color: rgba(255,255,255,0.5); margin-bottom: var(--space-lg); }

.detail-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.dtag {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  font-size: var(--fs-xs); font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}
.dtag:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

/* ══════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════ */
.shop-gallery { background: var(--gray-100); overflow: hidden; }

.gallery-header {
  text-align: center; margin-bottom: var(--space-xl);
}
.gallery-header h2 {
  font-size: var(--fs-2xl); font-weight: 800; color: var(--black);
  margin-bottom: var(--space-xs);
}
.gallery-header h2 em { font-style: italic; font-weight: 300; color: var(--gray-400); }
.gallery-header p { font-size: var(--fs-md); color: var(--gray-500); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item { border-radius: 16px; overflow: hidden; cursor: pointer; }
.gallery-hidden { display: none; }
.gallery-item.gallery-show { display: block; }

.gi-wrap {
  width: 100%; background: var(--white); border-radius: 16px;
  overflow: hidden; border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease-out);
}
.gallery-item:hover .gi-wrap {
  transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.gi-wrap img {
  width: 100%; height: auto; display: block;
  /* IMPORTANT: show full image, no cropping */
  object-fit: contain;
}

/* Toggle button */
.gallery-toggle { text-align: center; margin-top: var(--space-xl); }
.gallery-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 100px;
  font-size: var(--fs-sm); font-weight: 600;
  background: var(--black); color: var(--white);
  border: none; cursor: pointer;
  transition: all 0.4s var(--ease-out);
}
.gallery-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.gb-icon { transition: transform 0.3s ease; }
.gallery-btn.expanded .gb-icon { transform: rotate(180deg); }

/* Empty state */
.gallery-empty {
  text-align: center; padding: var(--space-2xl);
  background: var(--white); border-radius: 20px; border: 1px dashed var(--gray-200);
}
.ge-icon { color: var(--gray-300); margin-bottom: var(--space-md); }
.gallery-empty p { font-size: var(--fs-md); color: var(--gray-400); }

/* ══════════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.lightbox.active { display: flex; opacity: 1; }

.lb-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--white);
  cursor: pointer; padding: 12px; border-radius: 50%;
  transition: background 0.3s ease;
}
.lb-close:hover { background: rgba(255,255,255,0.1); }

.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--white);
  cursor: pointer; padding: 14px; border-radius: 50%;
  transition: background 0.3s ease;
}
.lb-nav:hover { background: rgba(255,255,255,0.1); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }

.lb-content {
  max-width: 90vw; max-height: 85vh;
  display: flex; align-items: center; justify-content: center;
}
.lb-content img {
  max-width: 100%; max-height: 85vh;
  object-fit: contain; border-radius: 8px;
}

.lb-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: var(--fs-xs); color: rgba(255,255,255,0.4);
  font-weight: 600; letter-spacing: 0.1em;
}

/* ══════════════════════════════════════════════════
   CTA
   ══════════════════════════════════════════════════ */
.shop-cta { background: var(--black); padding: var(--space-2xl) 0; }
.shop-cta .cta-inner {
  max-width: 700px; margin: 0 auto; text-align: center;
  padding: var(--space-xl) 0;
}

.cta-accent {
  width: 60px; height: 4px; background: var(--white);
  margin: 0 auto var(--space-lg);
  transform: scaleX(0); transition: transform 0.8s var(--ease-out);
}
.shop-cta .cta-inner.visible .cta-accent { transform: scaleX(1); }

.shop-cta .cta-inner h2 { font-size: var(--fs-2xl); font-weight: 800; color: var(--white); margin-bottom: var(--space-sm); }
.shop-cta .cta-inner h2 em { font-style: italic; font-weight: 300; color: var(--gray-400); }
.shop-cta .cta-inner p { font-size: var(--fs-md); color: rgba(255,255,255,0.5); margin-bottom: var(--space-lg); }

.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; font-size: var(--fs-sm); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--black); background: var(--white); border-radius: 100px;
  transition: all 0.4s var(--ease-out);
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,255,255,0.1); }

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 968px) {
  .intro-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-corner { width: 50px; height: 50px; }
  .hero-corner-tl { top: 16px; left: 16px; }
  .hero-corner-br { bottom: 16px; right: 16px; }
}

@media (max-width: 600px) {
  .shop-hero { height: 65vh; min-height: 400px; }
  .shop-hero .page-hero-content { padding: 0 var(--space-sm); }
  .hero-heading .hh-line { font-size: 1.5rem; }
  .label-line { display: none; }
  .hero-corner { display: none; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .intro-text h2 { font-size: var(--fs-xl); }
  .detail-card { padding: var(--space-lg); }
  .shop-cta .cta-inner h2 { font-size: var(--fs-xl); }

  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}
