.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background-color: #fff;
  width: 100%;
}

/* Odstęp pod fixed header - dodaj do body lub main content */
body {
  padding-top: 200px; /* dostosuj do wysokości headera */
  font-family: "Poppins", sans-serif !important;
  max-width: 1440px !important;
  margin: 0 auto;
}

.container {
  max-width: 1440px !important;
  margin: 0 auto;
}

main {
  padding-top: 225px;
}

/* Automatyczne dostosowanie przez JS - klasa dodawana dynamicznie */
body.has-fixed-header {
  padding-top: var(--header-height, 200px);
}

.site-header *,
.site-header *::before,
.site-header *::after {
  box-sizing: border-box;
}

/* === TOPBAR - pomarańczowy === */
.header-topbar {
  background-color: #AE3B1D;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  overflow: hidden;
  max-height: 60px;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
}

.header-topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px;
  text-align: center;
  transition: padding 0.4s ease;
}

.header-topbar a {
  color: #fff;
  text-decoration: none;
}

.header-topbar a:hover {
  text-decoration: underline;
}

/* Topbar ukryty przy scrollu */
#header.is-scrolled .header-topbar {
  max-height: 0;
  opacity: 0;
}

#header.is-scrolled .header-topbar .header-topbar-inner {
  padding-top: 0;
  padding-bottom: 0;
}

#header.is-scrolled .header-search-row {
  display: none;
}

/* === BOTTOMBAR - szary z 3 sekcjami === */
.header-bottombar {
  background-color: #F5F4F3;
  font-size: 13px;
  line-height: 1.4;
  border-bottom: 1px solid #e8e8e8;
  overflow: hidden;
  max-height: 60px;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease, border 0.3s ease;
}

.header-bottombar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s ease;
}

.bottombar-section {
  color: #333;
}

.bottombar-section a {
  color: #AE3B1D;
  text-decoration: none;
  font-weight: 600;
}

.bottombar-section a:hover {
  text-decoration: underline;
}

.bottombar-left {
  text-align: left;
}

.bottombar-center {
  flex: 1;
  text-align: center;
}

.bottombar-right {
  text-align: right;
}

.bottombar-single {
  width: 100%;
  text-align: center;
}

/* Bottombar ukryty przy scrollu */
#header.is-scrolled .header-bottombar {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
}

#header.is-scrolled .header-bottombar .header-bottombar-inner {
  padding-top: 0;
  padding-bottom: 0;
}

/* === MAIN HEADER === */
.header-main {
  background-color: #fff;
}

.site-header.is-scrolled .header-main {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* --- Górna część: Logo | Nawigacja | Ikony --- */
.header-main-top {
  /* bez border */
}

.header-main-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Logo */
.header-logo {
  flex-shrink: 0;
}

.header-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo-img {
  height: 70px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.header-logo-prefix {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  letter-spacing: 5px;
  margin-bottom: 2px;
}

.header-logo-main {
  font-size: 38px;
  font-weight: 700;
  color: #333;
  letter-spacing: 1px;
}

/* Nawigacja */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav-link {
  color: #222222;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 0;
  position: relative;
  transition: color 0.2s ease;
}

.header-nav-link:hover {
  color: #AE3B1D;
}

/* Ikony */
.header-icons {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
}

.header-icon-item {
  position: relative;
}

.header-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-icon-link:hover {
  color: #AE3B1D;
}

.header-icon-link i {
  font-size: 22px;
}

.header-icon-wrapper {
  position: relative;
  display: inline-block;
}

.header-icon-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #AE3B1D;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.header-icon-label {
  font-size: 11px;
  font-weight: 500;
  color: #333;
}

.header-icon-link:hover .header-icon-label {
  color: #AE3B1D;
}

/* Dropdown dla konta i koszyka */
.header-icon-dropdown,
.header-cart-dropdown {
  position: relative;
}

.header-dropdown-menu,
.header-cart-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 280px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1000;
  margin-top: 10px;
}

