/* Status banner na górze strony */
.status-banner {
  background: #f8f9fa;
  padding: 0.5rem 1rem;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1001;
  position: relative;
}

.status-banner p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.status-banner.open {
  background: #d4edda;
  color: #155724;
}

.status-banner.closed {
  background: #f8d7da;
  color: #721c24;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Rozwijana sekcja godzin dla mobile */
.mobile-hours-dropdown {
  display: none;
}

.hours-dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Responsywność */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: var(--dark-color);
    flex-direction: column;
    padding: 2rem;
    transition: 0.3s;
    z-index: 1000;
    overflow-y: auto;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-hours-dropdown {
    display: block;
  }
  
  /* Ukryj standardowy link do godzin na mobile */
  .desktop-hours-link {
    display: none;
  }
  
  /* Ukryj baner o zamkniętym warsztacie na mobile */
  .workshop-closed-banner {
    display: none;
  }
  
  /* Ukryj tabelę desktopową na mobile */
  .desktop-table {
    display: none;
  }
  
  /* Pokaż tabelę mobile */
  .mobile-hours-table {
    display: block;
  }
}

@media (min-width: 769px) {
  /* Ukryj tabelę mobile na desktop */
  .mobile-hours-table {
    display: none;
  }
  
  /* Pokaż tabelę desktopową na desktop */
  .desktop-table {
    display: grid;
  }
}

/* Tabela godzin dla mobile */
.mobile-hours-table {
  margin-top: 1.5rem;
}

.mobile-hours-card {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-color);
}

.mobile-hours-card.highlight {
  border-left-color: #1976d2;
  background-color: #e3f2fd;
}

.mobile-hours-day {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.mobile-hours-card.highlight .mobile-hours-day {
  color: #1976d2;
}

.mobile-hours-details {
  padding-left: 0.5rem;
}

.mobile-hours-type {
  font-weight: 600;
  color: #555;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.mobile-hours-time {
  color: var(--dark-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.mobile-hours-note {
  font-size: 0.8rem;
  color: #666;
  font-style: italic;
  margin-top: 0.5rem;
}

/* Pozostałe style pozostają bez zmian */
:root {
  --primary-color: #25d366;
  --secondary-color: #2c3e50;
  --accent-color: #e74c3c;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --text-color: #333;
  --text-light: #fff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #f9f9f9;
}

/* Sekcja zamkniętego warsztatu */
.workshop-closed-banner {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  text-align: center;
  padding: 1rem;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  width: 100%;
  z-index: 999;
  animation: blink-alert 3s infinite;
}

.workshop-closed-banner p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.workshop-closed-banner a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
  margin-left: 0.3rem;
  transition: all 0.3s ease;
}

.workshop-closed-banner a:hover {
  color: #f1c40f;
  text-decoration: none;
}

@keyframes blink-alert {
  0% { opacity: 1; }
  50% { opacity: 0.8; }
  100% { opacity: 1; }
}

/* Dla mniejszych ekranów */
@media (max-width: 768px) {
  .workshop-closed-banner {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .workshop-closed-banner p {
    flex-direction: column;
    gap: 0.3rem;
  }
}

/* Typografia */
h1, h2, h3, h4 {
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--primary-color);
}

/* Nawigacja */
nav {
  background: var(--dark-color);
  color: var(--text-light);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

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

nav a {
  color: var(--text-light);
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 0;
}

nav a:hover {
  color: var(--primary-color);
}

/* Nagłówek */
header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('baner/1.jpg') center/cover no-repeat;
  color: var(--text-light);
  text-align: center;
  padding: 5rem 1rem;
  position: relative;
}

.header-content {
  max-width: 800px;
  margin: 0 auto;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.header-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Sekcje */
section {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Promocje */
.promo-banner {
  background: var(--accent-color);
  color: var(--text-light);
  text-align: center;
  padding: 1rem;
  font-weight: bold;
  box-shadow: var(--shadow);
}

.promo-banner i {
  margin-right: 0.5rem;
}

/* Statystyki */
.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background: var(--light-color);
  padding: 2rem 1rem;
  margin: 2rem auto;
  max-width: 1200px;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  min-width: 200px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--dark-color);
}

/* Slider */
.slider-container {
  position: relative;
  overflow: hidden;
  height: 400px;
  background: #000;
  margin: 2rem auto;
  max-width: 1200px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.slider-track img {
  height: 100%;
  width: auto;
  object-fit: cover;
}

.slider-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  text-align: center;
  width: 100%;
  padding: 0 1rem;
  z-index: 1;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 1rem;
  z-index: 2;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

#prev {
  left: 20px;
}

#next {
  right: 20px;
}

/* Usługi */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card h3 {
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
  text-align: left;
  margin: 1rem 0;
}

.service-card ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-card ul li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-color);
  margin-top: 1rem;
}

