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

body {
  background: #ffffff;
  font-family: "DM Sans", sans-serif !important;
}

/* ========================================
   HEADER - COMPLETE STYLES
   ======================================== */

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-radius: 0 0 50px 50px;
}

.site-header {
  position: relative;
  width: 100%;
}

.header-main {
  position: relative;
  background: #fff;
  border-radius: 0 0 50px 50px;
  padding: 0 50px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Slider na stronie głównej - zaczyna od top: 0, pod headerem */
body.page-index #wrapper {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body.page-index .customblocks-slider {
  margin-top: 0 !important;
}

/* Na pozostałych stronach - padding żeby content nie był pod headerem */
body:not(.page-index) #wrapper {
  padding-top: 80px;
}

body:not(.page-index) #content-wrapper {
  padding-top: 0;
}

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

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

.header-logo a {
  display: block;
}

.header-logo .logo-img {
  height: 60px;
  width: auto;
}

.logo-text {
  text-align: center;
  font-family: 'Georgia', serif;
}

.logo-main {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  letter-spacing: 2px;
}

.logo-sub {
  font-size: 14px;
  color: #666;
  letter-spacing: 4px;
}

/* Navigation */
.main-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 35px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  padding: 10px 0;
  transition: color 0.2s ease;
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #c41e3a;
}

/* ========================================
   LIVE SEARCH
   ======================================== */

.header-search {
  position: relative;
  display: flex;
  align-items: center;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.live-search-form {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  position: relative;
}

.live-search-input {
  width: 0;
  padding: 0;
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

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

.header-search.open .live-search-input {
  width: 220px;
  padding: 8px 0;
  margin-right: 10px;
  border-bottom-color: #e5e5e5;
  opacity: 1;
}

.header-search.open .live-search-input:focus {
  border-bottom-color: #c41e3a;
}

.search-toggle {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  color: #333;
  font-size: 18px;
  transition: color 0.2s ease;
}

.search-toggle:hover {
  color: #c41e3a;
}

/* Search Results Dropdown */
.live-search-results {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  width: 380px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  overflow: hidden;
}

.live-search-results.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-results-inner {
  max-height: 450px;
  overflow-y: auto;
}

.search-loading {
  display: none;
  padding: 30px;
  text-align: center;
  color: #888;
  font-size: 14px;
}

.search-loading.show {
  display: block;
}

.search-loading i {
  margin-right: 8px;
  color: #c41e3a;
}

.search-no-results {
  display: none;
  padding: 40px 30px;
  text-align: center;
  color: #888;
}

.search-no-results.show {
  display: block;
}

.search-no-results i {
  font-size: 36px;
  margin-bottom: 15px;
  display: block;
  color: #ddd;
}

.search-results-list {
  padding: 10px 0;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 20px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s ease;
}

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

.search-result-image {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f5;
}

.search-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.search-result-name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-name strong {
  color: #c41e3a;
}

.search-result-price {
  font-size: 15px;
  font-weight: 600;
  color: #c41e3a;
  white-space: nowrap;
}

.search-view-all {
  display: none;
  padding: 15px 20px;
  text-align: center;
  background: #f8f8f8;
  color: #c41e3a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-top: 1px solid #eee;
  transition: background 0.2s ease;
}

.search-view-all.show {
  display: block;
}

.search-view-all:hover {
  background: #f0f0f0;
}

.search-view-all i {
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.search-view-all:hover i {
  transform: translateX(4px);
}

.mini-cart-empty .btn {
  color: #c41e3a;
  text-decoration: none;
}

.mini-cart-empty .btn:hover {
  color: #e0072b;
  text-decoration: none;
}

/* ========================================
   HEADER ACTIONS
   ======================================== */

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-action {
  position: relative;
}

.action-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  font-size: 20px;
  padding: 5px;
  transition: color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.action-link:hover {
  color: #c41e3a;
}

.wishlist-counter,
.cart-count-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #c41e3a;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.cart-count-badge {
  top: -8px;
  right: -10px;
}

/* Animacja bounce dla liczników */
@keyframes bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.cart-count-badge.bounce,
.wishlist-counter.bounce {
  animation: bounce 0.3s ease;
}

/* Cart */
.cart-widget {
  position: relative;
}

.cart-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-icon-wrapper {
  position: relative;
}

.cart-price {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

/* ========================================
   USER DROPDOWN
   ======================================== */

.user-dropdown {
  position: relative;
}

.user-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.user-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-info {
  padding: 0 15px 10px;
}

.user-name {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.user-email {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

.user-menu-divider {
  height: 1px;
  background: #e5e5e5;
  margin: 10px 0;
}

.user-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: #444;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.user-menu-item:hover {
  background: #f5f5f5;
  color: #EF3C2C;
}

.user-menu-item i {
  width: 16px;
  text-align: center;
  color: #888;
}

.user-menu-item:hover i {
  color: #EF3C2C;
}

.user-menu-item.logout {
  color: #dc3545;
}

.user-menu-item.logout i {
  color: #dc3545;
}

/* ========================================
   MINI CART DROPDOWN
   ======================================== */

.mini-cart-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
  min-width: 340px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  overflow: hidden;
}

.mini-cart-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mini-cart-inner {
  padding: 10px;
}

.mini-cart-header {
  margin-bottom: 15px;
}

.mini-cart-title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin: 0;
}

.mini-cart-products {
  max-height: 250px;
  overflow-y: auto;
}

.mini-cart-product {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.mini-cart-product:last-child {
  border-bottom: none;
}

.mini-product-image {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.mini-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-product-info {
  flex: 1;
  min-width: 0;
}

.mini-product-name {
  font-size: 13px;
  color: #333;
  text-decoration: none;
  display: block;
  line-height: 1.3;
}

.mini-product-name:hover {
  color: #EF3C2C;
}

.mini-product-details {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}

.mini-product-total {
  font-size: 13px;
  font-weight: 600;
  color: #EF3C2C;
  white-space: nowrap;
}

.mini-cart-more {
  text-align: center;
  font-size: 12px;
  color: #888;
  padding: 10px 0;
}

.mini-cart-footer {
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 10px;
}

.mini-cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 15px;
}

.total-label {
  color: #666;
}

.total-value {
  font-weight: 700;
  color: #222;
}

.mini-cart-actions {
  display: flex;
  gap: 10px;
}

.mini-cart-actions .btn {
  flex: 1;
  padding: 10px 15px;
  font-size: 13px;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

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

.mini-cart-actions .btn-outline:hover {
  border-color: #EF3C2C;
  color: #EF3C2C;
}

.mini-cart-actions .btn-primary {
  background: linear-gradient(135deg, #FBB74D 0%, #EF3C2C 100%);
  color: #fff;
  border: none;
}

.mini-cart-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(239,60,44,0.3);
}

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

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

.mini-cart-empty p {
  color: #888;
  margin-bottom: 15px;
}

.mini-cart-empty .btn {
  display: inline-block;
}

/* ========================================
   MOBILE MENU TOGGLE
   ======================================== */

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: #333;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   MOBILE MENU
   ======================================== */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

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

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

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

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.mobile-menu-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.mobile-menu-close {
  width: 36px;
  height: 36px;
  border: none;
  background: #f5f5f5;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #666;
  transition: all 0.2s;
}

.mobile-menu-close:hover {
  background: #eee;
  color: #333;
}

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

.mobile-nav-menu li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-menu a {
  display: block;
  padding: 15px 0;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
  color: #c41e3a;
}

.mobile-menu-separator {
  height: 1px;
  background: #e5e5e5;
  margin: 20px 0;
}

/* Mobile Account Section */
.mobile-account-section {
  padding-top: 10px;
}

.mobile-user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f8f8;
  border-radius: 12px;
  margin-bottom: 15px;
}

.mobile-user-avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #FBB74D 0%, #EF3C2C 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.mobile-user-details {
  flex: 1;
}

.mobile-user-name {
  font-weight: 600;
  color: #333;
  font-size: 15px;
}

.mobile-user-email {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

.mobile-account-links {
  display: flex;
  flex-direction: column;
}

.mobile-account-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 10px;
  color: #444;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s;
}

.mobile-account-link:last-child {
  border-bottom: none;
}

.mobile-account-link:hover {
  color: #EF3C2C;
  background: #fafafa;
}

.mobile-account-link i {
  width: 20px;
  text-align: center;
  color: #888;
  font-size: 14px;
}

.mobile-account-link:hover i {
  color: #EF3C2C;
}

.mobile-account-link.logout {
  color: #dc3545;
  margin-top: 10px;
  border-top: 1px solid #f0f0f0;
}

.mobile-account-link.logout i {
  color: #dc3545;
}

.mobile-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #FBB74D 0%, #EF3C2C 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
}

.mobile-login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(239,60,44,0.3);
  color: #fff;
}

.mobile-register-text {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  color: #888;
}

.mobile-register-text a {
  color: #EF3C2C;
  text-decoration: none;
  font-weight: 500;
}

.mobile-register-text a:hover {
  text-decoration: underline;
}

/* Desktop only class */
.desktop-only {
  display: block;
}

/* ========================================
   RESPONSIVE - HEADER
   ZAMIEŃ CAŁĄ SEKCJĘ OD @media (max-width: 1200px) DO KOŃCA
   ======================================== */

@media (max-width: 1200px) {
  .header-main {
    padding: 0 30px;
  }
  
  .nav-menu {
    gap: 25px;
  }
  
  .nav-link {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  
  /* Główny kontener headera */
  .main-header-content {
    height: 70px;
    position: relative;
  }
  
  .header-main {
    padding: 0 15px;
    border-radius: 0 0 30px 30px;
  }
  
  #header {
    border-radius: 0 0 30px 30px;
  }
  
  /* Logo po lewej */
  .header-logo {
    flex-shrink: 0;
    z-index: 10;
    margin-right: auto !important;
  }
  
  .header-logo .logo-img {
    height: 50px;
  }
  
  /* Ukryj nawigację desktop */
  .main-navigation {
    display: none !important;
  }
  
  /* ============================================
     PRAWA STRONA - IKONY OBOK SIEBIE
     ============================================ */
  
  /* Kontener search - tylko ikona widoczna normalnie */
  .header-search {
    position: static;
  }
  
  .search-container {
    position: static;
  }
  
  .live-search-form {
    position: static;
  }
  
  /* Ikona lupy */
  .search-toggle {
    font-size: 20px;
    padding: 8px;
    color: #333;
    position: relative;
    z-index: 10;
  }
  
  /* INPUT SEARCH - absolutnie pozycjonowany, wysuwa się na całą szerokość */
  .live-search-input {
    position: absolute !important;
    left: 70px !important;
    right: 130px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    height: 40px !important;
    background: #fff !important;
    border: 2px solid #e5e5e5 !important;
    border-radius: 25px !important;
    padding: 0 20px !important;
    font-size: 14px !important;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .header-search.open .live-search-input {
    opacity: 1 !important;
    pointer-events: auto !important;
    border-color: #c41e3a !important;
  }
  
  /* Dropdown wyników - fullwidth */
  .live-search-results {
    position: fixed !important;
    top: 75px !important;
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
    max-height: calc(100vh - 100px);
    border-radius: 16px;
  }
  
  .search-results-inner {
    max-height: calc(100vh - 130px);
  }
  
  /* Header actions - wszystkie ikony razem */
  .header-actions {
    display: flex !important;
    align-items: center;
    gap: 12px;
  }
  
  /* Poszczególne ikony */
  .header-action {
    display: block !important;
  }
  
  .header-action.wishlist-action {
    display: block !important;
  }
  
  .header-action.cart-action {
    display: block !important;
  }
  
  /* Ukryj TYLKO ikonę konta desktop */
  .header-action.account-action.desktop-only {
    display: none !important;
  }
  
  .action-link {
    font-size: 20px;
    padding: 8px;
    color: #333;
  }
  
  /* Ukryj cenę koszyka */
  .cart-price {
    display: none !important;
  }
  
  /* Ukryj mini cart dropdown na mobile */
  .mini-cart-dropdown {
    display: none !important;
  }
  
  /* Hamburger */
  .mobile-menu-toggle {
    display: flex !important;
    width: 26px;
    height: 20px;
  }
  
  body:not(.page-index) #wrapper {
    padding-top: 70px;
  }
}

@media (max-width: 576px) {
  
  .main-header-content {
    height: 60px;
  }
  
  .header-main {
    padding: 0 12px;
    border-radius: 0 0 25px 25px;
  }
  
  #header {
    border-radius: 0 0 25px 25px;
  }
  
  .header-logo .logo-img {
    height: 42px;
  }
  
  /* Input search - dostosuj pozycje dla mniejszych ekranów */
  .live-search-input {
    left: 55px !important;
    right: 115px !important;
    height: 36px !important;
    font-size: 13px !important;
    padding: 0 15px !important;
  }
  
  .live-search-results {
    top: 65px !important;
  }
  
  .header-actions {
    gap: 8px;
  }
  
  .action-link {
    font-size: 18px;
    padding: 6px;
  }
  
  .search-toggle {
    font-size: 18px;
    padding: 6px;
  }
  
  /* Mniejsze badge */
  .wishlist-counter,
  .cart-count-badge {
    min-width: 16px;
    height: 16px;
    font-size: 9px;
  }
  
  .cart-count-badge {
    top: -6px;
    right: -8px;
  }
  
  .mobile-menu-toggle {
    width: 24px;
    height: 18px;
  }
  
  body:not(.page-index) #wrapper {
    padding-top: 60px;
  }
}

@media (max-width: 420px) {
  
  .live-search-input {
    left: 50px !important;
    right: 105px !important;
  }
  
  .header-actions {
    gap: 6px;
  }
  
  .action-link {
    font-size: 17px;
    padding: 5px;
  }
  
  .search-toggle {
    font-size: 17px;
    padding: 5px;
  }
  
  .header-logo .logo-img {
    height: 38px;
  }
}

