:root {
  --color-sand: #f5f1e8;
  --color-cream: #faf8f3;
  --color-pine: #4a6e5a;
  --color-mountain: #5b7c99;
  --color-orange: #e67e22;
  --color-graphite: #2c3e50;
  --color-light-gray: #ecf0f1;
  --color-white: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--color-sand);
  color: var(--color-graphite);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--color-graphite);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  position: relative;
  padding-bottom: 10px;
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--color-orange);
}

.navbar {
  background-color: var(--color-cream);
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-graphite);
}

.logo-text {
  position: relative;
}

.logo-text::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-pine);
}

.nav-link {
  color: var(--color-graphite);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-pine);
}

.nav-item.active .nav-link {
  color: var(--color-pine);
}

.hero {
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sand) 100%);
  padding: 80px 0;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-pine) 0,
    var(--color-pine) 10px,
    transparent 10px,
    transparent 20px
  );
  opacity: 0.3;
}

.hero-badge {
  display: inline-block;
  background-color: var(--color-pine);
  color: var(--color-white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--color-graphite);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.quick-start-box {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--color-orange);
}

.quick-start-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  background-color: var(--color-orange);
  color: var(--color-white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 1rem;
}

.step p {
  margin: 0;
  padding-top: 4px;
}

.btn {
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background-color: var(--color-pine);
  color: var(--color-white);
  border: 2px solid var(--color-pine);
}

.btn-primary:hover {
  background-color: #3d5a49;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 12px rgba(74, 110, 90, 0.3);
  color: var(--color-white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-graphite);
  border: 2px solid var(--color-graphite);
}

.btn-secondary:hover {
  background-color: var(--color-graphite);
  color: var(--color-white);
  transform: translateY(-2px) scale(1.03);
}

.btn-product {
  background-color: var(--color-orange);
  color: var(--color-white);
  padding: 8px 20px;
  font-size: 0.9rem;
}

.btn-product:hover {
  background-color: #d35400;
  transform: translateY(-2px) scale(1.03);
  color: var(--color-white);
}

.trasa-dnia {
  padding: 80px 0;
  background-color: var(--color-cream);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  display: inline-block;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--color-graphite);
  max-width: 700px;
  margin: 1rem auto 0;
}

.route-card {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--color-pine);
  position: relative;
}

.route-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.route-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.route-badge.morning {
  background-color: #f39c12;
  color: var(--color-white);
}

.route-badge.day {
  background-color: var(--color-mountain);
  color: var(--color-white);
}

.route-badge.post {
  background-color: var(--color-pine);
  color: var(--color-white);
}

.route-badge.evening {
  background-color: #34495e;
  color: var(--color-white);
}

.route-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

.route-card p {
  margin: 0;
  color: var(--color-graphite);
}

.products-section {
  padding: 80px 0;
  background-color: var(--color-sand);
}

.product-card {
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
}

.product-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 1.25rem;
  padding: 1.5rem 1.5rem 0.5rem;
  margin: 0;
}

.product-card p {
  padding: 0 1.5rem;
  color: var(--color-graphite);
  font-size: 0.95rem;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-top: 1px solid var(--color-light-gray);
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-pine);
}

.categories-section {
  padding: 80px 0;
  background-color: var(--color-cream);
}

.category-tile {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--color-orange);
  height: 100%;
}

.category-tile:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.category-tile h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--color-pine);
}

.category-tile p {
  margin: 0;
  color: var(--color-graphite);
}

.reviews-section {
  padding: 80px 0;
  background-color: var(--color-sand);
}

.review-card {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  height: 100%;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  color: var(--color-orange);
  opacity: 0.2;
  line-height: 1;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--color-graphite);
}

.review-author {
  font-weight: 600;
  color: var(--color-pine);
  font-size: 0.9rem;
}

.faq-section {
  padding: 80px 0;
  background-color: var(--color-cream);
}

.faq-card {
  background-color: var(--color-white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--color-mountain);
  height: 100%;
}

.faq-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--color-graphite);
}

.faq-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-graphite);
}

.cta-final {
  padding: 60px 0;
  background-color: var(--color-pine);
  color: var(--color-white);
}

.cta-final h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-final h2::after {
  background-color: var(--color-orange);
}

.cta-final p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--color-white);
}

.footer {
  background-color: var(--color-graphite);
  color: var(--color-white);
  padding: 60px 0 20px;
}

.footer h4 {
  color: var(--color-white);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-graphite);
  color: var(--color-white);
  padding: 1.5rem 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.btn-accept {
  background-color: var(--color-pine);
  color: var(--color-white);
}

.btn-accept:hover {
  background-color: #3d5a49;
}

.btn-settings {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hero-about,
.hero-products,
.hero-contact {
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sand) 100%);
  padding: 60px 0;
  text-align: center;
}

.about-content,
.contact-content,
.product-guide,
.products-grid,
.choice-map {
  padding: 60px 0;
}

.about-content {
  background-color: var(--color-sand);
}

.custom-list {
  list-style: none;
  padding: 0;
}

.custom-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 1rem;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background-color: var(--color-orange);
  border-radius: 50%;
}

.principle-card {
  background-color: var(--color-white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
}

.principle-badge {
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: var(--color-orange);
  color: var(--color-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.principle-card h3 {
  margin-top: 1rem;
  font-size: 1.125rem;
}

.principle-card p {
  margin: 0;
  font-size: 0.9rem;
}

.contact-info {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--color-pine);
}

.contact-item p {
  margin: 0;
  color: var(--color-graphite);
}

.contact-form {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
  border: 2px solid var(--color-light-gray);
  border-radius: 6px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--color-pine);
  box-shadow: 0 0 0 0.2rem rgba(74, 110, 90, 0.15);
}

.contact-form label {
  font-weight: 600;
  color: var(--color-graphite);
  margin-bottom: 0.5rem;
}

.form-check-label {
  font-weight: 400;
}

.form-check-label a {
  color: var(--color-pine);
}

.thank-you-section {
  padding: 100px 0;
  background-color: var(--color-sand);
}

.thank-you-card {
  background-color: var(--color-white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thank-you-card h1 {
  color: var(--color-pine);
}

.legal-page {
  padding: 60px 0;
  background-color: var(--color-sand);
}

.legal-page h1 {
  margin-bottom: 0.5rem;
}

.legal-page h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.legal-page h3 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
}

.legal-page p,
.legal-page ul,
.legal-page ol {
  margin-bottom: 1rem;
}

.legal-page ul,
.legal-page ol {
  padding-left: 2rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
}

.alert {
  border-radius: 8px;
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.alert-warning {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
}

.alert-info {
  background-color: #d1ecf1;
  border: 1px solid #17a2b8;
  color: #0c5460;
}

.product-guide {
  background-color: var(--color-cream);
}

.guide-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.guide-number {
  background-color: var(--color-orange);
  color: var(--color-white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.products-grid {
  background-color: var(--color-sand);
}

.choice-map {
  background-color: var(--color-cream);
}

.scenario-card {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
  border-top: 4px solid var(--color-pine);
}

.scenario-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-pine);
}

.scenario-card p {
  margin-bottom: 1rem;
}

.scenario-card ul {
  list-style: none;
  padding: 0;
}

.scenario-card li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 0.5rem;
}

.scenario-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--color-orange);
  border-radius: 50%;
}

@media (max-width: 991px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-cta {
    flex-direction: column;
  }

  .quick-start-box {
    margin-top: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .product-footer {
    flex-direction: column;
    gap: 1rem;
  }

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