/* Sekcja Kontakt */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info h3 {
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: var(--transition);
}

.contact-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 0.2rem;
  min-width: 20px;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-item strong {
  color: var(--dark-color);
  font-size: 0.9rem;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-item span {
  color: #666;
}

/* Mapa */
.contact-map {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-map h3 {
  color: var(--dark-color);
  margin-bottom: 0;
}

.map-container {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Szybki kontakt */
.quick-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.quick-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  text-align: center;
}

.quick-btn.phone {
  background: var(--primary-color);
  color: white;
}

.quick-btn.email {
  background: var(--dark-color);
  color: white;
}

.quick-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Sekcja Godziny otwarcia */
#godziny {
  background: #f8f9fa;
  padding: 4rem 1rem;
}

.hours-container {
  max-width: 1000px;
  margin: 0 auto;
}

.hours-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin: 1.5rem 0;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
}

.table-header {
  display: contents;
}

.table-header .table-cell {
  background: var(--dark-color);
  color: white;
  font-weight: bold;
  padding: 1rem;
  text-align: center;
}

.table-row {
  display: contents;
}

.table-cell {
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60px;
}

.table-row:last-child .table-cell {
  border-bottom: none;
}

.table-cell.day {
  background: #f8f9fa;
  font-weight: 600;
  color: var(--dark-color);
  justify-content: flex-start;
}

.colspan-3 {
  grid-column: 2 / span 3;
  background: #e3f2fd !important;
  color: #1976d2;
  text-align: center;
  font-style: italic;
}

.colspan-3 i {
  margin-right: 0.5rem;
  color: #1976d2;
}

/* Tabela godzin dla mobile */
.mobile-hours-table {
  display: none;
  margin-top: 1.5rem;
}

.mobile-hours-card {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-color);
}

.mobile-hours-card.highlight {
  border-left-color: #1976d2;
  background-color: #e3f2fd;
}

