/* ==========================================================================
   THEAM DEMO CSS
   Styles specific to the ThemeForest product landing page
   ========================================================================== */

/* ==========================================================================
   1. HERO BROWSER MOCKUP
   ========================================================================== */
.demo-hero {
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
}

.browser-mockup {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  width: 100%;
  display: flex;
  flex-direction: column;
}

[data-theme="dark"] .browser-mockup {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.browser-bar {
  background: var(--bg-elevated);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
}

.browser-dots {
  display: flex;
  gap: 6px;
  width: 60px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red {
  background: #FF5F56;
  box-shadow: 0 0 0 1px #E0443E inset;
}

.dot-yellow {
  background: #FFBD2E;
  box-shadow: 0 0 0 1px #DEA123 inset;
}

.dot-green {
  background: #27C93F;
  box-shadow: 0 0 0 1px #1AAB29 inset;
}

[data-theme="dark"] .dot-red {
  background: #ED6A5E;
  box-shadow: none;
}

[data-theme="dark"] .dot-yellow {
  background: #F4BF4F;
  box-shadow: none;
}

[data-theme="dark"] .dot-green {
  background: #61C554;
  box-shadow: none;
}

.browser-url {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.25rem 2rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  max-width: 250px;
  justify-content: center;
}

.browser-screen {
  position: relative;
  width: 100%;
  background: #FFF;
  aspect-ratio: 16/10;
  overflow: hidden;
}

[data-theme="dark"] .browser-screen {
  background: #0f1115;
}

/* Simulated Store Base */
.sim-store {
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: var(--font-primary);
}

.sim-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

[data-theme="dark"] .sim-nav {
  border-bottom-color: #222;
}

.sim-logo-bar {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.sim-logo-mark {
  width: 16px;
  height: 16px;
  background: #000;
  border-radius: 2px;
}

[data-theme="dark"] .sim-logo-mark {
  background: #fff;
}

.sim-logo-text {
  font-weight: 800;
  font-size: 0.8rem;
  color: #000;
}

[data-theme="dark"] .sim-logo-text {
  color: #fff;
}

.sim-nav-links {
  display: flex;
  gap: 0.75rem;
  font-size: 0.6rem;
  font-weight: 500;
  color: #666;
}

[data-theme="dark"] .sim-nav-links {
  color: #999;
}

.sim-nav-links span:first-child {
  color: #D946EF;
}

.sim-nav-icons {
  display: flex;
  gap: 0.5rem;
  color: #000;
}

[data-theme="dark"] .sim-nav-icons {
  color: #fff;
}

.sim-hero-banner {
  background: #F3F4F6;
  border-radius: 8px;
  padding: 1.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .sim-hero-banner {
  background: #1C1C1E;
}

.sim-banner-content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sim-banner-tag {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #4B5563;
  margin-bottom: 0.25rem;
}

[data-theme="dark"] .sim-banner-tag {
  color: #9CA3AF;
}

.sim-banner-title {
  font-size: 1.25rem;
  line-height: 1.1;
  font-weight: 800;
  color: #000;
  margin-bottom: 0.75rem;
}

[data-theme="dark"] .sim-banner-title {
  color: #fff;
}

.sim-banner-cta {
  background: #000;
  color: #fff;
  font-size: 0.55rem;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  font-weight: 600;
}

[data-theme="dark"] .sim-banner-cta {
  background: #fff;
  color: #000;
}

.sim-mannequin {
  width: 60px;
  height: 120px;
  background: #E5E7EB;
  border-radius: 30px;
  position: absolute;
  right: 10%;
  bottom: -20px;
  z-index: 1;
}

[data-theme="dark"] .sim-mannequin {
  background: #2D2D30;
}

.sim-products {
  display: flex;
  gap: 0.75rem;
}

.sim-product-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sim-product-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: #F3F4F6;
  border-radius: 4px;
  position: relative;
}

[data-theme="dark"] .sim-product-img {
  background: #1C1C1E;
}

.sim-img-1 {
  background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 100%);
}

.sim-img-2 {
  background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
}

.sim-img-3 {
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
}

[data-theme="dark"] .sim-img-1 {
  background: linear-gradient(135deg, #381A2F 0%, #2A1222 100%);
}

[data-theme="dark"] .sim-img-2 {
  background: linear-gradient(135deg, #2D3748 0%, #1A202C 100%);
}

[data-theme="dark"] .sim-img-3 {
  background: linear-gradient(135deg, #1E1B4B 0%, #171034 100%);
}

.sim-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 0.4rem;
  background: #000;
  color: #fff;
  padding: 0.15rem 0.3rem;
  border-radius: 2px;
  font-weight: 700;
}

.sim-badge-sale {
  background: #EF4444;
}

.sim-product-name {
  font-size: 0.6rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

[data-theme="dark"] .sim-product-name {
  color: #F9FAFB;
}

.sim-product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sim-price {
  font-size: 0.55rem;
  font-weight: 700;
  color: #000;
}

[data-theme="dark"] .sim-price {
  color: #fff;
}

.sim-price-old {
  font-size: 0.5rem;
  color: #9CA3AF;
  text-decoration: line-through;
  margin-left: 0.25rem;
}

.sim-stars {
  font-size: 0.45rem;
  color: #F59E0B;
}

/* ==========================================================================
   2. DEMO TABS
   ========================================================================== */
.demo-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

.demo-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: all 300ms ease;
  cursor: pointer;
}

.demo-tab:hover {
  background: var(--card-bg);
  border-color: var(--primary-light);
  color: var(--primary);
}

.demo-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: var(--shadow-primary);
}

.demo-panel {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.demo-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.demo-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (max-width: 900px) {
  .demo-layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

.demo-browser-wrapper {
  perspective: 1000px;
}

/* ==========================================================================
   3. DEMO INFO PANEL
   ========================================================================== */
.demo-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-niche-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: max-content;
}

.fashion-badge {
  background: rgba(236, 72, 153, 0.1);
  color: #EC4899;
}

.electronics-badge {
  background: rgba(14, 165, 233, 0.1);
  color: #0EA5E9;
}

.furniture-badge {
  background: rgba(217, 119, 6, 0.1);
  color: #D97706;
}

.demo-products-preview {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.demo-product-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  transition: background 200ms;
}

.demo-product-item:hover {
  background: var(--bg-elevated);
}

.dp-swatch {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dp-details {
  display: flex;
  flex-direction: column;
}

.dp-details strong {
  font-size: 0.875rem;
  color: var(--text-primary);
}

.dp-details span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.dp-price {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.dp-rating {
  font-size: 0.8rem;
  color: #F59E0B;
  font-weight: 600;
}

.demo-cta-group {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   4. FASHION DEMO UI EXTENSIONS
   ========================================================================== */
.fashion-screen {
  background: #FAF9F8;
  color: #1C1917;
}

[data-theme="dark"] .fashion-screen {
  background: #1C1917;
  color: #FAF9F8;
}

.fashion-demo-ui {
  padding: 0.5rem 1rem;
}

.fd-topbar {
  text-align: center;
  font-size: 0.5rem;
  padding: 0.25rem;
  font-weight: 500;
  background: #e5e5e5;
}

[data-theme="dark"] .fd-topbar {
  background: #292524;
  color: #e5e5e5;
}

.fd-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.fd-nav-links {
  display: flex;
  gap: 0.75rem;
  font-size: 0.6rem;
  font-weight: 500;
}

.fd-nav-icons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.fd-cart-count {
  background: #1C1917;
  color: #FAF9F8;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.45rem;
  font-weight: bold;
}

[data-theme="dark"] .fd-cart-count {
  background: #FAF9F8;
  color: #1C1917;
}

.fd-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FDE0D9;
  border-radius: 8px;
  margin: 1rem 0;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .fd-hero {
  background: #431407;
}

.fd-tag {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.fd-hero h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin: 0.25rem 0 0.75rem;
  line-height: 1.1;
}

.fd-hero-btns {
  display: flex;
  gap: 0.5rem;
}

.fd-btn-primary {
  background: #1C1917;
  color: #FAF9F8;
  padding: 0.35rem 0.75rem;
  font-size: 0.55rem;
  border-radius: 20px;
  font-weight: 500;
}

[data-theme="dark"] .fd-btn-primary {
  background: #FAF9F8;
  color: #1C1917;
}

.fd-btn-outline {
  border: 1px solid #1C1917;
  padding: 0.35rem 0.75rem;
  font-size: 0.55rem;
  border-radius: 20px;
  font-weight: 500;
}

[data-theme="dark"] .fd-btn-outline {
  border-color: #FAF9F8;
}

.fd-model-silhouette {
  width: 80px;
  height: 150px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 40px;
  position: absolute;
  right: 10%;
  bottom: -30px;
}

[data-theme="dark"] .fd-model-silhouette {
  background: rgba(255, 255, 255, 0.1);
}

.fd-price-tag {
  position: absolute;
  right: 5%;
  top: 20%;
  background: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 700;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #000;
}

.fd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.fd-prod-img {
  aspect-ratio: 3/4;
  border-radius: 4px;
  position: relative;
  margin-bottom: 0.4rem;
  overflow: hidden;
}

.fd-c1 {
  background: #FDE68A;
}

.fd-c2 {
  background: #E5E7EB;
}

.fd-c3 {
  background: #FECACA;
}

.fd-c4 {
  background: #A7F3D0;
}

[data-theme="dark"] .fd-c1 {
  background: #78350F;
}

[data-theme="dark"] .fd-c2 {
  background: #374151;
}

[data-theme="dark"] .fd-c3 {
  background: #7F1D1D;
}

[data-theme="dark"] .fd-c4 {
  background: #064E3B;
}

.fd-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 0.4rem;
  background: #000;
  color: #fff;
  padding: 0.15rem 0.3rem;
  border-radius: 2px;
}

.fd-sale {
  background: #EF4444;
}

.fd-hot {
  background: #F59E0B;
}

.fd-quick-add {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.5rem;
  text-align: center;
  padding: 0.2rem;
  font-weight: 600;
  color: #000;
  transition: bottom 0.2s;
}

.fd-product:hover .fd-quick-add {
  bottom: 0;
}

.fd-prod-name {
  font-size: 0.55rem;
  margin-bottom: 0.1rem;
  font-weight: 500;
}

.fd-prod-meta {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.5rem;
}

.fd-prod-price {
  font-weight: 700;
}

.fd-prod-old {
  text-decoration: line-through;
  opacity: 0.5;
}

.fd-prod-stars {
  color: #F59E0B;
  margin-left: auto;
}

.fd-prod-count {
  opacity: 0.5;
}

/* ==========================================================================
   5. ELECTRONICS DEMO UI EXTENSIONS
   ========================================================================== */
.electronics-screen {
  background: #fff;
  font-family: 'Inter', sans-serif;
}

[data-theme="dark"] .electronics-screen {
  background: #111;
  color: #fff;
}

.elec-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #000;
  color: #fff;
}

.elec-brand {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
}

.elec-nav-cats {
  display: flex;
  gap: 0.75rem;
  font-size: 0.6rem;
  font-weight: 500;
  opacity: 0.8;
}

.elec-nav-right {
  display: flex;
  gap: 0.75rem;
}

.elec-hero {
  display: flex;
  background: #F8FAFC;
  margin: 1rem;
  border-radius: 12px;
  overflow: hidden;
}

[data-theme="dark"] .elec-hero {
  background: #1f2937;
}

.elec-hero-content {
  padding: 1.5rem;
  flex: 1;
}

.elec-tag {
  background: #EF4444;
  color: #fff;
  font-size: 0.5rem;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-weight: 700;
}

.elec-hero h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0.5rem 0;
  line-height: 1.1;
}

.elec-price-block {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.elec-price-now {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0EA5E9;
}

.elec-price-was {
  font-size: 0.7rem;
  text-decoration: line-through;
  opacity: 0.6;
  margin-bottom: 0.1rem;
}

.elec-savings {
  font-size: 0.5rem;
  background: #10B981;
  color: #fff;
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
  margin-bottom: 0.2rem;
}

.elec-cta {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.elec-btn-buy {
  background: #0EA5E9;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 6px;
}

.elec-btn-wish {
  border: 1px solid #CBD5E1;
  color: #64748B;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.elec-trust {
  font-size: 0.45rem;
  color: #64748B;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.elec-hero-device {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.elec-laptop {
  position: relative;
  transform: scale(0.6) translateX(-20px);
}

.elec-laptop-screen {
  width: 140px;
  height: 90px;
  background: #000;
  border-radius: 6px 6px 0 0;
  border: 3px solid #333;
  padding: 2px;
}

.elec-screen-content {
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect width='100' height='100' fill='%230EA5E9'/%3E%3Ccircle cx='50' cy='50' r='30' fill='%23fff' opacity='0.2'/%3E%3C/svg%3E");
  background-size: cover;
  border-radius: 2px;
}

.elec-laptop-base {
  width: 160px;
  height: 8px;
  background: #CBD5E1;
  border-radius: 0 0 8px 8px;
  position: absolute;
  bottom: -8px;
  left: -10px;
}

.elec-filters {
  display: flex;
  gap: 0.5rem;
  padding: 0 1rem 1rem;
  font-size: 0.6rem;
}

.elec-filter {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  background: #F1F5F9;
  color: #475569;
  font-weight: 600;
}

[data-theme="dark"] .elec-filter {
  background: #334155;
  color: #CBD5E1;
}

.elec-filter.active {
  background: #0EA5E9;
  color: #fff;
}

.elec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 0 1rem 1rem;
}

.elec-product {
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
}

[data-theme="dark"] .elec-product {
  border-color: #334155;
}

.elec-prod-img {
  aspect-ratio: 1;
  background: #F8FAFC;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

[data-theme="dark"] .elec-prod-img {
  background: #1e293b;
}

.elec-prod-device {
  width: 30px;
  height: 50px;
  background: #000;
  border-radius: 4px;
  box-shadow: inset 0 0 0 2px #333;
}

.elec-headphone {
  width: 40px;
  height: 40px;
  background: none;
  border: 4px solid #000;
  border-radius: 50%;
  border-bottom-color: transparent;
}

.elec-watch {
  width: 24px;
  height: 30px;
  background: #000;
  border-radius: 4px;
  position: relative;
}

[data-theme="dark"] .elec-prod-device {
  background: #fff;
  box-shadow: inset 0 0 0 2px #ccc;
}

[data-theme="dark"] .elec-headphone {
  border-color: #fff;
  border-bottom-color: transparent;
}

[data-theme="dark"] .elec-watch {
  background: #fff;
}

.elec-hot {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  background: #EF4444;
  color: #fff;
  font-size: 0.4rem;
  padding: 0.1rem 0.2rem;
  border-radius: 2px;
  font-weight: 700;
}

.elec-prod-name {
  font-size: 0.6rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.elec-prod-stars {
  font-size: 0.45rem;
  color: #F59E0B;
  margin-bottom: 0.4rem;
}

.elec-prod-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.elec-prod-price {
  font-size: 0.7rem;
  font-weight: 800;
  color: #0EA5E9;
}

.elec-prod-was {
  font-size: 0.5rem;
  text-decoration: line-through;
  opacity: 0.5;
  margin-left: 0.25rem;
  margin-right: auto;
}

.elec-add-btn {
  background: #000;
  color: #fff;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.6rem;
}

[data-theme="dark"] .elec-add-btn {
  background: #fff;
  color: #000;
}

/* ==========================================================================
   6. FURNITURE DEMO UI EXTENSIONS
   ========================================================================== */
.furniture-screen {
  background: #F5F5F0;
  font-family: 'Poppins', sans-serif;
  color: #292524;
}

[data-theme="dark"] .furniture-screen {
  background: #1C1917;
  color: #D6D3D1;
}

.furn-demo-ui {
  padding: 1rem;
}

.furn-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.furn-brand {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000;
}

[data-theme="dark"] .furn-brand {
  color: #fff;
}

.furn-nav-cats {
  display: flex;
  gap: 1rem;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

.furn-nav-icons {
  display: flex;
  gap: 0.75rem;
}

.furn-hero {
  display: flex;
  gap: 1rem;
  background: #E7E5DF;
  border-radius: 4px;
  padding: 2rem 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

[data-theme="dark"] .furn-hero {
  background: #292524;
}

.furn-hero-text {
  flex: 1;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.furn-tag {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

.furn-hero h3 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.furn-sub {
  font-size: 0.6rem;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.furn-cta {
  font-size: 0.55rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #000;
  width: max-content;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

[data-theme="dark"] .furn-cta {
  border-bottom-color: #fff;
}

.furn-hero-room {
  position: absolute;
  right: 5%;
  bottom: 10%;
  width: 50%;
  height: 80%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  opacity: 0.9;
}

.furn-room-scene {
  position: relative;
  width: 140px;
  height: 100px;
}

.furn-sofa {
  width: 100px;
  height: 40px;
  background: #C4A882;
  border-radius: 4px;
  position: absolute;
  bottom: 0;
  left: 10px;
}

.furn-sofa::after {
  content: '';
  width: 20px;
  height: 30px;
  background: #B49670;
  position: absolute;
  left: -5px;
  bottom: 0;
  border-radius: 4px;
}

.furn-cushion {
  width: 15px;
  height: 15px;
  background: #D6D3D1;
  position: absolute;
  bottom: 20px;
  border-radius: 2px;
}

.furn-c1 {
  left: 20px;
  background: #A8A29E;
}

.furn-c2 {
  left: 40px;
}

.furn-table {
  width: 40px;
  height: 15px;
  border-top: 3px solid #78350F;
  position: absolute;
  right: 10px;
  bottom: 0;
}

.furn-table::before,
.furn-table::after {
  content: '';
  width: 3px;
  height: 12px;
  background: #78350F;
  position: absolute;
  top: 3px;
}

.furn-table::before {
  left: 5px;
}

.furn-table::after {
  right: 5px;
}

.furn-lamp {
  width: 10px;
  height: 60px;
  border-left: 2px solid #52525B;
  position: absolute;
  left: -10px;
  bottom: 0;
}

.furn-lamp::before {
  content: '';
  width: 20px;
  height: 15px;
  background: #fff;
  border-radius: 10px 10px 0 0;
  position: absolute;
  top: 0;
  left: -9px;
}

.furn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.furn-product {
  font-family: 'Inter', sans-serif;
}

.furn-prod-img {
  aspect-ratio: 1;
  background: #EFECE6;
  margin-bottom: 0.75rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="dark"] .furn-prod-img {
  background: #292524;
}

.furn-sofa-mini {
  width: 40px;
  height: 20px;
  background: #C4A882;
  border-radius: 2px;
}

.furn-chair-mini {
  width: 25px;
  height: 30px;
  border: 3px solid #D4B896;
  border-radius: 4px 4px 0 0;
  border-bottom: none;
}

.furn-table-mini {
  width: 35px;
  height: 15px;
  border-top: 4px solid #78350F;
}

.furn-ar-btn {
  position: absolute;
  bottom: 0.4rem;
  right: 0.4rem;
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.4rem;
  padding: 0.15rem 0.3rem;
  border-radius: 20px;
  font-weight: bold;
  color: #000;
}

.furn-badge {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  background: #D97706;
  color: #fff;
  font-size: 0.4rem;
  padding: 0.15rem 0.3rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.furn-sale-badge {
  background: #B91C1C;
}

.furn-prod-name {
  font-size: 0.6rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.furn-prod-colors {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.4rem;
}

.furn-prod-colors span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.furn-prod-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.furn-price {
  font-size: 0.65rem;
  font-weight: 600;
}

.furn-old {
  font-size: 0.55rem;
  text-decoration: line-through;
  opacity: 0.5;
}

.furn-stars {
  font-size: 0.45rem;
  color: #D97706;
  margin-left: auto;
}

/* ==========================================================================
   7. FEATURES & PAGES SECTIONS
   ========================================================================== */
.feature-card {
  display: flex;
  flex-direction: column;
}

.feature-card p {
  margin-bottom: auto;
}

.feature-score {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.score-bar {
  flex: 1;
  height: 6px;
  background: var(--bg-surface);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.score-fill {
  height: 100%;
  background: #10B981;
  border-radius: 3px;
}

.feature-score span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #10B981;
}

.feature-devices {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 1.5rem;
  filter: grayscale(1) opacity(0.7);
  transition: filter 300ms;
}

.feature-card:hover .feature-devices {
  filter: grayscale(0) opacity(1);
}

.pages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

@media (max-width: 900px) {
  .pages-grid {
    grid-template-columns: 1fr;
  }
}

.page-category {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.page-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.page-cat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.page-cat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-cat-header h4 {
  margin: 0;
  font-size: 1.1rem;
}

.page-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.page-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.page-check {
  color: #10B981;
  font-weight: bold;
}

/* ==========================================================================
   8. PRICING SECTION
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  max-width: 900px;
  margin: 0 auto 3rem;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .pricing-card.popular {
    transform: scale(1);
  }
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.pricing-header h4 {
  margin-bottom: 1rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.price-period {
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-tagline {
  font-size: 0.85rem;
  margin: 0;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.pf-check {
  color: #10B981;
  font-weight: bold;
}

.pf-x {
  color: #EF4444;
  font-weight: bold;
}

.pf-bonus {
  color: #F59E0B;
}

.pf-muted {
  color: var(--text-muted);
  opacity: 0.7;
  text-decoration: line-through;
}

.guarantee-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.guarantee-item strong {
  color: var(--text-primary);
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   AI TOOLS DEMO UI EXTENSIONS
   ========================================================================== */
.ai-screen {
  background: #F8FAFC;
  color: #0F172A;
  font-family: var(--font-primary);
}

[data-theme="dark"] .ai-screen {
  background: #020617;
  color: #F8FAFC;
}

.ai-demo-ui {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.ai-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .ai-nav {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.ai-brand {
  font-weight: 800;
  font-size: 0.8rem;
  color: #3B82F6;
}

.ai-nav-cats {
  display: flex;
  gap: 0.75rem;
  font-size: 0.55rem;
  font-weight: 600;
  color: #64748B;
}

[data-theme="dark"] .ai-nav-cats {
  color: #94A3B8;
}

.ai-submit-btn {
  background: #3B82F6;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.5rem;
  font-weight: 600;
}

.ai-hero {
  background: linear-gradient(135deg, #1E293B, #0F172A);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.ai-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.4) 0%, transparent 60%);
}

.ai-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ai-hero h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
}

.ai-hero p {
  font-size: 0.6rem;
  color: #94A3B8;
  margin-bottom: 0.75rem;
}

.ai-search-bar {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 0.35rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.55rem;
  color: #CBD5E1;
  width: 80%;
}

.ai-filters {
  display: flex;
  gap: 0.25rem;
}

.ai-filter {
  font-size: 0.5rem;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  background: #E2E8F0;
  color: #475569;
  font-weight: 600;
}

[data-theme="dark"] .ai-filter {
  background: #1E293B;
  color: #CBD5E1;
}

.ai-filter.active {
  background: #0F172A;
  color: #FFF;
}

[data-theme="dark"] .ai-filter.active {
  background: #F8FAFC;
  color: #0F172A;
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.ai-product {
  background: #FFF;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

[data-theme="dark"] .ai-product {
  background: #0F172A;
  border-color: #1E293B;
  box-shadow: none;
}

.ai-prod-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.25rem;
}

.ai-prod-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.7rem;
}

.ai-hot {
  font-size: 0.4rem;
  background: #FEF08A;
  color: #854D0E;
  padding: 0.1rem 0.3rem;
  border-radius: 2px;
  font-weight: 700;
}

.ai-prod-name {
  font-size: 0.6rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
}

[data-theme="dark"] .ai-prod-name {
  color: #F8FAFC;
}

.ai-prod-desc {
  font-size: 0.45rem;
  color: #64748B;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

[data-theme="dark"] .ai-prod-desc {
  color: #94A3B8;
}

.ai-prod-stars {
  font-size: 0.45rem;
  color: #F59E0B;
  margin-top: auto;
}

.ai-prod-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.25rem;
  padding-top: 0.35rem;
  border-top: 1px solid #E2E8F0;
}

[data-theme="dark"] .ai-prod-price-row {
  border-top-color: #1E293B;
}

.ai-prod-price {
  font-size: 0.55rem;
  font-weight: 700;
}

.ai-add-btn {
  background: #E2E8F0;
  color: #0F172A;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.45rem;
  font-weight: 600;
}

[data-theme="dark"] .ai-add-btn {
  background: #1E293B;
  color: #F8FAFC;
}