/* INCA Product Catalog Public Styling */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root, [data-theme="dark"] {
  --bg-dark: #0b0f19;
  --bg-card: rgba(20, 26, 38, 0.65);
  --border-color: rgba(255, 255, 255, 0.05);
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  
  --primary: #c29a5b;
  --primary-hover: #ac8346;
  --primary-glow: rgba(194, 154, 91, 0.15);
  
  --success: #10b981;
  --success-glow: rgba(16, 185, 129, 0.15);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-sans: 'Outfit', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;

  --header-bg: rgba(11, 15, 25, 0.85);
  --category-bar-bg: #111827; /* Deep charcoal for unified clean branding */
  --category-bar-text: #f3f4f6;
  --category-hover-bg: rgba(194, 154, 91, 0.12);
  --category-hover-text: #c29a5b;
  --dropdown-bg: #111827;
}

[data-theme="light"] {
  --bg-dark: #f8fafc;
  --bg-card: #ffffff;
  --border-color: rgba(0, 0, 0, 0.06);
  --text-main: #0f172a;
  --text-muted: #64748b;
  
  --primary: #c29a5b;
  --primary-hover: #ac8346;
  --primary-glow: rgba(194, 154, 91, 0.12);
  
  --success: #10b981;
  --success-glow: rgba(16, 185, 129, 0.15);
  
  --header-bg: rgba(255, 255, 255, 0.9);
  --category-bar-bg: #111827; /* Dark category bar to keep design anchored */
  --category-bar-text: #ffffff;
  --category-hover-bg: rgba(255, 255, 255, 0.1);
  --category-hover-text: #c29a5b;
  --dropdown-bg: #ffffff;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* ==========================================
   Header / Navigation
   ========================================== */
.site-header {
  height: 80px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}

.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

/* Logo Block */
.logo-block {
  display: flex;
  flex-direction: column;
}
.logo-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text-main) 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-sub {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

/* Header Search */
.header-search {
  flex: 1;
  max-width: 450px;
  margin: 0 1rem;
}
.search-form-header {
  position: relative;
  width: 100%;
}
.search-input-header {
  width: 100%;
  padding: 0.65rem 1.25rem;
  padding-right: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  color: var(--text-main);
  font-size: 0.875rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}
.search-input-header:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}
.search-submit-header {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.search-submit-header:hover {
  color: var(--primary);
}

/* Header Actions & Badges */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.action-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.775rem;
  font-weight: 700;
  color: #ffffff;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.badge-campaign {
  background: #e63946; /* Campaign Red */
}
.badge-campaign:hover {
  background: #d62828;
  transform: translateY(-2px);
}
.badge-new {
  background: #2a9d8f; /* New Green */
}
.badge-new:hover {
  background: #21867a;
  transform: translateY(-2px);
}

.theme-switcher-wrapper {
  display: flex;
  align-items: center;
}

.nav-btn {
  background: var(--primary);
  color: #ffffff;
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-btn:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 15px var(--primary-glow);
}

.nav-links {
  display: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
}

/* Theme Switcher Toggle Button */
.theme-toggle-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 0;
  outline: none;
}

[data-theme="light"] .theme-toggle-btn {
  background: rgba(0, 0, 0, 0.04);
}

.theme-toggle-btn:hover {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary);
  transform: scale(1.06);
}

.theme-toggle-btn svg {
  transition: var(--transition);
}

/* Hide sun/moon depending on theme */
[data-theme="dark"] .theme-toggle-btn .sun-icon {
  display: block;
}
[data-theme="dark"] .theme-toggle-btn .moon-icon {
  display: none;
}

[data-theme="light"] .theme-toggle-btn .sun-icon {
  display: none;
}
[data-theme="light"] .theme-toggle-btn .moon-icon {
  display: block;
}

/* ==========================================
   Category Mega Menu Bar
   ========================================== */
.category-bar {
  background: var(--category-bar-bg);
  border-bottom: 1px solid var(--border-color);
  height: 50px;
  position: sticky;
  top: 80px; /* Sits right below the 80px high main header */
  z-index: 99;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.category-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  height: 100%;
  padding: 0;
  margin: 0;
  gap: 1.5rem; /* Space between centered category items */
}

.category-item {
  position: relative;
  height: 100%;
}

.category-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0 0.6rem; /* Optimized padding */
  height: 100%;
  font-size: 0.85rem; /* Increased font-size for better readability */
  font-weight: 700;
  text-transform: uppercase;
  color: var(--category-bar-text);
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.category-link:hover {
  background: var(--category-hover-bg);
  color: var(--category-hover-text);
}

.category-link svg {
  transition: transform 0.2s ease;
}

.category-item:hover .category-link svg {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dropdown-bg);
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  min-width: 240px;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
  list-style: none;
  padding: 0.5rem 0;
  z-index: 200;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, display 0.2s allow-discrete;
}

.category-item:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-link:hover {
  background: var(--category-hover-bg);
  color: var(--primary);
  padding-left: 1.5rem;
}

/* Scrollbar for long dropdowns */
.dropdown-menu::-webkit-scrollbar {
  width: 4px;
}
.dropdown-menu::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
.dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

