/* ===========================
   Global Styles & Reset
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #faf7f2;
  color: #5a4a3a;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* ===========================
   Color Palette - Modern & Cohesive
   =========================== */
:root {
  /* Primary Brand Colors - Earth Tones & Natural */
  --color-primary: #8b6f47;        /* Warm Brown */
  --color-primary-dark: #6b5344;   /* Deep Brown */
  --color-primary-light: #a89968;  /* Light Brown */
  
  /* Secondary Brand Colors - Natural Green */
  --color-secondary: #16a34a;      /* Fresh Green */
  --color-secondary-dark: #15803d; /* Deep Green */
  --color-secondary-light: #4ade80; /* Light Green */
  
  /* Accent Colors - Complementary */
  --color-accent: #d97706;         /* Warm Amber */
  --color-accent-light: #fbbf24;   /* Light Amber */
  
  /* Neutral Colors - Harmonious */
  --color-neutral-dark: #5a4a3a;   /* Dark Gray-Brown */
  --color-neutral-light: #f5f1eb;  /* Light Cream */
  --color-neutral-bg: #faf7f2;     /* Background Cream */
  --color-neutral-border: #e8dcc8; /* Border Tan */
  
  /* Text Colors */
  --color-text-primary: #5a4a3a;   /* Dark */
  --color-text-secondary: #9a8a7a; /* Medium */
  --color-text-light: #c9bfb5;     /* Light */
  
  /* Status Colors */
  --color-success: #16a34a;
  --color-error: #dc2626;
  --color-warning: #f59e0b;
  --color-info: #0ea5e9;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

/* Mobile Typography */
h1 { 
  font-size: 1.75rem; 
  line-height: 2.25rem; 
}

h2 { 
  font-size: 1.5rem; 
  line-height: 2rem; 
}

h3 { 
  font-size: 1.25rem; 
  line-height: 1.75rem; 
}

h4 { 
  font-size: 1.125rem; 
  line-height: 1.5rem; 
}

h5 { 
  font-size: 1rem; 
  line-height: 1.5rem; 
}

h6 { 
  font-size: 0.95rem; 
  line-height: 1.4rem; 
}

/* Tablet Typography */
@media (min-width: 768px) {
  h1 { font-size: 2.5rem; line-height: 3rem; }
  h2 { font-size: 2rem; line-height: 2.5rem; }
  h3 { font-size: 1.5rem; line-height: 2rem; }
  h4 { font-size: 1.25rem; line-height: 1.75rem; }
  h5 { font-size: 1.125rem; line-height: 1.75rem; }
  h6 { font-size: 1rem; line-height: 1.5rem; }
}

/* Desktop Typography */
@media (min-width: 1024px) {
  h1 { font-size: 3rem; line-height: 3.5rem; }
  h2 { font-size: 2.25rem; line-height: 2.75rem; }
  h3 { font-size: 1.875rem; line-height: 2.25rem; }
  h4 { font-size: 1.5rem; line-height: 2rem; }
  h5 { font-size: 1.25rem; line-height: 1.75rem; }
  h6 { font-size: 1.125rem; line-height: 1.75rem; }
}

p {
  margin-bottom: 1rem;
}

@media (max-width: 639px) {
  p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* ===========================
   Container & Layout
   =========================== */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 100%;
}

/* Mobile first - max 100% width */
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

/* Tablet breakpoint */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Large screens */
@media (min-width: 1024px) {
  .container {
    max-width: 960px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Extra large screens */
@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
  }
}

/* Full HD and beyond */
@media (min-width: 1920px) {
  .container {
    max-width: 1400px;
  }
}

/* Flexbox utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Padding utilities */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

/* Mobile-specific padding reductions */
@media (max-width: 639px) {
  .p-8 { padding: 1.5rem; }
  .py-12 { padding-top: 2rem; padding-bottom: 2rem; }
  .py-16 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .px-8 { padding-left: 1rem; padding-right: 1rem; }
}

/* Margin utilities */
.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; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===========================
   Header & Navigation
   =========================== */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 12px rgba(107, 83, 68, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  animation: slideInDown 0.5s ease;
  transition: all 0.3s ease;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 639px) {
  nav {
    padding: 0.75rem;
  }
}

@media (min-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  nav {
    padding: 1.5rem 2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background: white;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(139, 111, 71, 0.15);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: fit-content;
}

.site-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #16a34a;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.logo img {
  height: 45px;
  width: 45px;
  object-fit: contain;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(139, 111, 71, 0.1));
  transition: all 0.3s ease;
}