.header-dropdown-menu.is-visible,
.header-cart-menu.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-dropdown-user {
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.header-dropdown-user strong {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 3px;
}

.header-dropdown-user small {
  display: block;
  font-size: 12px;
  color: #666;
}

.header-dropdown-divider {
  height: 1px;
  background-color: #f0f0f0;
}

.header-dropdown-item {
  display: block;
  padding: 12px 15px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.header-dropdown-item:hover {
  background-color: #f8f8f8;
}

.header-dropdown-logout {
  color: #AE3B1D;
}

/* Mini koszyk */
.header-cart-menu {
  min-width: 340px;
}

.header-cart-title {
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.header-cart-items {
  max-height: 250px;
  overflow-y: auto;
}

.header-cart-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  gap: 12px;
  border-bottom: 1px solid #f8f8f8;
}

.header-cart-item-img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.header-cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-cart-item-info {
  flex: 1;
  min-width: 0;
}

.header-cart-item-name {
  font-size: 13px;
  color: #333;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-cart-item-price {
  font-size: 12px;
  color: #666;
}

.header-cart-item-total {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  flex-shrink: 0;
}

.header-cart-more {
  padding: 10px 15px;
  font-size: 12px;
  color: #666;
  text-align: center;
  font-style: italic;
}

.header-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-top: 1px solid #f0f0f0;
  font-size: 15px;
}

.header-cart-total strong {
  color: #AE3B1D;
}

.header-cart-buttons {
  display: flex;
  gap: 10px;
  padding: 0 15px 15px;
}

.header-cart-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.2s ease;
  text-align: center;
}

.header-cart-btn-outline {
  background-color: #fff;
  color: #333;
  border: 1px solid #333;
}

.header-cart-btn-outline:hover {
  background-color: #333;
  color: #fff;
}

.header-cart-btn-primary {
  background-color: #AE3B1D;
  color: #fff;
  border: 1px solid #AE3B1D;
}

.header-cart-btn-primary:hover {
  background-color: #a84a19;
  border-color: #a84a19;
}

.header-cart-empty {
  padding: 30px 20px;
  text-align: center;
}

.header-cart-empty i {
  font-size: 40px;
  color: #ddd;
  margin-bottom: 15px;
}

.header-cart-empty p {
  color: #666;
  margin-bottom: 15px;
}

/* Mobile toggle */
.header-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
}

.header-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
}

.header-mobile-toggle.is-active .header-mobile-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header-mobile-toggle.is-active .header-mobile-toggle-bar:nth-child(2) {
  opacity: 0;
}

.header-mobile-toggle.is-active .header-mobile-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === WYSZUKIWARKA === */
.header-search-row {
  background-color: #fff;
  padding: 0 20px 5px;
}

.header-search-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.header-search-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.header-search-input {
  width: 100%;
  padding: 14px 60px 14px 20px;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 30px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search-input::placeholder {
  color: #999;
}

.header-search-input:focus {
  border-color: #AE3B1D;
  box-shadow: 0 0 0 3px rgba(199, 91, 32, 0.1);
}

.header-search-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: #AE3B1D;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.header-search-btn:hover {
  background-color: #a84a19;
}

.header-search-btn i {
  font-size: 16px;
}

/* Dropdown wyszukiwania */
.header-search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  z-index: 1000;
  overflow: hidden;
}

.header-search-dropdown.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-search-results {
  max-height: 350px;
  overflow-y: auto;
}

.header-search-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  gap: 15px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.15s ease;
  border-bottom: 1px solid #f5f5f5;
}

.header-search-item:last-child {
  border-bottom: none;
}

.header-search-item:hover {
  background-color: #f8f8f8;
}

.header-search-item-img {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.header-search-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-search-item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 20px;
}

.header-search-item-info {
  flex: 1;
  min-width: 0;
}

.header-search-item-name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.header-search-item-price {
  font-size: 15px;
  font-weight: 600;
  color: #AE3B1D;
}

