/* ============================================================
   FRENZA — Page Layouts
   Page-specific styles for each view
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 500px at 75% 20%, rgba(124, 58, 237, 0.25), transparent 70%),
    radial-gradient(ellipse 500px 400px at 25% 80%, rgba(6, 182, 212, 0.2), transparent 70%),
    radial-gradient(ellipse 300px 300px at 50% 50%, rgba(124, 58, 237, 0.08), transparent 60%);
  opacity: 1;
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, var(--text-5xl));
  font-family: var(--font-heading);
  font-weight: var(--weight-extrabold);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.hero-title .gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--leading-normal);
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-3xl);
  justify-content: center;
  margin-top: var(--space-3xl);
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

/* ============================================================
   FEATURED SECTION
   ============================================================ */
.featured {
  /* Uses .section and .container from design-system */
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-xl);
}

/* ============================================================
   CATALOG PAGE
   ============================================================ */
.catalog {
  padding-top: calc(72px + var(--space-2xl));
  padding-bottom: var(--space-4xl);
}

.catalog-header {
  margin-bottom: var(--space-2xl);
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}

.search-bar {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  padding: var(--space-xs) var(--space-md);
  flex: 1;
  max-width: 400px;
  border: 1px solid var(--surface-border);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.search-bar:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.search-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  flex: 1;
  padding: var(--space-xs) 0;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-icon {
  color: var(--text-muted);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.category-tabs {
  display: flex;
  gap: var(--space-xs);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tab {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.category-tab:hover {
  color: var(--text-primary);
  background: var(--surface);
}

.category-tab.active {
  background: rgba(124, 58, 237, 0.2);
  color: var(--primary-light);
}

.sort-select {
  background: var(--bg-tertiary);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: var(--space-xs) var(--space-2xl) var(--space-xs) var(--space-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238888a0' d='M6 8.825a.5.5 0 0 1-.354-.146L2.12 5.154a.5.5 0 1 1 .708-.708L6 7.618l3.171-3.171a.5.5 0 1 1 .708.708L6.354 8.679A.5.5 0 0 1 6 8.825z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-sm) center;
  cursor: pointer;
  width: auto;
  transition: border-color var(--transition-base);
}

.sort-select:focus {
  border-color: var(--primary);
  outline: none;
}

.catalog-results {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail {
  padding-top: calc(72px + var(--space-2xl));
  padding-bottom: var(--space-4xl);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.product-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--surface-border);
}

.product-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.product-breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition-base);
}

.product-breadcrumb a:hover {
  color: var(--accent);
}

.product-breadcrumb span {
  color: var(--text-muted);
}

.product-title {
  font-size: var(--text-4xl);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
}

.product-price {
  font-family: var(--font-mono);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-description {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: var(--text-base);
  max-width: 550px;
}

/* Specs Box */
.product-specs-box {
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: var(--space-sm) 0;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-xs) 0;
}

.spec-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: var(--space-sm);
}

.spec-icon {
  color: var(--accent);
  font-size: 20px;
  margin-top: 2px;
  background: rgba(6, 182, 212, 0.1);
  padding: var(--space-xs);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-title {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
}

.spec-desc {
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

.product-actions {
  display: flex;
  gap: var(--space-md);
  width: 100%;
  max-width: 480px;
}

.product-related {
  margin-top: var(--space-4xl);
}

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-page {
  padding-top: calc(72px + var(--space-2xl));
  padding-bottom: var(--space-4xl);
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-2xl);
  align-items: start;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cart-item {
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: var(--space-lg);
  align-items: center;
  transition: border-color var(--transition-base);
}

.cart-item:hover {
  border-color: var(--surface-border-hover);
}

.cart-item-thumb {
  width: 80px;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.cart-item-title {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  font-size: var(--text-base);
}

.cart-item-category {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-item-price {
  font-family: var(--font-mono);
  font-weight: var(--weight-bold);
  color: var(--primary-light);
  font-size: var(--text-lg);
  white-space: nowrap;
}

.cart-item-remove {
  color: var(--text-muted);
  transition: color var(--transition-base);
}

.cart-item-remove:hover {
  color: var(--error);
}

.cart-summary {
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: sticky;
  top: calc(72px + var(--space-xl));
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.cart-summary-title {
  font-size: var(--text-xl);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  border-top: 1px solid var(--surface-border);
  padding-top: var(--space-md);
}

.cart-checkout-btn {
  width: 100%;
}

/* ============================================================
   ADMIN PAGE
   ============================================================ */
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  padding-top: 72px;
}

.admin-sidebar {
  background: var(--bg-secondary);
  border-right: 1px solid var(--surface-border);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow-y: auto;
}

.admin-sidebar-title {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-sm) var(--space-md);
  margin-top: var(--space-md);
}

.admin-sidebar-title:first-child {
  margin-top: 0;
}

.admin-sidebar-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-base);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}

.admin-sidebar-link:hover {
  background: var(--surface-hover);
  color: var(--text-primary);
}

.admin-sidebar-link.active {
  background: var(--surface);
  color: var(--text-primary);
  border-left: 2px solid var(--primary-light);
}

.admin-sidebar-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.7;
}

.admin-sidebar-link.active svg {
  opacity: 1;
  color: var(--primary-light);
}

.admin-content {
  padding: var(--space-2xl);
  min-width: 0;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-2xl);
}