@media (max-width: 639px) {
  .logo {
    width: 45px;
    height: 45px;
  }
  
  .logo img {
    height: 40px;
    width: 40px;
  }
  
  .site-name {
    font-size: 1.1rem;
  }
}

@media (min-width: 1024px) {
  .logo {
    width: 55px;
    height: 55px;
  }
  
  .logo img {
    height: 50px;
    width: 50px;
  }
  
  .site-name {
    font-size: 1.4rem;
  }
}

.logo:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(139, 111, 71, 0.2);
}

.logo-container:hover .site-name {
  color: #15803d;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  background: none;
  border: none;
  color: #7a6b5d;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0.5rem 0;
  position: relative;
  font-size: 0.95rem;
}

@media (min-width: 1024px) {
  .nav-link {
    font-size: 1rem;
  }
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-mobile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .nav-mobile {
    display: none;
  }
}

.cart-button,
.lang-button,
.menu-button {
  background: none;
  border: 1px solid transparent;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease;
}

.cart-button:hover,
.menu-button:hover {
  background-color: #f5f1eb;
}

.lang-button {
  border: 1px solid #8b6f47;
  color: #8b6f47;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  gap: 0.5rem;
}

.lang-button:hover {
  background-color: #f5f1eb;
}

.cart-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background-color: #8b6f47;
  color: white;
  font-size: 0.75rem;
  border-radius: 9999px;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-bottom: 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  max-height: 500px;
}

.mobile-menu-link {
  background: none;
  border: none;
  text-align: left;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #7a6b5d;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  background-color: #f5f1eb;
  color: #8b6f47;
  font-weight: 500;
}

/* ===========================
   Main Content
   =========================== */
main {
  flex: 1;
  min-height: calc(100vh - 200px);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  background: linear-gradient(135deg, #8b6f47 0%, #6b5344 100%);
  color: white;
  padding: 2.5rem 1rem;
  text-align: center;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.8s ease;
}

@media (min-width: 640px) {
  .hero {
    padding: 4rem 1.5rem;
    min-height: 420px;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 5rem 2rem;
    min-height: 480px;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 6rem 2rem;
    min-height: 550px;
  }
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  animation: slideInDown 0.6s ease 0.2s backwards;
  color: #ffffff;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
  animation: slideInUp 0.6s ease 0.4s backwards;
  color: #e8dcc8;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-description {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
  opacity: 0.95;
  animation: slideInUp 0.6s ease 0.5s backwards;
  color: #f5f1eb;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.125rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  animation: slideInUp 0.6s ease 0.6s backwards;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-buttons {
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
    gap: 1rem;
    width: auto;
  }
}

/* ===========================
   Buttons
   =========================== */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  animation: fadeIn 0.6s ease;
  min-height: 44px;
  min-width: 44px;
}

@media (max-width: 639px) {
  .btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.25rem;
  }
}

@media (min-width: 768px) {
  .btn {
    width: auto;
  }
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(139, 111, 71, 0.4);
  animation: none;
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 12px rgba(139, 111, 71, 0.3);
}

.btn-secondary {
  background-color: white;
  color: #8b6f47;
  border: 2px solid #8b6f47;
}

.btn-secondary:hover {
  background-color: #f5f1eb;
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  border: 1px solid transparent;
  color: #7a6b5d;
}

.btn-ghost:hover {
  background-color: #f5f1eb;
}

.btn-outline {
  border: 1px solid #d4cbc2;
  background-color: transparent;
  color: #7a6b5d;
}

.btn-outline:hover {
  background-color: #f9f7f4;
  border-color: #9a8a7a;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
}

