/* ============================================
   AVORENTH.DIGITAL — Main Stylesheet
   Premium Office & Workspace Marketplace
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Sora:wght@400;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --white: #FFFFFF;
  --deep-blue: #2563EB;
  --deep-blue-dark: #1D4ED8;
  --deep-blue-light: #EFF6FF;
  --emerald: #10B981;
  --emerald-dark: #059669;
  --emerald-light: #ECFDF5;
  --slate: #334155;
  --slate-dark: #1E293B;
  --slate-medium: #475569;
  --slate-light: #94A3B8;
  --warm-beige: #F5E6D3;
  --light-gray: #F8FAFC;
  --border-color: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.10), 0 4px 10px rgba(0,0,0,0.05);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Sora', 'Inter', sans-serif;
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--slate);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--slate-dark); line-height: 1.25; }

/* ---- Layout ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }

/* ---- Typography ---- */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-muted { color: var(--slate-medium); }
.text-light { color: var(--slate-light); }
.text-blue { color: var(--deep-blue); }
.text-emerald { color: var(--emerald); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 12px 24px; border-radius: var(--radius-md); font-weight: 600;
  font-size: 0.9rem; cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); white-space: nowrap; text-decoration: none;
}
.btn-primary {
  background: var(--deep-blue); color: var(--white);
  border-color: var(--deep-blue);
}
.btn-primary:hover {
  background: var(--deep-blue-dark); border-color: var(--deep-blue-dark);
  transform: translateY(-1px); box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent; color: var(--deep-blue);
  border-color: var(--deep-blue);
}
.btn-secondary:hover {
  background: var(--deep-blue-light); transform: translateY(-1px);
}
.btn-emerald {
  background: var(--emerald); color: var(--white); border-color: var(--emerald);
}
.btn-emerald:hover {
  background: var(--emerald-dark); border-color: var(--emerald-dark);
  transform: translateY(-1px); box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent; color: var(--slate); border-color: var(--border-color);
}
.btn-outline:hover {
  background: var(--light-gray); border-color: var(--slate-light);
}
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-icon { padding: 10px; border-radius: var(--radius-md); }
.btn-full { width: 100%; }

/* ---- Top Announcement Bar ---- */
.top-bar {
  background: var(--slate-dark); color: var(--white); padding: 8px 0;
  font-size: 0.8rem; text-align: center;
}
.top-bar a { color: var(--emerald); text-decoration: underline; }

/* ---- Header ---- */
.site-header {
  background: var(--white); border-bottom: 1px solid var(--border-color);
  position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; gap: 24px; padding: 16px 24px;
  max-width: 1280px; margin: 0 auto;
}
.logo {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
  color: var(--slate-dark); letter-spacing: -0.02em; flex-shrink: 0;
}
.logo span { color: var(--deep-blue); }
.logo small { display: block; font-size: 0.6rem; font-weight: 400; color: var(--slate-medium); letter-spacing: 0.08em; text-transform: uppercase; }

