/* ===================================================
   HatrixHats — Global Stylesheet v2
   Richardson Sports-inspired B2B layout
   =================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #CC0000; --red-dark: #990000; --red-light: #ff2222;
  --black: #111111; --dark: #1a1a1a; --mid: #444; --muted: #888;
  --border: #e0e0e0; --bg: #f5f5f5; --white: #ffffff;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 4px; --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--black); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }

/* BUTTONS */
.btn { display: inline-block; padding: 12px 28px; border-radius: var(--radius); font-family: var(--font-head); font-size: 16px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: all 0.2s; border: 2px solid transparent; }
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-white { background: var(--white); color: var(--red); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-outline-dark { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--white); }
.btn-full { width: 100%; text-align: center; display: block; }

/* SECTION TAGS */
.section-tag { display: inline-block; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); background: rgba(204,0,0,0.08); padding: 4px 12px; border-radius: 3px; margin-bottom: 14px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-family: var(--font-head); font-size: clamp(32px, 4vw, 52px); font-weight: 900; line-height: 1.05; margin-bottom: 12px; }
.section-header p { color: var(--muted); max-width: 500px; margin: 0 auto; font-size: 16px; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.65); }
.section-header.light .section-tag { color: var(--red-light); background: rgba(255,34,34,0.15); }

/* TOP BAR */
.top-bar { background: var(--black); padding: 8px 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar span { color: rgba(255,255,255,0.7); font-size: 13px; }
.top-bar a { color: var(--red-light); text-decoration: none; font-weight: 600; }

/* NAVBAR */
.navbar { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 2px solid var(--border); }
.nav-inner { display: flex; align-items: center; gap: 32px; height: 68px; }
.logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-item { position: relative; }
.nav-item > a, .nav-item.has-dropdown > a {
  display: block; padding: 8px 14px;
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  letter-spacing: 0.06em; color: var(--black); text-decoration: none;
  transition: color 0.2s; white-space: nowrap;
}
.nav-item > a:hover, .nav-item.has-dropdown > a:hover { color: var(--red); }
.caret { font-size: 11px; margin-left: 2px; }
.nav-dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); min-width: 180px; border-radius: var(--radius);
  padding: 8px 0; z-index: 200;
}
.nav-item.has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown a { display: block; padding: 10px 18px; font-size: 14px; color: var(--mid); text-decoration: none; transition: all 0.15s; }
.nav-dropdown a:hover { background: var(--bg); color: var(--red); }
.nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-quote { padding: 8px 20px; font-size: 14px; }
.hamburger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--black); }

/* LANG SWITCHER */
.lang-switcher { display: flex; gap: 3px; }
.lang-btn { background: none; border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.6); padding: 3px 8px; border-radius: 3px; cursor: pointer; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; transition: all 0.2s; }
.lang-btn:hover, .lang-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }
.top-bar .lang-btn { border-color: rgba(255,255,255,0.2); }
.footer .lang-btn { border-color: rgba(255,255,255,0.2); }

/* HERO */
.hero { position: relative; overflow: hidden; }
.hero-slides { position: relative; }
.hero-slide { display: none; min-height: 520px; align-items: center; position: relative; overflow: hidden; }
.hero-slide.active { display: flex; }
.hero-content { position: relative; z-index: 2; padding: 80px 0; max-width: 560px; }
.hero-eyebrow { font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red-light); margin-bottom: 16px; }
.hero-slide h1 { font-family: var(--font-head); font-size: clamp(56px, 8vw, 110px); font-weight: 900; line-height: 0.92; color: var(--white); text-transform: uppercase; margin-bottom: 20px; }
.hero-slide p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 32px; max-width: 440px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img-wrap { position: absolute; right: 0; top: 0; bottom: 0; width: 50%; display: flex; align-items: center; justify-content: center; overflow: hidden; opacity: 0.85; }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.slide-prev, .slide-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.35); border: none; color: var(--white); font-size: 28px; width: 44px; height: 44px; cursor: pointer; z-index: 10; transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.slide-prev { left: 12px; }
.slide-next { right: 12px; }
.slide-prev:hover, .slide-next:hover { background: var(--red); }
.slide-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.2s; }
.dot.active { background: var(--red); }