.header-search-loading,
.header-search-empty,
.header-search-error {
  padding: 30px 20px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

.header-search-loading i {
  margin-right: 8px;
}

.header-search-all {
  display: block;
  padding: 15px;
  text-align: center;
  background-color: #AE3B1D;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.header-search-all:hover {
  background-color: #B85C3E;
  color: #fff;
}

/* === KATEGORIE === */
.header-categories-row {
  background-color: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #e8e8e8;
}

.header-categories-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-categories-list {
  display: flex;
  gap: 10px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: center;
}

.header-categories-list::-webkit-scrollbar {
  display: none;
}

.header-category-link {
  flex-shrink: 0;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.header-category-link:hover {
  color: #AE3B1D;
}

/* === MOBILE MENU === */
.header-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 90%;
  height: 100vh;
  background-color: #fff;
  z-index: 100001;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.header-mobile-menu.is-open {
  right: 0;
}

.header-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  background-color: #AE3B1D;
  color: white;
  font-size: 32px;
  font-weight: 700;
}

.header-mobile-menu-logo img {
  height: 35px;
  width: auto;
}

.header-mobile-menu-logo span {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.header-mobile-menu-close {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.header-mobile-menu-content {
  padding: 20px;
}

/* Wyszukiwarka mobilna */
.header-mobile-search {
  margin-bottom: 20px;
}

.header-mobile-search form {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 25px;
  overflow: hidden;
}

.header-mobile-search-input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  font-size: 14px;
  outline: none;
}

.header-mobile-search-btn {
  width: 50px;
  background-color: #AE3B1D;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Nawigacja mobilna */
.header-mobile-nav {
  display: flex;
  flex-direction: column;
}

.header-mobile-nav a {
  display: block;
  padding: 14px 0;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s ease;
}

.header-mobile-nav a:hover {
  color: #AE3B1D;
}

.header-mobile-divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 15px 0;
}

/* Kategorie mobilne */
.header-mobile-categories {
  display: flex;
  flex-direction: column;
}

.header-mobile-categories-title {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.header-mobile-categories a {
  display: block;
  padding: 10px 0;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid #f5f5f5;
  transition: color 0.2s ease;
}

.header-mobile-categories a:hover {
  color: #AE3B1D;
}

/* Akcje mobilne */
.header-mobile-actions {
  display: flex;
  flex-direction: column;
}

.header-mobile-actions a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s ease;
}

.header-mobile-actions a:hover {
  color: #AE3B1D;
}

.header-mobile-actions a i {
  width: 20px;
  text-align: center;
  font-size: 18px;
}

.header-mobile-actions a span {
  flex: 1;
}

.header-mobile-logout {
  color: #AE3B1D !important;
}

.header-mobile-badge {
  background-color: #AE3B1D;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: auto;
}

/* Overlay mobilny */
.header-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.header-mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .header-nav-list {
    gap: 25px;
  }
  
  .header-icons {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  main {
    padding-top: 120px;
  }
  .header-nav {
    display: none;
  }
  
  .header-mobile-toggle {
    display: flex;
  }
  
  .header-main-inner {
    gap: 15px;
  }
  
  .header-icon-label {
    display: none;
  }
  
  .header-icons {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .header-dropdown-menu,
  .header-cart-menu {
    display: none !important;
  }

  .header-bottombar {
    display: none !important;
  }
  
  .header-categories-row {
    display: none !important;
  }
  
  .header-topbar-inner {
    padding: 8px 15px;
    font-size: 12px;
  }
  
  .header-main-inner {
    padding: 12px 15px;
  }
  
  .header-logo-img {
    height: 50px;
  }
  
  .header-logo-prefix {
    font-size: 11px;
    letter-spacing: 3px;
  }
  
  .header-logo-main {
    font-size: 28px;
  }
  
  .header-search-row {
    padding: 0 15px 12px;
  }
  
  .header-search-input {
    padding: 12px 55px 12px 18px;
    font-size: 13px;
  }
  
  .header-search-btn {
    width: 40px;
    height: 40px;
  }
  
  .header-icons {
    gap: 12px;
  }
  
  .header-icon-link i {
    font-size: 20px;
  }
  
  /* Koszyk dropdown na mobile na full-width od dołu */
  .header-cart-menu {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    min-width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 70vh;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .header-topbar-inner {
    font-size: 11px;
    padding: 6px 12px;
  }
  
  .header-bottombar-inner {
    font-size: 11px;
    padding: 6px 12px;
  }
  
  .header-main-inner {
    padding: 10px 12px;
  }
  
  .header-logo-img {
    height: 42px;
  }
  
  .header-logo-prefix {
    font-size: 10px;
  }
  
  .header-logo-main {
    font-size: 22px;
  }
  
  .header-search-row {
    padding: 0 12px 10px;
  }
  
  .header-categories-inner {
    padding: 0 12px;
  }
  
  .header-mobile-menu {
    width: 100%;
    max-width: 100%;
  }
}

/* Footer Styles */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #e8e8e8;
  margin-top: 60px;
}

.footer-main {
  padding: 60px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Footer Logo */
.footer-logo-section {
  display: flex;
  justify-content: flex-start;
}

.footer-logo-img {
  width: 171.48px;
  height: 84px;
  object-fit: contain;
  opacity: 1;
}

.footer-logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  width: 171.48px;
  height: 84px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-logo-text .logo-main {
  font-size: 24px;
  line-height: 1;
  color: #333;
}

.footer-logo-text .logo-sub {
  font-size: 24px;
  line-height: 1;
  color: #333;
}

/* Footer Sections */
.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #333;
  margin-bottom: 20px;
}

/* Categories Grid */
.footer-categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer-categories-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-category-link {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
  display: block;
}

.footer-category-link:hover {
  color: #333;
}

/* Footer Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
  display: block;
}

.footer-link:hover {
  color: #333;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #e8e8e8;
  padding: 20px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #666;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.social-icon:hover {
  color: #333;
  background: #e9ecef;
  transform: translateY(-2px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Container */
.container {
  max-width: 100%;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 180px 1fr 1fr 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
  
  .footer-logo-section {
    grid-column: 1 / -1;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .footer-categories {
    grid-column: 1 / -1;
  }
  
  .footer-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 40px 0 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    gap: 25px;
  }
  
  .footer-categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .footer-social {
    gap: 10px;
  }
  
  .social-icon {
    width: 35px;
    height: 35px;
  }
  
  .container {
    padding: 0 5px;
  }
}

/* Reset i podstawy */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

#main {
  overflow-x: hidden;
}

/* Ukrycie domyślnych sekcji PrestaShop */
.featured-products,
.new-products,
.products-section-home,
.block-categories,
.block-reassurance {
  display: none !important;
}

/* =============================================================================
   SEKCJA 1: HERO SLIDER - NAPRAWIONE v3
============================================================================= */
.hero-slider-section {
  margin-top: 20px;
  width: 100%;
  padding: 0;
  background: #fff;
  overflow: hidden; /* WAŻNE - ukryj overflow na sekcji */
}

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden; /* WAŻNE */
}

.hero-slides-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.hero-slide {
  min-width: 100%;
  width: 100%; /* Dodane dla pewności */
  flex: 0 0 100%; /* Nie kurczyć, nie rosnąć, zawsze 100% */
  height: 500px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

/* Overlay */
.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Container - pełna szerokość i wysokość */
.hero-slide-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}

/* Content slajdu */
.hero-slide-content {
  width: 100%;
  height: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 30px 0 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #ffffff;
  box-sizing: border-box;
}

.hero-slide-heading {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  max-width: 700px;
}

.hero-slide-text {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 30px 0;
  max-width: 600px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-slide-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #AE3B1D;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-slide-btn:hover {
  background: #8a2f17;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(174, 59, 29, 0.4);
  color: #ffffff;
  text-decoration: none;
}

/* Strzałki nawigacji */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #333;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-arrow-prev {
  left: 50px;
}

