:root {
  /* Primitive Color Tokens */
  --color-white: rgba(255, 255, 255, 0.886);
  --color-black: rgba(0, 0, 0, 1);
  --color-cream-50: rgba(252, 252, 249, 1);
  --color-cream-100: rgba(255, 255, 253, 1);
  --color-gray-200: rgba(245, 245, 245, 1);
  --color-gray-300: rgba(167, 169, 169, 1);
  --color-gray-400: rgba(119, 124, 124, 1);
  --color-slate-500: rgba(98, 108, 113, 1);
  --color-brown-600: rgba(94, 82, 64, 1);
  --color-charcoal-700: rgba(31, 33, 33, 1);
  --color-charcoal-800: rgba(38, 40, 40, 1);
  --color-slate-900: rgba(19, 52, 59, 1);
  --color-teal-300: rgba(50, 184, 198, 1);
  --color-teal-400: rgba(45, 166, 178, 1);
  --color-teal-500: rgba(33, 128, 141, 1);
  --color-teal-600: rgba(29, 116, 128, 1);
  --color-teal-700: rgba(26, 104, 115, 1);
  --color-teal-800: rgba(41, 150, 161, 1);
  --color-red-400: rgba(255, 84, 89, 1);
  --color-red-500: rgba(192, 21, 47, 1);
  --color-orange-400: rgba(230, 129, 97, 1);
  --color-orange-500: rgba(168, 75, 47, 1);

  /* RGB versions for opacity control */
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;
  --color-slate-500-rgb: 98, 108, 113;
  --color-red-500-rgb: 192, 21, 47;
  --color-red-400-rgb: 255, 84, 89;
  --color-orange-500-rgb: 168, 75, 47;
  --color-orange-400-rgb: 230, 129, 97;

  /* Background color tokens (Light Mode) */
  --color-bg-1: rgba(59, 130, 246, 0.08); /* Light blue */
  --color-bg-2: rgba(245, 158, 11, 0.08); /* Light yellow */
  --color-bg-3: rgba(34, 197, 94, 0.08); /* Light green */
  --color-bg-4: rgba(239, 68, 68, 0.08); /* Light red */
  --color-bg-5: rgba(147, 51, 234, 0.08); /* Light purple */
  --color-bg-6: rgba(249, 115, 22, 0.08); /* Light orange */
  --color-bg-7: rgba(236, 72, 153, 0.08); /* Light pink */
  --color-bg-8: rgba(6, 182, 212, 0.08); /* Light cyan */

  /* Semantic Color Tokens (Light Mode) */
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);
  --color-select-caret: rgba(var(--color-slate-900-rgb), 0.8);

  /* Common style patterns */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for opacity control */
  --color-success-rgb: 33, 128, 141;
  --color-error-rgb: 192, 21, 47;
  --color-warning-rgb: 168, 75, 47;
  --color-info-rgb: 98, 108, 113;

  /* Typography */
  --font-family-base: "FKGroteskNeue", "Geist", "Inter", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-mono: "Berkeley Mono", ui-monospace, SFMono-Regular, Menlo,
    Monaco, Consolas, monospace;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 24px;
  --font-size-4xl: 30px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 550;
  --font-weight-bold: 600;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --letter-spacing-tight: -0.01em;

  /* Spacing */
  --space-0: 0;
  --space-1: 1px;
  --space-2: 2px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-base: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04),
    0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);

  /* Animation */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

/* Dark mode colors */
@media (prefers-color-scheme: dark) {
  :root {
    /* RGB versions for opacity control (Dark Mode) */
    --color-gray-400-rgb: 119, 124, 124;
    --color-teal-300-rgb: 50, 184, 198;
    --color-gray-300-rgb: 167, 169, 169;
    --color-gray-200-rgb: 245, 245, 245;

    /* Background color tokens (Dark Mode) */
    --color-bg-1: rgba(29, 78, 216, 0.15); /* Dark blue */
    --color-bg-2: rgba(180, 83, 9, 0.15); /* Dark yellow */
    --color-bg-3: rgba(21, 128, 61, 0.15); /* Dark green */
    --color-bg-4: rgba(185, 28, 28, 0.15); /* Dark red */
    --color-bg-5: rgba(107, 33, 168, 0.15); /* Dark purple */
    --color-bg-6: rgba(194, 65, 12, 0.15); /* Dark orange */
    --color-bg-7: rgba(190, 24, 93, 0.15); /* Dark pink */
    --color-bg-8: rgba(8, 145, 178, 0.15); /* Dark cyan */
    
    /* Semantic Color Tokens (Dark Mode) */
    --color-background: var(--color-charcoal-700);
    --color-surface: var(--color-charcoal-800);
    --color-text: var(--color-gray-200);
    --color-text-secondary: rgba(var(--color-gray-300-rgb), 0.7);
    --color-primary: var(--color-teal-300);
    --color-primary-hover: var(--color-teal-400);
    --color-primary-active: var(--color-teal-800);
    --color-secondary: rgba(var(--color-gray-400-rgb), 0.15);
    --color-secondary-hover: rgba(var(--color-gray-400-rgb), 0.25);
    --color-secondary-active: rgba(var(--color-gray-400-rgb), 0.3);
    --color-border: rgba(var(--color-gray-400-rgb), 0.3);
    --color-error: var(--color-red-400);
    --color-success: var(--color-teal-300);
    --color-warning: var(--color-orange-400);
    --color-info: var(--color-gray-300);
    --color-focus-ring: rgba(var(--color-teal-300-rgb), 0.4);
    --color-btn-primary-text: var(--color-slate-900);
    --color-card-border: rgba(var(--color-gray-400-rgb), 0.2);
    --color-card-border-inner: rgba(var(--color-gray-400-rgb), 0.15);
    --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    --button-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
    --color-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
    --color-select-caret: rgba(var(--color-gray-200-rgb), 0.8);

    /* Common style patterns - updated for dark mode */
    --focus-ring: 0 0 0 3px var(--color-focus-ring);
    --focus-outline: 2px solid var(--color-primary);
    --status-bg-opacity: 0.15;
    --status-border-opacity: 0.25;
    --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

    /* RGB versions for dark mode */
    --color-success-rgb: var(--color-teal-300-rgb);
    --color-error-rgb: var(--color-red-400-rgb);
    --color-warning-rgb: var(--color-orange-400-rgb);
    --color-info-rgb: var(--color-gray-300-rgb);
  }
}