/* ===========================
   Cards
   =========================== */
.card {
  border: 1px solid #e8dcc8;
  border-radius: 0.5rem;
  padding: 1rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: slideInUp 0.5s ease 0.1s backwards;
  background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 111, 71, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

@media (min-width: 768px) {
  .card {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .card {
    padding: 1.75rem;
  }
}

.card:hover {
  box-shadow: 0 20px 40px rgba(107, 83, 68, 0.12), 
              0 0 30px rgba(168, 153, 104, 0.08);
  transform: translateY(-10px);
  border-color: var(--color-primary);
}

.card:hover::before {
  opacity: 1;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .card-image {
    height: 220px;
  }
}

@media (min-width: 1024px) {
  .card-image {
    height: 250px;
  }
}

.card:hover .card-image {
  transform: scale(1.05);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #5a4a3a;
}

@media (min-width: 768px) {
  .card-title {
    font-size: 1.25rem;
  }
}

.card-description {
  color: #9a8a7a;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .card-description {
    font-size: 0.95rem;
  }
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===========================
   Grid Layouts
   =========================== */
.grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .grid {
    gap: 1.5rem;
  }
}

.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 639px) {
  .grid-cols-2 { grid-template-columns: 1fr; }
  .grid-cols-3 { grid-template-columns: 1fr; }
  .grid-cols-4 { grid-template-columns: 1fr; }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .grid-cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ===========================
   Forms
   =========================== */
.form-group {
  margin-bottom: 1.5rem;
  animation: slideInUp 0.5s ease;
}

@media (max-width: 639px) {
  .form-group {
    margin-bottom: 1.25rem;
  }
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #5a4a3a;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .form-label {
    font-size: 1rem;
  }
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #d4cbc2;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: linear-gradient(135deg, #faf7f2 0%, #ffffff 100%);
  color: #5a4a3a;
  min-height: 44px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

@media (max-width: 639px) {
  .form-input,
  .form-textarea,
  .form-select {
    font-size: 16px;
  }
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1), inset 0 1px 3px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffffff 0%, #f0fef0 100%);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===========================
   Contact Form - Responsive Design
   =========================== */

/* Contact Section Container */
.contact-section {
  background-color: #ffffff;
}

.contact-content {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-content {
    gap: 3rem;
  }
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-wrapper h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #5a4a3a;
}

@media (min-width: 768px) {
  .contact-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-form-wrapper h2 {
    font-size: 1.75rem;
  }
}

/* Contact Form */
#contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (max-width: 639px) {
  #contact-form {
    gap: 1rem;
  }
}

/* Form Input Responsive Styling */
#contact-form .form-input,
#contact-form .form-textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid #d4cbc2;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: #faf7f2;
  color: #5a4a3a;
}

@media (max-width: 639px) {
  #contact-form .form-input,
  #contact-form .form-textarea {
    padding: 0.875rem;
    font-size: 16px;
    border-radius: 0.375rem;
  }
}

#contact-form .form-input:focus,
#contact-form .form-textarea:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
  background-color: #ffffff;
}

#contact-form .form-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #5a4a3a;
  margin-bottom: 0.5rem;
  display: block;
}

@media (min-width: 768px) {
  #contact-form .form-label {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }
}

#contact-form .form-textarea {
  min-height: 120px;
  resize: vertical;
}

@media (max-width: 639px) {
  #contact-form .form-textarea {
    min-height: 100px;
  }
}

/* Contact Form Submit Button */
#contact-form .btn {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
  padding: 0.875rem 1.5rem;
}

@media (min-width: 768px) {
  #contact-form .btn {
    padding: 1rem 2rem;
  }
}

#contact-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Contact Info Section */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-wrapper h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #5a4a3a;
}

@media (min-width: 768px) {
  .contact-info-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-info-wrapper h2 {
    font-size: 1.75rem;
  }
}

/* Contact Info Cards */
.contact-info-card {
  background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
  border: 2px solid #e8dcc8;
  border-radius: 0.5rem;
  padding: 1.25rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(107, 83, 68, 0.08);
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(22, 163, 74, 0.1), transparent);
  transition: left 0.6s ease;
}