/* STATS BAR */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 0; }
.stats-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 0 32px; }
.stat-item strong { font-family: var(--font-head); font-size: 28px; font-weight: 900; color: var(--red); line-height: 1; }
.stat-item span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.stat-sep { color: var(--border); font-size: 24px; }

/* PRODUCTS SECTION */
.products-section { background: var(--white); padding: 48px 0 80px; }
.products-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }

/* FILTER SIDEBAR */
.filter-sidebar { border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; background: var(--white); }
.filter-title { font-family: var(--font-head); font-size: 24px; font-weight: 900; margin-bottom: 4px; }
.filter-sub { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; border-bottom: 2px solid var(--border); padding-bottom: 12px; }
.filter-group { border-bottom: 1px solid var(--border); margin-bottom: 0; }
.filter-group-header { width: 100%; background: none; border: none; padding: 12px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: var(--font-head); font-size: 14px; font-weight: 700; letter-spacing: 0.08em; color: var(--black); }
.filter-group-header:hover { color: var(--red); }
.filter-caret { font-size: 16px; color: var(--muted); }
.filter-options { display: none; padding-bottom: 12px; }
.filter-options.open { display: block; }
.filter-check { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: 13px; color: var(--mid); cursor: pointer; }
.filter-check:hover { color: var(--red); }
.filter-check input { accent-color: var(--red); }
.sidebar-cta { margin-top: 24px; font-size: 14px; padding: 10px 16px; }

/* PRODUCT GRID */
.grid-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.grid-count { font-family: var(--font-head); font-size: 22px; font-weight: 700; }
.grid-sort select { border: 1px solid var(--border); padding: 6px 12px; border-radius: var(--radius); font-size: 13px; cursor: pointer; color: var(--mid); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* PRODUCT CARD */
.prod-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: box-shadow 0.2s, transform 0.2s; overflow: hidden; }
.prod-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.prod-card.featured { border-color: var(--red); }
.prod-card-img { position: relative; overflow: hidden; aspect-ratio: 1/1; background: #f8f8f8; }
.prod-main-img, .prod-hover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s ease; }
.prod-hover-img { opacity: 0; }
.prod-card:hover .prod-main-img { opacity: 0; }
.prod-card:hover .prod-hover-img { opacity: 1; }
.prod-badge { position: absolute; top: 12px; left: 12px; font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 2px; }
.prod-badge.new { background: var(--black); color: var(--white); }
.prod-badge.popular { background: var(--red); color: var(--white); }
.prod-card-info { padding: 16px; }
.prod-model { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: 0.06em; margin-bottom: 2px; }
.prod-name { font-family: var(--font-head); font-size: 22px; font-weight: 900; letter-spacing: 0.04em; margin-bottom: 10px; }
.prod-colors { display: flex; gap: 5px; align-items: center; margin-bottom: 10px; flex-wrap: wrap; }
.color-swatch { width: 20px; height: 20px; border-radius: 50%; cursor: pointer; transition: transform 0.15s; display: inline-block; }
.color-swatch:hover { transform: scale(1.25); }
.color-swatch.more { background: var(--bg); border: 1px solid var(--border); color: var(--muted); font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; border-radius: 10px; width: auto; padding: 0 6px; }
.prod-moq { font-size: 12px; color: var(--muted); }
.prod-moq strong { color: var(--black); }

