/* ===================================================
   Brands Page — Additional Styles
   Extends style.css for brand detail layouts
   =================================================== */

/* ===== Brands Hero Enhancement ===== */
.brands-hero {
  background: #111;
  padding-top: 160px;
  padding-bottom: 100px;
}
.brands-hero .page-hero-title {
  color: #fff;
}
.brands-hero .page-hero-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ===== Brand Navigation (Top Anchor Cards) ===== */
.brand-nav-section {
  padding: 80px 0 40px;
  background: #fff;
}
.brand-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.brand-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  border-radius: 16px;
  background: #f7f7f7;
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.brand-nav-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #111;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.brand-nav-item:hover::before { transform: scaleX(1); }
.brand-nav-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.brand-nav-logo {
  height: 80px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-nav-logo img {
  max-height: 80px;
  max-width: 260px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-nav-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  color: #555;
  margin: 0 0 8px;
}
.brand-nav-desc {
  font-size: 0.82rem;
  color: #999;
  line-height: 1.7;
  margin: 0;
}

/* ===== Brand Section (Shared) ===== */
.brand-section {
  padding: 60px 0 60px;
}
.brand-section-solari {
  background: #fff;
}
.brand-section-popfrog {
  background: #fff;
}

/* ===== Brand Header ===== */
.brand-header {
  text-align: center;
  margin-bottom: 56px;
}
.brand-header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.brand-header-logo img {
  max-height: 100px;
  max-width: 320px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-headline {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.4;
}
.brand-lead {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto;
}

/* ===== Brand Concept (Image + Text) ===== */
.brand-concept {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 56px;
}
.brand-concept-reverse {
  direction: rtl;
}
.brand-concept-reverse > * {
  direction: ltr;
}
.brand-concept-visual {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e8e8e8;
}
.brand-concept-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-concept-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
}
.brand-concept-text p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.9;
  margin-bottom: 14px;
}
.brand-concept-text p:last-of-type {
  margin-bottom: 24px;
}

/* Brand Keywords */
.brand-keywords {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.brand-keywords li {
  font-size: 0.78rem;
  font-weight: 500;
  color: #555;
  background: #f0f0f0;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

/* ===== Brand Values (3 Columns) ===== */
.brand-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 0;
}
.brand-value-item {
  text-align: center;
  padding: 40px 24px;
  border-radius: 16px;
  background: #f7f7f7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brand-value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}
.brand-value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: #111;
}
.brand-value-icon svg {
  width: 100%;
  height: 100%;
}
.brand-value-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}
.brand-value-item p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.8;
}

/* ===== Brand Categories (4 Columns) ===== */
.brand-categories {
  margin-bottom: 80px;
}
.brand-categories h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 32px;
  text-align: center;
}
.brand-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.brand-category-item {
  text-align: center;
}
.brand-category-image {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: #e8e8e8;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}
.brand-category-item:hover .brand-category-image {
  transform: scale(1.03);
}
.brand-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-category-item p {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

/* ===== Brand Catalog (Product Pickup) ===== */
.brand-catalog h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 32px;
  text-align: center;
}
.brand-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.brand-catalog-item {
  text-align: center;
}
.brand-catalog-image {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: #f0f0f0;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}
.brand-catalog-item:hover .brand-catalog-image {
  transform: scale(1.03);
}
.brand-catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-catalog-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}
.brand-catalog-price {
  font-size: 0.85rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: #999;
}

/* ===== Brand Divider ===== */
.brand-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #ddd 20%, #ddd 80%, transparent);
  max-width: 800px;
  margin: 0 auto;
}

/* ===== Brand Philosophy (3 Columns) ===== */
.brand-philosophy {
  padding: 80px 0;
  background: #f7f7f7;
  text-align: center;
}
.brand-philosophy .section-title {
  margin-bottom: 48px;
}
.brand-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.brand-philosophy-item {
  padding: 40px 24px;
}
.brand-philosophy-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: #111;
}
.brand-philosophy-icon svg {
  width: 100%;
  height: 100%;
}
.brand-philosophy-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}
.brand-philosophy-item p {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.8;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .brand-concept {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .brand-concept-reverse {
    direction: ltr;
  }
  .brand-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .brands-hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .brand-section {
    padding: 80px 0 60px;
  }
  .brand-nav-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .brand-nav-item {
    padding: 40px 24px;
  }
  .brand-values {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .brand-value-item {
    padding: 32px 20px;
  }
  .brand-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .brand-philosophy-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .brand-headline {
    font-size: 1.4rem;
  }
  .brand-header {
    margin-bottom: 48px;
  }
}

@media (max-width: 600px) {
  .brand-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .brand-catalog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .brand-philosophy {
    padding: 60px 0;
  }
}
