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

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #8b4513;
  background: linear-gradient(135deg, #fef7e0 0%, #fed7aa 50%, #fef3c7 100%);
  min-height: 100vh;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Utility Classes */
.min-h-screen {
  min-height: 100vh;
}

.bg-gradient-to-br {
  background: linear-gradient(to bottom right, #fffbeb 0%, #fed7aa 50%, #fef3c7 100%);
}

.from-amber-50 {
  background-color: #fffbeb;
}

.via-orange-50 {
  background-color: #fff7ed;
}

.to-yellow-100 {
  background-color: #fef3c7;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.bg-gradient-to-r {
  background: linear-gradient(to right, #fbbf24 0.2, #fb923c 0.2);
}

.from-amber-200\/20 {
  background-color: rgba(251, 191, 36, 0.2);
}

.to-orange-200\/20 {
  background-color: rgba(251, 146, 60, 0.2);
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.md\:py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

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

.mb-8 {
  margin-bottom: 2rem;
}

.animate-fade-in {
  animation: fadeIn 1s ease-in-out;
}

.text-3xl {
  font-size: 1.875rem;
}

.md\:text-4xl {
  font-size: 2.25rem;
}

.lg\:text-6xl {
  font-size: 3.75rem;
}

.font-bold {
  font-weight: 700;
}

.text-amber-900 {
  color: #78350f;
}

.mb-4 {
  margin-bottom: 1rem;
}

.animate-bounce-slow {
  animation: bounce 2s infinite;
}

.text-lg {
  font-size: 1.125rem;
}

.md\:text-xl {
  font-size: 1.25rem;
}

.lg\:text-2xl {
  font-size: 1.5rem;
}

.text-amber-800 {
  color: #92400e;
}

/* Main Potato Section */
.h-96 {
  height: 24rem;
}

.md\:h-\[500px\] {
  height: 500px;
}

.mb-8 {
  margin-bottom: 2rem;
}

.md\:mb-12 {
  margin-bottom: 3rem;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.cursor-pointer {
  cursor: pointer;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

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

.duration-300 {
  transition-duration: 0.3s;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.bg-transparent {
  background-color: transparent;
}

.text-amber-900 {
  color: #78350f;
}

.font-bold {
  font-weight: 700;
}

.text-xl {
  font-size: 1.25rem;
}

.md\:text-2xl {
  font-size: 1.5rem;
}

.lg\:text-3xl {
  font-size: 1.875rem;
}

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

.outline-none {
  outline: none;
}

.resize-none {
  resize: none;
}

.w-32 {
  width: 8rem;
}

.md\:w-40 {
  width: 10rem;
}

.lg\:w-48 {
  width: 12rem;
}

.h-16 {
  height: 4rem;
}

.md\:h-20 {
  height: 5rem;
}

.lg\:h-24 {
  height: 6rem;
}

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

.border-none {
  border: none;
}

.cursor-text {
  cursor: text;
}

.select-none {
  user-select: none;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.md\:px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.lg\:px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.whitespace-pre-line {
  white-space: pre-line;
}

/* Potato image sizes */
.w-48 {
  width: 12rem;
}

.md\:w-64 {
  width: 16rem;
}

.lg\:w-80 {
  width: 20rem;
}

/* Example Messages Section */
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.md\:py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.max-w-6xl {
  max-width: 72rem;
}

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

.items-center {
  align-items: center;
}

.gap-3 {
  gap: 0.75rem;
}

.bg-amber-500 {
  background-color: #f59e0b;
}

.hover\:bg-amber-600:hover {
  background-color: #d97706;
}

.text-white {
  color: white;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.rounded-full {
  border-radius: 9999px;
}

.font-bold {
  font-weight: 700;
}

.text-xl {
  font-size: 1.25rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.transition-all {
  transition: all 0.3s ease;
}

.duration-300 {
  transition-duration: 0.3s;
}

.transform {
  transform: translateZ(0);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hidden {
  display: none;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lg\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.xl\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-6 {
  gap: 1.5rem;
}

/* Shipping Form */
.pb-8 {
  padding-bottom: 2rem;
}

.md\:pb-16 {
  padding-bottom: 4rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.font-bold {
  font-weight: 700;
}

.text-amber-900 {
  color: #78350f;
}

.mb-4 {
  margin-bottom: 1rem;
}

.text-amber-700 {
  color: #a16207;
}

/* Shipping Label Form */
.bg-white {
  background-color: white;
}

.rounded-2xl {
  border-radius: 1rem;
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.border-4 {
  border-width: 4px;
}

.border-amber-200 {
  border-color: #fde68a;
}

.p-8 {
  padding: 2rem;
}

.md\:p-12 {
  padding: 3rem;
}

.overflow-hidden {
  overflow: hidden;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

/* Form Fields */
.bg-gradient-to-r {
  background: linear-gradient(to right, #fffbeb 0%, #fed7aa 100%);
}

.from-amber-50 {
  background-color: #fffbeb;
}

.to-orange-50 {
  background-color: #fff7ed;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.p-6 {
  padding: 1.5rem;
}

.border-2 {
  border-width: 2px;
}

.border-amber-200 {
  border-color: #fde68a;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.gap-3 {
  gap: 0.75rem;
}

.text-amber-900 {
  color: #78350f;
}

.font-semibold {
  font-weight: 600;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.w-full {
  width: 100%;
}

.bg-white {
  background-color: white;
}

.border-2 {
  border-width: 2px;
}

.border-amber-300 {
  border-color: #fcd34d;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.text-lg {
  font-size: 1.125rem;
}

.font-medium {
  font-weight: 500;
}

.text-amber-900 {
  color: #78350f;
}

.placeholder-amber-500::placeholder {
  color: #f59e0b;
}

.focus\:outline-none:focus {
  outline: none;
}

.focus\:border-amber-500:focus {
  border-color: #f59e0b;
}

.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.focus\:ring-amber-200:focus {
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2);
}

.transition-all {
  transition: all 0.3s ease;
}

.duration-200 {
  transition-duration: 0.2s;
}

/* Grid Layout */
.grid {
  display: grid;
}

.md\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-6 {
  gap: 1.5rem;
}

/* Package Info */
.from-orange-50 {
  background-color: #fff7ed;
}

.to-amber-50 {
  background-color: #fffbeb;
}

.border-orange-200 {
  border-color: #fed7aa;
}

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

.items-center {
  align-items: center;
}

.gap-2 {
  gap: 0.5rem;
}

.text-orange-800 {
  color: #9a3412;
}

.font-bold {
  font-weight: 700;
}

.text-lg {
  font-size: 1.125rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.text-orange-700 {
  color: #c2410c;
}

.font-medium {
  font-weight: 500;
}

/* Submit Button */
.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.mt-12 {
  margin-top: 3rem;
}

.bg-gradient-to-r {
  background: linear-gradient(to right, #f59e0b 0%, #f97316 100%);
}

.from-amber-500 {
  background-color: #f59e0b;
}

.to-orange-500 {
  background-color: #f97316;
}

.hover\:from-amber-600:hover {
  background-color: #d97706;
}

.hover\:to-orange-600:hover {
  background-color: #ea580c;
}

.text-white {
  color: white;
}

.font-semibold {
  font-weight: 600;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.md\:px-16 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.md\:py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
}

.md\:text-2xl {
  font-size: 1.5rem;
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover\:shadow-3xl:hover {
  box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.35);
}

.transition-all {
  transition: all 0.3s ease;
}

.duration-300 {
  transition-duration: 0.3s;
}

.rounded-full {
  border-radius: 9999px;
}

.transform {
  transform: translateZ(0);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

/* Remove borders from buttons */
#toggle-examples,
#submit-btn {
  border: none;
  outline: none;
}

/* Remove underline from success page link */
a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Footer */
.bg-amber-900 {
  background-color: #78350f;
}

.text-amber-50 {
  color: #fffbeb;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.grid {
  display: grid;
}

.md\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-8 {
  gap: 2rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.text-xl {
  font-size: 1.25rem;
}

.font-bold {
  font-weight: 700;
}

.mb-4 {
  margin-bottom: 1rem;
}

.text-amber-200 {
  color: #fde68a;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.cursor-pointer {
  cursor: pointer;
}

.hover\:text-amber-300:hover {
  color: #fcd34d;
}

.transition-colors {
  transition: color 0.3s ease;
}

.border-t {
  border-top-width: 1px;
}

.border-amber-700 {
  border-color: #92400e;
}

.pt-6 {
  padding-top: 1.5rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .py-8 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .text-3xl {
    font-size: 1.5rem;
  }
  
  .md\:text-4xl {
    font-size: 1.875rem;
  }
  
  .lg\:text-6xl {
    font-size: 2.5rem;
  }
  
  .h-96 {
    height: 20rem;
  }
  
  .md\:h-\[500px\] {
    height: 400px;
  }
  
  .w-48 {
    width: 10rem;
  }
  
  .md\:w-64 {
    width: 14rem;
  }
  
  .lg\:w-80 {
    width: 18rem;
  }
  
  .w-32 {
    width: 6rem;
  }
  
  .md\:w-40 {
    width: 8rem;
  }
  
  .lg\:w-48 {
    width: 10rem;
  }
  
  .h-16 {
    height: 3rem;
  }
  
  .md\:h-20 {
    height: 4rem;
  }
  
  .lg\:h-24 {
    height: 5rem;
  }
  
  .text-xl {
    font-size: 1rem;
  }
  
  .md\:text-2xl {
    font-size: 1.25rem;
  }
  
  .lg\:text-3xl {
    font-size: 1.5rem;
  }
  
  .px-2 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  
  .md\:px-3 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .lg\:px-4 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .px-6 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .py-3 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  
  .text-xl {
    font-size: 1.125rem;
  }
  
  .p-8 {
    padding: 1.5rem;
  }
  
  .md\:p-12 {
    padding: 2rem;
  }
  
  .p-6 {
    padding: 1rem;
  }
  
  .px-4 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .py-3 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  
  .text-lg {
    font-size: 1rem;
  }
  
  .px-12 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .md\:px-16 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  
  .py-4 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  
  .md\:py-5 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .text-xl {
    font-size: 1.125rem;
  }
  
  .md\:text-2xl {
    font-size: 1.25rem;
  }
  
  .md\:grid-cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .text-3xl {
    font-size: 1.25rem;
  }
  
  .md\:text-4xl {
    font-size: 1.5rem;
  }
  
  .lg\:text-6xl {
    font-size: 2rem;
  }
  
  .text-lg {
    font-size: 0.875rem;
  }
  
  .md\:text-xl {
    font-size: 1rem;
  }
  
  .lg\:text-2xl {
    font-size: 1.125rem;
  }
  
  .h-96 {
    height: 16rem;
  }
  
  .md\:h-\[500px\] {
    height: 300px;
  }
  
  .w-48 {
    width: 8rem;
  }
  
  .md\:w-64 {
    width: 12rem;
  }
  
  .lg\:w-80 {
    width: 16rem;
  }
  
  .w-32 {
    width: 5rem;
  }
  
  .md\:w-40 {
    width: 7rem;
  }
  
  .lg\:w-48 {
    width: 9rem;
  }
  
  .h-16 {
    height: 2.5rem;
  }
  
  .md\:h-20 {
    height: 3rem;
  }
  
  .lg\:h-24 {
    height: 4rem;
  }
  
  .text-xl {
    font-size: 0.875rem;
  }
  
  .md\:text-2xl {
    font-size: 1rem;
  }
  
  .lg\:text-3xl {
    font-size: 1.25rem;
  }
  
  .px-2 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  
  .md\:px-3 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .lg\:px-4 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .px-6 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .py-3 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  
  .text-xl {
    font-size: 1rem;
  }
  
  .p-8 {
    padding: 1rem;
  }
  
  .md\:p-12 {
    padding: 1.5rem;
  }
  
  .p-6 {
    padding: 0.75rem;
  }
  
  .px-4 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .py-3 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  
  .text-lg {
    font-size: 0.875rem;
  }
  
  .px-12 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .md\:px-16 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .py-4 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  
  .md\:py-5 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .text-xl {
    font-size: 1rem;
  }
  
  .md\:text-2xl {
    font-size: 1.125rem;
  }
}

/* Wymuszenie białego koloru dla linków w stopce */
.footer-section a {
  color: white !important;
}
