/* Tailwind CSS v3.4.0 | MIT License | https://tailwindcss.com */
/*! modern-normalize v2.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/* Document
   ========================================================================== */

/**
 * Use a better box model (opinionated).
 */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
 * Use a more readable tab size (opinionated).
 */

:root {
  -moz-tab-size: 4;
  tab-size: 4;
}

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
 */

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
}

/**
 * 1. Add the correct height in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  height: 0;
  color: inherit;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Add the correct text decoration in Chrome, Edge, and Safari.
 */

abbr[title] {
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Edge and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Add the correct display in Chrome and Safari.
 */

audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome and Firefox.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Chrome and Safari.
 */

summary {
  display: list-item;
}

/* Tailwind Base Styles */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom Styles for Organiq Website */
:root {
  --primary-color: #004735;
  --secondary-color: #e6f4ef;
  --accent-color: #fbbf24;
  --text-dark: #1f2937;
  --text-light: #6b7280;
}

/* Typography */
.organiq-heading {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-color);
}

.organiq-motto {
  font-family: 'Playfair Display', serif !important;
  font-weight: 500;
}

body {
  font-family: 'Merriweather', Georgia, serif;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Layout Utilities */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* Grid System */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start;
}

/* Spacing */
.p-4 {
  padding: 1rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Sizing */
.w-full {
  width: 100%;
}

.h-16 {
  height: 4rem;
}

.h-20 {
  height: 5rem;
}

.h-24 {
  height: 6rem;
}

.h-48 {
  height: 12rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-xs {
  max-width: 20rem;
}

.max-w-2xl {
  max-width: 42rem;
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.font-extrabold {
  font-weight: 800;
}

/* Colors */
.bg-white {
  background-color: #ffffff;
}

.bg-black {
  background-color: #000000;
}

.text-white {
  color: #ffffff;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-700 {
  color: #374151;
}

.text-gray-800 {
  color: #1f2937;
}

.text-gray-200 {
  color: #e5e7eb;
}

.text-gray-300 {
  color: #d1d5db;
}

.text-green-600 {
  color: #059669;
}

.text-red-500 {
  color: #ef4444;
}

.text-yellow-400 {
  color: #fbbf24;
}

.text-yellow-600 {
  color: #d97706;
}

/* Background Colors */
.bg-\[\#004735\] {
  background-color: #004735;
}

.bg-\[\#e6f4ef\] {
  background-color: #e6f4ef;
}

.bg-yellow-500 {
  background-color: #fbbf24;
}

.bg-yellow-600 {
  background-color: #d97706;
}

.bg-green-400 {
  background-color: #4ade80;
}

/* Borders */
.border {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-t {
  border-top-width: 1px;
}

.border-gray-700 {
  border-color: #374151;
}

.border-green-200 {
  border-color: #bbf7d0;
}

.border-yellow-200 {
  border-color: #fef3c7;
}

.border-\[\#004735\] {
  border-color: #004735;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

/* Shadows */
.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Position */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* Z-index */
.z-50 {
  z-index: 50;
}

.z-10 {
  z-index: 10;
}

.z-1000 {
  z-index: 1000;
}

/* Display */
.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

/* Object Fit */
.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

/* Min Height */
.min-h-\[350px\] {
  min-height: 350px;
}

.min-h-\[450px\] {
  min-height: 450px;
}

/* Max Height */
.max-h-\[250px\] {
  max-height: 250px;
}

.max-h-\[400px\] {
  max-height: 400px;
}

/* Hover Effects */
.hover\:text-yellow-600:hover {
  color: #d97706;
}

.hover\:bg-yellow-600:hover {
  background-color: #d97706;
}

.hover\:text-yellow-400:hover {
  color: #fbbf24;
}

.hover\:from-\[\#004735\]:hover {
  background-image: linear-gradient(to right, #004735, var(--tw-gradient-to));
}

.hover\:to-green-400:hover {
  background-image: linear-gradient(to right, var(--tw-gradient-from), #4ade80);
}

.hover\:from-yellow-600:hover {
  background-image: linear-gradient(to right, #d97706, var(--tw-gradient-from));
}

.hover\:to-yellow-400:hover {
  background-image: linear-gradient(to right, var(--tw-gradient-from), #fbbf24);
}

/* Transitions */
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Gradients */
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-green-400 {
  --tw-gradient-from: #4ade80;
  --tw-gradient-to: rgba(74, 222, 128, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-\[\#004735\] {
  --tw-gradient-to: #004735;
}

.from-yellow-400 {
  --tw-gradient-from: #fbbf24;
  --tw-gradient-to: rgba(251, 191, 36, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-yellow-600 {
  --tw-gradient-to: #d97706;
}

/* Responsive Utilities */
@media (min-width: 640px) {
  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  
  .sm\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  
  .sm\:min-h-\[450px\] {
    min-height: 450px;
  }
  
  .sm\:max-h-\[400px\] {
    max-height: 400px;
  }
  
  .sm\:h-\[400px\] {
    height: 400px;
  }
  
  .sm\:flex {
    display: flex;
  }
  
  .sm\:hidden {
    display: none;
  }
  
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .md\:items-end {
    align-items: flex-end;
  }
  
  .md\:items-start {
    align-items: flex-start;
  }
  
  .md\:w-auto {
    width: auto;
  }
  
  .md\:justify-center {
    justify-content: center;
  }
}

/* Swiper Styles */
.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-wrapper {
  display: flex;
  transition-property: transform;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Custom Button Styles */
.btn-primary {
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #003d2a;
  transform: translateY(-1px);
}

/* Mobile Menu Styles */
#mobile-menu {
  transition: opacity 0.3s ease;
}

#mobile-menu.hidden {
  opacity: 0;
  pointer-events: none;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  background: #25D366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

/* Drop Shadow */
.drop-shadow-lg {
  filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
}

/* Tracking */
.tracking-wide {
  letter-spacing: 0.025em;
}

/* Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Focus States */
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

/* Disabled States */
.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}

/* Space Utilities */
.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

/* Gap Utilities */
.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

/* Width Utilities */
.w-16 {
  width: 4rem;
}

.w-20 {
  width: 5rem;
}

.w-24 {
  width: 6rem;
}

.w-max {
  width: max-content;
}

.w-2\/3 {
  width: 66.666667%;
}

/* Height Utilities */
.h-10 {
  height: 2.5rem;
}

.h-20 {
  height: 5rem;
}

.h-48 {
  height: 12rem;
}

.h-\[250px\] {
  height: 250px;
}

.h-\[400px\] {
  height: 400px;
}

/* Text Size Utilities */
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

/* Font Weight Utilities */
.font-medium {
  font-weight: 500;
}

/* Opacity Utilities */
.opacity-40 {
  opacity: 0.4;
}

.opacity-50 {
  opacity: 0.5;
}

/* Transform Utilities */
.scale-1 {
  transform: scale(1);
}

.scale-110 {
  transform: scale(1.1);
}

/* Cursor Utilities */
.cursor-not-allowed {
  cursor: not-allowed;
}

/* List Style */
.list-none {
  list-style-type: none;
}

/* SVG Utilities */
.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-7 {
  width: 1.75rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-7 {
  height: 1.75rem;
}

/* Margin Right */
.mr-3 {
  margin-right: 0.75rem;
}

/* Margin Top */
.mt-1 {
  margin-top: 0.25rem;
}

/* Padding Utilities */
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Background Opacity */
.bg-opacity-40 {
  --tw-bg-opacity: 0.4;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

.bg-opacity-50 {
  --tw-bg-opacity: 0.5;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

/* Border Radius */
.rounded-full {
  border-radius: 9999px;
}

/* Box Shadow */
.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Text Decoration */
.underline {
  text-decoration: underline;
}

/* Hover Transitions */
.hover\:text-yellow-400:hover {
  color: #fbbf24;
}

.hover\:text-yellow-600:hover {
  color: #d97706;
}

.hover\:bg-yellow-600:hover {
  background-color: #d97706;
}

/* Focus States */
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

/* Disabled States */
.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}

/* Responsive Display */
@media (max-width: 639px) {
  .sm\:hidden {
    display: none;
  }
}

@media (min-width: 640px) {
  .sm\:block {
    display: block;
  }
  
  .sm\:flex {
    display: flex;
  }
}

/* Custom Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Product Card Styles */
.product-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.footer-section {
  background-color: var(--primary-color);
  color: white;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.footer-border {
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 1rem;
}

/* Header Styles */
.header-sticky {
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 50;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Navigation Styles */
.nav-link {
  color: #374151;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-color);
}

/* Mobile Menu Styles */
.mobile-menu-drawer {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 50;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 66.666667%;
  max-width: 20rem;
  background-color: white;
  height: 100%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1.5rem;
}

/* Button Styles */
.btn-call {
  background: linear-gradient(to right, #4ade80, var(--primary-color));
  border: 2px solid #bbf7d0;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-call:hover {
  background: linear-gradient(to right, var(--primary-color), #4ade80);
  transform: translateY(-2px);
}

.btn-email {
  background: linear-gradient(to right, #fbbf24, #d97706);
  border: 2px solid #fef3c7;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-email:hover {
  background: linear-gradient(to right, #d97706, #fbbf24);
  transform: translateY(-2px);
}

/* QR Code Styles */
.qr-container {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-image {
  height: 5rem;
  width: 5rem;
  object-fit: contain;
  background-color: white;
  border-radius: 0.5rem;
  padding: 0.25rem;
}

.qr-text {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  color: #d1d5db;
}

/* WhatsApp Button Styles */
.whatsapp-fixed {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  background: #25D366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-fixed:hover {
  transform: scale(1.1);
}

/* Responsive Utilities */
@media (max-width: 767px) {
  .mobile-full-width {
    width: 100%;
    justify-content: center;
  }
  
  .mobile-center {
    align-items: center;
  }
}

@media (min-width: 768px) {
  .desktop-end {
    align-items: flex-end;
  }
  
  .desktop-auto-width {
    width: auto;
  }
}

/* Missing Responsive Utility Classes */
.hidden {
  display: none;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

/* Small screens (sm) */
@media (min-width: 640px) {
  .sm\\:flex {
    display: flex;
  }
  
  .sm\\:hidden {
    display: none;
  }
  
  .sm\\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .sm\\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .sm\\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  
  .sm\\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  
  .sm\\:min-h-\\[450px\\] {
    min-height: 450px;
  }
  
  .sm\\:max-h-\\[400px\\] {
    max-height: 400px;
  }
  
  .sm\\:max-h-\\[250px\\] {
    max-height: 250px;
  }
}

/* Medium screens (md) */
@media (min-width: 768px) {
  .md\\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .md\\:items-end {
    align-items: flex-end;
  }
  
  .md\\:items-start {
    align-items: flex-start;
  }
  
  .md\\:justify-center {
    justify-content: center;
  }
  
  .md\\:w-auto {
    width: auto;
  }
}

/* Large screens (lg) */
@media (min-width: 1024px) {
  .lg\\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Extra large screens (xl) */
@media (min-width: 1280px) {
  .xl\\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Additional missing utility classes */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}
