.product-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.product-image-section {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.product-image-container {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.product-image-container img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.quote-form-section {
  background: var(--background);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.tabs-container {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 1400px;
}

.tabs-header {
  display: flex;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  background: var(--muted);
}

.tab-button {
  flex: 1;
  min-width: 120px;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.tab-button:hover {
  background: var(--elevate-1);
  color: var(--foreground);
}

.tab-button.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: var(--background);
}

.tab-content {
  padding: 2rem;
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.tab-content p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.tab-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.tab-content li {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.info-box {
  background: var(--accent);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}

.info-box-title {
  font-weight: 600;
  color: var(--accent-foreground);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.info-box-text {
  color: var(--accent-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* turn off sticky image on mobile */
  .product-image-section {
    position: static;
    top: auto;
    height: auto;
  }

  .product-layout {
    padding: 1rem;
  }

  .tabs-header {
    flex-wrap: nowrap;
  }

  .tab-button {
    font-size: 0.75rem;
    padding: 0.75rem 1rem;
    min-width: 100px;
  }

  .tab-content {
    padding: 1.5rem;
  }
}
/* ========================================
   Dunamis Products - Static Website Styles
   ======================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  padding-top: 9rem;
}


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

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* ========================================
   CSS Custom Properties (Color System)
   ======================================== */

:root {
  /* Core Colors */
  --primary: hsl(176, 85%, 50%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-border: hsl(176, 85%, 42%);
  
  --secondary: hsl(0, 0%, 92%);
  --secondary-foreground: hsl(0, 0%, 20%);
  
  --accent: hsl(190, 75%, 85%);
  --accent-foreground: hsl(176, 60%, 30%);
  --accent-border: hsl(190, 75%, 77%);
  
  --destructive: hsl(0, 84%, 45%);
  --destructive-foreground: hsl(0, 20%, 98%);
  
  /* Background & Foreground */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(0, 0%, 20%);
  
  /* Muted Colors */
  --muted: hsl(0, 0%, 94%);
  --muted-foreground: hsl(0, 0%, 40%);
  
  /* Card */
  --card: hsl(0, 0%, 98%);
  --card-foreground: hsl(0, 0%, 20%);
  --card-border: hsl(0, 0%, 93%);
  
  /* Border & Input */
  --border: hsl(0, 0%, 91%);
  --input: hsl(220, 13%, 75%);
  --ring: hsl(176, 85%, 50%);
  
  /* Sidebar */
  --sidebar: hsl(0, 0%, 96%);
  --sidebar-foreground: hsl(0, 0%, 20%);
  --sidebar-border: hsl(0, 0%, 89%);
  --sidebar-accent: hsl(0, 0%, 91%);
  
  /* Popover */
  --popover: hsl(0, 0%, 95%);
  --popover-foreground: hsl(0, 0%, 20%);
  --popover-border: hsl(0, 0%, 87%);
  
  /* Elevation & Interactive States */
  --elevate-1: rgba(0, 0, 0, 0.03);
  --elevate-2: rgba(0, 0, 0, 0.08);
  --button-outline: rgba(0, 0, 0, 0.10);
  --badge-outline: rgba(0, 0, 0, 0.05);
  
  /* Spacing & Layout */
  --radius: 0.5rem;
  --spacing: 0.25rem;
  
  /* Shadows */
  --shadow-sm: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  --shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.07), 0px 2px 3px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0px 6px 12px 0px rgba(0, 0, 0, 0.08), 0px 3px 5px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0px 10px 20px 0px rgba(0, 0, 0, 0.10), 0px 5px 8px -2px rgba(0, 0, 0, 0.07);
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
  margin-bottom: 1em;
  line-height: 1.6;
}

.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; }
.text-6xl { font-size: 3.75rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

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

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

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

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

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

/* ========================================
   Layout Utilities
   ======================================== */

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.max-w-7xl { max-width: 80rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }
.max-w-prose { max-width: 65ch; }

.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.h-full { height: 100%; }

/* Flexbox */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.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; }

/* Grid */
.grid { display: grid; }
.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)); }

/* Spacing */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.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; }

/* Padding */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }

.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-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.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-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

/* Margin */
.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-12 { margin-bottom: 3rem; }

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-auto { margin-top: auto; }

.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }

/* ========================================
   Card Component
   ======================================== */

.card {
  background-color: var(--card);
  color: var(--card-foreground);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s ease;
}

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.card-content {
  padding: 1.5rem;
}

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