.header-search {
  flex: 1; max-width: 480px; position: relative;
}
.header-search input {
  width: 100%; padding: 10px 44px 10px 16px; border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md); font-size: 0.9rem; background: var(--light-gray);
  color: var(--slate); transition: var(--transition);
}
.header-search input:focus {
  outline: none; border-color: var(--deep-blue); background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.header-search button {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--slate-medium);
  display: flex; align-items: center;
}
.header-search button:hover { color: var(--deep-blue); }

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.header-action-btn {
  display: flex; align-items: center; gap: 6px; padding: 8px 12px;
  border-radius: var(--radius-md); color: var(--slate); background: none; border: none;
  cursor: pointer; font-size: 0.85rem; font-weight: 500; transition: var(--transition);
  position: relative;
}
.header-action-btn:hover { background: var(--light-gray); color: var(--deep-blue); }
.header-action-btn .badge {
  position: absolute; top: 4px; right: 4px; background: var(--deep-blue); color: white;
  border-radius: 50%; width: 16px; height: 16px; font-size: 0.65rem;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.header-action-btn .badge.green { background: var(--emerald); }

/* ---- Navigation ---- */
.main-nav { background: var(--white); border-bottom: 1px solid var(--border-color); }
.main-nav .container { display: flex; align-items: center; }
.nav-list {
  display: flex; align-items: center; gap: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px; padding: 14px 18px;
  font-size: 0.875rem; font-weight: 500; color: var(--slate); cursor: pointer;
  transition: var(--transition); border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--deep-blue); border-bottom-color: var(--deep-blue);
}
.nav-link svg { transition: var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: var(--transition); z-index: 200;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  border-radius: var(--radius-sm); font-size: 0.875rem; color: var(--slate);
  transition: var(--transition);
}
.dropdown a:hover { background: var(--light-gray); color: var(--deep-blue); }
.dropdown-icon {
  width: 32px; height: 32px; border-radius: var(--radius-sm); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  background: var(--deep-blue-light); color: var(--deep-blue);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--slate);
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; padding: 16px 0;
  font-size: 0.8rem; color: var(--slate-medium);
}
.breadcrumb a { color: var(--slate-medium); transition: var(--transition); }
.breadcrumb a:hover { color: var(--deep-blue); }
.breadcrumb span { color: var(--slate-light); }
.breadcrumb .current { color: var(--slate); font-weight: 500; }

/* ---- Hero Section ---- */
.hero {
  background: var(--light-gray); overflow: hidden;
  padding: 0;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 580px; max-width: 1280px; margin: 0 auto;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 48px 72px 24px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--emerald); margin-bottom: 20px;
}
.hero-kicker::before {
  content: ''; width: 24px; height: 2px; background: var(--emerald); display: block;
}
.hero-title {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.15;
  color: var(--slate-dark); margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero-title strong { color: var(--deep-blue); }
.hero-desc {
  font-size: 1.1rem; color: var(--slate-medium); line-height: 1.7; margin-bottom: 32px;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border-color); }
.hero-stat-num { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; color: var(--slate-dark); }
.hero-stat-label { font-size: 0.8rem; color: var(--slate-medium); margin-top: 2px; }
.hero-image { position: relative; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Category Grid ---- */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card {
  background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  padding: 24px 20px; text-align: center; transition: var(--transition); cursor: pointer;
  text-decoration: none; color: var(--slate);
}
.category-card:hover {
  border-color: var(--deep-blue); box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.category-card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md); margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center; background: var(--deep-blue-light);
  color: var(--deep-blue); font-size: 1.5rem; transition: var(--transition);
}
.category-card:hover .category-card-icon { background: var(--deep-blue); color: white; }
.category-card h3 { font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; color: var(--slate-dark); }
.category-card p { font-size: 0.8rem; color: var(--slate-medium); }

/* Category Card with Image */
.cat-img-card {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  aspect-ratio: 4/3; display: block; text-decoration: none;
}
.cat-img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.cat-img-card:hover img { transform: scale(1.04); }
.cat-img-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.7) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.cat-img-overlay h3 { color: white; font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.cat-img-overlay span { color: rgba(255,255,255,0.75); font-size: 0.8rem; }

/* ---- Product Cards ---- */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition); position: relative;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }

