/*
Theme Name: Zartiq Engineering
Theme URI: https://zartiq.com
Author: Zartiq Engineering W.L.L.
Author URI: https://zartiq.com
Description: Custom WordPress theme for Zartiq Engineering - Metal Fabrication & Engineering Solutions
Version: 1.3.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zartiq-engineering
Tags: engineering, industrial, manufacturing, portfolio, product-catalog
*/

/* ==========================================================================
   1. CSS Custom Properties / Design Tokens
   ========================================================================== */

:root {
  --primary: hsl(213, 80%, 44%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-hover: hsl(213, 80%, 38%);
  --background: hsl(210, 20%, 99%);
  --foreground: hsl(215, 25%, 12%);
  --card: hsl(210, 20%, 98%);
  --card-foreground: hsl(215, 25%, 12%);
  --border: hsl(214, 15%, 90%);
  --muted: hsl(214, 15%, 92%);
  --muted-foreground: hsl(215, 15%, 40%);
  --secondary: hsl(214, 15%, 90%);
  --secondary-foreground: hsl(215, 25%, 12%);
  --accent: hsl(214, 18%, 93%);
  --accent-foreground: hsl(215, 25%, 12%);
  --destructive: hsl(0, 84%, 48%);
  --destructive-foreground: hsl(0, 84%, 98%);
  --input: hsl(214, 15%, 75%);
  --ring: hsl(213, 80%, 44%);
  --radius: 0.5rem;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-mode {
  --primary: hsl(213, 80%, 52%);
  --primary-hover: hsl(213, 80%, 46%);
  --background: hsl(215, 25%, 8%);
  --foreground: hsl(210, 20%, 95%);
  --card: hsl(215, 20%, 10%);
  --card-foreground: hsl(210, 20%, 95%);
  --border: hsl(215, 15%, 18%);
  --muted: hsl(215, 15%, 18%);
  --muted-foreground: hsl(215, 15%, 55%);
  --secondary: hsl(215, 15%, 18%);
  --secondary-foreground: hsl(210, 20%, 95%);
  --accent: hsl(215, 15%, 15%);
  --accent-foreground: hsl(210, 20%, 95%);
  --destructive: hsl(0, 84%, 45%);
  --destructive-foreground: hsl(0, 84%, 98%);
  --input: hsl(215, 15%, 30%);
  --ring: hsl(213, 80%, 52%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4), 0 1px 2px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   2. CSS Reset / Base Styles
   ========================================================================== */

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

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: var(--font-sans);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  min-height: 100vh;
}

hr {
  height: 0;
  color: inherit;
  border-top: 1px solid var(--border);
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button,
select {
  text-transform: none;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
  appearance: button;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  -webkit-appearance: textfield;
  appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
}

img,
video {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* ==========================================================================
   3. Typography
   ========================================================================== */

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

h1 {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

h2 {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

h3 {
  font-size: 1.5rem;
  line-height: 2rem;
}

h4 {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

h5 {
  font-size: 1.125rem;
  line-height: 1.5rem;
}

h6 {
  font-size: 1rem;
  line-height: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--foreground);
  line-height: 1.75;
}

.text-muted {
  color: var(--muted-foreground);
}

.text-primary {
  color: var(--primary);
}

.text-white {
  color: #fff;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.75;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
    line-height: 1;
  }

  h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  h3 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
    line-height: 1;
  }
}

/* ==========================================================================
   4. Layout / Container
   ========================================================================== */

.container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

/* ==========================================================================
   5. Utility Classes
   ========================================================================== */

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }

.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }

.m-0 { margin: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

.w-full { width: 100%; }
.w-auto { width: auto; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.min-h-screen { min-height: 100vh; }

.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-[9999] { z-index: 9999; }

.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

.rounded { border-radius: var(--radius); }
.rounded-md { border-radius: calc(var(--radius) - 2px); }
.rounded-sm { border-radius: calc(var(--radius) - 4px); }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: calc(var(--radius) + 4px); }
.rounded-2xl { border-radius: calc(var(--radius) + 8px); }
.rounded-full { border-radius: 9999px; }

.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-l { border-left: 1px solid var(--border); }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-transform {
  transition-property: transform;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

.cursor-pointer { cursor: pointer; }

.select-none { user-select: none; }

.whitespace-nowrap { white-space: nowrap; }

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-muted { background-color: var(--muted); }
.bg-accent { background-color: var(--accent); }
.bg-destructive { background-color: var(--destructive); }
.bg-white { background-color: #ffffff; }

.object-cover { object-fit: cover; }
.object-center { object-position: center; }

/* Grid columns */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:block { display: block; }
  .sm\:text-left { text-align: left; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:inline-flex { display: inline-flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:text-left { text-align: left; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:w-1\/2 { width: 50%; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:inline-flex { display: inline-flex; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .xl\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

/* ==========================================================================
   6. Top Bar
   ========================================================================== */

.top-bar {
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.8125rem;
  line-height: 1;
  padding: 0.5rem 0;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar a {
  color: var(--primary-foreground);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: opacity var(--transition);
}

.top-bar a:hover {
  opacity: 0.85;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-left {
  flex-wrap: wrap;
}

.top-bar .separator {
  width: 1px;
  height: 0.875rem;
  background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 639px) {
  .top-bar {
    display: none;
  }
}

/* ==========================================================================
   7. Header / Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

body.dark-mode .site-header {
  background-color: var(--background);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .header-inner {
    height: 4.5rem;
  }
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.site-logo img {
  height: 2.5rem;
  width: auto;
}

.site-logo .logo-text {
  display: flex;
  flex-direction: column;
}

.site-logo .logo-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.site-logo .logo-tagline {
  font-size: 0.6875rem;
  color: var(--muted-foreground);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Main navigation */
.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.main-nav > li {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: var(--radius);
  transition: background-color var(--transition), color var(--transition);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.nav-link:hover {
  background-color: var(--accent);
  color: var(--foreground);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-link .chevron {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 200ms;
}

.nav-link:hover .chevron,
.nav-item.open .nav-link .chevron {
  transform: rotate(180deg);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dark-mode-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  transition: background-color var(--transition);
}

.dark-mode-toggle:hover {
  background-color: var(--accent);
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  border: none;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  transition: background-color var(--transition);
}

.mobile-menu-toggle:hover {
  background-color: var(--accent);
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* ==========================================================================
   8. Mega Menu
   ========================================================================== */

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 56rem;
  max-width: calc(100vw - 2rem);
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms, visibility 200ms;
  z-index: 50;
}

.nav-item:hover .mega-menu,
.nav-item.open .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: 1.5rem;
}

.mega-menu-categories {
  border-right: 1px solid var(--border);
  padding-right: 1.5rem;
}

.mega-menu-categories h3 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.mega-menu-category-list {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.mega-menu-category-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
  border-radius: calc(var(--radius) - 2px);
  transition: background-color var(--transition);
  text-decoration: none;
}

.mega-menu-category-link:hover,
.mega-menu-category-link.active {
  background-color: var(--accent);
}

.mega-menu-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mega-menu-product-card {
  display: block;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: box-shadow 200ms, border-color 200ms;
}

.mega-menu-product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.mega-menu-product-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mega-menu-product-card .card-body {
  padding: 0.625rem;
}

.mega-menu-product-card .card-body h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.125rem;
  line-height: 1.3;
}

.mega-menu-product-card .card-body p {
  font-size: 0.6875rem;
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.4;
}

/* ==========================================================================
   9. Mobile Menu
   ========================================================================== */

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  z-index: 9998;
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu-nav {
  padding: 1rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background-color var(--transition);
}

.mobile-nav-link:hover {
  background-color: var(--accent);
}

.mobile-nav-link.active {
  color: var(--primary);
  background-color: var(--accent);
}

.mobile-accordion {
  margin-bottom: 0.25rem;
}

.mobile-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--foreground);
  background: transparent;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color var(--transition);
}

.mobile-accordion-trigger:hover {
  background-color: var(--accent);
}

.mobile-accordion-trigger .chevron {
  width: 1rem;
  height: 1rem;
  transition: transform 200ms;
}

.mobile-accordion.open .mobile-accordion-trigger .chevron {
  transform: rotate(180deg);
}

.mobile-accordion-content {
  display: none;
  padding: 0.25rem 0 0.25rem 1rem;
}

.mobile-accordion.open .mobile-accordion-content {
  display: block;
}

.mobile-accordion-content a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  border-radius: calc(var(--radius) - 2px);
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition);
}

.mobile-accordion-content a:hover {
  background-color: var(--accent);
  color: var(--foreground);
}

/* ==========================================================================
   10. Hero Section
   ========================================================================== */

.hero {
  position: relative;
  min-height: 28rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    min-height: 36rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 40rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  color: #ffffff;
  max-width: 40rem;
  padding: 2rem 0;
  flex: 1;
}

.hero-content h1 {
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 3.75rem;
  }
}

.hero-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 32rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .hero-content p {
    font-size: 1.125rem;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.hero-logo-wrapper {
  display: none;
}

.hero-logo-wrapper img {
  width: 14rem;
  height: 14rem;
  object-fit: contain;
  filter: drop-shadow(0 25px 25px rgba(0,0,0,0.25));
}

@media (min-width: 1024px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
}

/* ==========================================================================
   11. Stats Bar
   ========================================================================== */

.stats-bar {
  background-color: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--foreground);
  line-height: 1;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 2.25rem;
  }
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

/* ==========================================================================
   12. Cards
   ========================================================================== */

.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  transition: box-shadow 200ms, transform 200ms;
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-hover:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-header {
  padding: 1.5rem 1.5rem 0;
}

.card-body {
  padding: 1.5rem;
}

.card-footer {
  padding: 0 1.5rem 1.5rem;
}

.card-compact .card-body {
  padding: 1rem;
}

.card-compact .card-header {
  padding: 1rem 1rem 0;
}

.card-compact .card-footer {
  padding: 0 1rem 1rem;
}

/* ==========================================================================
   13. Category Grid
   ========================================================================== */

.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-card {
  position: relative;
  display: block;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 16 / 9;
  transition: transform 200ms, box-shadow 200ms;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 1;
}

.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  z-index: 2;
  color: #ffffff;
}

.category-card-content h3 {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.category-card-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8125rem;
  margin: 0;
  line-height: 1.5;
}

.category-card-content .product-count {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.375rem;
}

/* ==========================================================================
   14. Product Listing Cards
   ========================================================================== */

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  transition: box-shadow 200ms, transform 200ms;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.product-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms;
}

.product-card:hover .product-card-image img {
  transform: scale(1.03);
}

.product-card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.375rem;
  line-height: 1.4;
}

.product-card-body p {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
  flex: 1;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap 200ms;
}

.product-card-link:hover {
  gap: 0.625rem;
}

.product-card-link svg,
.product-card-link .arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 200ms;
}

.product-card-link:hover svg,
.product-card-link:hover .arrow {
  transform: translateX(2px);
}

/* ==========================================================================
   15. Featured Sections
   ========================================================================== */

.featured-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .featured-section {
    padding: 5rem 0;
  }
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .featured-grid {
    gap: 4rem;
  }
}

.featured-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.featured-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.featured-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .featured-content h2 {
    font-size: 2.25rem;
  }
}

.featured-content p {
  color: var(--muted-foreground);
  line-height: 1.75;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--foreground);
}

