/* ===== ZIPPER EU — 3D HYPERREALISM FRONTEND ===== */
:root {
  --red:     #c0392b;
  --red-d:   #962d22;
  --red-l:   #e74c3c;
  --gold:    #c9a84c;
  --dark:    #0f0f0f;
  --dark-2:  #1a1a1a;
  --dark-3:  #252525;
  --mid:     #3d3d3d;
  --light:   #f5f5f0;
  --text:    #e8e8e0;
  --muted:   #a0a09a;
  --white:   #ffffff;
  --font:    'Inter', system-ui, -apple-system, sans-serif;
  --ease:    cubic-bezier(.25,.46,.45,.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Typography ── */
h1,h2,h3,h4 { font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
a  { color: inherit; text-decoration: none; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

/* ── Header / Nav ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,15,15,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: all .3s var(--ease);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  padding: 16px 0;
}
.nav-logo img { height: 38px; filter: brightness(1.1); }
.nav-logo span { font-size: 20px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }

.nav-links {
  display: flex; gap: 4px; flex: 1; justify-content: center;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.07); }

.nav-right { display: flex; align-items: center; gap: 12px; }

/* Language switcher */
.lang-switcher { display: flex; gap: 6px; }
.lang-btn {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,.1);
  background: transparent;
  cursor: pointer;
  transition: all .2s;
  text-transform: uppercase;
}
.lang-btn:hover, .lang-btn.active {
  color: var(--white);
  border-color: var(--red);
  background: rgba(192,57,43,.15);
}

.btn-quote {
  padding: 10px 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-quote:hover { background: var(--red-l); transform: translateY(-1px); }

.nav-mobile-btn { display: none; background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #1a0a08 50%, var(--dark-2) 100%);
  padding-top: 90px;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(192,57,43,.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 70%, rgba(201,168,76,.08) 0%, transparent 60%);
}

.hero-grid {
  position: absolute; inset: 0; opacity: .04;
  background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(192,57,43,.15);
  border: 1px solid rgba(192,57,43,.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red-l);
  margin-bottom: 28px;
}

.hero h1 {
  background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,.7) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--red-l), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary-lg {
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--red), var(--red-d));
  color: var(--white);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s var(--ease);
  box-shadow: 0 8px 32px rgba(192,57,43,.4), 0 2px 8px rgba(0,0,0,.3);
  position: relative; overflow: hidden;
}
.btn-primary-lg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
}
.btn-primary-lg:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(192,57,43,.5), 0 4px 16px rgba(0,0,0,.4); }

.btn-outline-lg {
  padding: 16px 32px;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s var(--ease);
}
.btn-outline-lg:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); }

/* Hero 3D zipper visual */
.hero-visual {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 55%;
  overflow: hidden;
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .25;
  filter: brightness(.8) contrast(1.2) saturate(.8);
  transform: scale(1.05);
}
.hero-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--dark) 0%, transparent 50%);
}

/* Stats bar */
.hero-stats {
  display: flex; gap: 40px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.stat-item .value { font-size: 28px; font-weight: 800; color: var(--white); }
.stat-item .label { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ── Section ── */
.section { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--dark-2); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-l);
  margin-bottom: 12px;
}
.section-header h2 {
  background: linear-gradient(135deg, var(--white), rgba(255,255,255,.7));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.section-header p { color: var(--muted); font-size: 17px; max-width: 560px; margin: 0 auto; }

/* ── Category cards (3D) ── */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  height: 320px;
  text-decoration: none;
  display: block;
}
.category-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 32px 64px rgba(0,0,0,.6), 0 0 0 1px rgba(192,57,43,.2);
}
.category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
  filter: brightness(.6) saturate(.9);
}
.category-card:hover img { transform: scale(1.08); filter: brightness(.7) saturate(1); }

.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
}
.category-card-shine {
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
  transform: skewX(-20deg);
  transition: left .6s var(--ease);
}
.category-card:hover .category-card-shine { left: 150%; }