.product-card-img {
  aspect-ratio: 4/3; overflow: hidden; background: var(--light-gray); position: relative;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-card-actions {
  position: absolute; top: 12px; right: 12px; display: flex; flex-direction: column; gap: 6px;
  opacity: 0; transition: var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; }
.product-action-btn {
  width: 36px; height: 36px; border-radius: 50%; background: white; border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  color: var(--slate); transition: var(--transition); box-shadow: var(--shadow-sm);
}
.product-action-btn:hover { background: var(--deep-blue); color: white; border-color: var(--deep-blue); }
.product-action-btn.active { background: var(--deep-blue); color: white; border-color: var(--deep-blue); }

.product-card-body { padding: 16px; }
.product-card-brand { font-size: 0.75rem; color: var(--slate-medium); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.product-card-name { font-size: 0.95rem; font-weight: 600; color: var(--slate-dark); margin-bottom: 8px; line-height: 1.35; }
.product-card-name a { color: inherit; transition: var(--transition); }
.product-card-name a:hover { color: var(--deep-blue); }

.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.stars { color: #F59E0B; font-size: 0.85rem; letter-spacing: -1px; }
.rating-count { font-size: 0.78rem; color: var(--slate-medium); }

.product-card-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.spec-tag {
  background: var(--light-gray); color: var(--slate-medium); font-size: 0.72rem;
  padding: 3px 8px; border-radius: 4px; font-weight: 500;
}
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--slate-dark); }
.product-price small { font-size: 0.75rem; color: var(--slate-medium); font-weight: 400; font-family: var(--font-sans); }
.product-price-old { font-size: 0.85rem; color: var(--slate-medium); text-decoration: line-through; margin-left: 6px; }

/* ---- Sidebar Layout ---- */
.catalog-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.sidebar { position: sticky; top: 100px; }
.sidebar-widget { background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 16px; }
.sidebar-widget h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate-dark); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border-color); }

.filter-group { margin-bottom: 0; }
.filter-item { display: flex; align-items: center; gap: 10px; padding: 7px 0; cursor: pointer; }
.filter-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--deep-blue); cursor: pointer; }
.filter-item label { font-size: 0.875rem; color: var(--slate); cursor: pointer; flex: 1; display: flex; justify-content: space-between; align-items: center; }
.filter-item label span { color: var(--slate-medium); font-size: 0.78rem; }

.price-range-inputs { display: flex; gap: 10px; align-items: center; }
.price-range-inputs input {
  flex: 1; padding: 8px 10px; border: 1.5px solid var(--border-color); border-radius: var(--radius-sm);
  font-size: 0.85rem; color: var(--slate);
}
.price-range-inputs input:focus { outline: none; border-color: var(--deep-blue); }
.price-range-inputs span { color: var(--slate-medium); font-size: 0.85rem; }

/* ---- Section Headers ---- */
.section-header { margin-bottom: 40px; }
.section-kicker { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--emerald); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.section-kicker::before { content: ''; width: 20px; height: 2px; background: var(--emerald); }
.section-title { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: var(--slate-dark); letter-spacing: -0.02em; }
.section-desc { font-size: 1.05rem; color: var(--slate-medium); margin-top: 12px; max-width: 580px; line-height: 1.7; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; }

/* ---- Blog Cards ---- */
.blog-card {
  background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 20px; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; font-size: 0.78rem; color: var(--slate-medium); margin-bottom: 10px; }
.blog-card-meta span { display: flex; align-items: center; gap: 5px; }
.blog-tag { background: var(--deep-blue-light); color: var(--deep-blue); font-size: 0.72rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.04em; }
.blog-card-title { font-size: 1rem; font-weight: 600; color: var(--slate-dark); line-height: 1.4; margin-bottom: 10px; }
.blog-card-title a { color: inherit; transition: var(--transition); }
.blog-card-title a:hover { color: var(--deep-blue); }
.blog-card-excerpt { font-size: 0.875rem; color: var(--slate-medium); line-height: 1.6; margin-bottom: 14px; }
.read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--deep-blue); transition: var(--transition); }
.read-more:hover { gap: 10px; }

