/*
Theme Name: Apex Print
Theme URI: https://apexprint.co.uk
Author: Apex Print
Author URI: https://apexprint.co.uk
Description: A bold, dark premium theme for local print shops. Features a hero section, product category grid, featured products, why-us section, blog insights, and a full footer — all styled in a distinctive gold-on-black aesthetic.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: apex-print
Tags: e-commerce, blog, custom-menu, featured-images, full-width-template, sticky-post, translation-ready, dark, gold
*/

/* ============================================================
   ROOT VARIABLES
============================================================ */
:root {
  --black: #0a0a0a;
  --white: #f5f2ec;
  --cream: #f0ebe0;
  --gold: #c8972a;
  --gold-light: #e8b94a;
  --red: #c0392b;
  --mid: #3a3530;
  --grey: #8a8278;
  --border: rgba(200, 151, 42, 0.25);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ============================================================
   ANNOUNCEMENT BAR
============================================================ */
.announce {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.announce a { color: var(--black); text-decoration: underline; }

/* ============================================================
   NAVIGATION
============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 68px;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo span { color: var(--gold); }

.logo-diamond {
  width: 28px;
  height: 28px;
  background: var(--gold);
  transform: rotate(45deg);
  display: inline-block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 9px 22px;
  border-radius: 2px;
  opacity: 1;
  font-weight: 700;
  transition: background 0.2s;
}
.nav-links .nav-cta:hover { background: var(--gold-light); color: var(--black); }

/* WordPress nav menu compatibility */
.main-navigation ul { list-style: none; display: flex; gap: 32px; align-items: center; }
.main-navigation ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.main-navigation ul li a:hover { opacity: 1; color: var(--gold); }
.main-navigation ul li:last-child a {
  background: var(--gold);
  color: var(--black);
  padding: 9px 22px;
  border-radius: 2px;
  opacity: 1;
  font-weight: 700;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245, 242, 236, 0.65);
  max-width: 440px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 16px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  border: 1.5px solid rgba(245, 242, 236, 0.3);
  color: var(--white);
  padding: 15px 36px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats { display: flex; gap: 40px; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-right { position: relative; overflow: hidden; }
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 151, 42, 0.08) 0%, transparent 60%);
  z-index: 1;
}

.hero-bg-text {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 280px;
  color: rgba(200, 151, 42, 0.04);
  white-space: nowrap;
  line-height: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  pointer-events: none;
  z-index: 0;
  letter-spacing: 0.05em;
}

.hero-img-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}
.hero-img-cell { overflow: hidden; position: relative; }
.hero-img-cell svg, .hero-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.hero-img-cell:hover svg,
.hero-img-cell:hover img { transform: scale(1.04); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 30%);
  z-index: 2;
  pointer-events: none;
}

/* ============================================================
   MARQUEE
============================================================ */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--gold);
  overflow: hidden;
  padding: 12px 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 36px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--black);
}
.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--black);
  opacity: 0.4;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION SHARED STYLES
============================================================ */
.site-section { padding: 100px 80px; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245, 242, 236, 0.55);
  max-width: 580px;
  font-weight: 300;
}

/* ============================================================
   CATEGORIES SECTION
============================================================ */
.categories-section { background: #0f0e0c; }

.cat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cat-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cat-card:hover .cat-card-bg { transform: scale(1.06); }

.cat-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.2) 60%);
  transition: background 0.3s;
}
.cat-card:hover .cat-card-overlay {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.96) 0%, rgba(200, 151, 42, 0.08) 60%);
}

.cat-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  transform: translateY(8px);
  transition: transform 0.3s;
}
.cat-card:hover .cat-card-content { transform: translateY(0); }

.cat-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 6px;
}

.cat-card-desc {
  font-size: 13px;
  color: rgba(245, 242, 236, 0.55);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s 0.05s, transform 0.3s 0.05s;
}
.cat-card:hover .cat-card-desc { opacity: 1; transform: translateY(0); }

.cat-card-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s, transform 0.25s;
}
.cat-card:hover .cat-card-arrow { opacity: 1; transform: scale(1); }

.cat-card.big {
  grid-column: span 2;
  aspect-ratio: 16 / 7;
}

