/* ============================================================
   MOLOR.DE – Modern Corporate B2B Industrial Asset Resale
   Redesign 2026
   ============================================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
  --color-primary: #0c1f33;
  --color-primary-light: #15324f;
  --color-secondary: #3b82f6;
  --color-secondary-light: #60a5fa;
  --color-accent: #f59e0b;
  --color-accent-hover: #d97706;
  --color-text: #1e293b;
  --color-text-light: #64748b;
  --color-text-lighter: #94a3b8;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-bg-dark: #0c1f33;
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 20px rgba(59,130,246,0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-width: 1200px;
  --header-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--color-secondary);
  color: #fff;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-accent); }

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

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 0.8rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-light); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: var(--radius);
  font-size: 0.925rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  letter-spacing: 0.01em;
  gap: 0.5rem;
  line-height: 1.5;
  font-family: var(--font-main);
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(245,158,11,0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent-hover) 0%, #b45309 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,158,11,0.35);
}
.btn-secondary {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(59,130,246,0.3);
}
.btn-secondary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}
.btn-outline:hover {
  background: var(--color-secondary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59,130,246,0.25);
}
.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

/* --- Header / Navigation --- */
.site-header {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226,232,240,0.6);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: box-shadow var(--transition);
}
.site-header:hover {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.03em;
}
.logo span { color: var(--color-accent); }
.logo:hover { color: var(--color-primary); }

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  padding: 0.5rem 0.85rem;
  color: var(--color-text-light);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.main-nav a:hover {
  color: var(--color-primary);
  background: var(--color-bg-alt);
}
.main-nav a.active {
  color: var(--color-secondary);
  background: rgba(59,130,246,0.06);
}
.nav-cta {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover)) !important;
  color: #fff !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 8px rgba(245,158,11,0.25);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--color-accent-hover), #b45309) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245,158,11,0.35) !important;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-bottom: 2px;
  transition: transform var(--transition);
}
.nav-dropdown:hover > a::after { transform: rotate(-135deg); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -8px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 240px;
  padding: 0.5rem;
  z-index: 100;
  animation: dropdownIn 0.2s ease;
}
@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  white-space: nowrap;
  border-radius: var(--radius);
  color: var(--color-text-light);
}
.dropdown-menu a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}
.nav-dropdown:hover .dropdown-menu { display: block; }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--color-bg-alt); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  margin: 5px 0;
  border-radius: 4px;
  transition: 0.3s;
}

/* --- Hero Section --- */
.hero {
  background: var(--color-primary);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59,130,246,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(245,158,11,0.15) 0%, transparent 70%);
  color: #fff;
  padding: 6rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  max-width: 800px;
  margin: 0 auto 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero .btn {
  margin: 0 0.5rem 0.5rem;
}

/* --- Section Layout --- */
.section {
  padding: 5rem 0;
}
.section-alt {
  background: var(--color-bg-alt);
}
.section-dark {
  background: var(--color-primary);
  background-image: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59,130,246,0.2) 0%, transparent 70%);
  color: #fff;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-header h2 {
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
  border-radius: 3px;
  margin: 0.75rem auto 0;
}
.section-header p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-top: 1rem;
}

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.card:hover::before {
  transform: scaleX(1);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--color-bg-alt);
}
.card h3 { font-size: 1.1rem; font-weight: 650; }
.card img {
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

/* --- Product Page --- */
.product-hero {
  background: var(--color-primary);
  background-image: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59,130,246,0.25) 0%, transparent 70%);
  color: #fff;
  padding: 3rem 0;
}
.product-hero h1 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.product-hero .breadcrumb { margin-bottom: 1rem; font-size: 0.9rem; }
.product-hero .breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.product-hero .breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.product-hero .breadcrumb span { color: rgba(255,255,255,0.35); margin: 0 0.5rem; }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
}

.product-gallery { position: relative; }
.gallery-main {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-bg-alt);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-main:hover img {
  transform: scale(1.02);
}
.gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}
.gallery-thumbs img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  opacity: 0.6;
  flex-shrink: 0;
}
.gallery-thumbs img:hover { opacity: 1; }
.gallery-thumbs img.active {
  border-color: var(--color-secondary);
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(59,130,246,0.2);
}