.category-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px;
}
.category-card-content h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 6px; }
.category-card-content p  { font-size: 14px; color: rgba(255,255,255,.6); }
.category-card-arrow {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: rgba(192,57,43,.8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  opacity: 0; transform: translateY(4px);
  transition: all .3s var(--ease);
}
.category-card:hover .category-card-arrow { opacity: 1; transform: translateY(0); }

/* ── Product cards ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

.product-card {
  background: var(--dark-3);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: all .3s var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: rgba(192,57,43,.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(192,57,43,.15);
}
.product-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
  filter: brightness(.9);
}
.product-card:hover .product-img img { transform: scale(1.06); }

.product-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px;
  background: rgba(192,57,43,.9);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-info h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.product-sku  { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.product-info p { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; }
.product-footer { padding: 14px 20px; border-top: 1px solid rgba(255,255,255,.06); }
.btn-inquire {
  display: block;
  width: 100%;
  padding: 11px;
  background: linear-gradient(135deg, var(--red), var(--red-d));
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all .2s;
}
.btn-inquire:hover { background: linear-gradient(135deg, var(--red-l), var(--red)); transform: translateY(-1px); }

/* ── Why Us section ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all .3s var(--ease);
}
.feature-card:hover {
  border-color: rgba(192,57,43,.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(192,57,43,.2), rgba(192,57,43,.05));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  border: 1px solid rgba(192,57,43,.2);
}
.feature-card h3 { font-size: 17px; color: var(--white); margin-bottom: 10px; }
.feature-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── Catalog downloads ── */
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.catalog-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all .3s var(--ease);
  display: flex; flex-direction: column;
}
.catalog-card:hover { border-color: rgba(192,57,43,.3); transform: translateY(-4px); }
.catalog-cover {
  height: 200px;
  background: var(--dark-2);
  overflow: hidden;
}
.catalog-cover img { width:100%;height:100%;object-fit:cover;filter:brightness(.9); }
.catalog-cover-empty {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  background: linear-gradient(135deg, rgba(192,57,43,.1), rgba(201,168,76,.05));
}
.catalog-info { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.catalog-info h3 { font-size: 17px; color: var(--white); margin-bottom: 8px; }
.catalog-info p  { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; }
.btn-download {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--red), var(--red-d));
  color: var(--white);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}
.btn-download:hover { background: linear-gradient(135deg, var(--red-l), var(--red)); transform: translateY(-1px); }

/* ── Contact section ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h2 { color: var(--white); margin-bottom: 20px; }
.contact-info p  { color: var(--muted); font-size: 16px; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(192,57,43,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  border: 1px solid rgba(192,57,43,.2);
}
.contact-item-text .label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.contact-item-text .value { font-size: 15px; color: var(--white); font-weight: 600; margin-top: 2px; }

/* ── Contact Form ── */
.contact-form-wrap {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 36px;
}
.contact-form-wrap h3 { color: var(--white); font-size: 20px; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  transition: border-color .2s;
  outline: none;
}
.form-control:focus { border-color: var(--red); background: rgba(255,255,255,.07); }
textarea.form-control { min-height: 110px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gdpr-label { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); cursor: pointer; }
.gdpr-label input { margin-top: 2px; flex-shrink: 0; accent-color: var(--red); }
.btn-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--red), var(--red-d));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: all .2s;
  box-shadow: 0 8px 24px rgba(192,57,43,.4);
}
.btn-submit:hover { background: linear-gradient(135deg, var(--red-l), var(--red)); transform: translateY(-2px); }

/* ── Footer ── */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--muted); transition: color .2s; }
.footer-bottom a:hover { color: var(--white); }
.footer-dev-credit {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted); text-decoration: none; font-size: 12px;
  opacity: .7; transition: opacity .2s;
}
.footer-dev-credit:hover { opacity: 1; color: var(--white); }
.footer-dev-credit img { border-radius: 4px; display: block; }
.footer-dev-name { font-weight: 600; }

/* ── Cookie bar ── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(15,15,15,.97);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  z-index: 999;
  font-size: 14px; color: var(--muted);
  flex-wrap: wrap;
  backdrop-filter: blur(12px);
}
.cookie-bar a { color: var(--red-l); text-decoration: underline; }
.cookie-btn {
  padding: 10px 22px;
  background: var(--red);
  color: var(--white);
  border: none; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  transition: background .2s;
}
.cookie-btn:hover { background: var(--red-l); }

/* ── Alert messages ── */
.alert { padding: 16px 20px; border-radius: 12px; margin-bottom: 24px; font-size: 15px; }
.alert-success { background: rgba(39,174,96,.15); border: 1px solid rgba(39,174,96,.3); color: #2ecc71; }
.alert-error   { background: rgba(231,76,60,.15); border: 1px solid rgba(231,76,60,.3); color: #e74c3c; }

/* ── Filter bar ── */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--muted);
  font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
  background: rgba(192,57,43,.2);
  border-color: rgba(192,57,43,.4);
  color: var(--white);
}