/* Illustration backgrounds */
.il-banner { background: linear-gradient(135deg, #1a1512 0%, #2a1f10 100%); }
.il-signs  { background: linear-gradient(135deg, #0f1520 0%, #162030 100%); }
.il-menus  { background: linear-gradient(135deg, #0f1a0f 0%, #162816 100%); }
.il-tshirt { background: linear-gradient(135deg, #1a0f18 0%, #26152a 100%); }
.il-flyers { background: linear-gradient(135deg, #1a1005 0%, #2a1a08 100%); }
.il-vinyl  { background: linear-gradient(135deg, #0e0f1a 0%, #141525 100%); }
.il-cards  { background: linear-gradient(135deg, #1a0a0a 0%, #280f0f 100%); }
.il-ncr    { background: linear-gradient(135deg, #0f1515 0%, #151e1e 100%); }

/* ============================================================
   PRODUCTS SECTION
============================================================ */
.products-section { background: var(--black); }

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.product-img {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.product-img svg,
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.product-card:hover .product-img svg,
.product-card:hover .product-img img { transform: scale(1.05); }

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.product-info { padding: 20px; }
.product-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.product-name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.product-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--grey);
  font-weight: 400;
  letter-spacing: 0;
}

/* ============================================================
   WHY US SECTION
============================================================ */
.why-section {
  background: #0d0c0a;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 80px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.why-item:last-child { border-bottom: none; padding-bottom: 0; }

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 151, 42, 0.1);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.why-title { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.why-desc  { font-size: 14px; color: var(--grey); line-height: 1.65; }

.why-visual { position: relative; }
.why-visual-main {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: relative;
}

.why-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 24px;
  border-radius: 4px;
  width: 160px;
  z-index: 2;
}
.why-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 4px;
}
.why-badge-text {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   BLOG SECTION
============================================================ */
.blog-section { background: var(--black); }

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}

.blog-card {
  background: #111;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--gold); }

.blog-img { aspect-ratio: 16 / 9; overflow: hidden; position: relative; }
.blog-card.featured .blog-img { aspect-ratio: 16 / 10; }
.blog-img svg, .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.blog-card:hover .blog-img svg,
.blog-card:hover .blog-img img { transform: scale(1.04); }

.blog-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.blog-title { font-size: 18px; font-weight: 600; line-height: 1.35; margin-bottom: 12px; }
.blog-card:not(.featured) .blog-title { font-size: 15px; }
.blog-excerpt { font-size: 14px; color: var(--grey); line-height: 1.6; flex: 1; }
.blog-date { font-size: 12px; color: var(--grey); margin-top: 16px; }

/* ============================================================
   CTA BAND
============================================================ */
.cta-band {
  background: var(--gold);
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--black);
  line-height: 1;
  letter-spacing: 0.02em;
  max-width: 500px;
}
.cta-band h2 em { font-style: normal; opacity: 0.5; }

.btn-dark {
  background: var(--black);
  color: var(--white);
  padding: 18px 44px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-block;
}
.btn-dark:hover { background: var(--mid); color: var(--white); }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: #050504;
  border-top: 1px solid var(--border);
  padding: 72px 80px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .nav-logo { margin-bottom: 20px; display: inline-flex; }

.footer-desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-contact a {
  display: block;
  color: var(--grey);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: var(--grey);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }

/* WordPress footer widget areas */
.footer-widgets { display: contents; }
.footer-widget-area h2.widget-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-widget-area ul { list-style: none; }
.footer-widget-area ul li { margin-bottom: 10px; }
.footer-widget-area ul li a {
  color: var(--grey);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-widget-area ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--grey); }

/* Newsletter */
.newsletter-label {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.newsletter-row { display: flex; gap: 12px; margin-top: 20px; }
.newsletter-row input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  border-radius: 2px;
  outline: none;
}
.newsletter-row input::placeholder { color: var(--grey); }
.newsletter-row input:focus { border-color: var(--gold); }
.newsletter-row button {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}
.newsletter-row button:hover { background: var(--gold-light); }

/* ============================================================
   WORDPRESS STANDARD ELEMENTS
============================================================ */
/* Posts / Pages */
.entry-content { color: var(--white); line-height: 1.8; font-size: 16px; }
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
  margin: 32px 0 16px;
  color: var(--white);
}
.entry-content p { margin-bottom: 20px; }
.entry-content a { color: var(--gold); }
.entry-content a:hover { text-decoration: underline; }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 20px; }
.entry-content li { margin-bottom: 8px; }

/* Standard WordPress page/post wrapper */
.page-content-wrap {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 40px;
  color: var(--white);
}

/* Comments */
.comments-area { max-width: 900px; margin: 60px auto; padding: 0 40px; }
.comment-list { list-style: none; }
.comment-body { background: #111; padding: 24px; border-radius: 4px; margin-bottom: 16px; border: 1px solid rgba(255,255,255,0.06); }
.comment-author { font-weight: 600; margin-bottom: 8px; color: var(--gold); }
.comment-content p { color: var(--grey); font-size: 14px; line-height: 1.7; }

/* Pagination */
.nav-links-pagination { display: flex; gap: 8px; justify-content: center; padding: 40px 0; }
.nav-links-pagination a, .nav-links-pagination span {
  background: #111;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.2s;
}
.nav-links-pagination a:hover { border-color: var(--gold); color: var(--gold); }
.nav-links-pagination .current { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .site-section { padding: 72px 40px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 80px 40px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card.big { grid-column: span 2; aspect-ratio: 16 / 7; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-section { grid-template-columns: 1fr; padding: 72px 40px; }
  .why-visual { display: none; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card.featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer { padding: 72px 40px 40px; }
  .cta-band { padding: 60px 40px; }
  .site-nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 24px 24px; gap: 16px; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  .site-section { padding: 56px 20px; }
  .site-nav { padding: 0 20px; }
  .hero-left { padding: 60px 20px; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card.big { grid-column: span 1; aspect-ratio: 4 / 3; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 48px 20px 32px; }
  .cta-band { padding: 48px 20px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .why-section { padding: 56px 20px; }
}