.hero-arrow-next {
  right: 50px;
}

/* Kropki nawigacji */
.hero-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 25px;
  height: 5px;
  border-radius: 30px;
  background: #333333;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.hero-dot:hover {
  background: #666;
}

.hero-dot.active {
  background: #AE3B1D;
  width: 35px;
}

/* =============================================================================
   RESPONSIVE - HERO SLIDER
============================================================================= */
@media (max-width: 1200px) {
  .hero-arrow-prev {
    left: 30px;
  }
  .hero-arrow-next {
    right: 30px;
  }
}

@media (max-width: 992px) {
  .hero-slide {
    height: 400px;
  }
  .hero-slide-heading {
    font-size: 36px;
  }
  .hero-slide-text {
    font-size: 16px;
  }
  .hero-arrow-prev {
    left: 20px;
  }
  .hero-arrow-next {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .hero-slider-section {
    margin-top: 10px;
  }
  
  .hero-slide {
    height: auto;
    min-height: 280px;
    max-height: 70vh;
    aspect-ratio: 16 / 9;
  }
  
  .hero-slide-content {
    padding: 40px 20px 20px;
    align-items: center;
    justify-content: center;
  }
  
  .hero-slide-heading {
    font-size: 22px;
    margin-bottom: 12px;
    max-width: 100%;
    text-align: center;
  }
  
  .hero-slide-text {
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 100%;
    text-align: center;
  }
  
  /* Ukryj strzałki nawigacji na mobile */
  .hero-arrow {
    display: none !important;
  }
  
  .hero-slide-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .hero-dots {
    bottom: 15px;
  }
  
  .hero-dot {
    width: 20px;
    height: 4px;
  }
  
  .hero-dot.active {
    width: 28px;
  }
}

@media (max-width: 480px) {
  .hero-slide {
    min-height: 220px;
  }
  
  .hero-slide-content {
    padding: 35px 15px 15px;
  }
  
  .hero-slide-heading {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .hero-slide-text {
    font-size: 13px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .hero-slide-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .hero-dots {
    bottom: 10px;
  }
  
  .hero-dot {
    width: 16px;
    height: 3px;
  }
  
  .hero-dot.active {
    width: 24px;
  }
}

@media (max-width: 360px) {
  .hero-slide {
    min-height: 200px;
  }
  
  .hero-slide-heading {
    font-size: 18px;
  }
  
  .hero-slide-text {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }
  
  .hero-slide-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* =============================================================================
   SEKCJA 2: ODWIEDŹ NASZ SKLEP
============================================================================= */
.visit-store-section {
  
  padding: 60px 0;
  background: #fff;
}

.visit-store-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  background: #faf9f5;
  border-radius: 16px;
  overflow: hidden;
}

.visit-store-info {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-store-title {
  font-size: 38px;
  font-weight: 700;
  color: #222222;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.visit-store-desc {
  font-size: 16px;
  color: #666;
  margin: 0 0 30px 0;
  line-height: 1.6;
}

.visit-store-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.visit-store-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.visit-store-icon {
  background-color: #ae3a1d10;
  padding: 10px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #AE3B1D;
}

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

.visit-store-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.visit-store-text {
  text-decoration: none;
}

.visit-store-text:hover {
  color: #AE3B1D;
}

.visit-store-text a {
  text-decoration: none;
}

.visit-store-text a:hover {
  color: #AE3B1D;
}

.visit-store-text strong {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.visit-store-text span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #666;
}

.visit-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #AE3B1D;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  width: max-content;
  font-weight: 500;
  transition: all 0.3s ease;
}

.visit-store-btn:hover {
  background: #8B2F17;
  transform: translateY(-2px);
}

.visit-store-map {
  min-height: 400px;
}

.visit-store-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


/* =============================================================================
   SEKCJA 3 & 6: PRODUKTY - NOWOŚCI I PROMOCJE
============================================================================= */
.products-section {
  padding: 60px 0;
  background: #ffffff;
}

.newest-section {
  max-width: 1300px;
  margin: 0 auto;
  background: #ffffff;
}

.section-header {
  margin-bottom: 40px;
  justify-items: center;
}

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

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #222222;
  margin: 0 0 8px 0;
}

.form-section .section-title {
  text-align: left;
  font-size: 26px;
  font-weight: 700;
  color: #222222;
  margin: 0 0 8px 0;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  color: #666;
  margin: 0;
}

/* Products Slider */
.products-slider {
  max-width: 1140px;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0 auto;
}

.products-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.product-slide {
  flex: 0 0 calc(25% - 15px);
  min-width: 250px;
  max-width: 285px;
}

/* Strzałki nawigacji */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.slider-prev { left: 0; }
.slider-next { right: 0; }

.slider-nav:hover:not(:disabled) {
  background: #f8f9fa;
  transform: translateY(-50%) scale(1.1);
}

.slider-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.product-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

/* Obrazek produktu */
.product-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8f9fa;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-image-link {
  display: block;
  width: 100%;
  height: 100%;
}

/* Wishlist button */
.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

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

.wishlist-btn.active,
.wishlist-btn.in-wishlist {
  background: #ff4757;
  color: white;
}

.wishlist-btn.active svg,
.wishlist-btn.in-wishlist svg {
  fill: white;
  stroke: white;
}

.wishlist-btn.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Badges */
.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}

.product-new-badge,
.product-sale-badge {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.product-new-badge {
  background: #4CAF50;
  color: white;
}

.product-sale-badge {
  background: #AE3B1D;
  color: white;
}

/* Product Info */
.product-info {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.product-name {
  margin: 0 0 10px 0;
  font-size: 14px;
  line-height: 1.4;
  flex-grow: 1;
}

.product-name a {
  color: #333;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.product-name a:hover {
  color: #AE3B1D;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.price-current {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #AE3B1D;
}

.price-original {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
}

/* Product Actions */
.product-actions {
  padding: 0 15px 15px;
}

.add-to-cart-form {
  width: 100%;
}

.add-to-cart-btn,
.notify-btn-main {
  width: 100%;
  background: #AE3B1D;
  color: white;
  border: 1px solid #AE3B1D;
  padding: 12px 16px;
  border-radius: 86px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover:not(:disabled) {
  background: #B85C3E;
  border-color: #B85C3E;
  color: white;
}

.add-to-cart-btn:disabled,
.add-to-cart-btn-disabled {
  background: #ccc;
  border-color: #ccc;
  color: #666;
  cursor: not-allowed;
}

/* Section Footer */
.section-footer {
  text-align: center;
  margin-top: 40px;
}

.section-see-all-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #333;
  color: white;
  border: 2px solid #333;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.section-see-all-btn:hover {
  background: white;
  color: #333;
}

.section-see-all-btn-white {
  border-color: #333;
  background: #333;
  color: white;
}

.section-see-all-btn-white:hover {
  background: white;
  color: #333;
}


/* =============================================================================
   SEKCJA 4: KATEGORIE SLIDER
============================================================================= */
.categories-slider-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 0;
  background: #fff;
}

.categories-slider {
  position: relative;
  overflow: hidden;
}

.categories-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.category-slide {
  flex: 0 0 calc(25% - 15px);
  min-width: 250px;
}

.category-card {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
}

.category-card-image {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  transition: background 0.3s ease;
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%);
}

.category-card-content {
  position: relative;
  z-index: 2;
  padding: 25px;
  color: white;
  width: 100%;
}

.category-card-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: white;
}