/* ========================================
   Button Component
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  min-height: 2.25rem;
  padding: 0.5rem 1rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Button Variants */
.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary-border);
}

.btn-primary:hover:not(:disabled) {
  background-color: hsl(176, 85%, 45%);
}

.btn-primary:active:not(:disabled) {
  background-color: hsl(176, 85%, 40%);
}

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

.btn-secondary:hover:not(:disabled) {
  background-color: hsl(0, 0%, 88%);
}

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

.btn-outline:hover:not(:disabled) {
  background-color: var(--elevate-1);
}

.btn-ghost {
  background-color: transparent;
  border-color: transparent;
}

.btn-ghost:hover:not(:disabled) {
  background-color: var(--elevate-1);
}

/* Button Sizes */
.btn-sm {
  min-height: 2rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
}

.btn-lg {
  min-height: 2.5rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

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

/* ========================================
   Badge Component
   ======================================== */

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.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-color: var(--border);
  color: var(--foreground);
}

/* ========================================
   Form Elements
   ======================================== */

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  background-color: var(--background);
  color: var(--foreground);
  transition: all 0.2s ease;
}

@media (max-width: 640px) {
  .form-input,
  .form-textarea,
  .form-select {
    font-size: 16px;
    padding: 0.75rem;
    min-height: 48px;
  }
  .quote-form-grid {
    grid-template-columns: 1fr;
  }
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 3px rgba(22, 191, 180, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

/* ========================================
   Announcement Strip
   ======================================== */

.announcement-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: var(--primary);
  color: var(--primary-foreground);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

body {
  padding-top: 7.5rem;
}

body.has-hero {
  padding-top: 0;
}

.announcement-strip-content {
  max-width: 80rem;
  margin: 0 auto;
}

.announcement-strip-text {
  display: inline-block;
}

.announcement-strip-text strong {
  font-weight: 700;
}

@media (max-width: 640px) {
  .announcement-strip {
    font-size: 0.7rem;
    padding: 0.4rem 0.75rem;
  }
}

@media (max-width: 767.98px) {
  .hero {
    height: auto;
    min-height: 900px;
    margin-top: 5rem; /* Reduced since no announcement strip */
  }
  
  .hero-content {
    height: auto;
    min-height: 900px;
    padding-top: 6rem; /* Reduced - no announcement strip */
    padding-bottom: 4rem;
    justify-content: flex-start;
  }
  
  .hero-stats {
    margin-top: auto;
  }
}

/* ========================================
   Header & Navigation
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.header-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  text-decoration: none;
  color: var(--foreground);
}

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

.logo-text {
  font-weight: 700;
  font-size: 1.125rem;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;   
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--foreground);
}

.nav-link:hover {
  background-color: var(--elevate-1);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: flex;
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--foreground);
  text-align: left;
  width: 100%;
}

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

/* ====== New two-row header layout ====== */

.header-top {
  gap: 1.5rem;
}

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

.header-search {
  flex: 1;
  max-width: 420px;
  display: none; /* hidden on mobile; shown on tablet+ */
  position: relative;
}

.header-search-input {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  color: var(--foreground);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search-input::placeholder {
  color: var(--muted-foreground);
}

.header-search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.15);
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  margin-top: 0.25rem;
}

.search-results.active {
  display: block;
}

.search-result-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background-color 0.15s;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background-color: var(--accent);
}

.search-result-item .result-name {
  font-weight: 500;
  color: var(--foreground);
}

.search-result-item .result-badge {
  font-size: 0.75rem;
  color: var(--primary);
  margin-left: 0.5rem;
}

