/* ============================================================
   VILLOWS DTRENDZ — Homepage Specific Styles (home.css)
   Fix #9: Redesigned homepage panels
   ============================================================ */

/* ── HERO REDESIGN ────────────────────────────────────────── */
.hero-section {
  min-height: 320px;
  background: linear-gradient(135deg, #2d0050 0%, #4a0080 40%, #7b2ff7 80%, #b06ef7 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative circles */
.hero-section::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  right: 60px; bottom: -80px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}

.hero-placeholder {
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 40px 32px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: .5px;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(255,255,255,.7);
  color: #fff;
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  transition: .2s;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
}

@media(max-width:600px) {
  .hero-section, .hero-placeholder { min-height: 240px; }
  .hero-text h1 { font-size: 28px; }
  .hero-subtitle { font-size: 13px; }
  .hero-actions { gap: 8px; }
}

/* ── DEAL OF THE DAY PANEL ──────────────────────────────────── */
.deal-panel {
  background: linear-gradient(135deg, #1a0030, #2d004a) !important;
}

.deal-panel .panel-header h2 {
  color: #ffd700;
}
.deal-panel .panel-header p {
  color: rgba(255,255,255,.6);
}

.deal-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 16px;
}

/* ── CATEGORY PANEL HEADER ──────────────────────────────────── */
.cat-panel-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  text-align: left !important;
  padding: 0 16px !important;
}

.cat-panel-title {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
  margin: 0 0 2px !important;
}

.cat-panel-sub {
  font-size: 12px;
  color: #9b59b6;
  font-weight: 600;
  margin: 0;
}

.cat-panel-link {
  display: inline-flex;
  align-items: center;
  background: #4a0080;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: .18s;
}
.cat-panel-link:hover {
  background: #7b2ff7;
}

/* ── SECTION DIVIDERS ────────────────────────────────────────── */
.panel-section + .panel-section {
  border-top: 1px solid #f0eaf8;
}

/* ── QUICK CATS REDESIGN ─────────────────────────────────────── */
.quick-cats {
  padding: 20px 16px 8px;
  gap: 14px;
}

.quick-cat-item {
  flex: 0 0 72px;
}

.quick-cat-icon {
  width: 62px !important;
  height: 62px !important;
  box-shadow: 0 2px 8px rgba(74,0,128,.12);
  transition: .2s;
}
.quick-cat-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(74,0,128,.2);
}
.quick-cat-icon img { border-radius: 50%; }

.quick-cat-name {
  font-size: 11px;
  font-weight: 700;
  color: #555;
  margin-top: 5px;
}

/* ── PANEL SECTION SPACING ───────────────────────────────────── */
.cat-panel {
  padding-top: 28px;
  padding-bottom: 32px;
}

/* ── WATCH AND BUY ───────────────────────────────────────────── */
#watch-buy-section .panel-header h2 {
  color: #1a1a1a;
}

/* ── KIDS FASHION SECTION ────────────────────────────────────── */
.kids-card {
  flex-shrink: 0;
  width: 130px;
}
.kids-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.kids-card img {
  width: 130px;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #682860;
  display: block;
  transition: transform 0.2s;
}
.kids-card:hover img {
  transform: scale(1.03);
}
.kids-card span {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #682860;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

@media (max-width: 480px) {
  .kids-card { width: 110px; }
  .kids-card img { width: 110px; height: 145px; }
}