.check-list-item .check-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  margin-top: 0.125rem;
}

.featured-reverse .featured-image {
  order: 1;
}

@media (min-width: 768px) {
  .featured-reverse .featured-image {
    order: 2;
  }

  .featured-reverse .featured-content {
    order: 1;
  }
}

/* ==========================================================================
   16. CTA Section
   ========================================================================== */

.cta-section {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 4rem 0;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 5rem 0;
  }
}

.cta-section h2 {
  color: #ffffff;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 2.25rem;
  }
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .cta-section p {
    font-size: 1.125rem;
  }
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ==========================================================================
   17. Badges
   ========================================================================== */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 9999px;
  white-space: nowrap;
  transition: background-color var(--transition);
}

.badge-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.badge-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.badge-outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.badge-destructive {
  background-color: var(--destructive);
  color: var(--destructive-foreground);
}

.badge-muted {
  background-color: var(--muted);
  color: var(--muted-foreground);
}

.badge-sm {
  padding: 0.0625rem 0.5rem;
  font-size: 0.6875rem;
}

.badge-lg {
  padding: 0.25rem 0.875rem;
  font-size: 0.8125rem;
}

/* ==========================================================================
   18. Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  user-select: none;
  outline: none;
}

.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border-color: var(--border);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.btn-ghost {
  background-color: transparent;
  color: var(--foreground);
  border-color: transparent;
}

.btn-ghost:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background-color: var(--muted);
}

.btn-destructive {
  background-color: var(--destructive);
  color: var(--destructive-foreground);
  border-color: var(--destructive);
}

.btn-destructive:hover {
  opacity: 0.9;
}

.btn-white {
  background-color: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
}

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.btn-white-outline {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-white-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.btn-sm {
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 0.625rem 1.75rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 0.75rem 2rem;
  font-size: 1.0625rem;
}

.btn-icon {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
}

.btn-icon.btn-sm {
  width: 2rem;
  height: 2rem;
}

.btn-icon.btn-lg {
  width: 2.75rem;
  height: 2.75rem;
}

.zartiq-quote-btn-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .zartiq-quote-btn-desktop {
    display: inline-flex;
  }
}

/* ==========================================================================
   19. Breadcrumbs
   ========================================================================== */

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding: 1rem 0;
}