.category-card-count {
  font-size: 13px;
  opacity: 0.8;
  display: block;
  margin-bottom: 15px;
}

.category-card-btn {
  display: inline-block;
  padding: 8px 20px;
  background: transparent;
  border: 1px solid white;
  border-radius: 20px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-card:hover .category-card-btn {
  background: white;
  color: #333;
}

/* =============================================================================
   SEKCJA 5: KORZYŚCI / USP
============================================================================= */
.benefits-section {
  padding: 60px 0;
  justify-items: center;
  text-align: center;
  background: #F8F4E7;
}

.benefits-section h2 {
  font-size: 34px;
  font-weight: 700;
  color: #222222;
  margin: 0 0 50px 0;
  justify-items: center;
  text-align: center;
}

.benefits-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefits-contact-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-item {
  background: white;
  border-radius: 16px;
  padding: 35px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: #AE3B1D;
}

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

.benefit-icon i {
  font-size: 56px;
}

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

.benefit-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px 0;
}

.benefit-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* =============================================================================
   SEKCJA 6: PROMOCJE / WYPRZEDAŻ
============================================================================= */
.promo-section {
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-color: #333;
  position: relative;
}

.promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #AE3B1D 0%, #333D4C 100% );
}

.promo-section .container {
  position: relative;
  z-index: 2;
}

