/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Utility classes */
.hidden {
  display: none !important;
}

.text-blue {
  color: #2563eb;
}

/* Header */
.header {
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 28px;
  height: 28px;
  background-color: #2563eb;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 16px;
}

.logo-text {
  font-size: 18px;
  font-weight: bold;
  color: #111827;
}

/* Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 20px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 14px;
}

.nav-link:hover,
.nav-link.active {
  color: #2563eb;
}

.nav-icon {
  width: 16px;
  height: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn-primary {
  background-color: #2563eb;
  color: white;
}

.btn-primary:hover {
  background-color: #1d4ed8;
}

.btn-secondary {
  background-color: #f3f4f6;
  color: #374151;
}

.btn-secondary:hover {
  background-color: #e5e7eb;
}

.btn-outline {
  background-color: transparent;
  color: #374151;
  border: 1px solid #d1d5db;
}

.btn-outline:hover {
  background-color: #f9fafb;
}

.btn-white {
  background-color: white;
  color: #2563eb;
  border: 1px solid white;
}

.btn-white:hover {
  background-color: #f8fafc;
}

.btn-lg {
  padding: 12px 24px;
  font-size: 15px;
}

/* Mobile menu */
.mobile-menu-btn {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-icon,
.close-icon {
  width: 20px;
  height: 20px;
}

.nav-mobile {
  border-top: 1px solid #e5e7eb;
  padding: 12px 0;
}

.nav-mobile-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-link-mobile {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 0;
  font-size: 14px;
}

.nav-link-mobile:hover,
.nav-link-mobile.active {
  color: #2563eb;
}

.mobile-cta {
  width: fit-content;
  margin-top: 6px;
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom, #dbeafe, #ffffff);
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-text {
  text-align: left;
  width: 100%;
}

.hero-title {
  font-size: 24px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-description {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-chat-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
}

.chat-icon {
  width: 14px;
  height: 14px;
  color: #2563eb;
}

.hero-image {
  width: 100%;
  margin-top: 20px;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

/* Separator */
.separator {
  width: 100%;
  height: 36px;
  background: linear-gradient(to right, #3b82f6, #2563eb, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.separator-text {
  color: white;
  font-weight: 500;
  text-align: center;
  font-size: 12px;
  padding: 0 16px;
}

/* Sections */
.section-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
  color: #111827;
}

.title-underline {
  width: 60px;
  height: 3px;
  background-color: #2563eb;
  margin: 0 auto 32px;
}

/* Features Preview */
.features-preview {
  background-color: white;
  padding: 40px 0;
  border-bottom: 1px solid #e5e7eb;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-card {
  text-align: center;
  padding: 20px 16px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: white;
  transition: box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 40px;
  height: 40px;
  color: #2563eb;
  margin: 0 auto 12px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #111827;
}

.feature-description {
  color: #6b7280;
  line-height: 1.5;
  font-size: 14px;
}

/* Sizes Preview */
.sizes-preview {
  background-color: #f9fafb;
  padding: 40px 0;
  border-bottom: 1px solid #e5e7eb;
}

.sizes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.size-card {
  background-color: white;
  padding: 20px 16px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  position: relative;
}

.size-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.size-card.featured {
  border: 2px solid #dbeafe;
}

.popular-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2563eb;
  color: white;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 500;
}

.size-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.size-title {
  font-size: 20px;
  font-weight: bold;
  color: #2563eb;
}

.size-price {
  background-color: #f3f4f6;
  color: #374151;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
}

.size-description {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 6px;
}

.size-uses {
  font-size: 13px;
  color: #6b7280;
}

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

/* CTA Section */
.cta-section {
  background-color: #2563eb;
  color: white;
  padding: 40px 0;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}

.cta-description {
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}

.cta-chat-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
}

/* Footer */
.footer {
  background-color: #111827;
  color: white;
  padding: 32px 0 16px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-main {
  grid-column: span 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 12px;
}

.footer-description {
  color: #9ca3af;
  margin-bottom: 12px;
  max-width: 400px;
  line-height: 1.5;
  font-size: 14px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #9ca3af;
}

.contact-icon {
  width: 14px;
  height: 14px;
  color: #60a5fa;
}

.footer-heading {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 16px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #9ca3af;
}

/* Timeline Design for Mobile Steps */
.steps-timeline-mobile {
  position: relative;
  padding-left: 32px;
}

.steps-timeline-mobile::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #2563eb, #60a5fa);
}

.timeline-step {
  position: relative;
  margin-bottom: 24px;
  background: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-step-number {
  position: absolute;
  left: -28px;
  top: 12px;
  width: 28px;
  height: 28px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  border: 3px solid white;
  box-shadow: 0 0 0 2px #2563eb;
}

.timeline-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.timeline-step-icon {
  width: 32px;
  height: 32px;
  background: #dbeafe;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
}

.timeline-step-title {
  font-size: 16px;
  font-weight: bold;
  color: #111827;
  margin: 0 0 2px 0;
}

.timeline-step-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

.timeline-step-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.4;
  margin: 0;
}

/* Responsive Design */
@media (min-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: row;
    gap: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .cta-title {
    font-size: 28px;
  }

  .timeline-step {
    padding: 18px;
  }

  .timeline-step-title {
    font-size: 17px;
  }
}

@media (min-width: 640px) {
  .header-content {
    height: 64px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .logo-text {
    font-size: 20px;
  }

  .hero {
    padding: 48px 0;
  }

  .hero-content {
    gap: 32px;
  }

  .hero-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .hero-buttons,
  .cta-buttons {
    margin-bottom: 20px;
  }

  .hero-chat-info,
  .cta-chat-info {
    font-size: 14px;
  }

  .chat-icon {
    width: 16px;
    height: 16px;
  }

  .separator {
    height: 48px;
  }

  .separator-text {
    font-size: 14px;
  }

  .features-preview,
  .sizes-preview {
    padding: 56px 0;
  }

  .cta-section {
    padding: 56px 0;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .timeline-step {
    padding: 20px;
  }

  .timeline-step-number {
    width: 32px;
    height: 32px;
    left: -32px;
    font-size: 14px;
  }

  .timeline-step-title {
    font-size: 18px;
  }

  .timeline-step-description {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    text-align: left;
  }

  .hero-text {
    width: 50%;
  }

  .hero-image {
    width: 50%;
    margin-top: 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .cta-title {
    font-size: 32px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .sizes-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
  }

  .footer-main {
    grid-column: span 1;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 64px 0;
  }

  .hero-title {
    font-size: 48px;
  }

  .section-title {
    font-size: 36px;
  }

  .cta-title {
    font-size: 36px;
  }

  .features-preview,
  .sizes-preview,
  .cta-section {
    padding: 64px 0;
  }

  .features-grid,
  .sizes-grid {
    gap: 32px;
  }

  .footer {
    padding: 48px 0 24px;
  }
}

/* Card styles for other pages */
.card {
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-header {
  padding: 20px 20px 12px;
}

.card-content {
  padding: 0 20px 20px;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
  color: #111827;
}

.card-description {
  color: #6b7280;
  font-size: 13px;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 6px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 500;
}

.badge-primary {
  background-color: #2563eb;
  color: white;
}

.badge-secondary {
  background-color: #f3f4f6;
  color: #374151;
}

.badge-success {
  background-color: #10b981;
  color: white;
}

/* Page-specific styles */
.page-hero {
  background-color: #2563eb;
  color: white;
  padding: 40px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

.page-content {
  padding: 40px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Form styles */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #111827;
  font-size: 14px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-error {
  color: #dc2626;
  font-size: 13px;
  margin-top: 3px;
}

/* Animation classes */
.fade-in {
  animation: fadeIn 0.5s ease-in;
}

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

.slide-in {
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Mobile-specific improvements for iPhone */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .hero {
    padding: 24px 0;
  }

  .hero-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .hero-buttons {
    gap: 10px;
    margin-bottom: 12px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .btn-lg {
    padding: 10px 20px;
    font-size: 14px;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .title-underline {
    width: 50px;
    height: 2px;
    margin: 0 auto 24px;
  }

  .features-preview,
  .sizes-preview,
  .page-content {
    padding: 32px 0;
  }

  .cta-section {
    padding: 32px 0;
  }

  .cta-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .cta-description {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .feature-card,
  .size-card,
  .card {
    padding: 16px 12px;
  }

  .feature-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 10px;
  }

  .feature-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .feature-description {
    font-size: 13px;
  }

  .size-title {
    font-size: 18px;
  }

  .page-hero {
    padding: 32px 0;
  }

  .page-hero h1 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .page-hero p {
    font-size: 15px;
  }

  .footer {
    padding: 24px 0 12px;
  }

  .footer-content {
    gap: 20px;
    margin-bottom: 20px;
  }

  .footer-description {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .footer-heading {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .contact-item {
    font-size: 12px;
    gap: 5px;
  }

  .contact-icon {
    width: 12px;
    height: 12px;
  }

  .footer-link {
    font-size: 12px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  /* Timeline mobile optimizations */
  .steps-timeline-mobile {
    padding-left: 28px;
  }

  .timeline-step {
    padding: 12px;
    margin-bottom: 20px;
  }

  .timeline-step-number {
    left: -26px;
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .timeline-step-icon {
    width: 28px;
    height: 28px;
  }

  .timeline-step-title {
    font-size: 15px;
  }

  .timeline-step-subtitle {
    font-size: 12px;
  }

  .timeline-step-description {
    font-size: 13px;
  }

  /* Mobile footer - szybkie linki i informacje prawne obok siebie */
  .footer-content {
    display: block;
  }

  .footer-content > div.footer-links {
    display: inline-block;
    width: 48%;
    vertical-align: top;
    margin-top: 20px;
  }

  .footer-content > div.footer-links:nth-child(2) {
    margin-right: 4%;
  }
}

/* Larger mobile devices (iPhone 16 Pro and similar) */
@media (min-width: 390px) and (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }

  .section-title {
    font-size: 22px;
  }

  .cta-title {
    font-size: 22px;
  }

  .page-hero h1 {
    font-size: 22px;
  }

  .timeline-step {
    padding: 14px;
  }

  .timeline-step-number {
    width: 26px;
    height: 26px;
    left: -27px;
    font-size: 12px;
  }

  .timeline-step-title {
    font-size: 16px;
  }

  .timeline-step-description {
    font-size: 14px;
  }
}

/* Tablet responsive adjustments */
@media (min-width: 481px) and (max-width: 767px) {
  .page-hero h1 {
    font-size: 28px;
  }

  .content-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .sizes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Tablet footer - szybkie linki i informacje prawne obok siebie */
  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-content > div.footer-links {
    display: inline-block;
    width: 48%;
    vertical-align: top;
  }

  .footer-content > div.footer-links:nth-child(2) {
    margin-right: 4%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .page-hero h1 {
    font-size: 32px;
  }

  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-hero h1 {
    font-size: 40px;
  }

  .content-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Dodaj te style na końcu pliku styles.css */

/* Nowoczesny akordeon funkcji dla urządzeń mobilnych */
@media (max-width: 767px) {
  .mobile-features-accordion {
    margin: 32px 0;
  }

  .mobile-feature-card {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .mobile-feature-header {
    display: flex;
    align-items: center;
    padding: 16px;
    cursor: pointer;
    position: relative;
    user-select: none;
  }

  .mobile-feature-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    margin-right: 12px;
    flex-shrink: 0;
  }

  .mobile-feature-title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    flex-grow: 1;
    margin: 0;
  }

  .mobile-feature-toggle {
    background: none;
    border: none;
    color: #6b7280;
    padding: 4px;
    cursor: pointer;
  }

  .mobile-feature-content {
    padding: 0 16px 16px 64px;
    animation: slideDown 0.2s ease-out;
  }

  .mobile-feature-description {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Poprawki dla mobilnej wersji strony głównej */
@media (max-width: 767px) {
  /* Napraw wyświetlanie hero na mobile */
  .hero-content {
    flex-direction: column !important;
    text-align: center !important;
  }

  .hero-text {
    width: 100% !important;
    text-align: center !important;
  }

  .hero-image {
    width: 100% !important;
    margin-top: 20px !important;
  }

  /* Napraw grid na mobile */
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .sizes-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Napraw nawigację mobilną */
  .nav-mobile {
    display: block;
  }

  .nav-desktop {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex !important;
  }
}

/* Dodatkowe poprawki dla bardzo małych ekranów */
@media (max-width: 375px) {
  .container {
    padding: 0 8px;
  }

  .hero-title {
    font-size: 20px !important;
  }

  .hero-description {
    font-size: 14px !important;
  }

  .btn {
    padding: 6px 12px !important;
    font-size: 12px !important;
  }
}