.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs .separator {
  color: var(--muted-foreground);
  display: inline-flex;
  align-items: center;
}

.breadcrumbs .separator svg {
  width: 0.875rem;
  height: 0.875rem;
}

.breadcrumbs .current {
  color: var(--foreground);
  font-weight: 500;
}

.zartiq-breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  font-size: 0.875rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.zartiq-breadcrumb-item {
  display: inline-flex;
  align-items: center;
}

.zartiq-breadcrumb-item a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

.zartiq-breadcrumb-item a:hover {
  color: #fff;
}

.zartiq-breadcrumb-separator {
  display: inline-flex;
  align-items: center;
}

.zartiq-breadcrumb-separator svg {
  width: 0.75rem;
  height: 0.75rem;
}

.zartiq-breadcrumb-current {
  font-weight: 500;
}

/* ==========================================================================
   20. Page Headers with Image Backgrounds
   ========================================================================== */

.page-header {
  position: relative;
  padding: 3rem 0;
  min-height: 12rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-header {
    min-height: 16rem;
    padding: 4rem 0;
  }
}

.page-header-bg {
  position: absolute;
  inset: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.page-header-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.page-header-content h1 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .page-header-content h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .page-header-content h1 {
    font-size: 3rem;
  }
}

.page-header-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0;
  max-width: 36rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .page-header-content p {
    font-size: 1.125rem;
  }
}