/* Data attribute for manual theme switching */
[data-color-scheme="dark"] {
  /* RGB versions for opacity control (dark mode) */
  --color-gray-400-rgb: 119, 124, 124;
  --color-teal-300-rgb: 50, 184, 198;
  --color-gray-300-rgb: 167, 169, 169;
  --color-gray-200-rgb: 245, 245, 245;

  /* Colorful background palette - Dark Mode */
  --color-bg-1: rgba(29, 78, 216, 0.15); /* Dark blue */
  --color-bg-2: rgba(180, 83, 9, 0.15); /* Dark yellow */
  --color-bg-3: rgba(21, 128, 61, 0.15); /* Dark green */
  --color-bg-4: rgba(185, 28, 28, 0.15); /* Dark red */
  --color-bg-5: rgba(107, 33, 168, 0.15); /* Dark purple */
  --color-bg-6: rgba(194, 65, 12, 0.15); /* Dark orange */
  --color-bg-7: rgba(190, 24, 93, 0.15); /* Dark pink */
  --color-bg-8: rgba(8, 145, 178, 0.15); /* Dark cyan */
  
  /* Semantic Color Tokens (Dark Mode) */
  --color-background: var(--color-charcoal-700);
  --color-surface: var(--color-charcoal-800);
  --color-text: var(--color-gray-200);
  --color-text-secondary: rgba(var(--color-gray-300-rgb), 0.7);
  --color-primary: var(--color-teal-300);
  --color-primary-hover: var(--color-teal-400);
  --color-primary-active: var(--color-teal-800);
  --color-secondary: rgba(var(--color-gray-400-rgb), 0.15);
  --color-secondary-hover: rgba(var(--color-gray-400-rgb), 0.25);
  --color-secondary-active: rgba(var(--color-gray-400-rgb), 0.3);
  --color-border: rgba(var(--color-gray-400-rgb), 0.3);
  --color-error: var(--color-red-400);
  --color-success: var(--color-teal-300);
  --color-warning: var(--color-orange-400);
  --color-info: var(--color-gray-300);
  --color-focus-ring: rgba(var(--color-teal-300-rgb), 0.4);
  --color-btn-primary-text: var(--color-slate-900);
  --color-card-border: rgba(var(--color-gray-400-rgb), 0.15);
  --color-card-border-inner: rgba(var(--color-gray-400-rgb), 0.15);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  --color-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
  --color-select-caret: rgba(var(--color-gray-200-rgb), 0.8);

  /* Common style patterns - updated for dark mode */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for dark mode */
  --color-success-rgb: var(--color-teal-300-rgb);
  --color-error-rgb: var(--color-red-400-rgb);
  --color-warning-rgb: var(--color-orange-400-rgb);
  --color-info-rgb: var(--color-gray-300-rgb);
}

[data-color-scheme="light"] {
  /* RGB versions for opacity control (light mode) */
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;
  
  /* Semantic Color Tokens (Light Mode) */
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);

  /* RGB versions for light mode */
  --color-success-rgb: var(--color-teal-500-rgb);
  --color-error-rgb: var(--color-red-500-rgb);
  --color-warning-rgb: var(--color-orange-500-rgb);
  --color-info-rgb: var(--color-slate-500-rgb);
}