.promo-header {
  text-align: center;
  margin-bottom: 50px;
}

.promo-badge {
  display: inline-block;
  background: #AE3B1D;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.promo-title {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin: 0 0 10px 0;
}

.promo-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.promo-section .product-card {
  background: white;
}

.promo-footer {
  margin-top: 50px;
}


/* =============================================================================
   SEKCJA 7: GALERIA INSPIRACJI
============================================================================= */
.inspiration-section {
  padding: 40px 0;
  background: #ffffff;
}

.inspiration-header {
  text-align: center;
  margin-bottom: 30px;
}

.inspiration-title {
  font-size: 36px;
  font-weight: 700;
  color: #222222;
  margin: 0 0 8px 0;
}

.inspiration-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #666;
  margin: 0;
}

.inspiration-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #AE3B1D;
  color: #AE3B1D;
}

.filter-btn.active {
  background: #AE3B1D;
  border-color: #AE3B1D;
  color: white;
}

/* Galeria inspiracji */
.inspiration-gallery {
  max-width: 1200px;
  margin: 0 auto;
}

.inspiration-category-gallery {
  display: flex;
  gap: 20px;
  height: 600px;
}

.inspiration-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inspiration-image-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #f8f9fa;
  flex: 1;
}

.inspiration-column-left .inspiration-image-item {
  flex: 1;
}

.inspiration-image-large {
  flex: 0 0 60%;
}

.inspiration-image-small {
  flex: 0 0 calc(40% - 20px);
}

.inspiration-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.inspiration-image-item:hover .inspiration-image {
  transform: scale(1.05);
}

/* Układy dla różnej liczby zdjęć */
.inspiration-single-image {
  height: 400px;
}

.inspiration-single-image .inspiration-image-item {
  height: 100%;
}

.inspiration-two-images {
  display: flex;
  gap: 20px;
  height: 400px;
}

.inspiration-two-images .inspiration-image-item {
  flex: 1;
  height: 100%;
}

.inspiration-three-images {
  display: flex;
  gap: 20px;
  height: 500px;
}

.inspiration-three-images .inspiration-column-left {
  flex: 1;
}

.inspiration-three-images .inspiration-column-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inspiration-three-images .inspiration-column-right .inspiration-image-item {
  flex: 1;
}