/* ==========================================================================
   21. Product Detail Pages
   ========================================================================== */

.product-detail {
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .product-detail {
    padding: 3rem 0;
  }
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .product-detail-grid {
    gap: 4rem;
  }
}

.product-detail-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.product-detail-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-detail-info h1 {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .product-detail-info h1 {
    font-size: 2.25rem;
  }
}

.product-detail-info .product-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.product-detail-info .product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-detail-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.product-meta-item {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
  padding: 0.75rem 1rem;
}

.product-meta-item .meta-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.product-meta-item .meta-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  margin-top: 0.125rem;
}

/* ==========================================================================
   22. Tabs
   ========================================================================== */

.tabs {
  margin: 2rem 0;
}

.tab-list {
  display: flex;
  border-bottom: 2px solid var(--border);
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
}

.tab-trigger:hover {
  color: var(--foreground);
}

.tab-trigger.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 600;
}

.tab-content {
  padding: 1.5rem 0;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ==========================================================================
   23. Tables
   ========================================================================== */

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.data-table thead {
  background-color: var(--muted);
}

body.dark-mode .data-table thead {
  background-color: var(--accent);
}

.data-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--foreground);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.data-table td {
  padding: 0.75rem 1rem;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}

.data-table tbody tr:nth-child(even) {
  background-color: var(--accent);
}

body.dark-mode .data-table tbody tr:nth-child(even) {
  background-color: var(--muted);
}

.data-table tbody tr:hover {
  background-color: var(--muted);
}