.product-info .price-tag {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1rem 0;
}
.product-info .meta-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.5rem;
  margin: 1.5rem 0;
}
.product-info .meta-list dt {
  font-weight: 500;
  color: var(--color-text-lighter);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.product-info .meta-list dd {
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--color-text);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge-available {
  background: rgba(16,185,129,0.1);
  color: var(--color-success);
}
.badge-warning {
  background: rgba(245,158,11,0.1);
  color: var(--color-warning);
}

/* Spec Table */
.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.85rem 1.25rem;
  font-size: 0.925rem;
}
.spec-table th {
  background: var(--color-bg-alt);
  font-weight: 600;
  color: var(--color-text);
  width: 40%;
  border-right: 1px solid var(--color-border);
}
.spec-table td {
  background: var(--color-bg);
}
.spec-table tr:not(:last-child) th,
.spec-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--color-border);
}

/* Tabs */
.tabs {
  border-bottom: 1px solid var(--color-border);
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 0.85rem 1.5rem;
  border: none;
  background: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-light);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: all var(--transition);
  position: relative;
  font-family: var(--font-main);
}
.tab-btn:hover { color: var(--color-secondary); }
.tab-btn.active {
  color: var(--color-secondary);
  border-bottom-color: var(--color-secondary);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Download list */
.download-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.download-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--color-text);
}
.download-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-secondary);
  background: rgba(59,130,246,0.02);
  color: var(--color-text);
  transform: translateX(4px);
}
.download-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.download-info { flex: 1; }
.download-info strong { display: block; font-size: 0.925rem; }
.download-info small { color: var(--color-text-light); font-size: 0.8rem; }

/* --- Contact Form --- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { margin-bottom: 0.5rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}
.form-group label .required { color: var(--color-danger); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.925rem;
  font-family: var(--font-main);
  transition: all var(--transition);
  background: var(--color-bg);
  color: var(--color-text);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-lighter);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  accent-color: var(--color-secondary);
}

/* --- Legal Pages --- */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}
.legal-content h1 { margin-bottom: 0.5rem; }
.legal-content .last-updated {
  color: var(--color-text-light);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
.legal-content h2 {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 1.2rem;
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; }
.legal-content ul, .legal-content ol { margin: 0.5rem 0 1rem 1.5rem; }
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li { margin-bottom: 0.3rem; }

.placeholder {
  background: #fef3c7;
  border: 1px dashed var(--color-accent);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius);
  color: #92400e;
  font-weight: 600;
  font-size: 0.85rem;
}

/* --- FAQ Accordion --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--color-secondary); }
.faq-question {
  width: 100%;
  background: var(--color-bg);
  border: none;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition);
  font-family: var(--font-main);
}
.faq-question:hover { background: var(--color-bg-alt); }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-text-light);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 24px;
  text-align: center;
}
.faq-item.open .faq-question {
  color: var(--color-secondary);
}
.faq-item.open .faq-question::after {
  content: '\2212';
  color: var(--color-secondary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--color-text-light);
  line-height: 1.8;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 1.5rem 1.2rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--color-primary);
  background-image: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(59,130,246,0.1) 0%, transparent 70%);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-col p { font-size: 0.875rem; line-height: 1.7; }
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  padding: 0.25rem 0;
  font-size: 0.875rem;
  transition: all var(--transition);
}
.footer-col a:hover { color: var(--color-accent); transform: translateX(3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--color-accent); }
.footer-legal { display: flex; gap: 1.5rem; }

/* --- Cookie Banner --- */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-primary);
  color: rgba(255,255,255,0.9);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.1);
}
.cookie-banner.show { display: block; animation: slideUp 0.4s ease; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-inner p {
  flex: 1;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.6;
}
.cookie-inner p a { color: var(--color-accent); }
.cookie-buttons { display: flex; gap: 0.5rem; flex-shrink: 0; }
.cookie-buttons .btn {
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
  border-radius: var(--radius);
}
.btn-cookie-accept {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  color: #fff;
}
.btn-cookie-decline {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-cookie-decline:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* --- Info Box / Notice --- */
.notice {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
  border-left: 4px solid;
  font-size: 0.925rem;
}
.notice-info {
  background: rgba(59,130,246,0.05);
  border-color: var(--color-secondary);
  color: var(--color-primary);
}
.notice-warning {
  background: rgba(245,158,11,0.06);
  border-color: var(--color-accent);
  color: #92400e;
}
.notice-danger {
  background: rgba(239,68,68,0.05);
  border-color: var(--color-danger);
  color: #991b1b;
}

/* --- Trust Signals --- */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  padding: 0;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-light);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  flex: 1;
  min-width: 150px;
  transition: all var(--transition);
}
.trust-item:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.trust-item strong {
  display: block;
  font-size: 1.6rem;
  color: var(--color-secondary);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

/* --- Page Header (Sub-pages) --- */
.page-header {
  background: var(--color-primary);
  background-image: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59,130,246,0.25) 0%, transparent 70%);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}