/* Base styles */
html {
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html, body {
max-width: 100;
overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  letter-spacing: var(--letter-spacing-tight);
}

h1 {
  font-size: var(--font-size-4xl);
}
h2 {
  font-size: var(--font-size-3xl);
}
h3 {
  font-size: var(--font-size-2xl);
}
h4 {
  font-size: var(--font-size-xl);
}
h5 {
  font-size: var(--font-size-lg);
}
h6 {
  font-size: var(--font-size-md);
}

p {
  margin: 0 0 var(--space-16) 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

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

code,
pre {
  font-family: var(--font-family-mono);
  font-size: calc(var(--font-size-base) * 0.95);
  background-color: var(--color-secondary);
  border-radius: var(--radius-sm);
}

code {
  padding: var(--space-1) var(--space-4);
}

pre {
  padding: var(--space-16);
  margin: var(--space-16) 0;
  overflow: auto;
  border: 1px solid var(--color-border);
}

pre code {
  background: none;
  padding: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-16);
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  border: none;
  text-decoration: none;
  position: relative;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

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

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

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

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

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

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

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

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

.btn--sm {
  padding: var(--space-4) var(--space-12);
  font-size: var(--font-size-sm);
  border-radius: var(--radius-sm);
}

.btn--lg {
  padding: var(--space-10) var(--space-20);
  font-size: var(--font-size-lg);
  border-radius: var(--radius-md);
}

.btn--full-width {
  width: 100%;
}

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

/* Form elements */
.form-control {
  display: block;
  width: 100%;
  padding: var(--space-8) var(--space-12);
  font-size: var(--font-size-md);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-base);
  transition: border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

textarea.form-control {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
}

select.form-control {
  padding: var(--space-8) var(--space-12);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: var(--select-caret-light);
  background-repeat: no-repeat;
  background-position: right var(--space-12) center;
  background-size: 16px;
  padding-right: var(--space-32);
}

/* Add a dark mode specific caret */
@media (prefers-color-scheme: dark) {
  select.form-control {
    background-image: var(--select-caret-dark);
  }
}

/* Also handle data-color-scheme */
[data-color-scheme="dark"] select.form-control {
  background-image: var(--select-caret-dark);
}

[data-color-scheme="light"] select.form-control {
  background-image: var(--select-caret-light);
}

.form-control:focus {
  border-color: var(--color-primary);
  outline: var(--focus-outline);
}

.form-label {
  display: block;
  margin-bottom: var(--space-8);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.form-group {
  margin-bottom: var(--space-16);
}

/* Card component */
.card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--duration-normal) var(--ease-standard);
}

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

.card__body {
  padding: var(--space-16);
}

.card__header,
.card__footer {
  padding: var(--space-16);
  border-bottom: 1px solid var(--color-card-border-inner);
}

/* Status indicators - simplified with CSS variables */
.status {
  display: inline-flex;
  align-items: center;
  padding: var(--space-6) var(--space-12);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.status--success {
  background-color: rgba(
    var(--color-success-rgb, 33, 128, 141),
    var(--status-bg-opacity)
  );
  color: var(--color-success);
  border: 1px solid
    rgba(var(--color-success-rgb, 33, 128, 141), var(--status-border-opacity));
}

.status--error {
  background-color: rgba(
    var(--color-error-rgb, 192, 21, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-error);
  border: 1px solid
    rgba(var(--color-error-rgb, 192, 21, 47), var(--status-border-opacity));
}

.status--warning {
  background-color: rgba(
    var(--color-warning-rgb, 168, 75, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-warning);
  border: 1px solid
    rgba(var(--color-warning-rgb, 168, 75, 47), var(--status-border-opacity));
}

.status--info {
  background-color: rgba(
    var(--color-info-rgb, 98, 108, 113),
    var(--status-bg-opacity)
  );
  color: var(--color-info);
  border: 1px solid
    rgba(var(--color-info-rgb, 98, 108, 113), var(--status-border-opacity));
}

/* Container layout */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-16);
  padding-left: var(--space-16);
}

@media (min-width: 640px) {
  .container {
    max-width: var(--container-sm);
  }
}
@media (min-width: 768px) {
  .container {
    max-width: var(--container-md);
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: var(--container-lg);
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: var(--container-xl);
  }
}

/* Utility classes */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-4 {
  gap: var(--space-4);
}
.gap-8 {
  gap: var(--space-8);
}
.gap-16 {
  gap: var(--space-16);
}

.m-0 {
  margin: 0;
}
.mt-8 {
  margin-top: var(--space-8);
}
.mb-8 {
  margin-bottom: var(--space-8);
}
.mx-8 {
  margin-left: var(--space-8);
  margin-right: var(--space-8);
}
.my-8 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}

.p-0 {
  padding: 0;
}
.py-8 {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}
.px-8 {
  padding-left: var(--space-8);
  padding-right: var(--space-8);
}
.py-16 {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}
.px-16 {
  padding-left: var(--space-16);
  padding-right: var(--space-16);
}

.block {
  display: block;
}
.hidden {
  display: none;
}

/* Accessibility */
.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;
}

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

/* Dark mode specifics */
[data-color-scheme="dark"] .btn--outline {
  border: 1px solid var(--color-border-secondary);
}

@font-face {
  font-family: 'FKGroteskNeue';
  src: url('https://r2cdn.perplexity.ai/fonts/FKGroteskNeue.woff2')
    format('woff2');
}

/* END PERPLEXITY DESIGN SYSTEM */
/* Agricultural Theme Colors */
:root {
  --color-seed-green: #07720a;
  --color-earth-brown: #8D6E63;
  --color-harvest-gold: #FFC107;
  --color-soil-dark: #3E2723;
  --color-leaf-light: #81C784;
  --color-root-orange: #FF8A65;
}

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

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

body {
  font-family: 'Inter', var(--font-family-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-background);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  backdrop-filter: blur(10px);
  border-bottom: 0px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
  /*box-shadow: inset 0 -2px 8px rgba(0, 0, 0, 0.432);*/
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-8) 0;
}

.logo-text {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-seed-green);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-32);
}