@media (min-width: 768px) {
  .contact-info-card {
    padding: 1.5rem;
  }
}

.contact-info-card:hover::before {
  left: 100%;
}

.contact-info-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #5a4a3a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}

.contact-info-card p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 768px) {
  .contact-info-card p {
    font-size: 1rem;
  }
}

.contact-info-card:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.15), 
              0 0 20px rgba(22, 163, 74, 0.08);
  transform: translateY(-4px);
  background: linear-gradient(135deg, #ffffff 0%, #f0fef0 100%);
}

/* Export Destinations List */
.export-destinations-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.export-destinations-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: #6b7280;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .export-destinations-list li {
    font-size: 1rem;
    padding: 0.6rem 0;
  }
}

/* Contact Form Two-Column Layout */
@media (min-width: 768px) {
  .contact-form-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .contact-form-two-col .form-group {
    grid-column: span 1;
  }

  .contact-form-two-col .form-group.full-width {
    grid-column: 1 / -1;
  }
}

/* Hero Section for Contact Page */
.contact-hero {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: white;
  padding: 2.5rem 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .contact-hero {
    padding: 3rem 1.5rem;
  }
}

@media (min-width: 768px) {
  .contact-hero {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-hero {
    padding: 5rem 2rem;
  }
}

.contact-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

@media (min-width: 768px) {
  .contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .contact-hero h1 {
    font-size: 3rem;
  }
}

.contact-hero p {
  font-size: 0.95rem;
  color: #d1fae5;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-hero p {
    font-size: 1.1rem;
  }
}

/* Responsive Grid for Contact Content */
@media (max-width: 767px) {
  #contact-form .form-group {
    margin-bottom: 1rem;
  }

  .contact-info-card {
    margin-bottom: 0.75rem;
  }
}

/* Mobile-Optimized Contact Form */
@media (max-width: 639px) {
  .contact-form-wrapper,
  .contact-info-wrapper {
    gap: 1rem;
  }

  #contact-form .form-group {
    margin-bottom: 0.9rem;
  }

  .contact-info-card {
    padding: 1rem;
    margin-bottom: 0.75rem;
  }

  .contact-info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .contact-info-card p {
    font-size: 0.9rem;
  }

  .export-destinations-list li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
  }
}

/* Tablet Optimization (640px - 1023px) */
@media (min-width: 640px) and (max-width: 1023px) {
  .contact-form-wrapper h2,
  .contact-info-wrapper h2 {
    font-size: 1.375rem;
  }

  #contact-form {
    gap: 1.25rem;
  }

  .contact-info-card {
    padding: 1.25rem;
  }
}

/* Desktop Optimization (1024px and above) */
@media (min-width: 1024px) {
  .contact-form-wrapper,
  .contact-info-wrapper {
    gap: 1.75rem;
  }

  #contact-form {
    gap: 1.5rem;
  }

  .contact-info-card {
    padding: 1.75rem;
    margin-bottom: 1.25rem;
  }

  .contact-info-card h3 {
    font-size: 1.375rem;
  }

  .export-destinations-list li {
    font-size: 1.05rem;
  }
}

/* ===========================
   Sections
   =========================== */
.section {
  padding: 2rem 1rem;
}

@media (min-width: 640px) {
  .section {
    padding: 2.5rem 1.5rem;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 3.5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1280px) {
  .section {
    padding: 5rem 2rem;
  }
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #5a4a3a;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  font-size: 0.9rem;
  color: #9a8a7a;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1rem;
    margin: 0 auto 3rem;
  }
}

/* ===========================
   Features Grid
   =========================== */
.features {
  background-color: #f5f1eb;
  padding: 2rem 1rem;
}

@media (min-width: 768px) {
  .features {
    padding: 3rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .features {
    padding: 4rem 2rem;
  }
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
  animation: slideInUp 0.5s ease;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .feature-item {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .feature-item {
    padding: 2.5rem;
  }
}

.feature-item:hover {
  transform: translateY(-8px);
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  animation: bounceIn 0.6s ease;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(139, 111, 71, 0.2);
}

@media (min-width: 768px) {
  .feature-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }
}

.feature-item:hover .feature-icon {
  animation: glowBrown 0.6s ease infinite;
  transform: scale(1.15) rotate(5deg);
  background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-secondary) 100%);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #5a4a3a;
}