/* Responsive adjustment for Mobile Category Bar */
@media (max-width: 1024px) {
  .category-bar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .category-nav {
    justify-content: flex-start;
    gap: 0.5rem;
  }
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
  padding: 6rem 0 4rem 0;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 50% -20%, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 50%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

/* Search bar styling */
.search-wrapper {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 1rem 1.5rem;
  padding-right: 4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  color: var(--text-main);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-card);
  box-shadow: 0 0 20px var(--primary-glow);
}

.search-btn {
  position: absolute;
  right: 8px;
  top: 8px;
  bottom: 8px;
  background: var(--primary);
  border: none;
  border-radius: var(--radius-md);
  color: #ffffff;
  padding: 0 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

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

/* ==========================================
   Section Title
   ========================================== */
.section-header {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 60%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================
   Product Grid & Card
   ========================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

.product-image-box {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 Aspect Ratio */
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.product-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
}

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

.product-card-category {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.product-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
  line-height: 1.4;
}

.product-card-sku {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.product-card-btn {
  margin-top: auto;
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: #ffffff;
  padding: 0.6rem 0;
  text-align: center;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.product-card:hover .product-card-btn {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
}

/* ==========================================
   Category List (Homepage)
   ========================================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.category-card:hover {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: #ffffff;
}

/* ==========================================
   Product Detail Page
   ========================================== */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-image-box {
  width: 100%;
  padding-top: 75%;
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-row {
  display: flex;
  gap: 0.75rem;
}

.thumbnail-box {
  width: 80px;
  height: 80px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(0,0,0,0.2);
}

.thumbnail-box:hover, .thumbnail-box.active {
  border-color: var(--primary);
}

.thumbnail-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.product-info-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.product-meta-row {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.product-info-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  white-space: pre-line;
}

.specs-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2.5rem;
}

.specs-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.specs-table td {
  padding: 0.75rem 0;
  font-size: 0.95rem;
}

.specs-label {
  font-weight: 600;
  color: var(--text-muted);
  width: 35%;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary);
  color: #ffffff;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition);
}

.btn-download:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 15px var(--primary-glow);
}

/* ==========================================
   Contact Page
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: 3rem;
  margin-bottom: 5rem;
}

.contact-info-panel h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.contact-item-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-item-val {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

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

/* ==========================================
   Footer
   ========================================== */
.site-footer {
  border-top: 1px solid var(--border-color);
  background: #06090f;
  padding: 3rem 0;
  margin-top: 4rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 1.5rem;
}

.footer-link:hover {
  color: #ffffff;
}

/* ==========================================
   Catalog Page Layout (Sidebar + Subcategory / Product Grids)
   ========================================== */
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
}

.catalog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-menu-box {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
}

.sidebar-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-color);
  text-transform: uppercase;
  color: var(--text-main);
  transition: var(--transition);
}

.sidebar-menu-header.active {
  color: var(--primary);
  border-left: 3px solid var(--primary);
  padding-left: calc(1.25rem - 3px);
  background: rgba(99, 102, 241, 0.03);
}

.sidebar-menu-list {
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
}

.sidebar-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.sidebar-menu-item:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.02);
  padding-left: 1.5rem;
}

.sidebar-menu-item.active {
  color: var(--primary);
  font-weight: 600;
  background: rgba(99, 102, 241, 0.05);
  border-left: 3px solid var(--primary);
  padding-left: calc(1.25rem - 3px);
}

.badge-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: normal;
}

.sidebar-menu-item.active .badge-count,
.sidebar-menu-header.active .badge-count {
  color: var(--primary);
  font-weight: bold;
}

/* Subcategory Cards Grid */
.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.subcategory-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  text-align: center;
}

.subcategory-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px var(--primary-glow);
}

.subcategory-image-box {
  width: 100%;
  padding-top: 80%; /* Aspect ratio */
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.subcategory-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.subcategory-img-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.subcategory-card-footer {
  padding: 1rem;
  border-top: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-transform: uppercase;
}

.subcategory-card-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: normal;
  text-transform: none;
}

/* responsive layout */
@media (max-width: 992px) {
  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================
   Responsive Breakpoints
   ========================================== */
@media (max-width: 1024px) {
  .header-search, 
  .header-actions .action-badge, 
  .header-actions .nav-btn {
    display: none;
  }
  
  .header-actions {
    margin-left: auto;
    margin-right: 0.5rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    display: none; /* Mobile layout will toggle this */
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem;
    gap: 1.25rem;
    z-index: 999;
    list-style: none;
  }
  
  .nav-links.active {
    display: flex;
  }

  .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    display: block;
    padding: 0.5rem 0;
    position: relative;
  }
  
  .mobile-search-item {
    width: 100%;
    margin-bottom: 0.75rem;
  }
  
  .mobile-search-item .search-form-header {
    max-width: 100%;
  }
  
  .mobile-search-item .search-input-header {
    background: rgba(255, 255, 255, 0.04);
  }
  
  [data-theme="light"] .mobile-search-item .search-input-header {
    background: rgba(0, 0, 0, 0.04);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .detail-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