.nav-link {
  color: var(--color-black);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: green;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: yellowgreen;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  padding-top:75px ;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
    background-repeat: no-repeat;
  background-size: cover;
}

.hero-background {

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
background: linear-gradient(90deg, rgb(3 12 6) 0%, var(--color-bg-1) 90%, var(--color-bg-2) 100%);

  animation: gradientShift 8s ease-in-out infinite;
  background-repeat: no-repeat;
}

@keyframes gradientShift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.05) rotate(1deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.hero-title {
  font-size: clamp(2rem, 20vw, 5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  margin-bottom: var(--space-24);
  color: var(--color-text);
  background-image: url("images/rising_sun.png");
  background-position:top;      /* centers the image */
  background-repeat: no-repeat;     /* prevent tiling */
  background-size:cover;
  
  /* optionally add padding or min-height to show image */
}




.title-line {
  display: block;
  opacity: 0;
  transform: translateX(100px);
  animation: slideInUp 0.8s ease forwards;
  text-shadow: 1px 1px 2px black;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { 
  animation-delay: 0.6s; 
  font-size: 0.7em;
  color: var(--color-text-secondary);
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-medium);
  color: green;
  margin-bottom: var(--space-16);
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.8s;
}

.hero-description {
  font-size: var(--font-size-lg);
  color: 2;
  max-width: 600px;
  margin: 0 auto var(--space-32);
  opacity: 0;
  animation: fadeIn 1s ease forwards 1s;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-16) var(--space-32);
  background:green;
  color:white;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-lg);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.2s;
  box-shadow: 0 4px 15px rgba(var(--color-teal-500-rgb), 0.3);
}

.cta-button:hover {
  background: green;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--color-teal-500-rgb), 0.4);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.cta-button:hover .btn-arrow {
  transform: translateX(4px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-32);
  margin-top: var(--space-32);
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.4s;
}

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

.stat-number {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: green;
}

.stat-label {
  font-size: var(--font-size-sm);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-32);
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Animations */
@keyframes fadeIn {
  to { opacity: 1; }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}

.fade-in-up.animate,
.fade-in-left.animate,
.fade-in-right.animate {
  opacity: 1;
  transform: translate(0);
}

/* About Section */
.about {
  padding: 80px;
  background: #fff;
}

@media (max-width: 768px) {
  .about {
    padding: 40px; /* reduce padding for tablets */
  }
}

@media (max-width: 480px) {
  .about {
    padding: 20px; /* further reduce padding for phones */
  }
}


.section-header {
  text-align: center;
  margin-bottom: var(--space-32);
}

.section-header h2 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-16);
  color: var(--color-black);
}

.section-subtitle {
  font-size: var(--font-size-xl);
  color: var(--color-black);
  max-width: 600px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-32);
  margin-top: var(--space-32);
}

.about-mission h3,
.about-values h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-16);
  color:green;
}

.about-mission p {
  font-size: var(--font-size-lg);
  color: var(--color-black);
  line-height: 1.7;
}

.values-list {
  list-style: none;
  margin-top: var(--space-16);
}

.values-list li {
  padding: var(--space-8) 0;
  color: var(--color-black);
  position: relative;
  padding-left: var(--space-24);
}

.values-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: blue;
  font-weight: bold;
}

.directors-section h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-24);
  color: green;
}

.directors-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}

.director-card {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  padding: var(--space-20);
  background: var(--color-background);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  transition: all 0.3s ease;
}

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

.director-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background:green;
  display: flex;
  align-items: center;
  justify-content: center;
  color:rgb(226, 224, 224);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-xl);
}

.director-info h4 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.director-info p {
  color: var(--color-text-secondary);
}

/* Products Section */
.products {
  padding: var(--space-32) 0;
  background: #ECFFDD;
}

.category-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-16);
  margin-bottom: var(--space-32);
  flex-wrap: wrap;
}

.filter-btn {
  padding: var(--space-8) var(--space-20);
  border: 2px solid var(--color-border);
  background: transparent;
  color: var(--color-black);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: var(--font-weight-medium);
}

.filter-btn:hover,
.filter-btn.active {
  background:green;
  border-color: green;
  color:white;
  transform: translateY(-1px);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(2fr, 1fr));
  gap: var(--space-24);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  padding: var(--space-24);
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}



.product-badge {
  position: absolute;
  top: var(--space-12);
  right: var(--space-12);
  background:green;
  color: var(--color-white);
  padding: var(--space-4) var(--space-12);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
}

.product-header {
  margin-bottom: var(--space-20);
}
.product_image {
    width: 100%;
    /*height: 200px;*/
    display: flex;
    justify-content: center; /* horizontally center image */
    align-items: center;     /* vertically center image */
    margin: 0 auto;          /* center div horizontally in its container */
    position: relative;      /* if needed for further styling */
}

.product_image img {
    width: 100%;
    /*height: 200px;*/
    object-fit: contain;       /* correct property to control image resizing */
}

.product-name {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-black);
  margin-bottom: var(--space-8);
}

.product-type {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-text-secondary);
  padding: var(--space-4) var(--space-12);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}

.product-details {
  space-y: var(--space-16);
}

.harvest-time {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-16);
}