/* ---- Comparison Table ---- */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 14px 16px; border-bottom: 1px solid var(--border-color);
  font-size: 0.875rem; text-align: left;
}
.compare-table th { background: var(--light-gray); font-weight: 600; color: var(--slate-dark); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--light-gray); }
.compare-table .highlight { color: var(--emerald); font-weight: 600; }
.compare-table .good { color: var(--emerald); }
.compare-table .medium { color: #F59E0B; }
.compare-table .bad { color: #EF4444; }

/* ---- Info Cards ---- */
.info-card {
  background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  padding: 28px; transition: var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-md); border-color: var(--deep-blue); }
.info-card-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--deep-blue-light); display: flex; align-items: center; justify-content: center; color: var(--deep-blue); margin-bottom: 16px; }
.info-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--slate-dark); margin-bottom: 8px; }
.info-card p { font-size: 0.875rem; color: var(--slate-medium); line-height: 1.6; }

/* ---- Tabs ---- */
.tabs { margin-bottom: 32px; }
.tab-nav { display: flex; gap: 4px; border-bottom: 2px solid var(--border-color); margin-bottom: 24px; }
.tab-btn {
  padding: 12px 20px; font-size: 0.875rem; font-weight: 500; color: var(--slate-medium);
  background: none; border: none; cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: var(--transition); white-space: nowrap;
}
.tab-btn.active { color: var(--deep-blue); border-bottom-color: var(--deep-blue); font-weight: 600; }
.tab-btn:hover { color: var(--deep-blue); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ---- Accordion ---- */
.accordion-item { border-bottom: 1px solid var(--border-color); }
.accordion-item:first-child { border-top: 1px solid var(--border-color); }
.accordion-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; cursor: pointer; color: var(--slate-dark); font-weight: 600; font-size: 0.95rem;
}
.accordion-header svg { flex-shrink: 0; transition: transform 0.25s; }
.accordion-item.open .accordion-header svg { transform: rotate(180deg); }
.accordion-content { display: none; padding-bottom: 18px; color: var(--slate-medium); font-size: 0.9rem; line-height: 1.7; }
.accordion-item.open .accordion-content { display: block; }

/* ---- Forms ---- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--slate); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md); font-size: 0.9rem; color: var(--slate);
  background: var(--white); transition: var(--transition);
}
.form-input:focus { outline: none; border-color: var(--deep-blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.form-input::placeholder { color: var(--slate-light); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }
.form-textarea { min-height: 120px; resize: vertical; }
.form-hint { font-size: 0.78rem; color: var(--slate-medium); margin-top: 5px; }
.form-error { font-size: 0.78rem; color: #EF4444; margin-top: 5px; }

.form-success {
  background: var(--emerald-light); border: 1.5px solid var(--emerald); border-radius: var(--radius-md);
  padding: 20px 24px; display: flex; align-items: center; gap: 14px; margin-top: 16px;
  display: none;
}
.form-success.show { display: flex; }
.form-success svg { color: var(--emerald); flex-shrink: 0; }
.form-success-text h4 { color: var(--emerald-dark); font-weight: 600; margin-bottom: 4px; font-size: 0.95rem; }
.form-success-text p { color: var(--emerald-dark); font-size: 0.85rem; }

/* ---- Product Page ---- */
.product-gallery { display: grid; grid-template-columns: 80px 1fr; gap: 12px; }
.gallery-thumbs { display: flex; flex-direction: column; gap: 8px; }
.gallery-thumb {
  width: 80px; height: 80px; border-radius: var(--radius-md); overflow: hidden; cursor: pointer;
  border: 2px solid var(--border-color); transition: var(--transition);
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--deep-blue); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-color); aspect-ratio: 1; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.product-info { padding-left: 16px; }
.product-availability { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: var(--emerald); margin-bottom: 10px; }
.product-availability::before { content: ''; width: 8px; height: 8px; background: var(--emerald); border-radius: 50%; display: block; }
.product-title { font-size: 1.75rem; font-weight: 700; color: var(--slate-dark); margin-bottom: 12px; line-height: 1.2; }
.product-price-box { margin: 16px 0; }
.product-main-price { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--slate-dark); }
.product-main-price small { font-size: 0.9rem; font-weight: 400; color: var(--slate-medium); font-family: var(--font-sans); }
.product-qty { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; width: fit-content; margin: 16px 0; }
.product-qty button { width: 40px; height: 44px; background: var(--light-gray); border: none; cursor: pointer; font-size: 1.2rem; color: var(--slate); transition: var(--transition); }
.product-qty button:hover { background: var(--deep-blue); color: white; }
.product-qty input { width: 52px; height: 44px; text-align: center; border: none; border-left: 1.5px solid var(--border-color); border-right: 1.5px solid var(--border-color); font-size: 0.95rem; font-weight: 600; color: var(--slate-dark); }