@media (min-width: 768px) {
  .feature-title {
    font-size: 1.25rem;
  }
}

.feature-description {
  color: #9a8a7a;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .feature-description {
    font-size: 0.95rem;
  }
}

/* ===========================
   Footer
   =========================== */
footer {
  background-color: #5a4a3a;
  color: #f5f1eb;
  padding: 2rem 1rem;
}

@media (min-width: 768px) {
  footer {
    padding: 2.5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  footer {
    padding: 3rem 2rem;
  }
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
  }
}

.footer-section h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #f5f1eb;
}

@media (min-width: 768px) {
  .footer-section h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: #d4cbc2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #8b6f47;
}

.footer-info {
  color: #c9bfb5;
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: #f5f1eb;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(107, 83, 68, 0.2);
}

.social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.social-link:hover::before {
  width: 300px;
  height: 300px;
}

.social-link:hover {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
}

.footer-bottom {
  border-top: 1px solid #6b5344;
  padding-top: 2rem;
  text-align: center;
  color: #c9bfb5;
}

/* ===========================
   Tabs
   =========================== */
.tabs {
  width: 100%;
}

.tabs-list {
  display: flex;
  border-bottom: 2px solid #e8dcc8;
  gap: 1rem;
  overflow-x: auto;
}

.tabs-trigger {
  background: none;
  border: none;
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-weight: 500;
  color: #9a8a7a;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.3s ease;
}

.tabs-trigger:hover {
  color: #8b6f47;
}

.tabs-trigger.active {
  color: #8b6f47;
  border-bottom-color: #8b6f47;
}

.tabs-content {
  display: none;
  padding: 1rem 0;
}

.tabs-content.active {
  display: block;
}

/* ===========================
   Animations
   =========================== */
/* ===========================
   Product Rows (Horizontal Lists)
   =========================== */
.category-section {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .category-section {
    margin-bottom: 2.5rem;
  }
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.category-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #5a4a3a;
}

@media (min-width: 768px) {
  .category-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .category-title {
    font-size: 1.5rem;
  }
}