.detail-label {
  font-weight: var(--font-weight-semibold);
  color: green;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  color:#000000b9;
  font-weight: var(--font-weight-medium);
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.feature-text {
  color: var(--color-black);
  line-height: 1.6;
}

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

/* Product card animation delays */
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

/* Filter Animation */
.product-card.hide {
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  pointer-events: none;
}

.product-card.show {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Footer */
.footer {
  background:#ffffff;
  color: var(--color-gray-200);
  padding: var(--space-32) 0 var(--space-24);
  box-shadow: 0 -4px 6px -4px rgba(0, 0, 0, 0.2);
  border-top: 0px solid rgba(255, 255, 255, 0.1);
}



.footer-content {
  max-width: var(--container-lg);
  margin: 0 auto;
}

.footer-main {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-24);
 
}

.footer-brand h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-12);
  color: rgb(48 117 65);
}

.footer-brand p {
  color: var(--color-black);
}

.footer-contact h4 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-16);
  color: rgb(48 117 65);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-label {
  font-size: var(--font-size-sm);
  color: var(--color-black);
  font-weight: var(--font-weight-medium);
}

.contact-value {
  color: var(--color-charcoal-700);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-24);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgb(8 49 49 / 70%);
  font-size: var(--font-size-sm);
}


/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}


