
/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
  background: #FAFAF8;
  border-bottom: 1px solid #E5E5E0;
  padding: 16px 0;
  font-size: 0.8125rem;
  color: #888;
}
.breadcrumb-bar a {
  color: #888;
  text-decoration: none;
}
.breadcrumb-bar a:hover {
  color: #1A1A1A;
}
.breadcrumb-bar .current {
  color: #1A1A1A;
  font-weight: 500;
}

/* ============================================================
   PROFILE TABS
   ============================================================ */
.profile-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #E5E5E0;
  margin-bottom: 48px;
}
.profile-tab {
  padding: 16px 32px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #888;
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.02em;
}
.profile-tab:hover {
  color: #1A1A1A;
}
.profile-tab.active {
  color: #B8944C;
  border-bottom-color: #B8944C;
  font-weight: 600;
}

/* Tab Panels */
.profile-panel {
  display: none;
}
.profile-panel.active {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.profile-panel .panel-visual {
  flex: 0 0 60%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
}
.profile-panel .panel-img-cell {
  background: #FAFAF8;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
}
.profile-panel .panel-img-cell img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}
.profile-panel .panel-text {
  flex: 0 0 40%;
}
.profile-panel .panel-text h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 16px;
}
.profile-panel .panel-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4A4A4A;
}

@media (max-width: 768px) {
  .profile-panel.active {
    flex-direction: column;
  }
  .profile-panel .panel-visual {
    flex: none;
    width: 100%;
  }
  .profile-panel .panel-text {
    flex: none;
    width: 100%;
  }
  .profile-tab {
    padding: 12px 16px;
    font-size: 0.8125rem;
  }
}

/* ============================================================
   SPEC TABLE
   ============================================================ */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.spec-table th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B8944C;
  padding: 16px 0;
  border-bottom: 2px solid #E5E5E0;
  width: 30%;
}
.spec-table td {
  padding: 16px 0;
  border-bottom: 1px solid #E5E5E0;
  color: #1A1A1A;
  line-height: 1.7;
}
.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none;
}

/* ============================================================
   FEATURED PRODUCT GRID
   ============================================================ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.featured-card {
  background: #FFFFFF;
  border: 1px solid #E5E5E0;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.featured-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.featured-card-thumb {
  background: #FAFAF8;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 32px;
}
.featured-card-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.featured-card-body {
  padding: 20px 24px 24px;
}
.featured-card-body h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.featured-card-body .meta {
  font-size: 0.8125rem;
  color: #666;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HERO OVERRIDE — Subcategory Title Bar
   ============================================================ */
.hero {
  background-color: #081221;
  background-image: none;
  background-size: auto;
  background-position: center;
  min-height: auto;
  padding: 80px 0 64px;
  overflow: visible;
}
.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 64px;
}
.hero-content {
  flex: 0 0 48%;
}
.hero-visual {
  flex: 0 0 52%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img {
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
}
.hero h1 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  max-width: 800px;
}
.hero .hero-subtitle {
  max-width: 700px;
}
.hero-overlay {
  display: none;
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
  }
  .hero-content {
    flex: none;
    width: 100%;
  }
  .hero-visual {
    flex: none;
    width: 100%;
  }
  .hero-visual img {
    max-height: 320px;
  }
}