/* PRODUCT MODAL */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.65); z-index: 2000; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.open { display: flex; }
.product-modal { background: var(--white); border-radius: 8px; max-width: 960px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; animation: modalIn 0.25s ease; }
@keyframes modalIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 20px; cursor: pointer; color: var(--muted); z-index: 10; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.2s; }
.modal-close:hover { background: var(--bg); color: var(--black); }
.modal-inner { display: grid; grid-template-columns: 1fr 1fr; }
.modal-gallery { padding: 32px; border-right: 1px solid var(--border); }
.modal-main-img-wrap { aspect-ratio: 1/1; background: #f8f8f8; border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; }
.modal-main-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.modal-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.modal-thumb { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius); border: 2px solid transparent; cursor: pointer; background: #f8f8f8; }
.modal-thumb:hover, .modal-thumb.active { border-color: var(--red); }
.modal-details { padding: 32px; }
.modal-model { font-family: var(--font-head); font-size: 14px; color: var(--muted); font-weight: 700; letter-spacing: 0.06em; }
.modal-title { font-family: var(--font-head); font-size: 36px; font-weight: 900; margin-bottom: 8px; }
.modal-moq { font-size: 14px; color: var(--mid); margin-bottom: 24px; background: var(--bg); padding: 8px 14px; border-radius: var(--radius); display: inline-block; }
.modal-section { margin-bottom: 20px; border-top: 1px solid var(--border); padding-top: 16px; }
.modal-section h4 { font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 10px; }
.modal-color-note { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.modal-color-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.modal-color-dot { width: 28px; height: 28px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: all 0.15s; }
.modal-color-dot:hover { transform: scale(1.2); border-color: var(--black); }
.modal-materials, .modal-logo-methods, .modal-desc { font-size: 14px; color: var(--mid); line-height: 1.7; }
.modal-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

/* CONFIGURATOR */
.configurator { background: var(--dark); }
.config-wrapper { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: start; }
.config-preview { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 28px; position: sticky; top: 100px; }
.preview-hat { text-align: center; margin-bottom: 20px; }
.hat-display { font-size: 90px; line-height: 1; transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.hat-label { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--white); margin-top: 10px; }
.color-swatch-display { display: flex; gap: 12px; margin-bottom: 20px; justify-content: center; }
.swatch-main, .swatch-accent { width: 44px; height: 44px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.2); transition: background 0.3s; }
.preview-summary { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; }
.summary-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 13px; }
.summary-row span { color: rgba(255,255,255,0.45); }
.summary-row strong { color: var(--white); }
.config-steps { display: flex; flex-direction: column; gap: 12px; }
.config-step { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; overflow: hidden; }
.step-header { display: flex; align-items: center; gap: 14px; padding: 18px 20px; }
.step-num { font-family: var(--font-head); font-size: 26px; font-weight: 900; color: var(--red); line-height: 1; }
.step-header h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--white); }
.config-step > *:not(.step-header) { padding: 0 20px 20px; }
.style-options { display: flex; gap: 10px; }
.style-opt { display: flex; flex-direction: column; align-items: center; gap: 6px; background: rgba(255,255,255,0.05); border: 2px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 16px 20px; cursor: pointer; transition: all 0.2s; flex: 1; color: rgba(255,255,255,0.65); font-family: var(--font-head); font-size: 15px; font-weight: 600; }
.style-opt input { display: none; }
.style-opt .style-icon { font-size: 36px; }
.style-opt:hover, .style-opt.selected { border-color: var(--red); background: rgba(204,0,0,0.12); color: var(--white); }
.material-options { display: flex; gap: 8px; flex-wrap: wrap; }
.mat-opt { background: rgba(255,255,255,0.06); border: 2px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.65); padding: 8px 14px; border-radius: 6px; cursor: pointer; font-size: 13px; transition: all 0.2s; font-weight: 500; }
.mat-opt:hover, .mat-opt.selected { border-color: var(--red); background: rgba(204,0,0,0.12); color: var(--white); }
.color-section { margin-bottom: 16px; }
.color-section label { font-size: 12px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; display: block; }
.color-palette { display: flex; gap: 8px; flex-wrap: wrap; }
.color-dot { width: 32px; height: 32px; border-radius: 50%; cursor: pointer; border: 3px solid transparent; transition: all 0.2s; }
.color-dot:hover { transform: scale(1.2); }
.color-dot.selected { border-color: var(--white); box-shadow: 0 0 0 3px var(--red); }
.logo-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.logo-opt { cursor: pointer; }
.logo-opt input { display: none; }
.logo-opt-inner { display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; background: rgba(255,255,255,0.05); border: 2px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 16px; transition: all 0.2s; }
.logo-opt-inner .logo-icon { font-size: 28px; }
.logo-opt-inner strong { color: var(--white); font-family: var(--font-head); font-size: 15px; }
.logo-opt-inner small { color: rgba(255,255,255,0.4); font-size: 11px; }
.logo-opt.selected .logo-opt-inner, .logo-opt:hover .logo-opt-inner { border-color: var(--red); background: rgba(204,0,0,0.12); }
.qty-options { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.qty-opt { cursor: pointer; }
.qty-opt input { display: none; }
.qty-opt span { display: block; background: rgba(255,255,255,0.06); border: 2px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.65); padding: 8px 14px; border-radius: 6px; font-size: 13px; transition: all 0.2s; font-weight: 500; }
.qty-opt:hover span, .qty-opt.selected span { border-color: var(--red); background: rgba(204,0,0,0.12); color: var(--white); }
.qty-note { font-size: 12px; color: rgba(255,255,255,0.3); font-style: italic; }
.config-steps .btn-full { margin-top: 6px; font-size: 18px; padding: 16px; }