body.dark-mode .data-table tbody tr:hover {
  background-color: var(--accent);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive .data-table {
  min-width: 36rem;
}

/* ==========================================================================
   24. Contact Form
   ========================================================================== */

.contact-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .contact-section {
    padding: 5rem 0;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.contact-form-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-label .required {
  color: var(--destructive);
  margin-left: 0.125rem;
}

.form-error {
  font-size: 0.75rem;
  color: var(--destructive);
  margin-top: 0.25rem;
}

.form-helper {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  border-radius: var(--radius);
  color: var(--primary);
}

.contact-info-item h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   25. Form Elements
   ========================================================================== */

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--foreground);
  background-color: var(--background);
  border: 1px solid var(--input);
  border-radius: calc(var(--radius) - 2px);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--ring);
  box-shadow: 0 0 0 2px rgba(37, 99, 180, 0.2);
}

body.dark-mode .form-input:focus,
body.dark-mode .form-textarea:focus,
body.dark-mode .form-select:focus {
  box-shadow: 0 0 0 2px rgba(66, 133, 220, 0.25);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
  opacity: 0.7;
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: var(--destructive);
}

.form-input.error:focus,
.form-textarea.error:focus,
.form-select.error:focus {
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

.form-textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.form-checkbox,
.form-radio {
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--input);
  border-radius: 0.25rem;
  cursor: pointer;
  accent-color: var(--primary);
}

.form-radio {
  border-radius: 50%;
}

/* ==========================================================================
   26. Footer
   ========================================================================== */

.site-footer {
  background-color: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 0 0;
}

body.dark-mode .site-footer {
  background-color: var(--card);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
  }
}

.footer-brand {
  max-width: 20rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-brand .footer-logo img {
  height: 2.25rem;
  width: auto;
}

.footer-brand .footer-logo span {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.footer-column h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.footer-contact-item svg,
.footer-contact-item .icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ==========================================================================
   27. Dark Mode Toggle Support
   ========================================================================== */

.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: transparent;
  color: var(--foreground);
  cursor: pointer;
  transition: background-color var(--transition);
}

.theme-toggle-btn:hover {
  background-color: var(--accent);
}

.theme-toggle-btn .icon-sun,
.theme-toggle-btn .icon-moon {
  width: 1.125rem;
  height: 1.125rem;
}

body.dark-mode .theme-toggle-btn .icon-sun {
  display: none;
}

body:not(.dark-mode) .theme-toggle-btn .icon-moon {
  display: none;
}

/* ==========================================================================
   28. Animations
   ========================================================================== */

.hover-elevate {
  transition: box-shadow 200ms, transform 200ms, filter 200ms;
}

.hover-elevate:hover {
  box-shadow: var(--shadow-md);
  filter: brightness(1.02);
}

body.dark-mode .hover-elevate:hover {
  filter: brightness(1.08);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.animate-fade-in {
  animation: fadeIn 0.3s ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp 0.4s ease-out;
}

.animate-slide-down {
  animation: slideDown 0.2s ease-out;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* ==========================================================================
   29. Section Headings
   ========================================================================== */

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .section-heading h2 {
    font-size: 2.25rem;
  }
}

.section-heading p {
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .section-heading p {
    font-size: 1.0625rem;
  }
}

.section-heading .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background-color: var(--accent);
  border-radius: 9999px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   30. About / Services List
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
  padding: 1.5rem;
  transition: box-shadow 200ms, transform 200ms;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  border-radius: var(--radius);
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.7;
}

/* ==========================================================================
   31. Pagination
   ========================================================================== */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 2rem;
}

.pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  background-color: transparent;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition), border-color var(--transition);
}

.pagination-link:hover {
  background-color: var(--accent);
}

.pagination-link.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.pagination-link:disabled,
.pagination-link.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ==========================================================================
   32. Spinner / Loading
   ========================================================================== */

.spinner {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.spinner-sm {
  width: 1rem;
  height: 1rem;
}

.spinner-lg {
  width: 2.5rem;
  height: 2.5rem;
  border-width: 3px;
}

.loading-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 12rem;
}

/* ==========================================================================
   33. Alerts / Notices
   ========================================================================== */

.alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  line-height: 1.6;
}

.alert-info {
  background-color: var(--accent);
  border-color: var(--primary);
  color: var(--foreground);
}