.inspiration-four-images {
  display: flex;
  gap: 20px;
  height: 600px;
}

.inspiration-no-images {
  text-align: center;
  padding: 60px;
  color: #666;
}

/* =============================================================================
   SEKCJA 8: NEWSLETTER
============================================================================= */
.newsletter-section {
  padding: 0;
  background: #ffffff;
  margin: 0;
}

.newsletter-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  max-width: 100%;
  margin: 0 auto;
}

.newsletter-content {
  background: #7A8B92;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.newsletter-title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: white;
  margin: 0 0 15px 0;
}

.newsletter-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 30px 0;
  line-height: 1.5;
}

.newsletter-form {
  margin-bottom: 15px;
}

.newsletter-input-group {
  display: flex;
  gap: 0;
}

.newsletter-input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  background: white;
}

.newsletter-input-icon {
  position: absolute;
  left: 15px;
  width: 20px;
  height: 20px;
  color: #999;
}

.newsletter-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 20px 16px 45px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background: white;
  color: #333;
}

.newsletter-input::placeholder {
  color: #999;
}

.newsletter-submit-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 16px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-submit-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.newsletter-messages {
  min-height: 24px;
}

.newsletter-message {
  font-size: 14px;
  padding: 8px 0;
}

.newsletter-message.success {
  color: #90EE90;
}

.newsletter-message.error {
  color: #FFB6C1;
}

.newsletter-image {
  background: #f8f9fa;
  overflow: hidden;
}

.newsletter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