.product-row {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

@media (min-width: 768px) {
  .product-row {
    gap: 1rem;
  }
}

.product-card {
  flex: 0 0 85%;
  min-width: 200px;
  max-width: 280px;
  scroll-snap-align: start;
}

@media (min-width: 640px) {
  .product-card {
    flex: 0 0 75%;
    min-width: 220px;
  }
}

@media (min-width: 768px) {
  .product-card {
    flex: 0 0 260px;
    min-width: 240px;
  }
}

@media (min-width: 1024px) {
  .product-card {
    flex: 0 0 300px;
    min-width: 280px;
  }
}

.product-card .card-image {
  height: 150px;
}

@media (min-width: 768px) {
  .product-card .card-image {
    height: 180px;
  }
}

@media (min-width: 1024px) {
  .product-card .card-image {
    height: 200px;
  }
}

.product-card .card-title {
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .product-card .card-title {
    font-size: 1rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInRotate {
  from {
    transform: scale(0.8) rotate(-5deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes pulseBorder {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(139, 111, 71, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(139, 111, 71, 0);
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  70% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(22, 163, 74, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(22, 163, 74, 0.8);
  }
}

@keyframes glowBrown {
  0%, 100% {
    box-shadow: 0 0 10px rgba(139, 111, 71, 0.4), 
                0 0 20px rgba(168, 153, 104, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(139, 111, 71, 0.8), 
                0 0 30px rgba(168, 153, 104, 0.4);
  }
}

@keyframes glowGreen {
  0%, 100% {
    box-shadow: 0 0 10px rgba(22, 163, 74, 0.4), 
                0 0 20px rgba(74, 222, 128, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(22, 163, 74, 0.8), 
                0 0 30px rgba(74, 222, 128, 0.4);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes swing {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(3deg);
  }
  75% {
    transform: rotate(-3deg);
  }
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.05);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes jello {
  0%, 11.1%, 100% {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes shadowPulse {
  0%, 100% {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
}

@keyframes stagger1 {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stagger2 {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stagger3 {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   Toast Notifications
   =========================== */
.toast {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background-color: #8b6f47;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px -3px rgba(107, 83, 68, 0.2);
  max-width: calc(100% - 2rem);
  z-index: 50;
  animation: slideIn 0.3s ease;
}

@media (max-width: 639px) {
  .toast {
    bottom: 0.75rem;
    right: 0.75rem;
    left: 0.75rem;
    max-width: unset;
    padding: 1rem;
  }
}

.toast.destructive {
  background-color: #c75757;
}

/* ===========================
   RTL Support
   =========================== */
.rtl {
  direction: rtl;
  text-align: right;
}

.ltr {
  direction: ltr;
  text-align: left;
}

.rtl .gap-3 { gap: 0.75rem; }
.rtl .gap-6 { gap: 1.5rem; }

/* ===========================
   Utility Classes
   =========================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.w-full { width: 100%; }
.w-auto { width: auto; }

.h-full { height: 100%; }
.h-auto { height: auto; }

.min-h-screen { min-height: 100vh; }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-90 { opacity: 0.9; }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.transition {
  transition: all 0.3s ease;
}

.cursor-pointer { cursor: pointer; }

.relative { position: relative; }
.absolute { position: absolute; }

/* ===========================
   Responsive Display
   =========================== */
.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  
  .md\:hidden {
    display: none;
  }
}
/* ===========================
   Touch-Friendly Mobile Interactions
   =========================== */

/* Improve tap targets on mobile */
@media (max-width: 639px) {
  button,
  a,
  input[type="button"],
  input[type="submit"],
  .nav-link,
  .cart-button,
  .menu-button {
    min-height: 48px;
    min-width: 48px;
  }
}

/* Remove tap highlight on mobile */
@media (hover: none) and (pointer: coarse) {
  button,
  a,
  .btn,
  .card,
  .nav-link {
    -webkit-tap-highlight-color: rgba(139, 111, 71, 0.1);
  }
}

/* Improve touch interaction feedback */
@media (hover: none) {
  .btn-primary:active {
    background-color: #6b5344;
    transform: scale(0.98);
  }

  .btn-secondary:active {
    background-color: #e8dcc8;
  }

  .card:active {
    box-shadow: 0 4px 12px rgba(107, 83, 68, 0.1);
  }
}

/* ===========================
   Enhanced Responsive Tables (if needed)
   =========================== */
table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
}

@media (max-width: 639px) {
  table {
    font-size: 0.875rem;
  }

  th, td {
    padding: 0.75rem 0.5rem;
  }
}

@media (min-width: 768px) {
  th, td {
    padding: 1rem;
  }
}

/* ===========================
   Landscape Orientation Optimizations
   =========================== */
@media (orientation: landscape) and (max-height: 500px) {
  .hero {
    min-height: auto;
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .hero-description {
    display: none;
  }

  .hero-buttons {
    gap: 0.5rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

/* ===========================
   High-Resolution Display Support (Retina)
   =========================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* ===========================
   Large Screen Optimizations (Desktop)
   =========================== */
@media (min-width: 1920px) {
  .container {
    max-width: 1400px;
  }

  h1 {
    font-size: 3.5rem;
    line-height: 4rem;
  }

  h2 {
    font-size: 2.75rem;
    line-height: 3.25rem;
  }

  .section {
    padding: 5rem 3rem;
  }

  .btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }
}

/* ===========================
   Accessibility - Reduced Motion
   =========================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===========================
   Accessibility - High Contrast Mode
   =========================== */
@media (prefers-contrast: more) {
  .card {
    border-width: 2px;
  }

  .btn-primary {
    border: 2px solid #6b5344;
  }

  .nav-link {
    font-weight: 600;
  }
}

/* ===========================
   Accessibility - Dark Mode Support
   =========================== */
@media (prefers-color-scheme: dark) {
  /* Optional: Add dark mode styles if needed */
  /* Currently using light theme as default */
}

/* ===========================
   Modern Effects & Micro-interactions
   =========================== */

/* Smooth transitions for all interactive elements */
a, button, input, select, textarea {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Modern Focus States */
:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Enhanced Gradient Backgrounds */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, #6b5344 100%);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
}

.contact-hero {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 50%, #0d6e34 100%);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
}

/* Product Cards - Staggered Animation */
.product-card:nth-child(1) {
  animation: slideInUp 0.5s ease 0s backwards;
}

.product-card:nth-child(2) {
  animation: slideInUp 0.5s ease 0.1s backwards;
}

.product-card:nth-child(3) {
  animation: slideInUp 0.5s ease 0.2s backwards;
}

.product-card:nth-child(4) {
  animation: slideInUp 0.5s ease 0.3s backwards;
}

.product-card:nth-child(n+5) {
  animation: slideInUp 0.5s ease 0.4s backwards;
}

/* Feature Items - Staggered Animation */
.feature-item:nth-child(1) {
  animation: slideInUp 0.6s ease 0.1s backwards;
}

.feature-item:nth-child(2) {
  animation: slideInUp 0.6s ease 0.2s backwards;
}

.feature-item:nth-child(3) {
  animation: slideInUp 0.6s ease 0.3s backwards;
}

.feature-item:nth-child(4) {
  animation: slideInUp 0.6s ease 0.4s backwards;
}

/* Grid Items - Staggered Animation */
.grid > * {
  animation: fadeInScale 0.6s ease forwards;
}

.grid > *:nth-child(1) { animation-delay: 0.1s; }
.grid > *:nth-child(2) { animation-delay: 0.2s; }
.grid > *:nth-child(3) { animation-delay: 0.3s; }
.grid > *:nth-child(4) { animation-delay: 0.4s; }
.grid > *:nth-child(5) { animation-delay: 0.5s; }

/* Modern Button Effects */
.btn {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* Smooth Icon Animations */
.cart-button, .menu-button, .lang-button {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cart-button:hover, .menu-button:hover {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.lang-button:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, transparent 0%, var(--color-primary-light) 100%);
}

/* Feature Item Hover Animation */
.feature-item {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-item:hover {
  transform: translateY(-12px);
}

.feature-title {
  color: var(--color-primary-dark);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-title {
  color: var(--color-secondary-dark);
}

/* Section Titles Animation */
.section-title {
  position: relative;
  display: inline-block;
  animation: slideInUp 0.6s ease;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.section-title {
  width: 100%;
}

.section-title::after {
  width: 80px;
}

/* Tab Navigation Animation */
.tabs-trigger {
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tabs-trigger::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tabs-trigger:hover::before,
.tabs-trigger.active::before {
  width: 100%;
}

/* Link Hover Effects */
a {
  position: relative;
  text-decoration: none;
}

a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

a:hover::after {
  width: 100%;
}

/* Card Loading Animation */
@keyframes cardLoad {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.card {
  animation: cardLoad 0.6s ease forwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

/* Input Placeholder Animation */
::placeholder {
  color: var(--color-text-secondary);
  transition: color 0.3s ease;
}

input:focus::placeholder,
textarea:focus::placeholder {
  color: var(--color-secondary);
}

/* Modern Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-neutral-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 5px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 0 10px rgba(139, 111, 71, 0.3);
}

/* Selection Styling */
::selection {
  background: var(--color-secondary);
  color: white;
}

::-moz-selection {
  background: var(--color-secondary);
  color: white;
}

/* Smooth Page Load Animation */
body {
  animation: fadeIn 0.6s ease;
}

main {
  animation: fadeInScale 0.8s ease;
}

/* Print Styles
   =========================== */
@media print {
  header,
  footer,
  .nav-desktop,
  .nav-mobile,
  .mobile-menu {
    display: none !important;
  }

  body {
    background-color: white;
  }

  a {
    text-decoration: underline;
  }

  .btn {
    border: 1px solid #000;
  }
}