.page-header h1 { color: #fff; margin-bottom: 0.5rem; }
.page-header p { color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* --- Contact Info Cards --- */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.contact-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.contact-card:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.contact-card .icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

/* --- KYC Info Grid --- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.info-box {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.info-box:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-sm);
}
.info-box h3 { margin-bottom: 1rem; font-size: 1.1rem; }

/* --- Process Steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-secondary), #2563eb);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(59,130,246,0.25);
}

/* --- Team Cards --- */
.team-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  transition: all var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--color-border);
  transition: border-color var(--transition);
}
.team-card:hover img {
  border-color: var(--color-secondary);
}

/* --- About Page --- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .product-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr; }

  /* Product gallery: constrain on tablet */
  .product-gallery {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    overflow-y: auto;
    z-index: 999;
    animation: fadeIn 0.2s ease;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.85rem 1rem; font-size: 1rem; }

  .nav-toggle { display: block; }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    animation: none;
  }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }

  .hero { padding: 4rem 0 3rem; }

  .section { padding: 3rem 0; }

  .form-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cookie-banner { bottom: 0; left: 0; right: 0; border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
  .cookie-inner { flex-direction: column; text-align: center; }

  .product-info .meta-list { grid-template-columns: 1fr; }
  .tabs { gap: 0; }
  .tab-btn { padding: 0.7rem 0.9rem; font-size: 0.85rem; }

  /* Product gallery: mobile-friendly sizing */
  .product-layout { gap: 1.5rem; padding: 1.5rem 0; }
  .gallery-main { aspect-ratio: 4/3; }
  .gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
    gap: 0.4rem;
    overflow-x: visible;
    padding-bottom: 0;
  }
  .gallery-thumbs img {
    width: 100%;
    height: 48px;
  }

  /* Spec table responsive */
  .spec-table th,
  .spec-table td {
    padding: 0.65rem 0.75rem;
    font-size: 0.85rem;
  }
  .spec-table th { width: 45%; }

  /* Product info spacing */
  .product-info .price-tag { font-size: 1.25rem; }

  /* Purchase pack buttons stack better */
  .product-info .btn-outline,
  .product-info .btn-primary { font-size: 0.9rem; padding: 0.7rem 1rem; }

  .trust-bar { gap: 0.75rem; }
  .trust-item { padding: 1rem 1.25rem; }
}

@media (max-width: 480px) {
  .section { padding: 2.5rem 0; }
  .card { padding: 1.5rem; }
  .btn-lg { padding: 0.85rem 1.5rem; }

  /* Product page: very small screens */
  .product-layout { gap: 1rem; padding: 1rem 0; }
  .gallery-main { aspect-ratio: 3/2; border-radius: var(--radius); }
  .gallery-thumbs {
    grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
    gap: 0.3rem;
  }
  .gallery-thumbs img { height: 40px; border-radius: 4px; }

  .product-info .meta-list {
    gap: 0.25rem 0;
    font-size: 0.9rem;
  }

  .spec-table th,
  .spec-table td {
    padding: 0.5rem 0.6rem;
    font-size: 0.8rem;
  }

  .tab-btn { padding: 0.6rem 0.7rem; font-size: 0.78rem; }

  .product-hero { padding: 1.5rem 0; }
  .product-hero h1 { font-size: 1.35rem; }

  .breadcrumb { font-size: 0.75rem; }
}

/* --- Print --- */
@media print {
  .site-header, .site-footer, .cookie-banner, .nav-toggle { display: none; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
}