@media (max-width: 360px) {
  
  .live-search-input {
    left: 45px !important;
    right: 95px !important;
    height: 34px !important;
    font-size: 12px !important;
  }
  
  .header-actions {
    gap: 4px;
  }
  
  .action-link {
    font-size: 16px;
    padding: 4px;
  }
  
  .search-toggle {
    font-size: 16px;
    padding: 4px;
  }
  
  .header-logo .logo-img {
    height: 35px;
  }
}

.homepage-slider {
  width: 100%;
  margin-top: -80px; /* Ujemny margin = wysokość headera, slider idzie do góry */
  padding-top: 80px;
  position: relative;
  z-index: 1; /* Pod headerem (z-index: 1000) */
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Pełna wysokość ekranu */
  max-height: 800px;
  min-height: 500px;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Pojedynczy slajd */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

/* Gradient overlay - ciemniejszy po lewej */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.1) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Zawartość slajdu */
.slide-content {
  position: absolute;
  top: 55%; /* Lekko niżej żeby być pod headerem */
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 100px;
  color: #fff;
  z-index: 2;
}

/* Tytuł H2 */
.slide-title {
  font-size: 90px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 15px 0 ;
  color: #F26901;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.slide-title-2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 15px 0;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.slide-title span,
.slide-title em,
.slide-title strong {
  color: inherit;
}

/* Tekst paragraf */
.slide-text {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 30px 0;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.slide-text p {
  margin: 0 0 10px 0;
}

.slide-text p:last-child {
  margin-bottom: 0;
}

/* Przycisk */
.slide-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slide-button:hover {
  background: linear-gradient(135deg, #d42a47 0%, #b52040 100%);
  color: #fff;
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

.slide-button i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.slide-button:hover i {
  transform: translateX(4px);
}

/* Animacje wejścia */
.slide .slide-title,
.slide .slide-text,
.slide .slide-button {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.slide.active .slide-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.slide.active .slide-button {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* Strzałki nawigacji */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.slider-prev {
  left: 25px;
}

.slider-next {
  right: 25px;
}

/* Kropki nawigacyjne */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.slider-dot.active {
  background: #c41e3a;
  border-color: #c41e3a;
  transform: scale(1.15);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
  .homepage-slider { margin-top: -80px; }
  .slider-container { max-height: 600px; }
  .slide-title { font-size: 42px; }
  .slide-title-2 { font-size: 24px;}
  .slide-content { padding: 0 40px; }
}

@media (max-width: 992px) {
  .homepage-slider { margin-top: -70px; }
  .slider-container { max-height: 550px; min-height: 400px; }
  .slide-title { font-size: 42px; max-width: 450px; }
  .slide-text { font-size: 15px; max-width: 400px; }
  .slide-content { top: 55%; }
  .slider-arrow { width: 45px; height: 45px; font-size: 16px; }
  .slider-prev { left: 15px; }
  .slider-next { right: 15px; }
}

@media (max-width: 768px) {
  .homepage-slider { margin-top: -70px; }
  .slider-container { max-height: 500px; min-height: 380px; }
  .slide-content { padding: 0 25px; top: 55%; text-align: left; }
  .slide-title { font-size: 42px; max-width: 100%; }
  .slide-text { font-size: 14px; max-width: 100%; }
  .slide-button { padding: 12px 28px; font-size: 14px; }
  .slide-overlay { background: rgba(0, 0, 0, 0.45); }
  .slider-arrow { display: none; }
  .slider-dots { bottom: 20px; }
  .slider-dot { width: 10px; height: 10px; }
}

@media (max-width: 576px) {
  .homepage-slider { margin-top: -60px; }
  .slider-container { max-height: 450px; min-height: 350px; }
  .slide-title { font-size: 42px; margin-bottom: 12px; }
  .slide-text { font-size: 13px; margin-bottom: 20px; line-height: 1.6; }
  .slide-content { padding: 0 20px; top: 55%; }
  .slide-button { padding: 11px 24px; font-size: 13px; }
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  position: relative;
  background: #F7F3F0;
}

/* ===== LOGO NACHODZĄCE ===== */
.footer-logo-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  height: 0;
  z-index: 10;
}

.footer-logo {
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: #F7F3F0;
  border-radius: 50%;
  padding: 5px;
}

.footer-logo-text {
  color: #C85A4A;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ===== GŁÓWNA ZAWARTOŚĆ ===== */
.footer-main {
  position: relative;
  padding: 80px 0 40px;
  overflow: visible;
}

.footer-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* ===== DEKORACJE ===== */
.footer-decoration {
  position: absolute;
  z-index: 1;
  opacity: 0.12;
  pointer-events: none;
}

.footer-apple {
  left: 0;
  bottom: 30px;
  width: 150px;
}

.footer-tree {
  right: 0;
  bottom: 0;
  width: 150px;
}

.footer-decoration img {
  width: 100%;
  height: auto;
}

/* ===== KOLUMNY ===== */
.footer-columns {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-column {
  min-width: 0;
}

.footer-heading {
  color: #C85A4A;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.footer-heading-booking {
  margin-top: 30px;
}

/* ===== LISTA KONTAKTOWA ===== */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #555;
}

.footer-contact-list li i {
  width: 20px;
  color: #888;
  font-size: 16px;
}

.footer-contact-list li a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-list li a:hover {
  color: #C85A4A;
}

/* ===== LINKI ===== */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #555;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links li a:hover {
  color: #C85A4A;
}

/* ===== SOCIAL MEDIA ===== */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #C85A4A;
  transform: translateY(-3px);
}

/* ===== BOOKING ===== */
.footer-booking {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #555;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-booking i {
  width: 30px;
  height: 30px;
  background: #003580;
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.footer-booking:hover {
  color: #003580;
}

/* ===== DOLNY PASEK ===== */
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 0;
}

.footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: #888;
  font-size: 13px;
}

.footer-credits {
  color: #888;
  font-size: 13px;
}

.footer-credits a {
  color: #C85A4A;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-credits a:hover {
  color: #a04538;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
  }
  
  .footer-apple {
    width: 180px;
    left: 10px;
  }
  
  .footer-tree {
    width: 220px;
    right: 10px;
  }
}

@media (max-width: 768px) {
  .footer-logo img {
    width: 70px;
    height: 70px;
  }
  
  .footer-logo-text {
    font-size: 12px;
  }
  
  .footer-main {
    padding: 70px 0 30px;
  }
  
  .footer-container {
    padding: 0 20px;
  }
  
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-heading {
    font-size: 12px;
    margin-bottom: 15px;
  }
  
  .footer-contact-list li,
  .footer-links li a {
    font-size: 13px;
  }
  
  .footer-apple {
    width: 150px;
    opacity: 0.08;
    left: 5px;
  }
  
  .footer-tree {
    width: 180px;
    opacity: 0.08;
    right: 5px;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
  }
  
  .footer-contact-list li {
    justify-content: flex-start;
  }
  
  .footer-social {
    justify-content: flex-start;
  }
  
  .footer-booking {
    justify-content: center;
  }
  
  .footer-apple {
    width: 120px;
    left: 0;
    bottom: auto;
    top: 80px;
    opacity: 0.06;
  }
  
  .footer-tree {
    width: 140px;
    right: 0;
    opacity: 0.06;
  }
  
  .footer-copyright,
  .footer-credits {
    font-size: 12px;
  }
}

/* ========================================
   SEKCJA: O NAS / OFERTA MALOWEGO SADU
   ======================================== */

.about-offer-section {
  padding: 80px 0;
  background: #fff;
}

.about-offer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: center;
}

/* ===== LEWA STRONA - ZDJĘCIA ===== */
.about-images {
  position: relative;
  height: 500px;
}

.image-large {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-small {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 55%;
  height: 60%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  border: 5px solid #fff;
}

.image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== PRAWA STRONA - TREŚĆ ===== */
.about-content {
  padding-left: 20px;
}

/* Nagłówek */
.about-header {
  margin-bottom: 35px;
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c41e3a;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.label-icon {
  width: 18px;
  height: 18px;
}

.about-title {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.about-title span {
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-intro {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.about-intro strong {
  color: #333;
  font-weight: 600;
}

/* ===== LISTA OFERT ===== */
.offer-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.offer-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.offer-info {
  flex: 1;
}

.offer-name {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #c41e3a;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 8px;
  position: relative;
}

.offer-link::before {
  content: '●';
  font-size: 8px;
  margin-right: 4px;
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer-link:hover {
  text-decoration: underline;
  text-decoration-color: #EF3C2C;
}

.offer-desc {
  font-size: 11px;
  line-height: 1.6;
  color: #777;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .about-offer-container {
    gap: 40px;
    padding: 0 30px;
  }
  
  .about-title {
    font-size: 32px;
  }
  
  .about-images {
    height: 450px;
  }
}

@media (max-width: 992px) {
  .about-offer-section {
    padding: 60px 0;
  }
  
  .about-offer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-images {
    display: none;
  }
  
  .image-large {
    width: 75%;
  }
  
  .image-small {
    width: 50%;
    height: 55%;
    bottom: -20px;
  }
  
  .about-content {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .about-offer-section {
    padding: 50px 0;
  }
  
  .about-offer-container {
    padding: 0 20px;
  }
  
  .about-images {
    height: 350px;
  }
  
  .about-title {
    font-size: 28px;
  }
  
  .about-intro {
    font-size: 14px;
  }
  
  .offer-name {
    font-size: 14px;
  }
  
  .offer-desc {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .about-offer-section {
    padding: 40px 0;
  }
  
  .about-images {
    height: 300px;
  }
  
  .image-large {
    width: 70%;
  }
  
  .image-small {
    width: 55%;
    height: 50%;
    bottom: -15px;
    border-width: 3px;
  }
  
  .about-title {
    font-size: 24px;
  }
  
  .offer-item {
    gap: 12px;
  }
  
  .offer-icon {
    width: 35px;
    height: 35px;
  }
  
  .offer-icon img {
    width: 28px;
    height: 28px;
  }
}

/* ========================================
   SEKCJA: NASZE PRODUKTY
   ======================================== */

.products-section {
  padding: 80px 0;
  background: #F7F3F0;
}

.products-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== NAGŁÓWEK ===== */
.products-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.products-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c41e3a;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.products-label .label-icon {
  width: 18px;
  height: 18px;
}

.products-title {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.products-title span {
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.products-intro {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* ===== PRODUKTY GRID ===== */
.products-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

/* ===== KARTA PRODUKTU ===== */
.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.product-card:hover {
  border-color: #EF3C2C;
  box-shadow: 0 10px 40px rgba(239, 60, 44, 0.1);
}

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

.badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-new {
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  color: #fff;
}

.badge-promo {
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  color: #fff;
}

/* Wishlist */
.product-wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  color: #999;
  font-size: 16px;
}

.product-wishlist:hover {
  background: #FDF8F3;
  color: #EF3C2C;
  border-color: #EF3C2C;
}

.product-wishlist.active {
  background: #EF3C2C;
  color: #fff;
  border-color: #EF3C2C;
}

.product-wishlist.active i::before {
  content: "\f004";
  font-weight: 900;
}

/* Zdjęcie */
.product-image {
  display: block;
  aspect-ratio: 1;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 10px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* Info */
.product-info {
  text-align: left;
}

.product-name {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 5px 0;
  line-height: 1.4;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.product-name a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.product-weight {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}

/* Cena - widoczna normalnie, znika na hover */
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 44px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.price-old {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.price-current {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gwiazdki opinii */
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.product-rating .stars {
  display: flex;
  gap: 2px;
}

.product-rating .stars i {
  font-size: 12px;
  color: #FBB74D;
}

.product-rating .stars.stars-empty i {
  color: #ddd;
}

.product-rating .rating-count {
  font-size: 12px;
  color: #999;
}

/* Przycisk Zobacz produkt */
.product-view-wrapper {
  margin-top: auto;
  padding-top: 15px;
}

.product-view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 15px;
  background: transparent;
  border: 1px solid #EF3C2C;
  border-radius: 25px;
  color: #EF3C2C;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-view-btn:hover {
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  border-color: transparent;
  color: #fff;
}

.product-view-btn i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.product-view-btn:hover i {
  transform: translateX(3px);
}

/* ===== PRZYCISK ZOBACZ WSZYSTKIE ===== */
.products-footer {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 50px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(239, 60, 44, 0.3);
  color: #fff;
}

.btn-view-all i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.btn-view-all:hover i {
  transform: translateX(4px);
}

/* ========================================
   CTA BOX - Wewnątrz sekcji, w ramce
   ======================================== */

.cta-box {
  background: #fff;
  border: 1px solid #D3A863;
  border-radius: 20px;
  padding: 50px 60px;
  text-align: center;
  max-width: 100%;
}

.cta-box .cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin: 0 0 15px 0;
}

.cta-box .cta-title span {
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-box .cta-text {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

.cta-box .cta-link {
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #EF3C2C;
}

.cta-box .cta-link:hover {
  text-decoration-color: #FBB74D;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
  .products-row {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .products-title {
    font-size: 32px;
  }
  
  .cta-box {
    padding: 40px 50px;
  }
}

@media (max-width: 992px) {
  .products-section {
    padding: 60px 0;
  }
  
  .products-container {
    padding: 0 30px;
  }
  
  .products-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .products-title {
    font-size: 28px;
  }
  
  .cta-box {
    padding: 35px 40px;
  }
  
  .cta-box .cta-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .products-section {
    padding: 50px 0;
  }
  
  .products-container {
    padding: 0 20px;
  }
  
  .products-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-header {
    margin-bottom: 30px;
  }
  
  .products-intro {
    font-size: 13px;
  }
  
  .product-card {
    padding: 12px;
  }
  
  .product-name {
    font-size: 13px;
    min-height: 36px;
  }
  
  .price-current {
    font-size: 16px;
  }

  .product-view-btn {
    font-size: 8px;
    gap: 2px;
    flex-wrap: nowrap;
  }
  
  /* Na mobile zawsze pokazuj przycisk */
  .product-price-row {
    display: none;
  }
  
  .product-add-cart-wrapper {
    height: auto;
    min-height: auto;
    opacity: 1;
    visibility: visible;
  }
  
  .product-add-cart {
    font-size: 10px;
    padding: 8px 12px;
  }
  
  .cta-box {
    padding: 30px 25px;
  }
  
  .cta-box .cta-title {
    font-size: 22px;
  }
  
  .cta-box .cta-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .products-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .product-card {
    padding: 10px;
  }
  
  .product-wishlist {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  
  .badge {
    font-size: 9px;
    padding: 3px 8px;
  }
  
  .product-name {
    font-size: 12px;
  }
  
  .btn-view-all {
    padding: 12px 25px;
    font-size: 12px;
  }
  
  .cta-box .cta-title {
    font-size: 20px;
  }
  
  .cta-box .cta-text br {
    display: none;
  }
}

/* ========================================
   SEKCJA: JAK POWSTAJE MIÓD
   ======================================== */

.honey-process-section {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.honey-process-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== NAGŁÓWEK ===== */
.honey-process-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.honey-process-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c41e3a;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.honey-process-label .label-icon {
  width: 18px;
  height: 18px;
}

.honey-process-title {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.honey-process-title span {
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.honey-process-intro {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* ===== GŁÓWNY LAYOUT ===== */
.honey-process-content {
  display: grid;
  grid-template-columns: 1fr 400px 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

/* ===== KOLUMNY Z KROKAMI ===== */
.process-column {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.process-left {
  align-items: flex-end;
  text-align: right;
}

.process-right {
  align-items: flex-start;
  text-align: left;
}

/* ===== POJEDYNCZY KROK ===== */
.process-step {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 300px;
  position: relative;
}

/* ===== LEWA STRONA - kolejność: tekst, obraz, numer ===== */
.process-left .process-step {
  flex-direction: row;
}

.process-left .step-text {
  order: 1;
}

.process-left .step-icon {
  order: 2;
}

.process-left .step-number {
  order: 3;
}

/* ===== PRAWA STRONA - kolejność: numer, obraz, tekst ===== */
.process-right .process-step {
  flex-direction: row;
}

.process-right .step-number {
  order: 1;
}

.process-right .step-icon {
  order: 2;
}

.process-right .step-text {
  order: 3;
}

/* Numer kroku */
.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4A7C3F 0%, #6B9B5E 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Ikona */
.step-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Tekst */
.step-text {
  flex: 1;
}

.step-text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #555;
}

/* ===== ŚRODEK - GŁÓWNE ZDJĘCIE ===== */
.process-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-image {
  max-width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
}

/* ===== DOLNY KROK 5 ===== */
.process-bottom {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.process-bottom .process-step {
  flex-direction: row;
  text-align: left;
  max-width: 350px;
}

.process-bottom .step-number {
  order: 1;
}

.process-bottom .step-icon {
  order: 2;
  width: 80px;
  height: 80px;
}

.process-bottom .step-text {
  order: 3;
}

/* ===== STYLIZACJA KROKÓW ===== */
.step-1 .step-icon img,
.step-3 .step-icon img {
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

/* ===== DEKORACYJNE TŁA DLA KROKÓW ===== */
.process-left .process-step::before,
.process-right .process-step::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  z-index: -1;
}

.process-left .step-1::before {
  top: -30px;
  right: -20px;
}

.process-left .step-2::before {
  top: -30px;
  right: -20px;
}

.process-right .step-3::before {
  top: -30px;
  left: -20px;
}

.process-right .step-4::before {
  top: -30px;
  left: -20px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
  .honey-process-content {
    grid-template-columns: 1fr 350px 1fr;
    gap: 30px;
  }
  
  .honey-process-title {
    font-size: 32px;
  }
  
  .process-step {
    max-width: 260px;
  }
}

@media (max-width: 992px) {
  .honey-process-section {
    padding: 60px 0;
  }
  
  .honey-process-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* Środkowy obrazek na górze */
  .process-center {
    order: -1;
  }
  
  .center-image {
    max-height: 350px;
  }
  
  /* Kolumny w rzędzie */
  .process-column {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .process-left,
  .process-right {
    align-items: center;
    text-align: center;
  }
  
  /* ===== MOBILE: wszystkie kroki w układzie pionowym ===== */
  /* Kolejność: numer → obraz → opis */
  .process-left .process-step,
  .process-right .process-step,
  .process-bottom .process-step {
    flex-direction: column;
    text-align: center;
    max-width: 180px;
  }
  
  /* Reset kolejności - wszystkie takie same */
  .process-left .step-number,
  .process-right .step-number,
  .process-bottom .step-number {
    order: 1;
    margin-bottom: 10px;
  }
  
  .process-left .step-icon,
  .process-right .step-icon,
  .process-bottom .step-icon {
    order: 2;
    margin-bottom: 10px;
  }
  
  .process-left .step-text,
  .process-right .step-text,
  .process-bottom .step-text {
    order: 3;
  }
  
  .process-left .step-text p,
  .process-right .step-text p,
  .process-bottom .step-text p {
    text-align: center;
  }
  
  /* Ukryj dekoracyjne tła */
  .process-left .process-step::before,
  .process-right .process-step::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .honey-process-section {
    padding: 50px 0;
  }
  
  .honey-process-container {
    padding: 0 20px;
  }
  
  .honey-process-header {
    margin-bottom: 40px;
  }
  
  .honey-process-title {
    font-size: 28px;
  }
  
  .honey-process-intro {
    font-size: 14px;
  }
  
  .process-column {
    gap: 25px;
  }
  
  .process-step {
    max-width: 160px;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
  
  .step-text p {
    font-size: 12px;
  }
  
  .center-image {
    max-height: 280px;
  }
  
  .process-bottom .step-icon {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 576px) {
  .honey-process-title {
    font-size: 24px;
  }
  
  /* Na małych ekranach kroki jeden pod drugim */
  .process-column {
    flex-direction: column;
    align-items: center;
  }
  
  .process-step {
    max-width: 200px;
  }
  
  .center-image {
    max-height: 220px;
  }
  
  .process-bottom {
    margin-top: 30px;
  }
  
  .process-bottom .step-icon {
    width: 60px;
    height: 60px;
  }
}

/* ========================================
   SEKCJA: OPINIE KLIENTÓW
   ======================================== */

.testimonials-section {
  padding: 80px 0;
  background: #F7F3F0;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== NAGŁÓWEK ===== */
.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.testimonials-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c41e3a;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.testimonials-label .label-icon {
  width: 18px;
  height: 18px;
}

.testimonials-title {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.testimonials-title span {
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-intro {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* ===== GRID OPINII ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===== KARTA OPINII ===== */
.testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

/* Header karty */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar span {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.testimonial-author {
  flex: 1;
}

.author-name {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.testimonial-rating {
  display: flex;
  gap: 3px;
}

.testimonial-rating i {
  color: #FBB74D;
  font-size: 14px;
}

/* Treść opinii */
.testimonial-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  font-style: italic;
}

/* ========================================
   SEKCJA: GALERIA ZDJĘĆ
   ======================================== */

.gallery-section {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Opcjonalny overlay na hover */
.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.1);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
  .testimonials-title {
    font-size: 32px;
  }
  
  .testimonial-card {
    padding: 25px;
  }
}

@media (max-width: 992px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-container {
    padding: 0 30px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .testimonials-title {
    font-size: 28px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 50px 0;
  }
  
  .testimonials-container {
    padding: 0 20px;
  }
  
  .testimonials-header {
    margin-bottom: 30px;
  }
  
  .testimonials-title {
    font-size: 26px;
  }
  
  .testimonials-intro {
    font-size: 13px;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .testimonial-content p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .testimonials-title {
    font-size: 24px;
  }
  
  .testimonial-header {
    flex-wrap: wrap;
  }
  
  .testimonial-rating {
    width: 100%;
    margin-top: 10px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item {
    aspect-ratio: 1;
  }
}

/* ========================================
   SEKCJA: BLOG / NAJNOWSZE ARTYKUŁY
   ======================================== */

.blog-section {
  padding: 80px 0;
  background: #fff;
}

.blog-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== NAGŁÓWEK ===== */
.blog-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.blog-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c41e3a;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-label .label-icon {
  width: 18px;
  height: 18px;
}

.blog-title {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.blog-title span {
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-intro {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* ===== SLIDER WRAPPER ===== */
.blog-slider-wrapper {
  position: relative;
}

/* ===== GRID ARTYKUŁÓW ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* ===== KARTA ARTYKUŁU ===== */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

/* Obrazek */
.blog-image {
  display: block;
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

/* Data */
.blog-date {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-date i {
  font-size: 10px;
}

/* Treść */
.blog-content {
  padding: 20px;
}

.blog-post-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 12px 0;
  min-height: 42px;
}

.blog-post-title a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-post-title a:hover {
  color: #EF3C2C;
}

.blog-excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 15px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 62px;
}

/* Link zobacz */
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.2s ease;
}

.blog-read-more i {
  font-size: 11px;
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.2s ease;
}

.blog-read-more:hover i {
  transform: translateX(4px);
}

/* ===== DOTS NAWIGACJA ===== */
.blog-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.blog-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.blog-dot.active {
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  transform: scale(1.2);
}

.blog-dot:hover {
  background: #bbb;
}

.blog-dot.active:hover {
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
}

/* ===== PRZYCISK ===== */
.blog-footer {
  text-align: center;
  margin-top: 40px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .blog-title {
    font-size: 32px;
  }
}

@media (max-width: 992px) {
  .blog-section {
    padding: 60px 0;
  }
  
  .blog-container {
    padding: 0 30px;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .blog-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 50px 0;
  }
  
  .blog-container {
    padding: 0 20px;
  }
  
  .blog-header {
    margin-bottom: 30px;
  }
  
  .blog-title {
    font-size: 26px;
  }
  
  .blog-content {
    padding: 15px;
  }
  
  .blog-post-title {
    font-size: 14px;
    min-height: auto;
  }
  
  .blog-excerpt {
    font-size: 12px;
    min-height: auto;
    -webkit-line-clamp: 2;
  }
}

@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .blog-title {
    font-size: 24px;
  }
  
  .blog-card {
    display: flex;
    flex-direction: row;
  }
  
  .blog-image {
    width: 120px;
    flex-shrink: 0;
    aspect-ratio: 1;
  }
  
  .blog-date {
    display: none;
  }
  
  .blog-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .blog-excerpt {
    display: none;
  }
  
  .blog-post-title {
    margin-bottom: 10px;
  }
}

/* ========================================
   SEKCJA: BANER DOLNY Z IKONAMI
   ======================================== */

.bottom-banner-section {
  background: #000;
}

/* ===== PASEK Z KORZYŚCIAMI ===== */
.benefits-bar {
  background: #000;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img,
.benefit-icon svg {
  max-width: 100%;
  max-height: 100%;
  filter: brightness(0) invert(1);
}

.benefit-icon-flag img,
.benefit-icon-flag svg {
  filter: none;
  border-radius: 3px;
}

.benefit-text {
  display: flex;
  flex-direction: column;
}

.benefit-title {
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.benefit-subtitle {
  color: #EF3C2C !important;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

/* ===== BANER Z TŁEM ===== */
.bottom-banner {
  position: relative;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.75) 100%);
}

.banner-content {
  position: relative;
  z-index: 1;
  width: 50%;
  max-width: 600px;
  padding: 60px 80px 60px 60px;
}

.banner-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.banner-label .label-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.banner-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.banner-title span {
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 30px 0;
}

.banner-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.banner-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(239, 60, 44, 0.4);
  color: #fff;
}

.banner-button i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.banner-button:hover i {
  transform: translateX(4px);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
  .banner-content {
    padding: 50px 60px 50px 40px;
  }
  
  .banner-title {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .benefits-container {
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }
  
  .benefit-item {
    flex: 0 0 calc(50% - 15px);
    justify-content: center;
  }
  
  .bottom-banner {
    min-height: 400px;
    justify-content: center;
  }
  
  .banner-content {
    width: 100%;
    max-width: 600px;
    padding: 40px 30px;
    text-align: center;
  }
  
  .banner-label {
    justify-content: center;
  }
  
  .banner-title {
    font-size: 32px;
  }
  
  .banner-overlay {
    background: rgba(0, 0, 0, 0.65);
  }
}

@media (max-width: 768px) {
  .benefits-bar {
    padding: 20px 0;
  }
  
  .benefits-container {
    padding: 0 20px;
    gap: 15px 20px; /* gap pionowy i poziomy */
  }
  
  /* 2 elementy w rzędzie */
  .benefit-item {
    flex: 0 0 calc(50% - 10px);
    gap: 10px;
    justify-content: center;
  }
  
  .benefit-icon {
    width: 40px;
    height: 40px;
  }
  
  .benefit-title {
    font-size: 11px;
  }
  
  .benefit-subtitle {
    font-size: 10px;
  }
  
  .bottom-banner {
    min-height: 350px;
  }
  
  .banner-content {
    padding: 30px 20px 80px;
  }
  
  .banner-title {
    font-size: 28px;
  }
  
  .banner-text {
    font-size: 13px;
  }
  
  .banner-overlay {
    background: rgba(0, 0, 0, 0.6);
  }
}

@media (max-width: 576px) {
  
  .benefits-container {
    gap: 12px 10px;
    padding: 0 15px;
  }
  
  /* Nadal 2 elementy w rzędzie na małych ekranach */
  .benefit-item {
    flex: 0 0 calc(50% - 5px);
    justify-content: flex-start;
    padding: 0;
    gap: 8px;
  }
  
  .benefit-icon {
    width: 35px;
    height: 35px;
  }
  
  .benefit-title {
    font-size: 10px;
  }
  
  .benefit-subtitle {
    font-size: 9px;
  }
  
  .bottom-banner {
    min-height: 300px;
  }
  
  .banner-title {
    font-size: 24px;
  }
  
  .banner-title br {
    display: none;
  }
  
  .banner-text {
    font-size: 12px;
    line-height: 1.7;
  }
  
  .banner-button {
    padding: 12px 25px;
    font-size: 12px;
  }
}

.page-hero {
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
}

.page-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.page-breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.page-breadcrumbs a:hover {
  color: #fff;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.breadcrumb-current {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.page-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin: 50px 0 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c41e3a;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-label .label-icon {
  width: 18px;
  height: 18px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.section-title span {
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* ========================================
   STRONA KONTAKT
   ======================================== */

.contact-page {
  background: #fff;
}

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

/* ===== INTRO ===== */
.contact-intro {
  padding: 70px 0 50px;
  text-align: center;
}

.contact-intro-content {
  max-width: 600px;
  margin: 0 auto;
}

/* ===== KARTY KONTAKTOWE + ZDJĘCIE ===== */
.contact-cards-section {
  padding: 0 0 70px;
}

.contact-cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

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

.contact-cards-image {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  max-height: 500px;
}

.contact-cards-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card {
  background: #FDF8F3;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.contact-card-icon i {
  font-size: 24px;
  color: #fff;
}

.contact-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin: 0 0 12px 0;
}

.contact-card-text {
  font-size: 13px;
  color: #666;
  margin: 0 0 4px 0;
  line-height: 1.6;
}

.contact-card-hours {
  font-size: 12px;
  color: #999;
  margin-top: 8px;
}

.contact-phone,
.contact-email {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #EF3C2C;
  text-decoration: none;
  margin: 8px 0;
  transition: color 0.2s ease;
}

.contact-phone:hover,
.contact-email:hover {
  color: #c41e3a;
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  color: #EF3C2C;
  text-decoration: none;
  transition: all 0.2s ease;
}

.contact-card-link:hover {
  color: #c41e3a;
}

.contact-card-link i {
  transition: transform 0.2s ease;
}

.contact-card-link:hover i {
  transform: translateX(4px);
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.contact-social a {
  width: 40px;
  height: 40px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  transform: translateY(-3px);
}

/* ===== FORMULARZ + MAPA ===== */
.contact-form-section {
  padding: 70px 0;
  background: #FDF8F3;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Formularz */
.contact-form-wrapper {
  background: #fff;
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.contact-form-header {
  margin-bottom: 30px;
}

/* Alerty */
.contact-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  font-size: 14px;
}

.contact-alert-success {
  background: #d4edda;
  color: #155724;
}

.contact-alert-error {
  background: #f8d7da;
  color: #721c24;
}

.contact-alert i {
  font-size: 20px;
}

/* Form elements */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  padding: 14px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  font-size: 14px;
  color: #333;
  background: #fff;
  transition: all 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: #EF3C2C;
  box-shadow: 0 0 0 3px rgba(239, 60, 44, 0.1);
}

.form-control::placeholder {
  color: #aaa;
}

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

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #EF3C2C;
  cursor: pointer;
}

.checkbox-label {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  cursor: pointer;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(239, 60, 44, 0.4);
}

.contact-submit-btn i {
  font-size: 16px;
}

/* Mapa */
.contact-map-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-map-container {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-map {
  width: 100%;
  height: 450px;
  display: block;
}

.contact-map-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #666;
}

.map-info-item i {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EF3C2C;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* ===== SEKCJA AGROTURYSTYKA ===== */
.contact-agro-section {
  padding: 70px 0;
  background: #fff;
}

.contact-agro-box {
  background: linear-gradient(135deg, #4A7C3F 0%, #6B9B5E 100%);
  border-radius: 30px;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

.agro-content {
  flex: 1;
}

.agro-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px 0;
}

.agro-title span {
  color: #FBB74D;
}

.agro-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 30px 0;
}

.agro-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: #fff;
  color: #4A7C3F;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.agro-btn:hover {
  background: #FBB74D;
  color: #fff;
  transform: translateY(-2px);
}

.agro-btn i {
  transition: transform 0.2s ease;
}

.agro-btn:hover i {
  transform: translateX(4px);
}

.agro-image {
  flex-shrink: 0;
  width: 300px;
}

.agro-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
  .contact-cards-wrapper {
    gap: 30px;
  }
  
  .contact-cards-grid {
    gap: 15px;
  }
  
  .contact-card {
    padding: 25px 20px;
  }
  
  .contact-agro-box {
    padding: 50px;
  }
}

@media (max-width: 992px) {
  .page-hero {
    height: 220px;
  }
  
  .page-hero-title {
    font-size: 38px;
  }
  
  .contact-container {
    padding: 0 30px;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .contact-intro,
  .contact-cards-section,
  .contact-form-section,
  .contact-agro-section {
    padding: 50px 0;
  }
  
  .contact-cards-section {
    padding-top: 0;
  }
  
  .contact-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .contact-cards-image {
    height: 300px;
    order: -1;
  }
  
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-map {
    height: 350px;
  }
  
  .contact-agro-box {
    flex-direction: column;
    text-align: center;
    padding: 40px;
    gap: 30px;
  }
  
  .agro-image {
    order: -1;
    width: 180px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    height: 200px;
  }
  
  .page-hero-title {
    font-size: 32px;
  }
  
  .page-breadcrumbs {
    font-size: 13px;
  }
  
  .contact-container {
    padding: 0 20px;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact-cards-image {
    height: 250px;
  }
  
  .contact-card {
    padding: 30px 25px;
  }
  
  .contact-form-wrapper {
    padding: 35px 25px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .agro-title {
    font-size: 28px;
  }
  
  .agro-text {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .page-hero {
    height: 180px;
  }
  
  .page-hero-title {
    font-size: 28px;
  }
  
  .contact-intro,
  .contact-form-section,
  .contact-agro-section {
    padding: 40px 0;
  }
  
  .contact-cards-image {
    height: 200px;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .contact-submit-btn {
    width: 100%;
    padding: 14px 30px;
  }
  
  .contact-map {
    height: 280px;
  }
  
  .contact-agro-box {
    padding: 30px 20px;
  }
  
  .agro-title {
    font-size: 24px;
  }
}

/* ========================================
   STRONA O NAS - MALOWY SAD
   ======================================== */

.about-page {
  background: #fff;
}

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

/* ===== SEKCJE O NAS - UKŁAD ZDJĘCIE + TEKST ===== */
.about-section {
  padding: 80px 0;
}

.about-section-1 {
  background: #fff;
}

.about-section-2 {
  background: #FDF8F3;
}

.about-section-3 {
  background: #fff;
}

.about-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Sekcja odwrócona - zdjęcie po lewej */
.about-section-reversed .about-row {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1;
}

.about-heading {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin: 0 0 25px 0;
  line-height: 1.3;
}

.about-heading span {
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin: 0 0 20px 0;
}

.about-text p:last-of-type {
  margin-bottom: 0;
}

.about-text a {
  color: #EF3C2C;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease;
}

.about-text a:hover {
  color: #c41e3a;
}

.text-highlight {
  color: #EF3C2C;
  font-weight: 500;
}

.about-image {
  flex: 0 0 480px;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Podpis */
.about-signature {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid #eee;
}

.signature-text {
  font-size: 15px;
  color: #666;
  margin: 0 0 5px 0;
  font-style: italic;
}

.signature-name {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin: 0;
}

/* ===== SEKCJA WARTOŚCI ===== */
.about-values-section {
  padding: 80px 0;
  background: #FDF8F3;
}

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

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.value-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i {
  font-size: 28px;
  color: #fff;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 0 0 12px 0;
}

.value-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* ===== SEKCJA AGROTURYSTYKA ===== */
.about-agro-section {
  padding: 80px 0;
  background: #fff;
}

.about-agro-box {
  background: linear-gradient(135deg, #4A7C3F 0%, #6B9B5E 100%);
  border-radius: 30px;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

.agro-content {
  flex: 1;
}

.agro-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px 0;
}

.agro-title span {
  color: #FBB74D;
}

.agro-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 30px 0;
}

.agro-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: #fff;
  color: #4A7C3F;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.agro-btn:hover {
  background: #FBB74D;
  color: #fff;
  transform: translateY(-2px);
}

.agro-btn i {
  transition: transform 0.2s ease;
}

.agro-btn:hover i {
  transform: translateX(4px);
}

.agro-image {
  flex-shrink: 0;
  width: 250px;
}

.agro-image img {
  width: 100%;
  height: auto;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
  .about-image {
    flex: 0 0 400px;
  }
  
  .about-image img {
    height: 350px;
  }
  
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-agro-box {
    padding: 50px;
  }
}

@media (max-width: 992px) {
  .about-container {
    padding: 0 30px;
  }
  
  .about-section {
    padding: 60px 0;
  }
  
  .about-row {
    flex-direction: column;
    gap: 40px;
  }
  
  /* Na mobile wszystkie sekcje mają tekst pierwszy */
  .about-section-reversed .about-row {
    flex-direction: column;
  }
  
  .about-text {
    text-align: center;
  }
  
  .about-heading {
    font-size: 30px;
  }
  
  .about-image {
    flex: none;
    width: 100%;
    max-width: 500px;
  }
  
  .about-image img {
    height: 300px;
  }
  
  .about-signature {
    text-align: center;
  }
  
  .about-values-section,
  .about-agro-section {
    padding: 60px 0;
  }
  
  .about-agro-box {
    flex-direction: column;
    text-align: center;
    padding: 40px;
    gap: 30px;
  }
  
  .agro-image {
    order: -1;
    width: 180px;
  }
}

@media (max-width: 768px) {
  .about-container {
    padding: 0 20px;
  }
  
  .about-section {
    padding: 50px 0;
  }
  
  .about-heading {
    font-size: 26px;
  }
  
  .about-text p {
    font-size: 15px;
  }
  
  .about-image img {
    height: 280px;
    border-radius: 16px;
  }
  
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .value-card {
    padding: 30px 25px;
  }
  
  .agro-title {
    font-size: 28px;
  }
  
  .agro-text {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 40px 0;
  }
  
  .about-row {
    gap: 30px;
  }
  
  .about-heading {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .about-text p {
    font-size: 14px;
    line-height: 1.8;
  }
  
  .about-image img {
    height: 250px;
  }
  
  .about-values-section,
  .about-agro-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .about-agro-box {
    padding: 30px 20px;
  }
  
  .agro-title {
    font-size: 24px;
  }
}
/* ========================================
   STRONA AGROTURYSTYKA - MALOWY SAD
   ======================================== */

.agro-page {
  background: #fff;
}

.agro-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== SEKCJA INTRO ===== */
.agro-intro {
  padding: 70px 0 50px;
  text-align: center;
}

.agro-intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.agro-intro-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin: 0 0 25px 0;
  line-height: 1.4;
}

.agro-intro-title span {
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.agro-intro-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* ===== SEKCJE GŁÓWNE ===== */
.agro-section {
  padding: 60px 0;
}

.agro-section-light {
  background: #FDF8F3;
}

.agro-section-header {
  margin-bottom: 20px;
}

.agro-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.agro-section-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 30px 0;
}

/* ===== GALERIA 4 KOLUMNY ===== */
.agro-gallery-grid {
  display: grid;
  gap: 20px;
}

.agro-gallery-4 {
  grid-template-columns: repeat(4, 1fr);
}

.agro-gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.agro-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.agro-gallery-item:hover img {
  transform: scale(1.05);
}

/* ===== GRID 5 KAFELKÓW (4 zdjęcia + Zobacz galerię) ===== */
.agro-gallery-grid-section {
  margin-top: 40px;
}

.agro-gallery-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.agro-gallery-grid-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.agro-gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.agro-gallery-grid-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.agro-gallery-grid-item:hover img {
  transform: scale(1.05);
}

/* Kafelek CTA "Zobacz galerię" */
.agro-gallery-cta-tile {
  background: linear-gradient(135deg, #EF3C2C 0%, #FBB74D 100%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.agro-gallery-cta-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(239, 60, 44, 0.3);
}

.agro-gallery-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.agro-gallery-cta-content i {
  font-size: 36px;
  margin-bottom: 12px;
}

.agro-gallery-cta-content span {
  font-size: 14px;
  font-weight: 600;
}

.agro-gallery-cta-content .agro-gallery-count {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 5px;
}

/* ===== PLATFORMY OPINII ===== */
.agro-reviews-platforms {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.review-platform {
  display: block;
  transition: transform 0.3s ease;
}

.review-platform:hover {
  transform: scale(1.05);
}

.review-platform img {
  height: 50px;
  width: auto;
}

/* ===== AVATARY Z OBRAZKAMI ===== */
.review-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #EF3C2C, #FBB74D);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.review-avatar-img {
  padding: 0;
  overflow: hidden;
}

.review-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== SEKCJA CTA ===== */
.agro-cta-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #4A7C3F 0%, #6B9B5E 100%);
}

.agro-cta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.agro-cta-content {
  color: #fff;
}

.agro-cta-logo {
  margin-bottom: 25px;
}

.agro-cta-logo img {
  width: 80px;
  height: auto;
  background: #fff;
  border-radius: 50%;
  padding: 10px;
}

.agro-cta-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 25px 0;
  line-height: 1.3;
}

.agro-cta-title span {
  color: #FBB74D;
}

.agro-cta-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 20px 0;
}

.agro-cta-subtext {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin: 0 0 30px 0;
}

.agro-booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px;
  background: #fff;
  color: #003580;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.agro-booking-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.agro-booking-btn img {
  height: 24px;
  width: auto;
}

/* ===== CTA GALERIA ===== */
.agro-cta-gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  height: 400px;
}

.agro-cta-img-large {
  grid-row: 1 / 3;
  border-radius: 20px;
  overflow: hidden;
}

.agro-cta-img-small-top,
.agro-cta-img-small-bottom {
  border-radius: 16px;
  overflow: hidden;
}

.agro-cta-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
  .agro-gallery-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .agro-gallery-grid-5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
}

@media (max-width: 992px) {
  .agro-container {
    padding: 0 30px;
  }
  
  .agro-intro,
  .agro-section,
  .agro-cta-section {
    padding: 50px 0;
  }
  
  .agro-intro-title {
    font-size: 24px;
  }
  
  .agro-gallery-grid-5 {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .agro-gallery-grid-5 .agro-gallery-grid-item:nth-child(4),
  .agro-gallery-grid-5 .agro-gallery-grid-item:nth-child(5) {
    grid-column: span 1;
  }
  
  .agro-cta-box {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .agro-cta-content {
    text-align: center;
  }
  
  .agro-cta-logo {
    display: flex;
    justify-content: center;
  }
  
  .agro-cta-gallery {
    max-width: 500px;
    margin: 0 auto;
    height: 350px;
  }
}

@media (max-width: 768px) {
  .agro-container {
    padding: 0 20px;
  }
  
  .agro-intro-title {
    font-size: 20px;
  }
  
  .agro-section-title {
    font-size: 18px;
  }
  
  .agro-gallery-4 {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .agro-gallery-grid-5 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  
  .agro-gallery-cta-content i {
    font-size: 28px;
  }
  
  .agro-gallery-cta-content span {
    font-size: 12px;
  }
  
  .agro-reviews-platforms {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  
  .agro-cta-title {
    font-size: 26px;
  }
  
  .agro-cta-gallery {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .agro-intro,
  .agro-section,
  .agro-cta-section {
    padding: 40px 0;
  }
  
  .agro-intro-title {
    font-size: 18px;
  }
  
  .agro-section-title {
    font-size: 16px;
  }
  
  .agro-intro-text,
  .agro-section-text,
  .agro-cta-text {
    font-size: 14px;
  }
  
  .agro-gallery-4 {
    grid-template-columns: 1fr;
  }
  
  .agro-gallery-item {
    aspect-ratio: 16 / 10;
  }
  
  .agro-gallery-grid-5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .agro-gallery-grid-5 .agro-gallery-cta-tile {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
  }
  
  .agro-gallery-cta-content {
    flex-direction: row;
    gap: 15px;
  }
  
  .agro-gallery-cta-content i {
    margin-bottom: 0;
  }
  
  .agro-cta-title {
    font-size: 22px;
  }
  
  .agro-cta-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 280px;
  }
  
  .agro-cta-img-large {
    grid-row: 1 / 2;
  }
  
  .agro-booking-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}

/* ===== POPRAWKI RESPONSIVE DLA SEKCJI AGRO ===== */

/* Sekcje z dwoma kolumnami */
.agro-content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.agro-content-row-reversed {
  direction: rtl;
}

.agro-content-row-reversed > * {
  direction: ltr;
}

.agro-content-text {
  padding-right: 20px;
}

.agro-content-row-reversed .agro-content-text {
  padding-right: 0;
  padding-left: 20px;
}

/* Nagłówki sekcji z gradientem */
.agro-section-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 25px 0;
}

.agro-section-title span {
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.agro-section-text {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin: 0 0 15px 0;
}

.agro-section-text:last-of-type {
  margin-bottom: 0;
}

/* Galeria 2 zdjęcia - nachodzące na siebie */
.agro-content-gallery {
  position: relative;
  height: 380px;
}

.agro-gallery-duo {
  position: relative;
  width: 100%;
  height: 100%;
}

.agro-gallery-item {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.agro-gallery-item:first-child {
  top: 0;
  left: 0;
  width: 65%;
  height: 65%;
  z-index: 1;
}

.agro-gallery-item:last-child {
  bottom: 0;
  right: 0;
  width: 65%;
  height: 65%;
  z-index: 2;
}

.agro-gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.agro-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agro-gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.agro-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.agro-gallery-overlay i {
  color: #fff;
  font-size: 28px;
}

.agro-gallery-item:hover .agro-gallery-overlay {
  opacity: 1;
}

/* ===== GRID 5 KAFELKÓW (4 zdjęcia + Zobacz galerię) ===== */
.agro-gallery-grid-section {
  margin-top: 40px;
}

.agro-gallery-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.agro-gallery-grid-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.agro-gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.agro-gallery-grid-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.agro-gallery-grid-item:hover img {
  transform: scale(1.05);
}

.agro-gallery-grid-item:hover .agro-gallery-overlay {
  opacity: 1;
}

/* Kafelek CTA "Zobacz galerię" */
.agro-gallery-cta-tile {
  background: linear-gradient(135deg, #EF3C2C 0%, #FBB74D 100%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.agro-gallery-cta-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(239, 60, 44, 0.3);
}

.agro-gallery-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.agro-gallery-cta-content i {
  font-size: 36px;
  margin-bottom: 12px;
}

.agro-gallery-cta-content span {
  font-size: 14px;
  font-weight: 600;
}

.agro-gallery-cta-content .agro-gallery-count {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 5px;
}

/* ========================================
   RESPONSIVE - TABLET (max 992px)
   ======================================== */
@media (max-width: 992px) {
  .agro-content-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .agro-content-row-reversed {
    direction: ltr;
  }
  
  .agro-content-text {
    padding: 0;
    text-align: center;
  }
  
  .agro-content-row-reversed .agro-content-text {
    padding: 0;
  }
  
  .agro-section-title {
    font-size: 28px;
  }
  
  .agro-content-gallery {
    height: 320px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  /* Grid na tablecie - 2 kolumny */
  .agro-gallery-grid-5 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  
  /* Kafelek Zobacz galerię na całą szerokość */
  .agro-gallery-cta-tile.agro-gallery-grid-item,
  .agro-gallery-grid-5 .agro-gallery-cta-tile,
  #openFullGalleryTile {
    grid-column: 1 / -1 !important;
    aspect-ratio: 3 / 1 !important;
  }
  
  .agro-gallery-cta-content {
    flex-direction: row;
    gap: 15px;
  }
  
  .agro-gallery-cta-content i {
    margin-bottom: 0;
    font-size: 32px;
  }
}

/* ========================================
   RESPONSIVE - MOBILE (max 768px)
   ======================================== */
@media (max-width: 768px) {
  .agro-section-title {
    font-size: 26px;
  }
  
  .agro-content-gallery {
    height: auto !important;
    max-width: 100%;
  }
  
  /* Zmiana layoutu zdjęć duo na mobile - dwa kwadraty obok siebie */
  .agro-gallery-duo {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    height: auto !important;
  }
  
  .agro-gallery-item,
  .agro-gallery-duo .agro-gallery-item,
  .agro-gallery-duo > .agro-gallery-item {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
  }
  
  .agro-gallery-item:first-child,
  .agro-gallery-item:last-child,
  .agro-gallery-duo .agro-gallery-item:first-child,
  .agro-gallery-duo .agro-gallery-item:last-child,
  .agro-gallery-duo > .agro-gallery-item:first-child,
  .agro-gallery-duo > .agro-gallery-item:last-child {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
  }
  
  /* Grid na mobile - 2 kolumny */
  .agro-gallery-grid-5 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  
  /* Kafelek Zobacz galerię na całą szerokość - WYMUSZENIE */
  .agro-gallery-cta-tile,
  .agro-gallery-cta-tile.agro-gallery-grid-item,
  .agro-gallery-grid-5 .agro-gallery-cta-tile,
  .agro-gallery-grid-item.agro-gallery-cta-tile,
  .agro-gallery-grid-5 > .agro-gallery-cta-tile,
  #openFullGalleryTile {
    grid-column: 1 / -1 !important;
    grid-column-start: 1 !important;
    grid-column-end: -1 !important;
    aspect-ratio: 3 / 1 !important;
  }
  
  .agro-gallery-cta-content {
    flex-direction: row !important;
    gap: 15px;
  }
  
  .agro-gallery-cta-content i {
    font-size: 28px;
    margin-bottom: 0 !important;
  }
  
  .agro-gallery-cta-content span {
    font-size: 14px;
  }
  
  .review-meta {
    flex-direction: column;
    gap: 8px;
  }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (max 576px)
   ======================================== */
@media (max-width: 576px) {
  .agro-section-title {
    font-size: 22px;
  }
  
  .agro-section-text {
    font-size: 14px;
  }
  
  /* Zdjęcia duo - dwa kwadraty obok siebie */
  .agro-gallery-duo {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  
  .agro-gallery-item,
  .agro-gallery-duo .agro-gallery-item,
  .agro-gallery-item:first-child,
  .agro-gallery-item:last-child {
    border-radius: 12px !important;
    aspect-ratio: 1 / 1 !important;
  }
  
  /* Grid - 2 kolumny */
  .agro-gallery-grid-5 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  
  .agro-gallery-grid-item {
    border-radius: 12px;
    aspect-ratio: 1 / 1;
  }
  
  /* Kafelek Zobacz galerię - cała szerokość - WYMUSZENIE */
  .agro-gallery-cta-tile,
  .agro-gallery-cta-tile.agro-gallery-grid-item,
  .agro-gallery-grid-5 .agro-gallery-cta-tile,
  .agro-gallery-grid-item.agro-gallery-cta-tile,
  .agro-gallery-grid-5 > .agro-gallery-cta-tile,
  #openFullGalleryTile {
    grid-column: 1 / -1 !important;
    grid-column-start: 1 !important;
    grid-column-end: -1 !important;
    aspect-ratio: 2.5 / 1 !important;
    border-radius: 12px !important;
  }
  
  .agro-gallery-cta-content {
    flex-direction: row !important;
    gap: 12px;
    padding: 15px;
  }
  
  .agro-gallery-cta-content i {
    font-size: 24px;
    margin-bottom: 0 !important;
  }
  
  .agro-gallery-cta-content span {
    font-size: 13px;
  }
  
  .agro-gallery-cta-content .agro-gallery-count {
    font-size: 11px;
  }
  
  .agro-review-card {
    padding: 20px;
  }
  
  .agro-gallery-overlay i {
    font-size: 22px;
  }
}

/* ========================================
   RESPONSIVE - EXTRA SMALL (max 400px)
   ======================================== */
@media (max-width: 400px) {
  .agro-section-title {
    font-size: 20px;
  }
  
  .agro-gallery-duo {
    gap: 8px !important;
  }
  
  .agro-gallery-item,
  .agro-gallery-duo .agro-gallery-item,
  .agro-gallery-item:first-child,
  .agro-gallery-item:last-child {
    aspect-ratio: 1 / 1 !important;
    border-radius: 10px !important;
  }
  
  .agro-gallery-grid-5 {
    gap: 6px !important;
  }
  
  .agro-gallery-grid-item {
    border-radius: 10px;
  }
  
  .agro-gallery-cta-tile,
  .agro-gallery-cta-tile.agro-gallery-grid-item,
  .agro-gallery-grid-5 .agro-gallery-cta-tile,
  #openFullGalleryTile {
    border-radius: 10px !important;
    aspect-ratio: 2 / 1 !important;
  }
}
/* ========================================
   STRONA SKLEPU - SIDEBAR + PRODUKTY
   ======================================== */

.shop-page {
  background: #fff;
}

/* ===== GŁÓWNY LAYOUT ===== */
.shop-main {
  padding: 50px 0 70px;
}

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

.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  align-items: start;
}

/* ===== SIDEBAR ===== */
.shop-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-block {
  margin-bottom: 30px;
}

.sidebar-title {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #EF3C2C;
}

/* Kategorie */
.sidebar-categories {
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-item {
  margin-bottom: 5px;
}

.category-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  color: #444;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
  background: #f8f8f8;
}

.category-item > a:hover {
  background: #FDF8F3;
  color: #EF3C2C;
}

.category-item.active > a {
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  color: #fff;
}

.category-count {
  font-size: 12px;
  color: #999;
}

.category-item.active .category-count {
  color: rgba(255, 255, 255, 0.8);
}

/* Podkategorie */
.subcategory-list {
  list-style: none;
  margin: 5px 0 0 15px;
  padding: 0;
}

.subcategory-item {
  margin-bottom: 3px;
}

.subcategory-item a {
  display: block;
  padding: 8px 12px;
  color: #666;
  text-decoration: none;
  font-size: 13px;
  border-left: 2px solid #eee;
  transition: all 0.2s ease;
}

.subcategory-item a:hover {
  color: #EF3C2C;
  border-left-color: #EF3C2C;
}

.subcategory-item.active a {
  color: #EF3C2C;
  border-left-color: #EF3C2C;
  font-weight: 500;
}

/* Filtr ceny */
.price-filter {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 12px;
}

.filter-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 12px;
}

.price-inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.price-input {
  width: 70px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 13px;
  text-align: center;
}

.price-input:focus {
  outline: none;
  border-color: #EF3C2C;
}

.price-separator {
  color: #999;
}

.price-filter-btn {
  width: 100%;
  margin-top: 10px;
  padding: 10px 15px;
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.price-filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(239, 60, 44, 0.3);
}

/* Przycisk pokazania wszystkich */
.sidebar-show-all {
  display: block;
  padding: 12px 20px;
  background: #4A7C3F;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.sidebar-show-all:hover {
  background: #3d6a34;
  color: #fff;
}

/* ===== PRODUKTY ===== */
.shop-content {
  min-width: 0;
}

/* Nagłówek */
.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.shop-count {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.category-name-display {
  font-size: 24px;
  font-weight: 700;
  color: #222;
}

.products-count {
  font-size: 14px;
  color: #888;
}

.shop-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-sort label {
  font-size: 13px;
  color: #666;
}

.sort-select {
  padding: 10px 35px 10px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 13px;
  color: #444;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 12px center;
  appearance: none;
  cursor: pointer;
}

.sort-select:focus {
  outline: none;
  border-color: #EF3C2C;
}

/* Siatka produktów */
.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 20px;
  color: #fff;
}

.product-badge.sale {
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
}

.product-info {
  padding: 20px;
}

.product-name {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.product-name a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.product-weight {
  font-size: 12px;
  color: #999;
  margin: 0 0 12px 0;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-old {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}

.price-current {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

.price-current.on-sale {
  color: #EF3C2C;
}

/* Brak produktów */
.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

/* ===== PAGINACJA ===== */
.shop-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.pagination-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  color: #666;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.pagination-btn:hover {
  background: #EF3C2C;
  color: #fff;
}

.pagination-numbers {
  display: flex;
  gap: 5px;
}

.pagination-number {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #444;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: all 0.2s ease;
}

.pagination-number:hover {
  border-color: #EF3C2C;
  color: #EF3C2C;
}

.pagination-number.active {
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  color: #fff;
  border-color: transparent;
}

.pagination-dots {
  padding: 0 10px;
  color: #999;
}

/* ===== AKCJE PRODUKTU ===== */
.product-actions {
  padding: 0 20px 20px;
}

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

.add-to-cart-btn {
  width: 100%;
  padding: 10px 20px;
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(239, 60, 44, 0.4);
}

.add-to-cart-btn.added {
  background: #28a745;
}

.add-to-cart-btn.error {
  background: #dc3545;
}

.add-to-cart-btn.disabled,
.add-to-cart-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.add-to-cart-btn i {
  font-size: 14px;
}

/* Wishlist button */
.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 2;
}

.wishlist-btn:hover {
  transform: scale(1.1);
}

.wishlist-btn svg {
  width: 18px;
  height: 18px;
  stroke: #666;
  transition: all 0.3s ease;
}

.wishlist-btn:hover svg {
  stroke: #EF3C2C;
}

.wishlist-btn.active svg {
  fill: #EF3C2C;
  stroke: #EF3C2C;
}

/* Reference produktu */
.product-reference {
  font-size: 12px;
  color: #999;
  margin: 0 0 10px 0;
}

/* No products */
.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: #888;
}

.no-products i {
  font-size: 60px;
  color: #ddd;
  margin-bottom: 20px;
  display: block;
}

.no-products p {
  font-size: 16px;
  margin: 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1100px) {
  .shop-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .shop-container {
    padding: 0 30px;
  }
  
  .shop-layout {
    grid-template-columns: 220px 1fr;
    gap: 30px;
  }
  
  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-breadcrumbs a {
    font-size: 10px;
  }

  .breadcrumb-current {
    font-size: 10px;
  }

  .quantity-btn {
    width: 20px;
    height: 20px;
  }

  .shop-container {
    padding: 0 20px;
  }
  
  .shop-layout {
    grid-template-columns: 1fr;
  }
  
  .shop-sidebar {
    position: relative;
    top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .sidebar-block:last-child {
    grid-column: 1 / -1;
  }
  
  .shop-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .product-info {
    padding: 15px;
  }
  
  .product-name {
    font-size: 13px;
  }
  
  .price-current {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .shop-main {
    padding: 30px 0 50px;
  }
  
  .shop-sidebar {
    grid-template-columns: 1fr;
  }
  
  .shop-products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .shop-product-card {
    border-radius: 12px;
  }
  
  .product-info {
    padding: 12px;
  }
  
  .product-name {
    font-size: 12px;
  }
  
  .product-weight {
    font-size: 11px;
    margin-bottom: 8px;
  }
  
  .price-current {
    font-size: 14px;
  }
  
  .price-old {
    font-size: 11px;
  }
  
  .pagination-number,
  .pagination-btn {
    width: 35px;
    height: 35px;
    font-size: 13px;
  }
}

/* ========================================
   STRONA PRODUKTU - MALOWY SAD
   ======================================== */

.product-page {
  background: #fff;
}

/* Hero mniejszy */
.page-hero-small {
  height: 180px;
}

.page-hero-small .page-hero-content {
  padding-top: 60px;
}

/* ===== GŁÓWNY LAYOUT ===== */
.product-main {
  padding: 150px 0 70px;
}

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

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ===== GALERIA ZDJĘĆ ===== */
.product-gallery {
  position: sticky;
  top: 100px;
}

.product-main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #f8f8f8;
  margin-bottom: 15px;
}

.product-main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-badge-sale {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 16px;
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 20px;
}

.product-wishlist-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-wishlist-btn:hover {
  transform: scale(1.1);
}

.product-wishlist-btn i {
  font-size: 20px;
  color: #EF3C2C;
}

.product-wishlist-btn.active {
  background: #EF3C2C;
}

.product-wishlist-btn.active i {
  color: #fff;
}

/* Miniaturki */
.product-thumbnails {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.product-thumbnail:hover {
  border-color: #EF3C2C;
}

.product-thumbnail.active {
  border-color: #EF3C2C;
}

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

/* ===== INFORMACJE O PRODUKCIE ===== */
.product-info {
  padding: 20px 0;
}

.product-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

/* Ocena */
.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.stars-display {
  display: flex;
  gap: 3px;
}

.stars-display i {
  font-size: 16px;
  color: #ddd;
}

.rating-value {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.rating-count {
  font-size: 14px;
  color: #888;
}

/* Cena */
.product-price-box {
  margin-bottom: 20px;
}

.price-old-product {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
}

.price-current-product {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 15px;
}

.price-current-product.on-sale {
  color: #EF3C2C;
}

/* Krótki opis */
.product-short-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

/* Dostępność */
.product-availability {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.in-stock {
  color: #28a745;
  font-weight: 600;
}

.in-stock i {
  margin-right: 5px;
}

.out-of-stock {
  color: #dc3545;
  font-weight: 600;
}

.out-of-stock i {
  margin-right: 5px;
}

.stock-qty {
  font-size: 13px;
  color: #888;
}

/* ===== KOMBINACJE PRODUKTÓW ===== */
.product-variants {
  margin-bottom: 25px;
}

.variant-group {
  margin-bottom: 20px;
}

.variant-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variant-option {
  padding: 10px 20px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.variant-option:hover {
  border-color: #FBB74D;
}

.variant-option.selected {
  border-color: #EF3C2C;
  background: #FDF8F3;
  color: #EF3C2C;
}

/* Warianty kolorów */
.variant-colors {
  gap: 8px;
}

.variant-color {
  width: 40px;
  height: 40px;
  padding: 3px;
  border-radius: 50%;
}

.variant-color .color-swatch {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
}

.variant-color.selected {
  border-color: #EF3C2C;
  background: transparent;
}

/* Select wariantów */
.variant-select {
  width: 100%;
  max-width: 300px;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.variant-select:focus {
  outline: none;
  border-color: #EF3C2C;
}

/* Dodaj do koszyka */
.product-add-to-cart {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
}

.qty-btn {
  width: 45px;
  height: 50px;
  background: #f8f8f8;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: #eee;
}

.qty-input {
  width: 60px;
  height: 50px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.qty-input:focus {
  outline: none;
}

.btn-add-to-cart {
  flex: 1;
  padding: 15px 30px;
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 60, 44, 0.4);
}

.btn-add-to-cart.added {
  background: #28a745;
}

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

/* Ikony korzyści */
.product-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
  padding: 25px;
  background: #FDF8F3;
  border-radius: 16px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.benefit-item span {
  font-size: 13px;
  color: #444;
  font-weight: 500;
}

/* SKU / Kategoria */
.product-reference,
.product-category {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.product-reference .label,
.product-category .label {
  color: #888;
  margin-right: 5px;
}

.product-category a {
  color: #EF3C2C;
  text-decoration: none;
}

.product-category a:hover {
  text-decoration: underline;
}

/* ===== TABS ===== */
.product-tabs {
  margin-top: 60px;
}

.tabs-nav {
  display: flex;
  gap: 5px;
  border-bottom: 2px solid #eee;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 15px 30px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.tab-btn:hover {
  color: #EF3C2C;
}

.tab-btn.active {
  color: #EF3C2C;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  border-radius: 2px;
}

.reviews-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: #EF3C2C;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 11px;
  margin-left: 8px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* Opis */
.product-description {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

.product-description p {
  margin-bottom: 15px;
}

.product-description ul,
.product-description ol {
  margin-bottom: 15px;
  padding-left: 25px;
}

.product-description img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ===== OPINIE ===== */
.product-reviews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Formularz opinii */
.add-review-section h3,
.reviews-list-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin: 0 0 25px 0;
}

.review-form .form-group {
  margin-bottom: 20px;
}

.review-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
}

.review-form .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.review-form .form-control:focus {
  outline: none;
  border-color: #EF3C2C;
}

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

/* Gwiazdki input */
.star-rating-input {
  display: flex;
  gap: 8px;
}

.star-rating-input i {
  font-size: 28px;
  color: #ddd;
  cursor: pointer;
  transition: all 0.2s;
}

.star-rating-input i:hover {
  transform: scale(1.2);
}

.btn-submit-review {
  padding: 14px 30px;
  background: linear-gradient(89.99deg, #EF3C2C 30.93%, #FBB74D 99.99%);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-submit-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(239, 60, 44, 0.3);
}

/* Login to review */
.login-to-review {
  text-align: center;
  padding: 40px;
  background: #f8f8f8;
  border-radius: 16px;
}

.login-to-review p {
  margin-bottom: 20px;
  color: #666;
}

.login-to-review i {
  margin-right: 8px;
}

.btn-login {
  display: inline-block;
  padding: 12px 30px;
  background: #EF3C2C;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-login:hover {
  background: #d63030;
}

/* Lista opinii */
.reviews-list {
  max-height: 600px;
  overflow-y: auto;
}

.loading-reviews {
  text-align: center;
  padding: 40px;
  color: #888;
}

.no-reviews {
  text-align: center;
  padding: 40px;
  color: #888;
  background: #f8f8f8;
  border-radius: 12px;
}

.review-item {
  padding: 25px;
  background: #f8f8f8;
  border-radius: 16px;
  margin-bottom: 15px;
}

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

.review-author {
  font-weight: 700;
  color: #222;
}

.review-date {
  font-size: 13px;
  color: #888;
}

.review-rating {
  margin-bottom: 10px;
}

.review-rating i {
  font-size: 14px;
}

.review-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.review-content {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* ===== PODOBNE PRODUKTY ===== */
.related-products {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.related-products .section-title {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin: 0 0 30px 0;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.related-product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
}

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

.related-product-card .product-image {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.related-product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.related-product-card:hover .product-image img {
  transform: scale(1.05);
}

.related-product-card .product-info {
  padding: 20px;
}

.related-product-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.related-product-card h4 a {
  color: #222;
  text-decoration: none;
}

.related-product-card h4 a:hover {
  color: #EF3C2C;
}

.related-product-card .product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.related-product-card .price-old {
  font-size: 13px;
}

.related-product-card .price-current {
  font-size: 18px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1100px) {
  .product-layout {
    gap: 40px;
  }
  
  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .product-container {
    padding: 0 30px;
  }
  
  .product-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .product-gallery {
    position: relative;
    top: 0;
  }
  
  .product-reviews {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-container {
    padding: 0 20px;
  }
  
  .product-main {
    padding: 60px 0 50px;
  }
  
  .product-title {
    font-size: 24px;
  }
  
  .price-current {
    font-size: 26px;
  }

  .quantity-selector {
    width: 90px;
  }
  
  .btn-add-to-cart {
    width: 100%;
  }
  
  .product-benefits {
    grid-template-columns: 1fr;
  }
  
  .tabs-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .tab-btn {
    padding: 12px 20px;
    font-size: 14px;
    white-space: nowrap;
  }
  
  .related-products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .page-hero-small {
    height: 140px;
  }
  
  .product-title {
    font-size: 20px;
  }
  
  .price-current {
    font-size: 22px;
  }
  
  .product-thumbnail {
    width: 60px;
    height: 60px;
  }
  
  .benefit-item i {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .benefit-item span {
    font-size: 12px;
  }
  
  .review-item {
    padding: 20px;
  }
}

/* ========================================
   STRONY LOGOWANIA I REJESTRACJI - MALOWY SAD
   ======================================== */

.auth-page {
  background: #fff;
}

/* Hero mniejszy */
.page-hero-small {
  height: 180px;
}

.page-hero-small .page-hero-content {
  padding-top: 60px;
}

/* ===== KONTENER ===== */
.auth-container {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #FDF8F3 0%, #fff 100%);
}

.auth-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.auth-wrapper-wide {
  max-width: 1100px;
}

/* ===== ALERTY ===== */
.auth-alert {
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.auth-alert i {
  font-size: 20px;
  margin-top: 2px;
}

.auth-alert ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.auth-alert-error {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.auth-alert-success {
  background: #dcfce7;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

/* ===== GRID LOGOWANIA ===== */
.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ===== BOX AUTORYZACJI ===== */
.auth-box {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.auth-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #FBB74D 0%, #EF3C2C 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.auth-icon i {
  font-size: 28px;
  color: #fff;
}

.auth-box-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin: 0 0 8px 0;
}

.auth-box-header p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* ===== FORMULARZ ===== */
.auth-form .form-group {
  margin-bottom: 20px;
}

.auth-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.auth-form label i {
  margin-right: 8px;
  color: #EF3C2C;
}

.auth-form .form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #fff;
}

.auth-form .form-control:focus {
  outline: none;
  border-color: #EF3C2C;
  box-shadow: 0 0 0 4px rgba(239, 60, 44, 0.1);
}

.auth-form .form-control::placeholder {
  color: #aaa;
}

/* Password wrapper */
.password-wrapper {
  position: relative;
}

.password-wrapper .form-control {
  padding-right: 50px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s;
}

.password-toggle:hover {
  color: #EF3C2C;
}

/* Form options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

/* Checkbox custom */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #555;
}

.checkbox-label input:checked {
  background: linear-gradient(135deg, #FBB74D 0%, #EF3C2C 100%);
  border-color: #EF3C2C;
}

.checkbox-label input:checked {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.forgot-link {
  font-size: 14px;
  color: #EF3C2C;
  text-decoration: none;
  transition: color 0.3s;
}

.forgot-link:hover {
  color: #d63030;
  text-decoration: underline;
}

/* ===== PRZYCISKI ===== */
.btn-auth {
  width: 100%;
  padding: 16px 30px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-login {
  background: linear-gradient(135deg, #FBB74D 0%, #EF3C2C 100%);
  color: #fff;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(239, 60, 44, 0.4);
}

.btn-register,
.btn-register-submit {
  background: linear-gradient(135deg, #4A7C3F 0%, #6B9B5E 100%);
  color: #fff;
}

.btn-register:hover,
.btn-register-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(74, 124, 63, 0.4);
}

/* ===== SEKCJA REJESTRACJI (na stronie logowania) ===== */
.register-box {
  background: linear-gradient(135deg, #FDF8F3 0%, #fff 100%);
  display: flex;
  flex-direction: column;
}

.register-benefits {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.register-benefits .benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.register-benefits .benefit-item i {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #FBB74D 0%, #EF3C2C 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.register-benefits .benefit-item span {
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

.register-note {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.register-note i {
  color: #4A7C3F;
}

/* ===== LAYOUT REJESTRACJI ===== */
.register-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.register-form-box {
  padding: 50px;
}

/* Form sections */
.form-section {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 25px;
}

.form-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section-title i {
  color: #EF3C2C;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Checkbox group */
.checkbox-group {
  margin-bottom: 15px;
}

.checkbox-group .checkbox-label {
  align-items: flex-start;
}

.checkbox-group .checkbox-text {
  line-height: 1.5;
}

.checkbox-group .checkbox-text a {
  color: #EF3C2C;
  text-decoration: none;
}

.checkbox-group .checkbox-text a:hover {
  text-decoration: underline;
}

/* Password strength */
.password-strength {
  margin-top: 10px;
}

.strength-bar {
  height: 4px;
  background: #eee;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 5px;
}

.strength-bar span {
  display: block;
  height: 100%;
  width: 0;
  transition: all 0.3s;
  border-radius: 2px;
}

.strength-text {
  font-size: 12px;
  color: #888;
}

/* Form actions */
.form-actions {
  margin-top: 30px;
}

.form-footer {
  text-align: center;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #eee;
  font-size: 14px;
  color: #666;
}

.form-footer a {
  color: #EF3C2C;
  font-weight: 600;
  text-decoration: none;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* ===== SIDEBAR REJESTRACJI ===== */
.register-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.sidebar-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin: 0 0 25px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-box h3 i {
  color: #EF3C2C;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-card {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: #FDF8F3;
  border-radius: 12px;
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateX(5px);
}

.benefit-card .benefit-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #FBB74D 0%, #EF3C2C 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-card .benefit-icon i {
  color: #fff;
  font-size: 18px;
}

.benefit-card .benefit-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin: 0 0 4px 0;
}

.benefit-card .benefit-content p {
  font-size: 12px;
  color: #666;
  margin: 0;
}

/* Trust badges */
.sidebar-trust {
  background: linear-gradient(135deg, #4A7C3F 0%, #6B9B5E 100%);
  color: #fff;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.trust-item i {
  font-size: 18px;
  opacity: 0.9;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
  .auth-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .register-layout {
    grid-template-columns: 1fr;
  }
  
  .register-sidebar {
    position: relative;
    top: 0;
  }
  
  .register-form-box {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .auth-container {
    padding: 40px 0 60px;
  }
  
  .auth-box {
    padding: 30px 25px;
    border-radius: 20px;
  }
  
  .auth-icon {
    width: 60px;
    height: 60px;
  }
  
  .auth-icon i {
    font-size: 24px;
  }
  
  .auth-box-header h2 {
    font-size: 20px;
  }
  
  .register-benefits {
    grid-template-columns: 1fr;
  }
  
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .page-hero-small {
    height: 140px;
  }
  
  .auth-wrapper {
    padding: 0 15px;
  }
  
  .auth-box {
    padding: 25px 20px;
  }
  
  .register-form-box {
    padding: 25px 20px;
  }
  
  .sidebar-box {
    padding: 25px 20px;
  }
  
  .benefit-card {
    padding: 12px;
  }
}

/* ========================================
   STRONY LOGOWANIA I REJESTRACJI - MALOWY SAD
   ======================================== */

.auth-page {
  background: #fff;
}

/* Hero mniejszy */
.page-hero-small {
  height: 180px;
}

.page-hero-small .page-hero-content {
  padding-top: 60px;
}

/* ===== KONTENER ===== */
.auth-container {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #FDF8F3 0%, #fff 100%);
}

.auth-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.auth-wrapper-wide {
  max-width: 1100px;
}

.auth-wrapper-narrow {
  max-width: 500px;
}

/* Password box */
.password-box {
  text-align: center;
}

.password-box .auth-form {
  text-align: left;
}

.password-box .form-footer {
  text-align: center;
}

.password-box .form-footer a {
  color: #666;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.password-box .form-footer a:hover {
  color: #EF3C2C;
}

.btn-password {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.btn-password:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Success alert */
.auth-alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

/* ===== ALERTY ===== */
.auth-alert {
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.auth-alert i {
  font-size: 20px;
  margin-top: 2px;
}

.auth-alert ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.auth-alert-error {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.auth-alert-success {
  background: #dcfce7;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

/* ===== GRID LOGOWANIA ===== */
.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ===== BOX AUTORYZACJI ===== */
.auth-box {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.auth-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #FBB74D 0%, #EF3C2C 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.auth-icon i {
  font-size: 28px;
  color: #fff;
}

.auth-box-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin: 0 0 8px 0;
}

.auth-box-header p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* ===== FORMULARZ ===== */
.auth-form .form-group {
  margin-bottom: 20px;
}

.auth-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.auth-form label i {
  margin-right: 8px;
  color: #EF3C2C;
}

.auth-form .form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #fff;
}

.auth-form .form-control:focus {
  outline: none;
  border-color: #EF3C2C;
  box-shadow: 0 0 0 4px rgba(239, 60, 44, 0.1);
}

.auth-form .form-control::placeholder {
  color: #aaa;
}

/* Błędy formularza */
.form-group.has-error .form-control {
  border-color: #dc3545;
  background-color: #fff5f5;
}

.form-error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
}

.form-error span {
  display: block;
}

.required {
  color: #dc3545;
  margin-left: 2px;
}

/* Password wrapper */
.password-wrapper {
  position: relative;
}

.password-wrapper .form-control {
  padding-right: 50px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s;
}

.password-toggle:hover {
  color: #EF3C2C;
}

/* Form options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

/* Checkbox custom */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #555;
}

.checkbox-label input:checked {
  background: linear-gradient(135deg, #FBB74D 0%, #EF3C2C 100%);
  border-color: #EF3C2C;
}

.checkbox-label input:checked {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.forgot-link {
  font-size: 14px;
  color: #EF3C2C;
  text-decoration: none;
  transition: color 0.3s;
}

.forgot-link:hover {
  color: #d63030;
  text-decoration: underline;
}

/* ===== PRZYCISKI ===== */
.btn-auth {
  width: 100%;
  padding: 16px 30px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-login {
  background: linear-gradient(135deg, #FBB74D 0%, #EF3C2C 100%);
  color: #fff;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(239, 60, 44, 0.4);
}

.btn-register,
.btn-register-submit {
  background: linear-gradient(135deg, #4A7C3F 0%, #6B9B5E 100%);
  color: #fff;
}

.btn-register:hover,
.btn-register-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(74, 124, 63, 0.4);
}

/* ===== SEKCJA REJESTRACJI (na stronie logowania) ===== */
.register-box {
  background: linear-gradient(135deg, #FDF8F3 0%, #fff 100%);
  display: flex;
  flex-direction: column;
}

.register-benefits {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.register-benefits .benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.register-benefits .benefit-item i {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #FBB74D 0%, #EF3C2C 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.register-benefits .benefit-item span {
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

.register-note {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.register-note i {
  color: #4A7C3F;
}

/* ===== LAYOUT REJESTRACJI ===== */
.register-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.register-form-box {
  padding: 50px;
}

/* Form sections */
.form-section {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 25px;
}

.form-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section-title i {
  color: #EF3C2C;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Checkbox group */
.checkbox-group {
  margin-bottom: 15px;
}

.checkbox-group .checkbox-label {
  align-items: flex-start;
}

.checkbox-group .checkbox-text {
  line-height: 1.5;
}

.checkbox-group .checkbox-text a {
  color: #EF3C2C;
  text-decoration: none;
}

.checkbox-group .checkbox-text a:hover {
  text-decoration: underline;
}

/* Radio buttons */
.radio-buttons {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
}

.radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #EF3C2C;
}

/* Form label title */
.form-label-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

/* Form section divider */
.form-section-divider {
  height: 1px;
  background: #eee;
  margin: 25px 0;
}

/* Password strength */
.password-strength {
  margin-top: 10px;
}

.strength-bar {
  height: 4px;
  background: #eee;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 5px;
}

.strength-bar span {
  display: block;
  height: 100%;
  width: 0;
  transition: all 0.3s;
  border-radius: 2px;
}

.strength-text {
  font-size: 12px;
  color: #888;
}

/* Form actions */
.form-actions {
  margin-top: 30px;
}

.form-footer {
  text-align: center;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #eee;
  font-size: 14px;
  color: #666;
}

.form-footer a {
  color: #EF3C2C;
  font-weight: 600;
  text-decoration: none;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* ===== SIDEBAR REJESTRACJI ===== */
.register-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.sidebar-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin: 0 0 25px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-box h3 i {
  color: #EF3C2C;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-card {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: #FDF8F3;
  border-radius: 12px;
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateX(5px);
}

.benefit-card .benefit-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #FBB74D 0%, #EF3C2C 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-card .benefit-icon i {
  color: #fff;
  font-size: 18px;
}

.benefit-card .benefit-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin: 0 0 4px 0;
}

.benefit-card .benefit-content p {
  font-size: 12px;
  color: #666;
  margin: 0;
}

/* Trust badges */
.sidebar-trust {
  background: linear-gradient(135deg, #4A7C3F 0%, #6B9B5E 100%);
  color: #fff;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.trust-item i {
  font-size: 18px;
  opacity: 0.9;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
  .auth-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .register-layout {
    grid-template-columns: 1fr;
  }
  
  .register-sidebar {
    position: relative;
    top: 0;
  }
  
  .register-form-box {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .auth-container {
    padding: 40px 0 60px;
  }
  
  .auth-box {
    padding: 30px 25px;
    border-radius: 20px;
  }
  
  .auth-icon {
    width: 60px;
    height: 60px;
  }
  
  .auth-icon i {
    font-size: 24px;
  }
  
  .auth-box-header h2 {
    font-size: 20px;
  }
  
  .register-benefits {
    grid-template-columns: 1fr;
  }
  
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .page-hero-small {
    height: 140px;
  }
  
  .auth-wrapper {
    padding: 0 15px;
  }
  
  .auth-box {
    padding: 25px 20px;
  }
  
  .register-form-box {
    padding: 25px 20px;
  }
  
  .sidebar-box {
    padding: 25px 20px;
  }
  
  .benefit-card {
    padding: 12px;
  }
}


/* ========================================
   STRONA MOJE KONTO - MALOWY SAD
   ======================================== */

.account-page {
  background: #fff;
}

/* ===== KONTENER ===== */
.account-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 80px;
}

.account-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* ===== SIDEBAR ===== */
.account-sidebar {
  position: sticky;
  top: 100px;
}

/* User card */
.account-user-card {
  border: 2px solid #C85A4A;
  border-radius: 20px;
  padding: 25px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.user-avatar {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.user-info {
  flex: 1;
  min-width: 0;
}

.user-name {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-email {
  font-size: 12px;
  opacity: 0.9;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Navigation menu */
.account-nav {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.account-menu {
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.account-menu-item {
  margin: 0;
}

.account-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.account-menu-link i {
  width: 20px;
  text-align: center;
  font-size: 16px;
  color: #888;
  transition: color 0.3s;
}

.account-menu-link:hover {
  background: #FDF8F3;
  color: #EF3C2C;
  border-left-color: #EF3C2C;
}

.account-menu-link:hover i {
  color: #EF3C2C;
}

.account-menu-item.active .account-menu-link {
  background: #FDF8F3;
  color: #EF3C2C;
  border-left-color: #EF3C2C;
}

.account-menu-item.active .account-menu-link i {
  color: #EF3C2C;
}

.account-menu-item.logout {
  border-top: 1px solid #eee;
  margin-top: 10px;
  padding-top: 10px;
}

.account-menu-item.logout .account-menu-link {
  color: #dc3545;
}

.account-menu-item.logout .account-menu-link i {
  color: #dc3545;
}

.account-menu-item.logout .account-menu-link:hover {
  background: #fee2e2;
}

/* ===== GŁÓWNA TREŚĆ ===== */
.account-content {
  min-width: 0;
}

/* Welcome section */
.account-welcome {
  margin-bottom: 30px;
}

.account-welcome h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin: 0 0 10px 0;
}

.account-welcome p {
  font-size: 15px;
  color: #666;
  margin: 0;
}

/* ===== KAFELKI ===== */
.account-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.account-tile {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.account-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #EF3C2C;
}

.tile-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #FBB74D 0%, #EF3C2C 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tile-icon i {
  font-size: 22px;
  color: #fff;
}

.tile-icon-heart {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
}

.tile-content {
  flex: 1;
  min-width: 0;
}

.tile-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin: 0 0 5px 0;
}

.tile-content p {
  font-size: 13px;
  color: #888;
  margin: 0;
}

.tile-arrow {
  color: #ccc;
  transition: all 0.3s;
}

.account-tile:hover .tile-arrow {
  color: #EF3C2C;
  transform: translateX(3px);
}

/* ===== SEKCJE ===== */
.account-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.section-header-account {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  border-bottom: 1px solid #f0f0f0;
}

.section-header-account h3 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-header-account h3 i {
  color: #EF3C2C;
}

.section-link {
  font-size: 14px;
  color: #EF3C2C;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
}

.section-link:hover {
  color: #d63030;
}

/* ===== LISTA ZAMÓWIEŃ ===== */
.orders-list {
  padding: 15px;
}

.order-card {
  background: #FAFAFA;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
}

.order-card:last-child {
  margin-bottom: 0;
}

.order-card:hover {
  border-color: #EF3C2C;
  box-shadow: 0 5px 15px rgba(239, 60, 44, 0.1);
}

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

.order-number .label {
  font-size: 12px;
  color: #888;
  display: block;
}

.order-number strong {
  font-size: 15px;
  color: #222;
}

.order-date {
  font-size: 10px;
  color: #888;
}

.order-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.status-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 8px;
  font-weight: 500;
  color: #fff;
}

.order-total .label {
  font-size: 12px;
  color: #888;
  display: block;
}

.order-total strong {
  font-size: 16px;
  color: #EF3C2C;
}

.order-footer {
  text-align: right;
}

.btn-order-details {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid #EF3C2C;
  color: #EF3C2C;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-order-details:hover {
  background: #EF3C2C;
  color: #fff;
}

/* ===== BRAK ZAMÓWIEŃ ===== */
.no-orders-message {
  text-align: center;
  padding: 50px 20px;
}

.no-orders-icon {
  width: 80px;
  height: 80px;
  background: #FDF8F3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.no-orders-icon i {
  font-size: 32px;
  color: #EF3C2C;
}

.no-orders-message h4 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 0 0 8px 0;
}

.no-orders-message p {
  font-size: 14px;
  color: #888;
  margin: 0 0 20px 0;
}

.btn-start-shopping {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #FBB74D 0%, #EF3C2C 100%);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-start-shopping:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 60, 44, 0.35);
}

/* ===== TABELA ZAMÓWIEŃ ===== */
.orders-table-wrapper {
  overflow-x: auto;
  padding: 20px;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
}

.orders-table th,
.orders-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

.orders-table th {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #FAFAFA;
}

.orders-table td {
  font-size: 14px;
  color: #444;
}

.orders-table tbody tr:hover {
  background: #FDF8F3;
}

/* ===== ADRESY ===== */
.addresses-content {
  padding: 20px;
}

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

.address-card {
  background: #FAFAFA;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
}

.address-card:hover {
  border-color: #EF3C2C;
  box-shadow: 0 5px 15px rgba(239, 60, 44, 0.1);
}

.address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.address-alias {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin: 0;
}

.address-actions {
  display: flex;
  gap: 8px;
}

.address-action-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s;
}

.address-action-btn:hover {
  border-color: #EF3C2C;
  color: #EF3C2C;
}

.address-action-btn.delete:hover {
  border-color: #dc3545;
  color: #dc3545;
  background: #fee2e2;
}

.address-body p {
  margin: 0 0 5px 0;
  font-size: 14px;
  color: #555;
}

.address-name {
  font-weight: 600;
  color: #222 !important;
}

.address-phone {
  margin-top: 10px !important;
  color: #888 !important;
}

.address-phone i {
  margin-right: 5px;
}

.btn-add-address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #FBB74D 0%, #EF3C2C 100%);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-add-address:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(239, 60, 44, 0.3);
}

.no-addresses-message {
  text-align: center;
  padding: 50px 20px;
}

.no-addresses-icon {
  width: 80px;
  height: 80px;
  background: #FDF8F3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.no-addresses-icon i {
  font-size: 32px;
  color: #EF3C2C;
}

.no-addresses-message h4 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 0 0 8px 0;
}

.no-addresses-message p {
  font-size: 14px;
  color: #888;
  margin: 0 0 20px 0;
}

/* ===== FORMULARZ DANYCH OSOBOWYCH ===== */
.identity-content {
  padding: 30px;
}

.identity-form {
  max-width: 600px;
}

.form-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section-title i {
  color: #EF3C2C;
}

.form-section-desc {
  font-size: 13px;
  color: #888;
  margin: 0 0 20px 0;
}

.form-help {
  font-size: 12px;
  color: #888;
  margin-top: 5px;
  display: block;
}

.btn-save {
  background: linear-gradient(135deg, #4A7C3F 0%, #6B9B5E 100%);
  color: #fff;
}

.btn-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(74, 124, 63, 0.4);
}

/* ===== RESPONSIVE TABELA ===== */
@media (max-width: 768px) {
  .orders-table thead {
    display: none;
  }
  
  .orders-table tbody tr {
    display: block;
    margin-bottom: 15px;
    background: #FAFAFA;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #f0f0f0;
  }
  
  .orders-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
  }
  
  .orders-table td:last-child {
    border-bottom: none;
  }
  
  .orders-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #888;
    font-size: 12px;
  }
  
  .addresses-grid {
    grid-template-columns: 1fr;
  }
  
  .identity-content {
    padding: 20px;
  }
}

/* ===== FORMULARZ ADRESU ===== */
.address-form-content {
  padding: 30px;
}

.form-section-block {
  margin-bottom: 30px;
  padding-bottom: 25px;
}

.form-section-block:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}

.form-section-block .form-section-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section-block .form-section-title i {
  color: #EF3C2C;
  font-size: 14px;
}

.form-actions-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.btn-cancel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: #f5f5f5;
  color: #666;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid #ddd;
}

.btn-cancel:hover {
  background: #eee;
  color: #333;
}

/* Textarea */
.form-control textarea,
textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

/* Select styling */
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

/* ===== RESPONSIVE FORMULARZ ADRESU ===== */
@media (max-width: 768px) {
  .address-form-content {
    padding: 20px;
  }
  
  .form-actions-row {
    flex-direction: column-reverse;
    gap: 10px;
  }
  
  .form-actions-row .btn-cancel,
  .form-actions-row .btn-auth {
    width: 100%;
    justify-content: center;
  }
}

/* ===== STRONA ADRESÓW ===== */
.addresses-content {
  padding: 20px;
}

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

.address-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.address-card:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-color: #ddd;
}

.address-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-bottom: 1px solid #eee;
  gap: 10px;
}

.address-alias {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
  flex: 1;
}

.address-badges {
  display: flex;
  gap: 5px;
}

.address-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}

.badge-delivery {
  background: linear-gradient(135deg, #FBB74D 0%, #EF3C2C 100%);
  color: #fff;
}

.badge-invoice {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.address-actions {
  display: flex;
  gap: 5px;
}

.address-action-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #f5f5f5;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s;
  text-decoration: none;
}

.address-action-btn:hover {
  background: #eee;
  color: #333;
}

.address-action-btn.delete:hover {
  background: #fee;
  color: #dc3545;
}

.address-body {
  padding: 20px;
}

.address-body p {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.address-body p:last-child {
  margin-bottom: 0;
}

.address-body p i {
  color: #999;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.address-name {
  font-weight: 600;
  color: #333 !important;
}

.address-footer {
  padding: 15px 20px;
  background: #f8f9fa;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-set-default {
  flex: 1;
  min-width: 120px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  color: #666;
}

.btn-set-default:hover {
  border-color: #EF3C2C;
  color: #EF3C2C;
  background: #fff5f5;
}

.btn-set-default:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Przycisk dodawania adresu */
.btn-add-address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #FBB74D 0%, #EF3C2C 100%);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-add-address:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 60, 44, 0.3);
  color: #fff;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-state .empty-icon {
  font-size: 60px;
  color: #ddd;
  margin-bottom: 20px;
}

.empty-state h4 {
  font-size: 20px;
  color: #333;
  margin: 0 0 10px 0;
}

.empty-state p {
  color: #666;
  margin: 0 0 25px 0;
}

/* Responsive adresy */
@media (max-width: 992px) {
  .addresses-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .address-header {
    flex-wrap: wrap;
  }
  
  .address-alias {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .address-footer {
    flex-direction: column;
  }
  
  .btn-set-default {
    width: 100%;
  }
}

/* ===== STRONA IDENTITY ===== */
.identity-form-content {
  padding: 30px;
}

.password-fields {
  margin-top: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #eee;
}

.password-input-wrapper {
  position: relative;
}

.password-input-wrapper .form-control {
  padding-right: 45px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 5px;
}

.password-toggle:hover {
  color: #666;
}

/* Password strength */
.password-strength {
  margin-top: 8px;
}

.strength-bar {
  height: 4px;
  background: #eee;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 5px;
}

.strength-fill {
  height: 100%;
  transition: width 0.3s, background 0.3s;
}

.strength-weak { background: #dc3545; }
.strength-medium { background: #ffc107; }
.strength-good { background: #28a745; }
.strength-strong { background: #20c997; }

.strength-text {
  font-size: 12px;
  color: #666;
}

/* Password match */
.password-match {
  margin-top: 8px;
  font-size: 13px;
}

.match-ok {
  color: #28a745;
}

.match-error {
  color: #dc3545;
}

/* Checkbox label */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #EF3C2C;
}

.checkbox-label span {
  flex: 1;
}

@media (max-width: 768px) {
  .identity-form-content {
    padding: 20px;
  }
  
  .password-fields {
    padding: 15px;
  }
}

/* ===== STRONA ORDER DETAIL ===== */

/* Status banner */
.order-status-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #999;
  margin-top: 20px;
}

.status-content {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.status-badge {
  display: inline-block;
  padding: 6px 8px;
  border-radius: 20px;
  color: #fff;
  font-size: 7px;
  font-weight: 600;
  text-transform: uppercase;
}

.status-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.status-date,
.status-tracking {
  font-size: 10px;
  color: #666;
  margin: 0;
}

.status-tracking strong {
  color: #333;
}

.status-actions {
  display: flex;
  gap: 10px;
}

.btn-outline-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline-small:hover {
  border-color: #EF3C2C;
  color: #EF3C2C;
}

/* Lista produktów */
.order-products-list {
  padding: 20px;
}

.order-product-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.order-product-item:last-child {
  border-bottom: none;
}

.product-image-order {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}

.product-image-order img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image .no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 24px;
}

.product-details {
  min-width: 0;
}

.product-details .product-name {
  margin: 0 0 5px 0;
  font-size: 15px;
  font-weight: 600;
}

.product-details .product-name a {
  color: #333;
  text-decoration: none;
}

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

.product-attributes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 5px;
}

.product-attributes .attribute {
  font-size: 12px;
  color: #666;
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 4px;
}

.product-ref {
  font-size: 12px;
  color: #999;
  margin: 0;
}

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

.qty-label {
  display: block;
  font-size: 11px;
  color: #999;
}

.qty-value {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.product-price {
  text-align: right;
}

.unit-price {
  display: block;
  font-size: 12px;
  color: #999;
}

.total-price {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

/* Podsumowanie */
.order-summary-box {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.summary-row.discount {
  color: #28a745;
}

.summary-row.total {
  border-top: 2px solid #ddd;
  margin-top: 10px;
  padding-top: 15px;
  font-size: 18px;
  font-weight: 700;
}

.summary-row.total .summary-value {
  color: #EF3C2C;
}

.free-shipping {
  color: #28a745;
  font-weight: 500;
}

/* Adresy grid */
.order-addresses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
}

.order-address-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
}

.order-address-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 15px 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.order-address-card h4 i {
  color: #EF3C2C;
}

.address-content p {
  margin: 0 0 5px 0;
  font-size: 14px;
  color: #555;
}

.address-name {
  font-weight: 600;
  color: #333 !important;
}

.address-company {
  font-style: italic;
}

.address-phone {
  margin-top: 10px !important;
  color: #666 !important;
}

.address-phone i {
  margin-right: 5px;
}

/* Info grid */
.order-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
}

.order-info-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
}

.order-info-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.order-info-card h4 i {
  color: #EF3C2C;
}

.info-main {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin: 0 0 5px 0;
}

.info-sub {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.payment-paid {
  color: #28a745;
}

.payment-pending {
  color: #ffc107;
}

/* Wiadomości */
.order-messages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.message-item {
  padding: 15px;
  border-radius: 10px;
  background: #f8f9fa;
}

.message-item.customer {
  background: #fff3e0;
  border-left: 3px solid #FBB74D;
}

.message-item.shop {
  background: #e3f2fd;
  border-left: 3px solid #2196f3;
}

.message-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 12px;
}

.message-author {
  font-weight: 600;
  color: #333;
}

.message-date {
  color: #999;
}

.message-body {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Przyciski na dole */
.order-actions-bottom {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  padding: 30px 20px;
  flex-wrap: wrap;
}

/* Responsywność */
@media (max-width: 768px) {
  .order-status-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .status-actions {
    width: 100%;
    justify-content: flex-start;
  }
  
  .order-product-item {
    grid-template-columns: 60px 1fr;
    gap: 10px;
  }
  
  .product-qty,
  .product-price {
    grid-column: 2;
    text-align: left;
  }
  
  .order-addresses-grid,
  .order-info-grid {
    grid-template-columns: 1fr;
  }
  
  .order-actions-bottom {
    flex-direction: column;
  }
  
  .order-actions-bottom .btn-cancel,
  .order-actions-bottom .btn-auth,
  .order-actions-bottom .btn-outline-small {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
  .account-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .account-sidebar {
    position: relative;
    top: 0;
  }
  
  .account-user-card {
    margin-bottom: 15px;
  }
  
  .account-nav {
    border-radius: 16px;
  }
  
  .account-menu {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    gap: 5px;
  }
  
  .account-menu-item {
    flex: 1 1 auto;
  }
  
  .account-menu-item.logout {
    flex: 1 1 100%;
    border-top: none;
    margin-top: 5px;
    padding-top: 5px;
  }
  
  .account-menu-link {
    padding: 12px 15px;
    border-radius: 10px;
    border-left: none;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
  
  .account-menu-link span {
    font-size: 11px;
  }
  
  .account-menu-link:hover,
  .account-menu-item.active .account-menu-link {
    border-left: none;
  }
}

@media (max-width: 768px) {
  .account-container {
    padding: 30px 15px 60px;
  }
  
  .account-tiles {
    grid-template-columns: 1fr;
  }
  
  .account-tile {
    padding: 20px;
  }
  
  .tile-icon {
    width: 50px;
    height: 50px;
  }
  
  .tile-icon i {
    font-size: 20px;
  }
  
  .account-welcome h2 {
    font-size: 24px;
  }
  
  .section-header {
    padding: 15px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .order-card {
    padding: 15px;
  }
  
  .order-header,
  .order-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .account-user-card {
    padding: 20px;
  }
  
  .user-avatar {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .user-name {
    font-size: 14px;
  }
  
  .account-menu-link i {
    font-size: 18px;
  }
  
  .account-menu-link span {
    font-size: 10px;
  }
}

