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

html {
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  min-height: 100vh;
}

img, picture, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* Header styles */
/* Base Styles */
  :root {
    --color-primary: #0A617D;
    --color-secondary: #1D8A9E;
    --color-accent: #F7B538;
    --color-dark: #1F2937;
    --color-light: #F9FAFB;
    --color-gray: #6B7280;
    --color-background: #EFF6F9;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --transition: all 0.3s ease;
    --font-main: 'Poppins', sans-serif;
  }

  /* Header Styles */
  .main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-light);
    box-shadow: var(--shadow-sm);
    z-index: 100;
    font-family: var(--font-main);
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
  }

  /* Logo Styles */
  .logo-area {
    display: flex;
    align-items: center;
  }

  .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition);
  }

  .logo-link:hover {
    transform: scale(1.05);
  }

  .logo-icon {
    margin-right: 0.5rem;
  }

  .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
  }

  /* Desktop Navigation */
  .desktop-nav {
    display: none;
  }

  @media (min-width: 1024px) {
    .desktop-nav {
      display: block;
      margin-left: 2rem;
    }
  }

  .nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.25rem;
  }

  .nav-item {
    position: relative;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-dark);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    position: relative;
  }

  .nav-link:hover {
    color: var(--color-primary);
    background-color: rgba(10, 97, 125, 0.05);
  }

  .nav-link.active {
    color: var(--color-primary);
    font-weight: 600;
  }

  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 1px;
  }

  /* Header Actions */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .cart-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--color-dark);
    background-color: transparent;
    border: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
  }

  .cart-button:hover {
    background-color: rgba(10, 97, 125, 0.05);
    color: var(--color-primary);
  }

  .cart-count {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    background-color: var(--color-accent);
    color: var(--color-dark);
    font-size: 0.625rem;
    font-weight: 700;
    border-radius: 50%;
  }

  /* Mobile Toggle Button */
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1.75rem;
    height: 1.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  @media (min-width: 1024px) {
    .mobile-toggle {
      display: none;
    }
  }

  .toggle-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-dark);
    transition: var(--transition);
    border-radius: 2px;
  }

  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-light);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .mobile-menu.active {
    transform: translateX(0);
  }

  .mobile-menu-container {
    padding: 2rem 1.5rem;
    position: relative;
  }

  .close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--color-dark);
    cursor: pointer;
    padding: 0.5rem;
  }

  .mobile-logo {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
  }

  .mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-nav-item {
    margin-bottom: 0.5rem;
  }

  .mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    color: var(--color-dark);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 1px solid rgba(107, 114, 128, 0.1);
  }

  .mobile-nav-link.active {
    color: var(--color-primary);
    font-weight: 600;
  }

  .mobile-contact {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .mobile-phone,
  .mobile-email {
    display: block;
    padding: 0.5rem 0;
    color: var(--color-dark);
    text-decoration: none;
    font-size: 0.875rem;
  }

  /* Media Queries */
  @media (min-width: 768px) {
    .header-container {
      padding: 1rem 2rem;
    }
  }

  @media (min-width: 1024px) {
    .header-container {
      padding: 0.75rem 2.5rem;
    }
  }

/* Footer styles */
/* Reset i podstawowe style */
  .footer-main {
    width: 100%;
    background: linear-gradient(135deg, #0a3d62 0%, #1e5f74 100%);
    color: #f1f1f1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }

  .footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #3498db);
    z-index: 1;
  }

  .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 30px;
  }

  /* Sekcje footera */
  .footer-section {
    padding: 0 15px;
  }

  .footer-about {
    grid-column: span 4;
    position: relative;
  }

  .footer-nav {
    grid-column: span 2;
  }

  .footer-resources {
    grid-column: span 2;
  }

  .footer-contact {
    grid-column: span 2;
  }

  .footer-newsletter {
    grid-column: span 2;
    position: relative;
  }

  /* Stylizacja nagłówków */
  .footer-heading {
    color: #4ecdc4;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
  }

  .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #4ecdc4;
    border-radius: 2px;
  }

  .footer-subheading {
    color: #a3e4db;
    font-size: 1rem;
    margin: 1.25rem 0 0.75rem;
    font-weight: 500;
  }

  /* Tekst i paragrafy */
  .footer-text {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #dce6e8;
    font-size: 0.95rem;
  }

  /* Listy */
  .footer-nav-columns {
    display: flex;
    gap: 20px;
  }

  .footer-nav-list,
  .footer-resources-list,
  .footer-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-nav-item,
  .footer-resources-item {
    margin-bottom: 10px;
    position: relative;
  }

  .footer-hours-item {
    margin-bottom: 8px;
    color: #dce6e8;
    font-size: 0.9rem;
  }

  /* Linki */
  .footer-link {
    color: #dce6e8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
    padding-left: 15px;
  }

  .footer-link::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #4ecdc4;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }

  .footer-link:hover {
    color: #4ecdc4;
    transform: translateX(3px);
  }

  .footer-link:hover::before {
    transform: translateY(-50%) translateX(2px);
  }

  /* Kontakt */
  .footer-address {
    font-style: normal;
    margin-bottom: 1.5rem;
  }

  .footer-contact-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
  }

  .footer-contact-item i {
    margin-right: 10px;
    color: #4ecdc4;
    width: 16px;
    text-align: center;
  }

  /* Social media */
  .footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }

  .footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .footer-social-icon:hover {
    background-color: #4ecdc4;
    transform: translateY(-3px);
  }

  .footer-social-icon i {
    font-size: 1rem;
    color: #fff;
  }

  /* Newsletter */
  .footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-input {
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
  }

  .footer-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }

  .footer-input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #4ecdc4;
  }

  .footer-button {
    padding: 12px 20px;
    background-color: #4ecdc4;
    color: #0a3d62;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }

  .footer-button:hover {
    background-color: #3dbcb5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  /* Dolna część footera */
  .footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    position: relative;
  }

  .footer-legal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
  }

  .footer-legal-link {
    color: #a3e4db;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    position: relative;
  }

  .footer-legal-link:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -12px;
    color: rgba(255, 255, 255, 0.3);
  }

  .footer-legal-link:hover {
    color: #4ecdc4;
    text-decoration: underline;
  }

  .footer-copyright-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
  }

  /* Dekoracyjne elementy */
  .footer-about::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 0;
    width: 1px;
    height: 70%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
  }

  .footer-newsletter::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 1px;
    height: 70%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
  }

  /* Responsywność */
  @media (max-width: 1200px) {
    .footer-about {
      grid-column: span 6;
    }
    
    .footer-nav {
      grid-column: span 3;
    }
    
    .footer-resources {
      grid-column: span 3;
    }
    
    .footer-contact {
      grid-column: span 6;
    }
    
    .footer-newsletter {
      grid-column: span 6;
    }
  }

  @media (max-width: 992px) {
    .footer-container {
      grid-gap: 40px 20px;
    }
    
    .footer-about {
      grid-column: span 12;
    }
    
    .footer-nav {
      grid-column: span 6;
    }
    
    .footer-resources {
      grid-column: span 6;
    }
    
    .footer-contact {
      grid-column: span 6;
    }
    
    .footer-newsletter {
      grid-column: span 6;
    }
    
    .footer-about::after {
      display: none;
    }
    
    .footer-newsletter::before {
      display: none;
    }
  }

  @media (max-width: 768px) {
    .footer-container {
      padding: 40px 15px 20px;
      grid-gap: 30px;
    }
    
    .footer-nav,
    .footer-resources,
    .footer-contact,
    .footer-newsletter {
      grid-column: span 12;
    }
    
    .footer-heading {
      margin-bottom: 1rem;
    }
    
    .footer-legal {
      flex-direction: column;
      gap: 10px;
    }
    
    .footer-legal-link:not(:last-child)::after {
      display: none;
    }
  }

  @media (max-width: 480px) {
    .footer-nav-columns {
      flex-direction: column;
      gap: 0;
    }
    
    .footer-social-icons {
      justify-content: center;
    }
    
    .footer-section {
      padding: 0;
    }
  }

/* Cookie Banner styles */
.fishing-cookie-banner {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: #1a3c54 !important;
    color: #ffffff;
    z-index: 9999 !important;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2) !important;
    font-family: 'Roboto', 'Arial', sans-serif;
  }

  .fishing-cookie-content {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 20px !important;
  }

  .fishing-cookie-message {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px !important;
  }

  .fishing-cookie-message a {
    color: #4cccff;
    text-decoration: underline;
  }

  .fishing-cookie-buttons {
    display: flex !important;
    justify-content: flex-end;
    gap: 15px;
  }

  .fishing-cookie-btn {
    padding: 10px 20px !important;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .fishing-accept-btn {
    background-color: #4caf50 !important;
    color: white;
  }

  .fishing-accept-btn:hover {
    background-color: #3d8b40 !important;
  }

  .fishing-reject-btn {
    background-color: #e0e0e0 !important;
    color: #333333;
  }

  .fishing-reject-btn:hover {
    background-color: #c0c0c0 !important;
  }

  @media (max-width: 768px) {
    .fishing-cookie-buttons {
      flex-direction: column !important;
    }
    
    .fishing-cookie-btn {
      width: 100% !important;
      margin-bottom: 10px !important;
    }
  }