/* WHY US */
.why { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 36px; }
.why-item { }
.why-num { font-family: var(--font-head); font-size: 48px; font-weight: 900; color: rgba(204,0,0,0.12); line-height: 1; margin-bottom: 6px; }
.why-item h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.why-item p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ABOUT */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-text h2 { font-family: var(--font-head); font-size: clamp(32px,3.5vw,48px); font-weight: 900; line-height: 1.05; margin-bottom: 20px; }
.about-text p { color: var(--mid); margin-bottom: 14px; font-size: 15px; line-height: 1.8; }
.about-text .btn { margin-top: 20px; }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-card { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 24px 20px; transition: all 0.2s; }
.about-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow); }
.about-icon { font-size: 28px; margin-bottom: 10px; }
.about-card h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.about-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* INQUIRY */
.inquiry { background: var(--black); }
.inquiry-inner { display: grid; grid-template-columns: 360px 1fr; gap: 72px; align-items: start; }
.inquiry-left .section-tag { color: var(--red-light); background: rgba(255,34,34,0.12); }
.inquiry-left h2 { font-family: var(--font-head); font-size: clamp(32px,4vw,48px); font-weight: 900; color: var(--white); line-height: 1.05; margin-bottom: 16px; }
.inquiry-left p { color: rgba(255,255,255,0.5); font-size: 15px; line-height: 1.7; margin-bottom: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-row { color: rgba(255,255,255,0.65); font-size: 14px; display: flex; align-items: center; gap: 10px; }
.contact-row a { color: var(--red-light); text-decoration: none; }
.inquiry-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); color: var(--white); border-radius: var(--radius); padding: 11px 14px; font-family: var(--font-body); font-size: 14px; outline: none; width: 100%; transition: border 0.2s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group select option { background: #222; }
.form-group textarea { resize: vertical; min-height: 100px; }
.file-upload { position: relative; background: rgba(255,255,255,0.03); border: 2px dashed rgba(255,255,255,0.15); border-radius: var(--radius); padding: 20px; text-align: center; cursor: pointer; transition: border 0.2s; }
.file-upload:hover { border-color: var(--red); }
.file-upload input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; }
.file-upload span { color: rgba(255,255,255,0.3); font-size: 13px; }
.file-name { font-size: 12px; color: var(--red-light); margin-top: 6px; }
.form-note { font-size: 11px; color: rgba(255,255,255,0.25); text-align: center; }
.form-success { background: rgba(0,180,80,0.1); border: 1px solid rgba(0,180,80,0.3); color: #4ade80; border-radius: var(--radius); padding: 14px 18px; display: flex; align-items: center; gap: 10px; font-size: 14px; }

/* FOOTER */
.footer { background: #0a0a0a; padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: 260px 1fr; gap: 56px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo { height: 44px; margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,0.3); font-size: 12px; font-family: var(--font-head); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.footer-col a { color: rgba(255,255,255,0.3); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col a:hover { color: var(--red-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; }
.footer-bottom p { color: rgba(255,255,255,0.2); font-size: 12px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .products-layout { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .inquiry-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; }
  .config-wrapper { grid-template-columns: 1fr; }
  .config-preview { position: static; }
  .modal-inner { grid-template-columns: 1fr; }
  .modal-gallery { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--white); padding: 20px; border-top: 1px solid var(--border); box-shadow: var(--shadow-lg); z-index: 999; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .product-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .about-visual { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .hero-slide { min-height: 380px; }
  .stats-inner { gap: 0; }
  .stat-sep { display: none; }
  .stat-item { padding: 8px 16px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .style-options { flex-direction: column; }
  .logo-options { grid-template-columns: 1fr; }
}

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.animate-in { animation: fadeInUp 0.5s ease forwards; }