/* ---- Cart ---- */
.cart-item { display: grid; grid-template-columns: 80px 1fr auto; gap: 16px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--border-color); }
.cart-item-img { width: 80px; height: 80px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-color); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Wishlist ---- */
.wishlist-empty { text-align: center; padding: 80px 20px; }
.wishlist-empty svg { width: 64px; height: 64px; color: var(--slate-light); margin: 0 auto 16px; }
.wishlist-empty h3 { font-size: 1.25rem; margin-bottom: 8px; }
.wishlist-empty p { color: var(--slate-medium); margin-bottom: 24px; }

/* ---- Checkout Steps ---- */
.checkout-steps { display: flex; gap: 0; margin-bottom: 40px; }
.checkout-step { flex: 1; display: flex; align-items: center; }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--border-color); color: var(--slate-medium); font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.step-label { margin-left: 10px; font-size: 0.875rem; color: var(--slate-medium); font-weight: 500; white-space: nowrap; }
.step-line { flex: 1; height: 2px; background: var(--border-color); margin: 0 12px; }
.checkout-step.active .step-num { background: var(--deep-blue); color: white; }
.checkout-step.active .step-label { color: var(--deep-blue); font-weight: 600; }
.checkout-step.done .step-num { background: var(--emerald); color: white; }
.checkout-step.done .step-line { background: var(--emerald); }

/* ---- Trust Badges ---- */
.trust-bar { background: var(--light-gray); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 20px 0; }
.trust-items { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item-icon { width: 40px; height: 40px; background: var(--deep-blue-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--deep-blue); flex-shrink: 0; }
.trust-item-text strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--slate-dark); }
.trust-item-text span { font-size: 0.78rem; color: var(--slate-medium); }

