/* ===== SHARED PAGE COMPONENTS ===== */
/* Used by all inner pages (shop, product, login, etc.) */

/* Page wrapper for inner pages */
.inner-page { background: var(--bg); min-height: 100vh; }

/* ===== SHARED HEADER (inner pages use ../ paths) ===== */
/* Header styles already in style.css — this file adds page-specific overrides */

/* ===== INNER PAGE HERO BANNER ===== */
.page-hero {
  margin-top: 18px;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 55%, #7c3aed 100%);
  border-radius: 20px;
  padding: 52px 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(37,99,235,0.25);
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  top: -120px; right: -80px;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  bottom: -60px; left: 10%;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  line-height: 1.15;
}
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.65;
}

/* ===== SHARED FOOTER (inner pages) ===== */
.site-footer {
  background: #0f172a;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 40px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 20px 50px rgba(15,23,42,0.2);
}
.site-footer-inner {
  padding: 36px 40px;
  background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
  color: #e2e8f0;
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}
.site-footer-brand .logo { color: #fff; margin-bottom: 10px; display: flex; }
.site-footer-brand p { font-size: 0.83rem; color: #94a3b8; line-height: 1.65; margin-bottom: 16px; }
.site-footer-brand .social-links { display: flex; gap: 8px; }
.site-footer-brand .social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8; text-decoration: none; font-size: 0.85rem;
  transition: var(--transition);
}
.site-footer-brand .social-link:hover {
  background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px);
}
.site-footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; }
.site-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.site-footer-col ul li a {
  color: #94a3b8; text-decoration: none; font-size: 0.83rem;
  transition: var(--transition); display: flex; align-items: center; gap: 6px;
}
.site-footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.site-footer-col ul li { color: #94a3b8; font-size: 0.83rem; display: flex; align-items: center; gap: 8px; }
.site-footer-col ul li i { color: var(--primary); width: 14px; }
.site-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 18px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.site-footer-bottom p { color: #64748b; font-size: 0.8rem; }
.site-footer-bottom-links { display: flex; gap: 14px; }
.site-footer-bottom-links a { color: #64748b; text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.site-footer-bottom-links a:hover { color: #94a3b8; }

@media (max-width: 768px) {
  .site-footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 32px 22px; }
}
@media (max-width: 480px) {
  .site-footer-grid { grid-template-columns: 1fr; }
}