@media (max-width: 1024px) {
  .visit-store-wrapper {
    grid-template-columns: 1fr;
  }
  
  .visit-store-map {
    min-height: 300px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-slide,
  .category-slide {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 220px;
  }
  
  .newsletter-wrapper {
    grid-template-columns: 1fr;
  }
  
  .newsletter-content {
    padding: 40px;
  }
  
  .newsletter-image {
    min-height: 300px;
  }
  
  .inspiration-category-gallery,
  .inspiration-four-images {
    height: 500px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  
  /* ============================================
     HERO SLIDER - WYŻSZY NA MOBILE
  ============================================ */
  .hero-slide {
    height: auto;
    min-height: 380px; /* Zwiększona wysokość */
    max-height: 80vh;
    aspect-ratio: 4 / 3; /* Wyższy aspect ratio */
  }
  
  .hero-slide-content {
    padding: 50px 25px 30px;
  }
  
  .hero-slide-heading {
    font-size: 26px;
    margin-bottom: 15px;
  }
  
  .hero-slide-text {
    font-size: 15px;
    margin-bottom: 25px;
    -webkit-line-clamp: 4;
  }

  /* ============================================
     SEKCJE Z KOLOROWYM TŁEM - FULL WIDTH
  ============================================ */
  
  /* Benefits Section - żółte tło */
  .benefits-section {
    padding: 50px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
  }
  
  .benefits-section .benefits-grid {
    padding: 0 20px;
    max-width: 100%;
  }
  
  /* Promo Section - gradient tło */
  .promo-section {
    padding: 50px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
  }
  
  .promo-section .container {
    padding: 0 20px;
  }
  
  /* Newsletter Section - szare tło */
  .newsletter-section {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
  }
  
  .newsletter-content {
    padding: 40px 20px;
  }

  /* ============================================
     VISIT STORE
  ============================================ */
  .visit-store-section {
    padding: 40px 0;
  }
  
  .visit-store-info {
    padding: 30px 25px;
  }
  
  .visit-store-title {
    font-size: 24px;
  }
  
  /* ============================================
     PRODUCTS SECTION
  ============================================ */
  .products-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .products-slider {
    padding: 0 15px;
  }
  
  .products-track {
    gap: 15px;
  }
  
  .product-slide {
    flex: 0 0 calc(100vw - 50px);
    width: calc(100vw - 50px);
    min-width: 280px;
    max-width: 100%;
  }
  
  .product-image-container {
    height: 220px;
  }

  /* ============================================
     BENEFITS
  ============================================ */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .benefit-item {
    padding: 25px 20px;
  }
  
  .benefit-icon {
    width: 40px;
    height: 40px;
  }
  
  .benefit-title {
    font-size: 14px;
  }
  
  .benefit-desc {
    font-size: 12px;
  }

  /* ============================================
     PROMO
  ============================================ */
  .promo-title {
    font-size: 26px;
  }

  /* ============================================
     INSPIRATION
  ============================================ */
  .inspiration-section {
    padding: 50px 0;
  }
  
  .inspiration-title {
    font-size: 24px;
  }
  
  .inspiration-filters {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 10px 18px;
    font-size: 13px;
  }
  
  .inspiration-category-gallery,
  .inspiration-four-images,
  .inspiration-three-images {
    flex-direction: column;
    height: auto;
  }
  
  .inspiration-category-gallery .inspiration-column {
    height: 250px;
  }
  
  .inspiration-two-images {
    flex-direction: column;
    height: auto;
  }
  
  .inspiration-two-images .inspiration-image-item {
    height: 200px;
  }

  /* ============================================
     NEWSLETTER
  ============================================ */
  .newsletter-title {
    font-size: 26px;
  }
  
  .newsletter-input-group {
    flex-direction: column;
    gap: 10px;
  }
  
  .newsletter-input-wrapper {
    width: 100%;
  }
  
  .newsletter-submit-btn {
    width: 100%;
    padding: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  
  /* Hero jeszcze wyższy */
  .hero-slide {
    min-height: 340px;
    aspect-ratio: 3 / 4; /* Jeszcze wyższy na małych ekranach */
  }
  
  .hero-slide-content {
    padding: 40px 20px 25px;
  }
  
  .hero-slide-heading {
    font-size: 22px;
  }
  
  .hero-slide-text {
    font-size: 14px;
    -webkit-line-clamp: 3;
  }
  
  .visit-store-info {
    padding: 25px 20px;
  }
  
  .visit-store-title {
    font-size: 20px;
  }
  
  .visit-store-desc {
    font-size: 14px;
  }
  
  .section-title {
    font-size: 20px;
  }
  
  .section-subtitle {
    font-size: 14px;
  }
  
  .product-slide {
    flex: 0 0 calc(100vw - 40px);
    width: calc(100vw - 40px);
    min-width: 260px;
  }
  
  .product-image-container {
    height: 200px;
  }
  
  .slider-nav {
    width: 32px;
    height: 32px;
  }
  
  .benefit-item {
    padding: 20px 15px;
  }
  
  .promo-title {
    font-size: 22px;
  }
  
  .inspiration-title {
    font-size: 20px;
  }
  
  .newsletter-title {
    font-size: 22px;
  }
  
  .newsletter-subtitle {
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .hero-slide {
    min-height: 300px;
  }
  
  .hero-slide-heading {
    font-size: 20px;
  }
}

/* Desktop - przywróć normalny widok */
@media (min-width: 769px) {
  .products-track .product-slide {
    display: block !important;
  }
}

@media (min-width: 1025px) {
  .product-slide {
    flex: 0 0 calc(25% - 15px);
    min-width: 250px;
    max-width: 285px;
  }
  
  .product-image-container {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .categories-slider-section {
    padding: 40px 0;
  }
  
  .categories-slider {
    position: relative;
    overflow: hidden;
    padding: 0 20px;
  }
  
  .categories-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-out;
  }
  
  .category-slide {
    flex: 0 0 calc(100vw - 80px);
    width: calc(100vw - 80px);
    min-width: calc(100vw - 80px);
  }
  
  .category-card {
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .category-card-image {
    height: 100%;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .category-slide {
    flex: 0 0 calc(100vw - 60px);
    width: calc(100vw - 60px);
    min-width: calc(100vw - 60px);
  }
  
  .category-card,
  .category-card-image {
    height: 300px;
  }
}

/* Breadcrumbs styling */
.breadcrumb-section {
  margin: 50px 0 0;
  padding: 0 20px;
}

.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #666;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  color: #999;
  font-weight: normal;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #333;
  text-decoration: underline;
}

.breadcrumb li.active {
  color: #333;
  font-weight: 500;
}

.cookie-banner {
    position: fixed;
    bottom: 10px;
    right: 10px;
    max-width: 500px;
    background: white;
    color: #666;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    border: 1px solid #666;
    border-radius: 8px;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-text h3 {
  font-size: 14px;
  margin-bottom: 15px;
}

.cookie-text p {
  font-size: 10px;
  margin-bottom: 15px;
}

.cookie-text ul {
  margin-left: 10px;
  margin-bottom: 15px;
}

.cookie-text li {
  font-size: 10px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-link {
    color: #333;
    text-decoration: none;
}

@media (max-width: 768px) {
    .breadcrumb-section {
      padding: 0 5px;
    }

    .breadcrumb {
      font-size: 13px;
    }
  
    .breadcrumb li:not(:last-child)::after {
      margin: 0 6px;
    }

    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}