@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    .footer-main{
      flex-direction: column;
    }
    .about-grid{
      grid-template-columns: 1fr;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 200px;
        height: 100vh;
        background-color: white;
        padding: 80px 10px 10px 40px;
        flex-direction: column;
        transition: 0.3s ease;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        /*margin: 5px 0;*/
    }

    /* Hamburger Animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    
}

/* Floating Action Buttons */
.fab-container {
    position: fixed;
    bottom: 2rem;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fab {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}

.fab:hover {
    transform: scale(1.1);
}

.fab-whatsapp {
    background-color: #ffffff1c;
}

.fab-facebook {
    background-color: #ffffff1c;
}
.fab-call {
    background-color: #ffffff1c;
}

.fab img {
    width: 30px;
    height: 30px;
}

/* Mobile responsiveness for FAB */
@media screen and (max-width: 768px) {
    .fab-container {
        right: 16px;
        bottom: 16px;
        gap: 12px;
    }

    .fab-button {
        width: 48px;
        height: 48px;
    }

    .fab-button svg {
        width: 20px;
        height: 20px;
    }
}



.unique-about-section {
  background: #F5F1ED;
  padding: 80px;
}
.unique-about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.unique-about-content {
  flex: 1.2 1 0;
}
.unique-about-content h1 {
  color: #374151;
  font-weight: bold;
  font-size: 3rem;
  line-height: 1.1;
}
.unique-about-content p {
  margin-top: 40px;
  color: #63707e;
  font-size: 1.2rem;
  line-height: 1.7;
  text-align: justify;
  max-width: 100% !important;
}
.unique-about-buttons {
  margin-top: 48px;
  display: flex;
  gap: 32px;
}
.unique-btn-filled {
  background: #77be21;
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 32px;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
}
.unique-btn-outline {
  background: #fff;
  color: #77be21;
  border: 3px solid #77be21;
  padding: 14px 40px;
  border-radius: 32px;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
}
.unique-about-image {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.unique-about-image img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #999; /* fallback */
  display: block;
  border-radius: 15px;
}

/* Responsive */
@media (max-width: 1200px) {
  .unique-about-container {
    gap: 24px;
    padding: 48px;
  }
  .unique-about-content h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 900px) {
  .unique-about-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 16px;
  }
  .unique-about-content,
  .unique-about-image {
    max-width: 100%;
  }
  .unique-about-image img {
    max-width: 350px;
  }
}
@media (max-width: 600px) {
  .unique-about-section {
    padding: 20px 8px;
  }
  .unique-about-content h1 {
    font-size: 1.4rem;
  }
  .unique-btn-filled, .unique-btn-outline {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

/*New Footer Css*/
.unique-footer {
  background-color: #2b2f3a;
  color: #969696;
  padding: 48px 60px 24px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.unique-footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 40px;
  flex-wrap: wrap;
}

.unique-footer-subscribe h3,
.unique-footer-about h3,
.unique-footer-navigation h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.unique-footer-subscribe p {
  max-width: 280px;
  margin-bottom: 24px;
  line-height: 1.4;
}

.unique-subscribe-form {
  display: flex;
  max-width: 280px;
  margin-bottom: 24px;
}

.unique-subscribe-form input[type="email"] {
  flex-grow: 1;
  padding: 10px 16px;
  background: #1b1e29;
  border: none;
  border-radius: 40px 0 0 40px;
  color: #ccc;
  font-size: 1rem;
}

.unique-subscribe-form input[type="email"]::placeholder {
  color: #555;
}

.unique-subscribe-form button {
  background: #77be21;
  border: none;
  padding: 10px 24px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0 40px 40px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.unique-subscribe-form button:hover {
  background: #5a921a;
}

.unique-social-icons {
  display: flex;
  gap: 16px;
}

.unique-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1b1e29;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.unique-icon:hover {
  background: #77be21;
  color: #fff;
}

.unique-footer-about p {
  max-width: 280px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.unique-join-now {
  color: #77be21;
  font-weight: 600;
  text-decoration: none;
}

.unique-join-now:hover {
  text-decoration: underline;
}

.unique-footer-navigation {
  flex-shrink: 0;
  min-width: 220px;
}

.unique-footer-nav-columns {
  display: flex;
  gap: 40px;
}

.unique-footer-nav-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.unique-footer-nav-columns ul li {
  margin-bottom: 16px;
}

.unique-footer-nav-columns ul li a {
  color: #969696;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.unique-footer-nav-columns ul li a:hover {
  color: #77be21;
}

.unique-footer-bottom {
  border-top: 1px solid #444;
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 20px;
}

.unique-footer-branding .unique-logo {
  height: 30px;
  filter: drop-shadow(0 0 1px #77be21);
}

.unique-footer-contact {
  color: #c4c4c4;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.unique-footer-contact p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.unique-footer-legal a {
  color: #77be21;
  font-weight: 600;
  margin-left: 24px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.unique-footer-legal a:first-child {
  margin-left: 0;
}

.unique-footer-legal a:hover {
  text-decoration: underline;
}

.unique-scroll-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: transparent;
  border: 2px solid #77be21;
  color: #77be21;
  width: 40px;
  height: 40px;
  font-weight: bold;
  font-size: 1.3rem;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.unique-scroll-top:hover {
  background: #77be21;
  color: #1b1e29;
}

/* Responsive styles */
@media (max-width: 900px) {
  .unique-footer-top {
    flex-direction: column;
  }
  .unique-footer-navigation {
    min-width: 100%;
  }
  .unique-footer-nav-columns {
    justify-content: space-between;
  }
  .unique-footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}


/*Features*/

.unique-supplychain-section {
  background: #f7f8f4;
  padding: 60px 0 40px;
  text-align: center;
}

.unique-supplychain-title {
  letter-spacing: 0.25em;
  color: #125d49;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 48px;
}

.unique-supplychain-features {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.unique-supplychain-feature {
  flex: 1 1 260px;
  max-width: 410px;
  min-width: 260px;
  margin: 0 12px;
  text-align: center;
}

.unique-supplychain-icon {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e8f2e8;
  border-radius: 50%;
}

.unique-supplychain-icon img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.unique-supplychain-heading {
  margin: 22px 0 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #16634e;
  letter-spacing: 0.01em;
}

.unique-supplychain-desc {
  color: #225c4b;
  font-size: 1.12rem;
  line-height: 1.5;
  margin-bottom: 18px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .unique-supplychain-features {
    gap: 32px;
  }
  .unique-supplychain-feature {
    max-width: 330px;
  }
}
@media (max-width: 800px) {
  .unique-supplychain-features {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .unique-supplychain-feature {
    min-width: 0;
    width: 95%;
    max-width: 450px;
  }
  .unique-supplychain-section {
    padding: 40px 0 30px;
  }
}
@media (max-width: 500px) {
  .unique-supplychain-section {
    padding: 18px 0 10px;
  }
  .unique-supplychain-title {
    font-size: 0.95rem;
    margin-bottom: 22px;
    padding: 0 10px;
  }
  .unique-supplychain-feature {
    padding: 0 6px;
  }
  .unique-supplychain-icon {
    width: 95px;
    height: 95px;
  }
  .unique-supplychain-icon img {
    width: 60px;
    height: 60px;
  }
  .unique-supplychain-heading {
    font-size: 1rem;
  }
  .unique-supplychain-desc {
    font-size: 0.98rem;
  }
}


/*Product Grid*/

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns by default */
  gap: var(--space-24);
}

/* 2 columns on phones (max width 600px) */
@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*New Product*/
.unique-products {
  background: #f4fbed;
  padding: 40px 0 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #1e4620;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}
.section-subtitle {
  text-align: center;
  font-size: 1.06rem;
  color: #4a6a30;
  margin-bottom: 28px;
}

.category-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 24px;
  border: 2px solid #4a6a30;
  background: transparent;
  color: #4a6a30;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
  background: #2c5d1f;
  color: white;
  border-color: #2c5d1f;
  transform: translateY(-1px);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.product-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgb(210 236 182 / 38%);
  padding: 20px;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: start;
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  box-shadow: 0px 8px 25px rgb(146 192 18 / 67%);
}

.product-header {
  margin-bottom: 12px;
}

.product-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #133c00;
}

.product-type {
  font-size: 0.9rem;
  color: #a3b785;
  padding: 3px 12px;
  border-radius: 6px;
  background: #d7e6b6;
  display: inline-block;
  user-select:none;
}

.product_image {
  width: 100%;
  height: 220px;
  margin-bottom: 18px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product_image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

.product-details {
  width: 100%;
  font-size: 0.95rem;
  color: #3a531a;
}

.product-details .detail-label {
  font-weight: 700;
  color: #53801a;
  text-transform: uppercase;
  margin-top: 12px;
}

.product-details .feature-text {
  margin-top: 4px;
  line-height: 1.4;
}

.product-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background-color: #2c5d1f;
  color: white;
  padding: 6px 16px;
  font-weight: 700;
  border-radius: 100px;
  user-select:none;
  pointer-events:none;
}

/* Responsive */
@media(max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 730px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .product_image {
    height: 180px;
  }
}



/*video section*/

.green-highlight-section {
  background: #22893b;
  color: #eafdec;
  padding: 64px 0;
}
.green-highlight-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  max-width: 1100px;
  margin: 0 auto;
}
.green-highlight-info h2 {
  color: #fff;
  font-size: 2.1rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 26px;
}
.green-highlight-btn {
  background: #77d673;
  color: #22893b;
  border: none;
  border-radius: 6px;
  padding: 14px 36px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 32px;
  cursor: pointer;
  box-shadow: 0 2px 8px #77d67340;
  transition: background 0.2s;
}
.green-highlight-btn:hover {
  background: #50b950;
  color: #fff;
}
.green-highlight-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.green-highlight-info li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.green-highlight-num {
  width: 34px;
  height: 34px;
  /*background: #b1f3cd;*/
  color: #fff;
  font-weight: bold;
  font-size: 1.3rem;
  border-radius: 50%;
  text-align: center;
  /*line-height: 34px;*/
  /*box-shadow: 0 1px 7px #77d67336;*/
  margin-right: 5px;
}
.green-highlight-info strong {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
}
.green-highlight-info small {
  color: #c3f1c3;
  font-size: 0.96rem;
}
.green-highlight-media {
  flex: 1.3;
  display: flex;
  justify-content: center;
}
.green-highlight-video {
  position: relative;
  width: 330px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background: #1b6230;
  box-shadow: 0 4px 18px #77d67345;
}
.green-highlight-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.green-highlight-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  cursor: pointer;
  z-index: 2;
  transition: box-shadow 0.3s;
  box-shadow: 0 2px 12px #77d67390;
}
.green-highlight-play:hover {
  box-shadow: 0 4px 22px #77d67390;
}
@media (max-width: 900px) {
  .green-highlight-inner { flex-direction: column; gap: 32px }
  .green-highlight-video { width: 98vw; max-width: 350px; }
}
@media (max-width: 500px) {
  .green-highlight-section { padding: 24px 24px;}
  .green-highlight-info h2 { font-size: 1.12rem;}
  .green-highlight-btn { padding: 7px 16px; font-size: 0.91rem;}
  .green-highlight-num { width: 24px; height: 24px; font-size: 1rem; line-height: 24px;}
  .green-highlight-video { height: 95px;}
}

/*Slier*/
body {
  background: #999999;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

.slider-container {
  position: relative;
  max-width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.7s ease;
  overflow: hidden;
}

/* Optional: background overlay for better text visibility */
.slider-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.36);
  z-index: 0;
}

.slider {
  width: 60vw;
  max-width: 950px;
  height: 370px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.slide {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transition: opacity 0.7s ease;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px;
  box-sizing: border-box;
  display: flex;
  z-index: 2;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
  z-index: 3;
}

h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

p {
  color: #eaeaea;
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 400px;
}

.slider-btn {
  padding: 10px 25px;
  background: #fff;
  color: #77be21;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 32px;
  text-decoration: none;
  transition: background 0.2s;
}

.slider-btn:hover {
  background: #77be21;
  color: #fff;
}

.slider-arrow {
  position: absolute;
  background: #979797;
  color: #fff;
  font-size: 2rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  border: none;
}

.slider-arrow-left {
  left: 10px;
}

.slider-arrow-right {
  right: 10px;
}

.slider-arrow:hover {
  background: #888;
}

.slider-container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0) 75%
  );
}


@media (max-width: 900px) {
  .slider {
    width: 90vw;
    height: 350px;
    padding: 0;
  }
  .slide {
    padding: 32px;
  }
  h1 {
    font-size: 2rem;
  }
  
  
  
.slider-btn {
  padding: 8px 30px;
  font-size: 16px;

}
}



/*COunter*/
.counter-section {
    background-color: #00000085;
  background-image: url('images/counter-bg.jpg'); /* set your image path */
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  padding: 80px 20px;
  color: #ffe600;
  font-family: 'Poppins', sans-serif;
  background-blend-mode: multiply;
}

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

.counter-number {
  font-size: 4.5rem;
  font-weight: 900;
  color: #fff;
}

.counter-label {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 6px;
  color: #ffe600;
}

@media (max-width: 768px) {
  .counter-section {
    flex-direction: column;
    gap: 40px;
  }
}



/*New Prods*/
.myss-products-section {
  background: #f7f7fa;
  padding: 60px 0;
}

.myss-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.myss-section-header {
  text-align: center;
  margin-bottom: 28px;
}
.myss-section-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1c1c1c;
  margin: 0;
}
.myss-section-subtitle {
  color: #a1a1a1;
  font-size: 1.08rem;
  margin-top: 12px;
  text-align: center;
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}


