
/* ==========================================
   Centered Page Wrapper (Homepage)
========================================== */
.page-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}
.page-wrapper .site-header .header-container,
.page-wrapper .newsletter-container,
.page-wrapper .footer-container,
.page-wrapper .footer-bottom-container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   Static Page Styles
========================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'League Spartan', 'Inter', sans-serif; color: #222; background: #fff; }
.page-hero { background: linear-gradient(135deg, #111 0%, #2a2a2a 100%); color: #fff; padding: 100px 20px 80px; text-align: center; }
.page-hero-sm { padding: 70px 20px 50px; }
.page-hero-content { max-width: 700px; margin: 0 auto; }
.page-hero h1 { font-size: 4rem; font-weight: 900; letter-spacing: -2px; text-transform: uppercase; margin-bottom: 12px; }
.page-hero p { font-size: 1.25rem; opacity: 0.8; line-height: 1.6; }
.page-section { padding: 70px 20px; }
.page-container { max-width: 1100px; margin: 0 auto; }
.page-content-block { margin-bottom: 48px; }
.page-content-block h2 { font-size: 2rem; font-weight: 700; letter-spacing: -1px; margin-bottom: 18px; color: #111; }
.page-content-block p { font-size: 1.05rem; line-height: 1.7; color: #555; margin-bottom: 12px; }
.page-content-block:last-child { margin-bottom: 0; }
.text-center { text-align: center; }

/* Grid Layouts */
.page-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 48px; }
.page-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; margin-bottom: 48px; }

/* Cards */
.page-card { background: #f8f8f8; border-radius: 12px; padding: 35px; transition: transform .3s, box-shadow .3s; }
.page-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.page-card i { font-size: 2rem; color: #E65A1E; margin-bottom: 18px; }
.page-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; color: #111; }
.page-card p { font-size: 0.95rem; line-height: 1.6; color: #666; }
.page-card img { width: 100%; border-radius: 8px; margin-bottom: 15px; }

/* FAQ */
.page-faq { max-width: 800px; margin: 0 auto; }
.page-faq h2 { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 30px; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-q { width: 100%; background: none; border: none; padding: 20px 0; font-size: 1.05rem; font-weight: 600; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: #222; font-family: inherit; }
.faq-q i { transition: transform .3s; color: #999; }
.faq-q.active i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; padding: 0; }
.faq-a p { padding-bottom: 20px; line-height: 1.6; color: #666; }
.faq-a.open { max-height: 300px; }

/* Table */
.page-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.page-table th, .page-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid #eee; }
.page-table th { background: #f5f5f5; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; color: #333; }
.page-table td { font-size: 0.95rem; color: #555; }
.page-table tr:last-child td { border-bottom: none; }

/* Lists */
.page-list { list-style: none; padding: 0; }
.page-list li { padding: 8px 0 8px 24px; position: relative; line-height: 1.6; color: #555; font-size: 1rem; }
.page-list li::before { content: "\2713"; position: absolute; left: 0; color: #E65A1E; font-weight: 700; }
.page-list ol, ol.page-list { counter-reset: item; }
ol.page-list li { counter-increment: item; padding-left: 32px; }
ol.page-list li::before { content: counter(item) "."; color: #E65A1E; font-weight: 700; }

/* Legal Pages */
.page-legal h2 { font-size: 1.4rem; font-weight: 700; margin: 32px 0 12px; color: #111; }
.page-legal p { font-size: 1rem; line-height: 1.7; color: #555; margin-bottom: 8px; }
.page-legal ul { margin: 10px 0 10px 20px; }
.page-legal ul li { padding: 4px 0; color: #555; line-height: 1.6; }

/* Form */
.page-form { max-width: 600px; }
.form-row { margin-bottom: 18px; }
.form-row input, .form-row select, .form-row textarea { width: 100%; padding: 14px 16px; border: 1px solid #ddd; border-radius: 6px; font-size: 0.95rem; font-family: inherit; transition: border-color .3s; background: #fff; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: #E65A1E; }
.page-btn { background: #111; color: #fff; border: none; padding: 16px 36px; font-size: 0.85rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 6px; cursor: pointer; transition: background .3s; font-family: inherit; }
.page-btn:hover { background: #2a2a2a; }

/* Price */
.page-price { font-size: 1.5rem; font-weight: 800; color: #E65A1E; margin: 10px 0; }

/* Product Grid */
.page-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.page-product-card { background: #fff; border: 1px solid #eee; border-radius: 10px; padding: 18px; text-align: center; position: relative; transition: transform .3s, box-shadow .3s; }
.page-product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,.08); }
.page-product-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 6px; margin-bottom: 14px; background: #f5f5f5; }
.page-product-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.page-product-card h3 a { color: #222; text-decoration: none; }
.page-product-card h3 a:hover { text-decoration: underline; }
.page-product-price { font-size: 1.1rem; font-weight: 700; color: #111; margin-bottom: 10px; }
.page-product-colors { display: flex; gap: 6px; justify-content: center; }
.page-product-colors span { width: 14px; height: 14px; border-radius: 50%; border: 1px solid #ddd; }
.page-badge { position: absolute; top: 12px; left: 12px; background: #E65A1E; color: #fff; padding: 4px 10px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 4px; }
.page-badge-new { background: #66847c; }
.page-empty { grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: #999; font-size: 1.1rem; }

/* Coming Soon */
.page-coming-form { display: flex; gap: 12px; max-width: 450px; margin: 24px auto; }
.page-coming-form input { flex: 1; padding: 14px 16px; border: 1px solid #ddd; border-radius: 6px; font-size: 0.95rem; font-family: inherit; }
.page-coming-card { text-align: center; }
.page-coming-card i { font-size: 2.5rem; }

/* Sitemap */
.sitemap-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; }
.sitemap-col h3 { font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; color: #111; }
.sitemap-col ul { list-style: none; }
.sitemap-col ul li { margin-bottom: 8px; }
.sitemap-col ul li a { color: #555; text-decoration: none; font-size: 0.9rem; transition: color .2s; }
.sitemap-col ul li a:hover { color: #E65A1E; }

/* Responsive */
@media (max-width: 900px) {
  .page-hero h1 { font-size: 2.5rem; }
  .page-grid-2, .page-grid-3 { grid-template-columns: 1fr; }
  .page-product-grid { grid-template-columns: repeat(2, 1fr); }
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
  .page-coming-form { flex-direction: column; }
}
@media (max-width: 500px) {
  .page-product-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 70px 20px 50px; }
  .page-hero h1 { font-size: 2rem; }
  .sitemap-grid { grid-template-columns: 1fr; }
}