/* ── Breadcrumb ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 32px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--red-l); }

/* ── Page header ── */
.page-hero {
  padding: 120px 0 64px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.page-hero h1 {
  background: linear-gradient(135deg, var(--white), rgba(255,255,255,.7));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.page-hero p { color: var(--muted); font-size: 18px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links, .nav-right .btn-quote { display: none; }
  .nav-mobile-btn { display: block; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-content { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-stats { flex-direction: column; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
}

/* Mobile nav menu */
.mobile-menu {
  display: none;
  position: fixed; top: 70px; left: 0; right: 0;
  background: rgba(10,10,10,.98);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  backdrop-filter: blur(16px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  transition: all .2s;
}
.mobile-menu a:hover { background: rgba(255,255,255,.07); color: var(--white); }
.mobile-menu .lang-row { display: flex; gap: 8px; padding: 12px 16px 4px; }

/* ═══ PRODUCT DETAIL ═══════════════════════════════════════════ */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media(max-width:860px){ .product-detail-grid { grid-template-columns:1fr; gap:32px; } }

/* Gallery */
.gallery-main {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-main:hover img { transform: scale(1.04); }
.gallery-placeholder {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  font-size: 80px; opacity: .3;
}
.gallery-thumbs {
  display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap;
}
.gallery-thumb {
  width: 72px; height: 72px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: .65;
  transition: all .2s;
}
.gallery-thumb.active, .gallery-thumb:hover {
  opacity: 1;
  border-color: var(--red);
}

/* Product info */
.product-info-block { display: flex; flex-direction: column; gap: 20px; }
.product-meta-row {
  display: flex; align-items: baseline; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.product-meta-label {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted); min-width: 110px; flex-shrink: 0;
}
.product-meta-value { color: var(--text); font-size: 15px; }
.product-description {
  color: var(--muted); line-height: 1.75; font-size: 15px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--text); font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all .2s;
}
.btn-outline:hover { border-color: var(--red); color: var(--white); background: rgba(192,57,43,.1); }

/* Colors swatches */
.product-colors-block { display: flex; flex-direction: column; gap: 10px; }
.color-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.color-swatch {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  cursor: default;
  transition: transform .15s;
  box-shadow: 0 2px 6px rgba(0,0,0,.4);
}
.color-swatch:hover { transform: scale(1.25); }

/* Product card: add detail link */
.product-card-links { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-detail {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: var(--text); font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all .2s;
}
.btn-detail:hover { background: rgba(255,255,255,.1); color: var(--white); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
@media(max-width:860px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon { font-size: 22px; padding-top: 2px; }
.contact-item-text .label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 4px; }
.contact-item-text .value { font-size: 15px; color: var(--text); }
.contact-form-wrap { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: 20px; padding: 36px; }
.contact-form-wrap h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:600px){ .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; }
.form-control {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 12px 16px; color: var(--white);
  font-size: 14px; transition: border-color .2s; width: 100%;
}
.form-control:focus { outline: none; border-color: var(--red); background: rgba(255,255,255,.09); }
.form-control::placeholder { color: rgba(255,255,255,.3); }
textarea.form-control { resize: vertical; }
.gdpr-label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.gdpr-label input { margin-top: 3px; flex-shrink: 0; }
.gdpr-label span { font-size: 13px; color: var(--muted); line-height: 1.5; }
.btn-submit {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: 12px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--red), var(--red-d));
  color: #fff; font-size: 15px; font-weight: 700;
  box-shadow: 0 4px 20px rgba(192,57,43,.4);
  transition: all .25s; width: 100%; justify-content: center;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(192,57,43,.55); }
.alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 20px; font-size: 14px; }
.alert-success { background: rgba(39,174,96,.12); border: 1px solid rgba(39,174,96,.3); color: #2ecc71; }
.alert-error { background: rgba(231,76,60,.12); border: 1px solid rgba(231,76,60,.3); color: #e74c3c; }

/* Social icons in footer */
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  color: var(--muted); border: 1px solid rgba(255,255,255,.1);
  transition: all .2s; text-decoration: none;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { color: var(--white); border-color: var(--red); background: rgba(192,57,43,.15); }

/* Page content (TinyMCE output) */
.page-content p { margin-bottom: 16px; }
.page-content h2 { color: var(--white); font-size: 1.4rem; margin: 28px 0 14px; }
.page-content h3 { color: var(--white); font-size: 1.15rem; margin: 22px 0 10px; }
.page-content ul, .page-content ol { padding-left: 22px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content a { color: var(--red-l); text-decoration: underline; }
.page-content strong { color: var(--white); }