/* ---- Newsletter ---- */
.newsletter-section { background: var(--slate-dark); padding: 64px 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.newsletter-text h2 { color: white; font-size: 1.75rem; margin-bottom: 8px; }
.newsletter-text p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.newsletter-form { display: flex; gap: 10px; flex: 0 0 460px; }
.newsletter-form input {
  flex: 1; padding: 14px 18px; border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md); background: rgba(255,255,255,0.1); color: white; font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { outline: none; border-color: var(--deep-blue); }

/* ---- Footer ---- */
.site-footer { background: var(--slate-dark); color: rgba(255,255,255,0.85); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { color: white; margin-bottom: 14px; display: inline-block; }
.footer-brand .logo span { color: var(--deep-blue); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-contact-item a:hover { color: white; }
.footer-contact-icon { color: var(--deep-blue); flex-shrink: 0; margin-top: 2px; }

.footer-col h5 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: white; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links a:hover { color: white; padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; margin-top: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px; max-width: 560px;
  background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow-lg); z-index: 1000; display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: var(--slate-dark); }
.cookie-banner p { font-size: 0.85rem; color: var(--slate-medium); line-height: 1.6; margin-bottom: 16px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---- Alerts ---- */
.alert {
  padding: 14px 18px; border-radius: var(--radius-md); display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.875rem; margin-bottom: 20px;
}
.alert-info { background: var(--deep-blue-light); color: var(--deep-blue); border: 1px solid rgba(37,99,235,0.2); }
.alert-success { background: var(--emerald-light); color: var(--emerald-dark); border: 1px solid rgba(16,185,129,0.2); }
.alert-warning { background: #FFFBEB; color: #92400E; border: 1px solid rgba(245,158,11,0.2); }
.alert svg { flex-shrink: 0; margin-top: 1px; }

/* ---- Policy Pages ---- */
.policy-layout { max-width: 860px; margin: 0 auto; }
.policy-toc { background: var(--light-gray); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 40px; }
.policy-toc h4 { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; color: var(--slate-dark); }
.policy-toc ol { padding-left: 20px; list-style: decimal; }
.policy-toc li { font-size: 0.875rem; color: var(--slate-medium); padding: 4px 0; }
.policy-toc li a { color: var(--deep-blue); }
.policy-section { margin-bottom: 40px; }
.policy-section h2 { font-size: 1.35rem; font-weight: 700; color: var(--slate-dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border-color); }
.policy-section h3 { font-size: 1.05rem; font-weight: 600; color: var(--slate-dark); margin: 20px 0 10px; }
.policy-section p { font-size: 0.9rem; color: var(--slate-medium); line-height: 1.8; margin-bottom: 14px; }
.policy-section ul, .policy-section ol { padding-left: 20px; margin-bottom: 14px; }
.policy-section ul li, .policy-section ol li { font-size: 0.9rem; color: var(--slate-medium); line-height: 1.7; padding: 3px 0; }
.policy-section ul { list-style: disc; }
.policy-section ol { list-style: decimal; }
.policy-date { font-size: 0.85rem; color: var(--slate-medium); margin-bottom: 32px; }
.policy-date strong { color: var(--slate-dark); }

/* ---- Specials / Promo Strips ---- */
.promo-strip {
  background: var(--warm-beige); border-radius: var(--radius-lg); padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.promo-strip h3 { font-size: 1.1rem; font-weight: 600; color: var(--slate-dark); margin-bottom: 6px; }
.promo-strip p { font-size: 0.875rem; color: var(--slate-medium); }

/* ---- Empty States ---- */
.empty-state { text-align: center; padding: 80px 24px; }
.empty-state svg { width: 80px; height: 80px; color: var(--slate-light); margin: 0 auto 20px; }
.empty-state h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 10px; }
.empty-state p { color: var(--slate-medium); margin-bottom: 24px; max-width: 360px; margin-left: auto; margin-right: auto; }

/* ---- Loading Skeleton ---- */
.skeleton { background: linear-gradient(90deg, var(--light-gray) 25%, var(--border-color) 50%, var(--light-gray) 75%); background-size: 200% 100%; animation: skeleton-loading 1.5s infinite; border-radius: var(--radius-sm); }
@keyframes skeleton-loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ---- Page Hero (category/inner pages) ---- */
.page-hero { background: var(--light-gray); border-bottom: 1px solid var(--border-color); padding: 48px 0; }
.page-hero-content { max-width: 640px; }
.page-hero h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: var(--slate-dark); margin-bottom: 12px; line-height: 1.2; }
.page-hero p { font-size: 1.05rem; color: var(--slate-medium); line-height: 1.7; }

/* ---- Guide / Article ---- */
.article-body { max-width: 760px; }
.article-body h2 { font-size: 1.5rem; font-weight: 700; color: var(--slate-dark); margin: 36px 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border-color); }
.article-body h3 { font-size: 1.15rem; font-weight: 600; color: var(--slate-dark); margin: 24px 0 10px; }
.article-body p { font-size: 0.95rem; color: var(--slate-medium); line-height: 1.8; margin-bottom: 16px; }
.article-body ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.article-body ol { list-style: decimal; padding-left: 24px; margin-bottom: 16px; }
.article-body li { font-size: 0.95rem; color: var(--slate-medium); line-height: 1.7; padding: 3px 0; }
.article-body img { border-radius: var(--radius-lg); margin: 24px 0; width: 100%; }
.article-callout { background: var(--deep-blue-light); border-left: 4px solid var(--deep-blue); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 16px 20px; margin: 24px 0; }
.article-callout p { color: var(--slate-dark); margin-bottom: 0; font-weight: 500; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-content { padding: 56px 24px; }
  .catalog-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { flex-direction: column; gap: 24px; }
  .newsletter-form { flex: 0 0 100%; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .header-inner { padding: 14px 16px; flex-wrap: wrap; }
  .header-search { order: 3; flex: 0 0 100%; max-width: 100%; }
  .mobile-menu-btn { display: flex; }
  .main-nav { display: none; }
  .main-nav.open { display: block; }
  .nav-list { flex-direction: column; padding: 8px 0; }
  .nav-link { padding: 12px 20px; border-bottom: none; }
  .dropdown { position: static; box-shadow: none; border: none; opacity: 1; visibility: visible; transform: none; padding: 0 0 8px 20px; display: none; }
  .nav-item.open .dropdown { display: block; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 1.75rem; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .checkout-steps { flex-direction: column; align-items: flex-start; gap: 12px; }
  .step-line { display: none; }
  .promo-strip { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-items { justify-content: flex-start; gap: 16px; }
  .compare-table { font-size: 0.78rem; }
  .compare-table th, .compare-table td { padding: 10px 10px; }
}
@media (max-width: 440px) {
  .products-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
}

/* ---- Utilities ---- */
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center; }
.bg-light { background: var(--light-gray); }
.bg-beige { background: var(--warm-beige); }
.bg-white { background: var(--white); }
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.border { border: 1px solid var(--border-color); }
.shadow { box-shadow: var(--shadow-md); }
.overflow-hidden { overflow: hidden; }
.divider { border: none; border-top: 1px solid var(--border-color); margin: 32px 0; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.p-0 { padding: 0 !important; }
.py-8 { padding-top: 8px; padding-bottom: 8px; }
.py-16 { padding-top: 16px; padding-bottom: 16px; }

/* ---- Sort Bar ---- */
.sort-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 16px; background: var(--white); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); margin-bottom: 20px;
}
.sort-bar-left { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--slate-medium); }
.sort-bar-right { display: flex; align-items: center; gap: 8px; }
.sort-select {
  padding: 7px 32px 7px 12px; border: 1.5px solid var(--border-color); border-radius: var(--radius-sm);
  font-size: 0.85rem; color: var(--slate); background-color: var(--white); cursor: pointer;
  appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 8px center;
}
.sort-select:focus { outline: none; border-color: var(--deep-blue); }
.view-toggle-btn { padding: 7px 10px; border: 1.5px solid var(--border-color); background: white; border-radius: var(--radius-sm); cursor: pointer; color: var(--slate-medium); display: flex; align-items: center; justify-content: center; }
.view-toggle-btn.active { background: var(--deep-blue); border-color: var(--deep-blue); color: white; }

/* ---- Rating ---- */
.rating-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.rating-bar-label { font-size: 0.8rem; color: var(--slate-medium); width: 40px; flex-shrink: 0; }
.rating-bar { flex: 1; height: 8px; background: var(--border-color); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: #F59E0B; border-radius: 4px; }
.rating-bar-count { font-size: 0.78rem; color: var(--slate-medium); width: 30px; text-align: right; flex-shrink: 0; }

/* About page */
.team-card { background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius-lg); overflow: hidden; text-align: center; transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.team-card-img { aspect-ratio: 1; overflow: hidden; background: var(--light-gray); }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 20px; }
.team-card-body h4 { font-size: 1rem; font-weight: 600; color: var(--slate-dark); margin-bottom: 4px; }
.team-card-body span { font-size: 0.82rem; color: var(--deep-blue); font-weight: 500; }
.team-card-body p { font-size: 0.82rem; color: var(--slate-medium); margin-top: 8px; line-height: 1.5; }

/* Stats band */
.stats-band { background: var(--deep-blue); padding: 56px 0; }
.stats-band-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stats-band-item {}
.stats-band-item .num { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: white; margin-bottom: 6px; }
.stats-band-item .label { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