.admin-header-title {
  font-size: var(--text-3xl);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.admin-stat-card {
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: border-color var(--transition-base);
}

.admin-stat-card:hover {
  border-color: var(--surface-border-hover);
}

.admin-stat-icon {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
  opacity: 0.7;
}

.admin-stat-value {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.admin-stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

.admin-table-wrapper {
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  text-align: left;
  padding: var(--space-md);
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--surface-border);
  font-weight: var(--weight-semibold);
  white-space: nowrap;
}

.admin-table td {
  padding: var(--space-md);
  font-size: var(--text-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:hover td {
  background: var(--surface-hover);
}

.admin-form-card {
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  max-width: 600px;
}

.admin-actions {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 72px);
  text-align: center;
  padding: var(--space-2xl);
  margin-top: 72px;
}

.success-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: var(--space-lg);
  line-height: 1;
}

.success-title {
  font-size: var(--text-3xl);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-md);
}

.success-message {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  line-height: var(--leading-normal);
}

.success-details {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  min-width: 320px;
}

/* ============================================================
   RESPONSIVE — PAGE LAYOUTS
   ============================================================ */
@media (max-width: 1024px) {
  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-subtitle {
    font-size: var(--text-base);
  }

  .hero-stats {
    gap: var(--space-xl);
  }

  .hero-stat-value {
    font-size: var(--text-2xl);
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-title {
    font-size: var(--text-3xl);
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

  .cart-item {
    grid-template-columns: 60px 1fr;
    gap: var(--space-md);
  }

  .cart-item-price {
    grid-column: 2;
  }

  .cart-item-remove {
    grid-column: 2;
    justify-self: end;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
    flex-direction: row;
    overflow-x: auto;
    padding: var(--space-md);
    border-right: none;
    border-bottom: 1px solid var(--surface-border);
    gap: var(--space-xs);
  }

  .admin-sidebar-title {
    display: none;
  }

  .admin-sidebar-link {
    white-space: nowrap;
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-xs);
  }

  .admin-content {
    padding: var(--space-lg);
  }

  .admin-stats {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .search-bar {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .product-actions {
    flex-direction: column;
  }

  .product-actions .btn {
    width: 100%;
  }

  .admin-stats {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PDF PREVIEW DRAWER
   ============================================================ */
.pdf-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.pdf-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.pdf-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 550px;
  max-width: 100%;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--surface-border);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdf-drawer.active {
  transform: translateX(0);
}

.pdf-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--surface-border);
  background: rgba(18, 18, 26, 0.5);
}

.pdf-drawer-header-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pdf-drawer-title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}

.pdf-drawer-subtitle {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.pdf-drawer-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.pdf-viewer-content {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  background: #0f0f16;
}

.pdf-page-wrapper {
  position: relative;
  width: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #181824;
}

.pdf-page-canvas {
  width: 100%;
  height: auto;
  display: block;
}

/* Blurred overlay for unpurchased content */
.pdf-blurred-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 22, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  z-index: 10;
}

.pdf-blurred-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--accent);
}

.pdf-blurred-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.pdf-blurred-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  max-width: 280px;
  line-height: 1.5;
  margin-bottom: var(--space-lg);
}

/* Responsive adjustment */
@media (max-width: 576px) {
  .pdf-drawer {
    width: 100%;
  }
}

/* ============================================================
   APP LANDING PAGE STYLES
   ============================================================ */
.landing-hero {
  min-height: 90vh;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.btn-store-download {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  width: auto !important;
  max-width: max-content !important;
  min-width: 170px !important;
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1), background 0.3s, border-color 0.3s, box-shadow 0.3s !important;
}

.btn-store-download.store-btn-apple:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(167, 139, 250, 0.4) !important; /* purple-light */
  transform: translateY(-4px) scale(1.03) !important;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 0 20px rgba(124, 58, 237, 0.25) !important;
}

.btn-store-download.store-btn-google:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(34, 211, 238, 0.4) !important; /* cyan-light */
  transform: translateY(-4px) scale(1.03) !important;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 0 20px rgba(6, 182, 212, 0.25) !important;
}

.btn-store-download:active {
  transform: translateY(-1px) scale(0.98) !important;
}

@media (max-width: 992px) {
  .landing-hero-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-2xl) !important;
    text-align: center;
  }
  
  .hero-text-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-text-col h1, 
  .hero-text-col p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .store-badge-group {
    justify-content: center;
  }
}