.alert-success {
  background-color: hsl(142, 76%, 96%);
  border-color: hsl(142, 71%, 45%);
  color: hsl(142, 71%, 25%);
}

body.dark-mode .alert-success {
  background-color: hsl(142, 40%, 12%);
  color: hsl(142, 76%, 80%);
}

.alert-warning {
  background-color: hsl(48, 96%, 96%);
  border-color: hsl(48, 96%, 45%);
  color: hsl(48, 80%, 25%);
}

body.dark-mode .alert-warning {
  background-color: hsl(48, 40%, 12%);
  color: hsl(48, 96%, 80%);
}

.alert-error {
  background-color: hsl(0, 84%, 96%);
  border-color: var(--destructive);
  color: hsl(0, 84%, 30%);
}

body.dark-mode .alert-error {
  background-color: hsl(0, 40%, 12%);
  color: hsl(0, 84%, 80%);
}

.alert-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.0625rem;
}

/* ==========================================================================
   34. Tooltip
   ========================================================================== */

[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary-foreground);
  background-color: var(--foreground);
  border-radius: calc(var(--radius) - 2px);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 150ms, visibility 150ms;
  z-index: 50;
}

[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   35. Separator / Divider
   ========================================================================== */

.separator {
  height: 1px;
  width: 100%;
  background-color: var(--border);
  margin: 1.5rem 0;
}

.separator-vertical {
  width: 1px;
  height: 100%;
  background-color: var(--border);
  margin: 0 0.75rem;
}

/* ==========================================================================
   36. Aspect Ratios
   ========================================================================== */

.aspect-video { aspect-ratio: 16 / 9; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-4-3 { aspect-ratio: 4 / 3; }
.aspect-3-2 { aspect-ratio: 3 / 2; }

/* ==========================================================================
   37. WordPress-Specific Styles
   ========================================================================== */

.wp-block-image {
  margin-bottom: 1.5rem;
}

.wp-block-image img {
  border-radius: var(--radius);
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.alignwide {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 0.5rem;
}

.gallery {
  display: grid;
  gap: 1rem;
}

.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }

.gallery-item img {
  border-radius: calc(var(--radius) - 2px);
  width: 100%;
  height: auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content ul,
.entry-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.entry-content ul {
  list-style-type: disc;
}

.entry-content ol {
  list-style-type: decimal;
}

.entry-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.entry-content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--muted-foreground);
}

.entry-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.entry-content a:hover {
  text-decoration: none;
}

.entry-content pre {
  background-color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  overflow-x: auto;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.entry-content code {
  font-family: Menlo, Consolas, 'Courier New', monospace;
  font-size: 0.875em;
  background-color: var(--muted);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}

.entry-content pre code {
  background: none;
  padding: 0;
}

/* Post navigation */
.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

.post-navigation a {
  font-size: 0.875rem;
  color: var(--primary);
  text-decoration: none;
  transition: opacity var(--transition);
}

.post-navigation a:hover {
  opacity: 0.8;
}

/* Comments */
.comments-area {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.comment-list {
  margin-bottom: 2rem;
}

.comment {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.comment-author {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.comment-date {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.comment-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.comment-reply-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.comment-respond {
  margin-top: 2rem;
}

/* ==========================================================================
   38. Print Styles
   ========================================================================== */

@media print {
  .top-bar,
  .site-header,
  .site-footer,
  .mobile-menu,
  .theme-toggle-btn,
  .dark-mode-toggle,
  .mobile-menu-toggle,
  .btn,
  .cta-section,
  .pagination {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  img {
    max-width: 100% !important;
  }

  .card {
    border: 1px solid #ccc;
    box-shadow: none;
  }
}

/* ==========================================================================
   39. Accessibility
   ========================================================================== */

:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 99999;
  padding: 0.5rem 1rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 200ms;
}

.skip-link:focus {
  top: 0.5rem;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   40. Scrollbar Styling
   ========================================================================== */

::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background-color: var(--muted);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--muted-foreground);
}

body.dark-mode ::-webkit-scrollbar-track {
  background: var(--background);
}

body.dark-mode ::-webkit-scrollbar-thumb {
  background-color: var(--border);
}

body.dark-mode ::-webkit-scrollbar-thumb:hover {
  background-color: var(--muted-foreground);
}
