/*
Theme Name: Techria Child
Theme URI: https://bdzhenlongtech.asia/
Description: Techria 子主题，基于 Twenty Twenty-Four
Author: Techria
Author URI: https://bdzhenlongtech.asia/
Template: twentytwentyfour
Version: 1.0.0
License: GPL v2 or later
Text Domain: techria-child
*/

/* 引入父主题样式 */
@import url("../twentytwentyfour/style.css");

/* 子主题自定义样式 */
:root {
  --techria-primary: #0a4d8c;
  --techria-secondary: #4a90c2;
  --techria-accent: #e8a93c;
  --techria-text: #1a1a1a;
  --techria-muted: #6b7280;
}

.techria-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.techria-product-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: var(--techria-text);
  display: block;
}

.techria-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.techria-product-code {
  font-size: 28px;
  font-weight: 700;
  color: var(--techria-primary);
  margin: 0 0 8px 0;
}

.techria-product-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--techria-text);
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.techria-product-tagline {
  font-size: 14px;
  color: var(--techria-muted);
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.techria-product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
}

.techria-spec-tag {
  background: #f0f4f8;
  color: var(--techria-secondary);
  padding: 4px 10px;
  border-radius: 4px;
}

.techria-hero {
  background: linear-gradient(135deg, var(--techria-primary) 0%, var(--techria-secondary) 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.techria-hero h1 {
  font-size: 48px;
  margin: 0 0 16px 0;
  font-weight: 700;
}

.techria-hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.techria-section-title {
  text-align: center;
  font-size: 32px;
  margin: 60px 0 16px 0;
  color: var(--techria-text);
}

.techria-section-sub {
  text-align: center;
  color: var(--techria-muted);
  font-size: 16px;
  margin: 0 0 20px 0;
}