.search-no-results {
  padding: 1rem;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.header-utility {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-availability {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  white-space: nowrap;
}

.utility-links {
  display: none; /* mobile: hide, desktop: show */
  align-items: center;
  gap: 0.75rem;
}

.utility-link {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.utility-link:hover {
  color: var(--foreground);
}

/* Simple hamburger icon */
.mobile-menu-icon {
  display: block;
  width: 1.25rem;
  height: 2px;
  background-color: var(--foreground);
  position: relative;
}

.mobile-menu-icon::before,
.mobile-menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.25rem;
  height: 2px;
  background-color: var(--foreground);
}

.mobile-menu-icon::before {
  top: -6px;
}

.mobile-menu-icon::after {
  top: 6px;
}

/* Hide text but keep accessible for screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Tablet and up */
@media (min-width: 768px) {
  .header-search {
    display: block;
  }

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

  .header-quote-btn {
    display: inline-flex;
  }
}

/* Desktop and up */
@media (min-width: 1024px) {
  .header-bottom {
    padding: 0.5rem 0;
  }
}

/* Mobile menu header (CTA + availability) */
.mobile-menu-header {
  padding: 0 1rem 0.75rem;
  border-bottom: 1px solid var(--border);
}

.mobile-quote-btn {
  width: 100%;
  justify-content: center;
}

.mobile-availability {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* On small screens, hide desktop availability from the top bar */
@media (max-width: 767.98px) {
  .header-availability {
    display: none;
  }
}

/* Quote button always visible */
.header-quote-btn {
  display: inline-flex !important;
}

/* On tablet/desktop, hide the mobile-menu-header (we only want it on mobile) */
@media (min-width: 768px) {
  .mobile-menu-header {
    display: none;
  }
}



/* ========================================
   Dropdown Navigation
   ======================================== */

/* Desktop Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-icon {
  transition: transform 0.2s ease;
}

.nav-dropdown.active .dropdown-icon {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.5rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 50;
  min-width: 800px;
  max-width: 1000px;
  max-height: 80vh;
  overflow-y: auto;
}

.nav-dropdown.active .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.5rem;
}

.nav-dropdown-category {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-dropdown-category-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.nav-dropdown-category-title:hover {
  background-color: var(--accent);
}

.nav-dropdown-item {
  font-size: 0.8125rem;
  color: var(--foreground);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-dropdown-item:hover {
  background-color: var(--elevate-1);
  color: var(--primary);
}

/* Mobile Dropdown */
.mobile-nav-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-nav-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-dropdown.active .dropdown-icon {
  transform: rotate(180deg);
}

.mobile-nav-dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.mobile-nav-dropdown.active .mobile-nav-dropdown-menu {
  display: flex;
}

.mobile-nav-dropdown-category {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-dropdown-category-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  margin-bottom: 0.25rem;
}

.mobile-nav-dropdown-item {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  padding: 0.375rem 0.75rem 0.375rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
}

.mobile-nav-dropdown-item:hover {
  background-color: var(--elevate-1);
  color: var(--foreground);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  position: relative;
  height: 90vh;
  min-height: 800px;
  width: 100%;
  overflow: hidden;
  margin-top: 6rem; /* Push hero below the fixed header */
}

.hero-image {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.hero-content {
  position: relative;
  height: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 8rem 1.5rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 48rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
  color: white;
}

.hero-stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Mobile Hero Fix - must come after hero section */
@media (max-width: 767.98px) {
  .hero {
    height: auto;
    min-height: 1050px;
    overflow: visible;
  }
  
  .hero-content {
    height: auto;
    min-height: 1050px;
    padding-top: 11rem;
    padding-bottom: 5rem;
    justify-content: flex-start;
  }
  
  .hero-stats {
    margin-top: auto;
  }
}

/* ========================================
   Section Styles
   ======================================== */

.section {
  padding: 5rem 1.5rem;
}

.section-muted {
  background-color: rgba(0, 0, 0, 0.02);
}

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

.section-title {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* ========================================
   Product & Category Cards
   ======================================== */

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

.product-card,
.category-card {
  background-color: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.product-card:active,
.category-card:active {
  transform: translateY(0);
}

a.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.product-card-link:hover {
  text-decoration: none;
}

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

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.shipping-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow);
  z-index: 10;
}

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

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.625;
  flex: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.card-price {
  font-size: 0.875rem;
}

.card-price-amount {
  font-size: 1.25rem;
  font-weight: 700;
}

.card-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ========================================
   Footer
   ======================================== */

.footer {
  background-color: var(--card);
  border-top: 1px solid var(--border);
}

.footer-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-column h3,
.footer-column h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--foreground);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* ========================================
   Interactive States (Elevation System)
   ======================================== */

.hover-elevate {
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.hover-elevate:hover {
  background-color: var(--elevate-1);
}

.active-elevate-2:active {
  background-color: var(--elevate-2);
}

/* ========================================
   Utility Classes
   ======================================== */

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

.top-0 { top: 0; }
.inset-0 { inset: 0; }

.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

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

.cursor-pointer { cursor: pointer; }

.transition-all { transition: all 0.2s ease; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }

.rounded { border-radius: var(--radius); }
.rounded-md { border-radius: var(--radius); }
.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); }

.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.bg-muted { background-color: var(--muted); }
.bg-primary { background-color: var(--primary); }
.bg-transparent { background-color: transparent; }

.text-white { color: white; }

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

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

.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

.backdrop-blur { backdrop-filter: blur(10px); }

.hidden { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }

/* Icon sizing */
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 2rem; height: 2rem; }

/* ========================================
   Page-Specific Styles
   ======================================== */

.page-header {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background-color: var(--card);
  margin-top: 9rem; /* adjust this up/down if needed */
}

.page-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--foreground);
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet (768px and up) */
@media (min-width: 768px) {
  .nav {
    display: flex;
  }
  
  .header-actions {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .hero-title {
    font-size: 3.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .hero-cta {
    flex-direction: row;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .grid-cols-md-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .grid-cols-md-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .section-title {
    font-size: 2.25rem;
  }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
  .grid-cols-lg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .grid-cols-lg-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Large screens */
@media (min-width: 1280px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* =========================================================
WHY CHOOSE US BLOCK
========================================================= */
    .info-box {
      background: var(--accent);
      border: 1px solid var(--border);
      border-left: 4px solid var(--primary);
      border-radius: var(--radius);
      padding: 1rem 1.25rem;
      margin: 1.5rem 0;
    }
    
    .info-box-title {
      font-weight: 600;
      color: var(--accent-foreground);
      margin-bottom: 0.5rem;
      font-size: 1rem;
    }
    
    .info-box-text {
      color: var(--accent-foreground);
      font-size: 0.875rem;
      line-height: 1.6;
}

/* Offset anchor jump for quote form so sticky header doesn't cover it */
      #quote-section {
      scroll-margin-top: 10rem;  /* tweak between ~7–8rem if needed */
}


/* ===========================
   PRODUCT LAYOUT + TABS
   Used on product pages (Business Cards, Banners, etc.)
   =========================== */





/* ==== FINAL MOBILE HEADER OVERRIDES ==== */
@media (max-width: 767.98px) {
  /* Hide desktop-only bits in the top bar */
  .header-availability,
  .header-quote-btn,
  .utility-links,
  .header-search {
    display: none !important;
  }

  /* Make the top row just logo + hamburger */
  .header-top {
    justify-content: space-between;
  }

  .logo {
    flex: 1 1 auto;
  }
}

/* ========================================
   Popular Badge
   ======================================== */

.popular-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

/* ========================================
   Breadcrumb Navigation
   ======================================== */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.breadcrumb-separator {
  color: var(--muted-foreground);
  opacity: 0.5;
}

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

/* ========================================
   Sticky Mobile Quote Button
   ======================================== */

.sticky-mobile-quote {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: var(--background);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.sticky-mobile-quote .btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .sticky-mobile-quote {
    display: block;
  }
}

/* ========================================
   Navigation Dropdowns
   ======================================== */

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.nav-dropdown-toggle .dropdown-arrow {
  transition: transform 0.2s ease;
}

.nav-dropdown.active .nav-dropdown-toggle .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  min-width: 200px !important;
  background: white !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
  z-index: 1000 !important;
  padding: 0.5rem 0 !important;
  margin-top: 0.5rem !important;
  display: none !important;
  flex-direction: column !important;
}

.nav-dropdown.active .nav-dropdown-menu {
  display: flex !important;
  flex-direction: column !important;
}

.nav-dropdown-item {
  display: block !important;
  width: 100% !important;
  padding: 0.625rem 1rem !important;
  color: var(--foreground) !important;
  font-size: 0.875rem !important;
  transition: all 0.15s ease !important;
  white-space: nowrap !important;
}

.nav-dropdown-item:hover {
  background: var(--muted) !important;
  color: var(--foreground) !important;
}

/* ========================================
   Mega Menu
   ======================================== */

.nav-dropdown.mega-menu .nav-dropdown-menu {
  left: 50% !important;
  transform: translateX(-50%) !important;
  min-width: 1100px !important;
  max-width: 1350px !important;
  padding: 1.5rem !important;
}

.mega-menu-content {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)) !important;
  gap: 1.5rem !important;
}

.mega-menu-column {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

.mega-menu-title {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: var(--muted-foreground) !important;
  margin-bottom: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  border-bottom: 1px solid var(--border) !important;
}

.mega-menu-link {
  display: block !important;
  padding: 0.375rem 0 !important;
  color: var(--foreground) !important;
  font-size: 0.875rem !important;
  transition: color 0.15s ease !important;
}

.mega-menu-link:hover {
  color: var(--primary) !important;
}

.card-image img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}