.myss-category-filters {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 22px 0 40px 0;
  flex-wrap: wrap;
}

.myss-filter-btn {
  border: none;
  background: #F0FFDD;
  color: #77be21;
  border-radius: 22px;
  font-weight: 600;
  padding: 11px 26px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s;
}

.myss-filter-btn.myss-active,
.myss-filter-btn:hover {
  background: #77be21;
  color: #fff;
}

/* Responsive: Horizontal scroll for filter buttons */
@media (max-width: 700px) {
  .myss-category-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 8px;
    padding-bottom: 4px;
    margin-left: -10px;
    margin-right: -10px;
    scrollbar-width: none; /* Firefox */
  }
  .myss-category-filters::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  .myss-filter-btn {
    min-width: 125px;
    flex: 0 0 auto;
    font-size: 1rem;
  }
}

.myss-products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 25px;
}

.myss-product-card {
  background: #fff;
  border-radius: 16px;
  width: 280px;
  min-width: 260px;
  max-width: 100%;
  box-shadow: 0 8px 32px rgba(40,44,63,.055);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1.5px solid #f1efe9;
  transition: box-shadow .28s;
}

.myss-product-card:hover {
  box-shadow: 0 12px 32px 0 rgba(0,0,0,0.11);
}

.myss-product-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.myss-product-info {
  padding: 22px 19px 19px 19px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.myss-product-name {
  font-size: 1.23rem;
  font-weight: 700;
  margin: 0;
  color: #1c1c1c;
}
.myss-product-type {
  color: #947c55;
  font-size: 0.97rem;
  font-weight: 600;
}
.myss-product-harvest {
  color: #6D6B6B;
  font-size: 0.93rem;
}
.myss-product-description {
  font-size: 0.97rem;
  color: #5c5c5c;
  margin: 4px 0 15px;
  min-height: 38px;
}
.myss-product-action {
  display: inline-block;
  padding: 11px 12px 10px 12px;
  border-radius: 24px;
  background: #77be21;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background 0.18s;
  border: none;
  cursor: pointer;
}
.myss-product-action:hover {
  background: #584117;
  color: #fff;
}

@media (max-width: 1200px) {
  .myss-products-grid {
    gap: 16px;
  }
  .myss-product-card {
    width: 47%;
    min-width: unset;
    max-width: unset;
  }
}

@media (max-width: 820px) {
  .myss-products-grid {
    gap: 12px;
  }
  .myss-product-card {
    width: 97%;
  }
}




/*new Nav*/
body { background: #989898; } /* Ya jo bhi hero section ka color ho */

.rounded-navbar {
  position: absolute;
  left: 0;
  top: 36px;
  width: 100vw;
  display: flex;
  justify-content: center;
  background: transparent;
  z-index: 20;
 /* lets only inner nav be interactive */
}

.rounded-navbar-inner {
    background: #fff;
  /*border-radius: 24px;*/
  box-shadow: 0 6px 28px rgba(40,40,40,0.1);
  min-width: 350px;
  max-width: 1200px;
  width: 80vw;
  min-height: 85px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 0 36px;
  pointer-events: auto;
   position: sticky;
  top: 0;
}

.rounded-navbar-logo {
  display: flex; align-items: center; gap: 13px; text-decoration: none;
}
.rounded-navbar-logo img { height: 48px; width: auto; }
.rounded-navbar-brand { font-size: 2rem; font-weight: 700; color: #181f18; letter-spacing:1px; }

.rounded-navbar-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0; padding: 0; font-size: 1.07rem; align-items: center;
}
.rounded-navbar-menu .nav-link { color: #2d3448; text-decoration: none; font-weight:500; transition: color .18s; }
.rounded-navbar-menu .nav-link.active,
.rounded-navbar-menu .nav-link:hover { color: #59af1b; }

.rounded-navbar-burger {
  display: none; background: none; border: none; flex-direction: column; gap: 6px; width: 40px; height: 40px; cursor: pointer;
}
.rounded-navbar-burger span { display: block; background: #2d2c2c; height: 3px; width: 26px; border-radius: 2px; }

.rounded-navbar-drawer, .drawer-overlay { display: none; }

/* Responsive: App Drawer */
@media (max-width: 900px) {
  .rounded-navbar-menu { display: none; }
  .rounded-navbar-burger { display: flex; }
  /*.rounded-navbar-inner { padding: 0 10px; border-radius: 16px; }*/
  .rounded-navbar-drawer {
    display: flex; flex-direction: column; position: fixed; top: 0; left: 0;
    z-index: 1300; width: 84vw; max-width: 330px; height: 100vh;
    background: #fff; box-shadow: 7px 0 26px rgba(0,0,0,.12);
    transform: translateX(-100%); transition: transform .22s;
  }
  .rounded-navbar-drawer.open { transform: translateX(0); }
  .drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 18px 12px 16px; border-bottom: 1.5px solid #f2f2f2; }
  .drawer-logo { display: flex; gap: 8px; align-items: center; color: #1a1a1a; font-size: 1.18rem; font-weight:700; text-decoration:none; }
  .drawer-logo img { height: 38px; width: auto; }
  .drawer-close { background: none; border: none; font-size: 2rem; color: #444; cursor: pointer; line-height: 1;}
  .rounded-navbar-drawer ul { list-style: none; margin: 0; padding: 24px 19px 0 19px; display: flex; flex-direction: column; gap: 17px; }
  .rounded-navbar-drawer .nav-link { font-size: 1.09rem; color: #222b3c; text-decoration:none; font-weight:600; }
  .rounded-navbar-drawer .nav-link.active, .rounded-navbar-drawer .nav-link:hover { color: #59af1b; }
  .drawer-overlay { display: block; position: fixed; z-index: 1200; inset: 0; background: rgba(38,38,38,0.13); opacity: 0; pointer-events: none; transition: opacity .14s; }
  .drawer-overlay.open { opacity: 1; pointer-events: auto;}
}

@media (max-width: 767px) {
  #cta-pro {
    padding-top: 150px !important;
  }
}