.mobile-hours-day {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.mobile-hours-card.highlight .mobile-hours-day {
  color: #1976d2;
}

.mobile-hours-details {
  padding-left: 0.5rem;
}

.mobile-hours-type {
  font-weight: 600;
  color: #555;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.mobile-hours-time {
  color: var(--dark-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.mobile-hours-note {
  font-size: 0.8rem;
  color: #666;
  font-style: italic;
  margin-top: 0.5rem;
}

.current-status {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #eee;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.status-indicator.open {
  background: #d4edda;
  color: #155724;
}

.status-indicator.closed {
  background: #f8d7da;
  color: #721c24;
}

.status-indicator i {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

/* Responsywność - pokaż mobilną tabelę na urządzeniach mobilnych */
@media (max-width: 768px) {
  .desktop-table {
    display: none;
  }
  
  .mobile-hours-table {
    display: block;
  }
}

@media (min-width: 769px) {
  .mobile-hours-table {
    display: none;
  }
  
  .desktop-table {
    display: grid;
  }
}

/* Social Media - jasne tło jak w kontakt */
.full-width-social {
  background: var(--light-color);
  color: var(--text-color);
  padding: 2rem 1rem;
  margin-top: 3rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.social-container h3 {
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.social-container p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-card {
  display: flex;
  align-items: center;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow);
}

.social-card:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

.social-icon {
  font-size: 1.5rem;
  margin-right: 0.8rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.social-content {
  text-align: left;
}

.social-content h4 {
  margin: 0 0 0.2rem 0;
  font-size: 1rem;
  color: var(--dark-color);
}

.social-content p {
  margin: 0;
  font-size: 0.8rem;
  color: #666;
}

/* Kolory social media */
.social-card.facebook .social-icon {
  background: rgba(59, 89, 152, 0.3);
  color: #3b5998;
}

.social-card.instagram .social-icon {
  background: linear-gradient(45deg, rgba(228, 64, 95, 0.3), rgba(131, 58, 180, 0.3));
  color: #e4405f;
}

.social-card.whatsapp .social-icon {
  background: rgba(37, 211, 102, 0.3);
  color: #25d366;
}

.social-card.google .social-icon {
  background: rgba(219, 68, 55, 0.3);
  color: #db4437;
}

.social-cta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-followers {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  color: var(--text-color);
}

.follower-count {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.follower-count i {
  color: var(--primary-color);
}

.social-arrow {
  margin-left: auto;
  color: #999;
  transition: var(--transition);
}

.social-card:hover .social-arrow {
  transform: translateX(3px);
  color: var(--primary-color);
}

/* Stopka */
footer {
  background: var(--dark-color);
  color: var(--text-light);
  padding: 3rem 1rem 1rem;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
}

.footer-section p {
  margin-bottom: 0.5rem;
}

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

.footer-bottom a {
  color: var(--primary-color);
  text-decoration: none;
}

/* Przyciski */
.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.cta-button:hover {
  background: var(--dark-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary {
  background: var(--dark-color);
}

.cta-button.secondary:hover {
  background: var(--primary-color);
}

.cta-button i {
  margin-right: 0.5rem;
}

/* WhatsApp Floating Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 10px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  font-family: Arial, sans-serif;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.whatsapp-icon {
  margin-left: 8px;
  flex-shrink: 0;
}

/* Style dla linków adresowych */
.address-link {
    color: #666;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.address-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.address-link::after {
    content: '\f35d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 0.8em;
    opacity: 0.7;
}

/* Wycentrowane przyciski */
.centered-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.quick-contact-buttons.centered-buttons {
    justify-content: center;
}

/* Logo styles */
.nav-logo {
  display: flex;
  align-items: center;
}

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

.header-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}

.main-logo {
  height: 100px;
  width: auto;
  max-width: 100%;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo .logo-img {
  height: 60px;
}

/* Nawigacja z logo */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
}

/* Pełna szerokość dla sekcji statusu */
.full-width-status {
  width: 100%;
  margin-top: 2rem;
}

.current-status {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
}

/* Style dla linku godzin otwarcia w stopce */
.footer-hours-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    margin-top: 0.5rem;
    display: inline-block;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.footer-hours-link:hover {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Style dla modala galerii */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    max-height: 100%;
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: -40px;
    font-size: 2.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10001;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.modal-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.modal-prev {
    left: -80px;
}

.modal-next {
    right: -80px;
}

.modal-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Style dla animacji ładowania w modal */
.modal-loading {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    z-index: 10002;
}

.modal-loading i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal-loading p {
    font-size: 1.2rem;
    margin: 0;
}

/* Style dla galerii z poziomymi paskami */
.gallery-container {
    margin-top: 2rem;
}

.gallery-row {
    margin-bottom: 3rem;
}

.gallery-row h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.gallery-scroll {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 1.5rem 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f0f0f0;
    cursor: grab;
    user-select: none;
}

.gallery-scroll:active {
    cursor: grabbing;
}

.gallery-scroll::-webkit-scrollbar {
    height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
    background: #1e9c52;
}

.gallery-thumbnail {
    flex: 0 0 auto;
    width: 220px;
    height: 165px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-thumbnail:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.thumbnail-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    overflow: hidden;
}

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

.gallery-thumbnail:hover .thumbnail-image {
    transform: scale(1.1);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 1.8rem;
}

.gallery-thumbnail:hover .thumbnail-overlay {
    opacity: 1;
}

.thumbnail-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #999;
    background: #f0f0f0;
}

.thumbnail-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.thumbnail-placeholder p {
    font-size: 0.9rem;
    margin: 0;
}

/* ===== WATERMARKI I OCHRONA ===== */
.watermark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.watermark-overlay div {
    position: absolute;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
    white-space: nowrap;
}

/* Style dla logo watermark */
.watermark-logo {
    opacity: 0.9;
    transition: opacity 0.3s ease;
    max-width: 120px;
    max-height: 60px;
}

.watermark-logo:hover {
    opacity: 1;
}

/* Licznik obrazków */
.modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 11;
}

/* ===== RESPONSYWNOŚĆ ===== */
@media (max-width: 968px) {
    .modal-nav {
        width: 50px;
        height: 50px;
        padding: 1rem;
        font-size: 1.2rem;
    }
    
    .modal-prev {
        left: 15px;
    }
    
    .modal-next {
        right: 15px;
    }
    
    .close-modal {
        top: 15px;
        right: 15px;
        font-size: 2rem;
    }
    
    .modal-counter {
        bottom: 15px;
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .gallery-thumbnail {
        width: 180px;
        height: 135px;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container {
        height: 300px;
        order: -1;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-contact-buttons {
        grid-template-columns: 1fr;
    }
    
    .watermark-logo {
        max-width: 100px;
        max-height: 50px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 1rem 0;
    }
    
    .nav-logo {
        margin-bottom: 1rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .main-logo {
        height: 80px;
    }
    
    .footer-logo .logo-img {
        height: 50px;
    }
    
    nav a {
        margin: 0.5rem 0;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .header-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .slider-container {
        height: 300px;
    }
    
    .slider-text {
        font-size: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-item i {
        margin-top: 0;
    }
    
    .hours-table {
        grid-template-columns: 1fr;
    }
    
    .table-header .table-cell:nth-child(2),
    .table-header .table-cell:nth-child(3),
    .table-header .table-cell:nth-child(4) {
        display: none;
    }
    
    .table-cell:nth-child(2),
    .table-cell:nth-child(3),
    .table-cell:nth-child(4) {
        display: none;
    }
    
    .colspan-3 {
        grid-column: 1;
    }
    
    .table-cell {
        min-height: 50px;
        padding: 0.8rem;
    }
    
    .table-cell.day {
        justify-content: center;
        background: var(--dark-color);
        color: white;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .social-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .social-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .social-content {
        text-align: center;
    }
    
    .social-arrow {
        display: none;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-button {
        padding: 12px;
        border-radius: 50%;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .centered-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-contact-buttons.centered-buttons {
        grid-template-columns: 1fr;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-hours-link {
        margin-top: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .gallery-thumbnail {
        width: 150px;
        height: 112px;
    }
    
    .thumbnail-overlay {
        font-size: 1.5rem;
    }
    
    .gallery-scroll {
        padding: 1rem 0.5rem;
        gap: 0.8rem;
    }
    
    .watermark-logo {
        max-width: 80px;
        max-height: 40px;
    }
    
    .watermark-overlay div {
        font-size: 12px;
    }
    
    .modal-image {
        max-height: 60vh;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 200px;
    }
    
    .slider-text {
        font-size: 1.2rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    section {
        padding: 2rem 1rem;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
    
    .modal-nav {
        width: 40px;
        height: 40px;
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .close-modal {
        top: 10px;
        right: 10px;
        font-size: 1.8rem;
    }
    
    .modal-content {
        max-width: 98%;
        max-height: 98%;
    }
    
    .modal-loading i {
        font-size: 2.5rem;
    }
    
    .modal-loading p {
        font-size: 1rem;
    }
    
    .watermark-logo {
        max-width: 60px;
        max-height: 30px;
    }
    
    .watermark-overlay div {
        font-size: 10px;
    }
    
    /* Ukryj niektóre watermarky na bardzo małych ekranach */
    .watermark-overlay div:nth-child(3), /* Tel */
    .watermark-overlay div:nth-child(4) { /* Adres */
        display: none;
    }
}
/* Watermark na miniaturach */
.thumbnail-watermark {
    position: absolute;
    top: 5px;
    left: 5px;
    pointer-events: none;
    z-index: 2;
}

.watermark-logo-small {
    height: 20px;
    opacity: 0.8;
}

.watermark-text {
    display: block;
    font-size: 8px;
    color: white;
    text-shadow: 1px 1px 2px black;
    margin-top: 2px;
}

.thumbnail-container {
    position: relative;
}

.social-card.fixly .social-icon {
    background: rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.fixly-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    border: 2px solid #ffc107;
    transition: all 0.3s ease;
}

.fixly-link:hover {
    background: #ffc107;
    color: #000;
    transform: translateY(-2px);
}

.after-hours-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    margin: 15px 0;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

.phone-hours {
    color: #28a745;
    font-weight: bold;
    margin-top: 5px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Style dla banera po godzinach */
.after-hours {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%) !important;
    border-left: 4px solid #ff3838 !important;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border-radius: 6px;
    font-weight: bold;
}

.status-indicator.open {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-indicator.closed {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-banner {
    padding: 10px 15px;
    text-align: center;
    font-weight: bold;
    border-bottom: 2px solid;
}

.status-banner.open {
    background-color: #d4edda;
    color: #155724;
    border-bottom-color: #28a745;
}

.status-banner.closed {
    background-color: #f8d7da;
    color: #721c24;
    border-bottom-color: #dc3545;
}

/* Animacja pulsowania */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Style dla statusu otwarcia */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    margin: 10px 0;
    transition: all 0.3s ease;
}

.status-indicator.open {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.status-indicator.closed {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 2px solid #dc3545;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.status-banner {
    padding: 12px 20px;
    text-align: center;
    font-weight: bold;
    border-bottom: 3px solid;
    transition: all 0.3s ease;
}

.status-banner.open {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-bottom-color: #28a745;
}

.status-banner.closed {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-bottom-color: #dc3545;
}

/* Style dla galerii */
.gallery-row h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.gallery-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
}

.gallery-scroll::-webkit-scrollbar {
    height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.gallery-thumbnail {
    flex: 0 0 auto;
    width: 200px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.thumbnail-container:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.thumbnail-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.thumbnail-container:hover .thumbnail-overlay {
    opacity: 1;
}

.thumbnail-overlay i {
    color: white;
    font-size: 2em;
}

.thumbnail-placeholder {
    width: 100%;
    height: 150px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
}

/* Animacje */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsywność */
@media (max-width: 768px) {
    .gallery-thumbnail {
        width: 150px;
    }
    
    .thumbnail-image {
        height: 120px;
    }
    
    .thumbnail-placeholder {
        height: 120px;
    }
    
    .status-indicator {
        padding: 8px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .gallery-thumbnail {
        width: 120px;
    }
    
    .thumbnail-image {
        height: 100px;
    }
    
    .thumbnail-placeholder {
        height: 100px;
    }
    
    .gallery-row h3 {
        font-size: 1.1em;
    }
}

/* Sekcja Naprawiamy w Twojej okolicy */
#okolica {
  background: #f8f9fa;
  padding: 4rem 1rem;
}

.locations-container {
  max-width: 1000px;
  margin: 0 auto;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.location-category {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.location-category h3 {
  color: var(--dark-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

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

.location-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 1.5rem;
}

.location-list li:last-child {
  border-bottom: none;
}

.location-list li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.location-note {
  margin-top: 2rem;
}

.note-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #e3f2fd;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #2196F3;
}

.note-card i {
  color: #2196F3;
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.note-card h4 {
  color: #1976d2;
  margin-bottom: 0.5rem;
}

.note-card p {
  margin: 0;
  color: #1565c0;
}

/* Responsywność */
@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
  
  .note-card {
    flex-direction: column;
    text-align: center;
  }
}


/* Sekcja Naprawiamy w Twojej okolicy */
#okolica {
  background: #f8f9fa;
  padding: 4rem 1rem;
}

.locations-container {
  max-width: 1000px;
  margin: 0 auto;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.location-category {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.location-category h3 {
  color: var(--dark-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

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

.location-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 1.5rem;
}

.location-list li:last-child {
  border-bottom: none;
}

.location-list li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.location-note {
  margin-top: 2rem;
}

.note-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #e3f2fd;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #2196F3;
}

.note-card i {
  color: #2196F3;
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.note-card h4 {
  color: #1976d2;
  margin-bottom: 0.5rem;
}

.note-card p {
  margin: 0;
  color: #1565c0;
}

/* Responsywność */
@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
  
  .note-card {
    flex-direction: column;
    text-align: center;
  }
}

/images/brands/
├── philips-logo.png
├── delonghi-logo.png
├── saeco-logo.png
├── krups-logo.png
├── jura-logo.png
├── samsung-logo.png
├── lg-logo.png
├── bosch-logo.png
├── whirlpool-logo.png
├── amica-logo.png
├── electrolux-logo.png
└── zanussi-logo.png

/* Sekcja Marki które naprawiamy */
#sprzety {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.brand-logo-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 140px;
}

.brand-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.logo-placeholder {
  width: 80px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 0.5rem;
}

.brand-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.brand-logo-card:hover .brand-logo-img {
  filter: grayscale(0%);
}

.brand-name {
  font-weight: 600;
  color: var(--dark-color);
  font-size: 0.9rem;
  margin-top: auto;
}

.brands-description {
  text-align: center;
  margin: 2rem 0;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-color);
}

.brands-description p {
  font-size: 1.1rem;
  margin: 0;
  color: var(--text-color);
  line-height: 1.6;
}

.brands-description strong {
  color: var(--primary-color);
}

.brands-note {
  margin-top: 1rem;
}

.brands-note .note-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  padding: 2rem;
  border-radius: 12px;
  border-left: 6px solid #2196F3;
  max-width: 800px;
  margin: 0 auto;
}

.brands-note .note-card i {
  font-size: 2.5rem;
  color: #2196F3;
  background: white;
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
  flex-shrink: 0;
}

.brands-note .note-card h4 {
  color: #1976d2;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.brands-note .note-card p {
  margin: 0;
  color: #1565c0;
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsywność */
@media (max-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }
  
  .brand-logo-card {
    padding: 1rem 0.5rem;
    height: 120px;
  }
  
  .logo-placeholder {
    width: 60px;
    height: 50px;
  }
  
  .brand-name {
    font-size: 0.8rem;
  }
  
  .brands-description {
    padding: 1rem;
    margin: 1.5rem 0;
  }
  
  .brands-description p {
    font-size: 1rem;
  }
  
  .brands-note .note-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .brands-note .note-card i {
    font-size: 2rem;
    padding: 0.8rem;
  }
}

@media (max-width: 480px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }
  
  .brand-logo-card {
    height: 100px;
    padding: 0.8rem 0.3rem;
  }
  
  .logo-placeholder {
    width: 50px;
    height: 40px;
    margin-bottom: 0.5rem;
  }
  
  .brand-name {
    font-size: 0.7rem;
  }
}

/* Animacje */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.brand-logo-card {
  animation: fadeInScale 0.5s ease forwards;
}

/* Opóźnienia animacji dla kolejnych kafelków */
.brand-logo-card:nth-child(1) { animation-delay: 0.1s; }
.brand-logo-card:nth-child(2) { animation-delay: 0.2s; }
.brand-logo-card:nth-child(3) { animation-delay: 0.3s; }
.brand-logo-card:nth-child(4) { animation-delay: 0.4s; }
.brand-logo-card:nth-child(5) { animation-delay: 0.5s; }
.brand-logo-card:nth-child(6) { animation-delay: 0.6s; }
.brand-logo-card:nth-child(7) { animation-delay: 0.7s; }
.brand-logo-card:nth-child(8) { animation-delay: 0.8s; }
.brand-logo-card:nth-child(9) { animation-delay: 0.9s; }
.brand-logo-card:nth-child(10) { animation-delay: 1.0s; }
.brand-logo-card:nth-child(11) { animation-delay: 1.1s; }
.brand-logo-card:nth-child(12) { animation-delay: 1.2s; }
