/*
Theme Name: Morski Park Handlowy
Theme URI: https://morskiparkhandlowy.pl
Author: SyrTech - Paweł Syrowy
Author URI: https://syrtech.pl
Description: Motyw WordPress dla Morskiego Parku Handlowego
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: morski-park
*/

/* ===========================
   Zmienne CSS
   =========================== */
:root {
  --color-bg-light: #eff8f9;
  --color-brand: #003b40;
  --color-link: #181818;
  --color-teal: #007983;
  --color-text: #4b4b4b;
  --color-heading: #1f5c5e;
  --color-accent: #00a5a5;
  --color-border-light: #ccc;
  --color-bg: #ffffff;
  --color-bg-section: #c7d3d6;
  --color-bg-dark: #111;
  --color-btn: #0b4d4d;
  --color-border: #222;
  --color-copyright: #777;
  --color-footer-link: #aaa;
  --color-filter: #9bb6bb;
}

/* ===========================
   Style globalne
   =========================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: var(--color-teal);
  background-color: var(--color-bg);
}

a {
  text-decoration: none;
  color: var(--color-link);
}

/* ===========================
   Nagłówek
   =========================== */
header {
  padding: 1rem 2rem;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: var(--color-bg);
}

.header-top {
  font-size: 11px;
  color: var(--color-brand);
}

.header-contact {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  align-items: center;
}

/* Przełącznik językowy w pasku górnym */
.lang-btn {
  display: inline-block;
  padding: 2px 7px;
  border: 1px solid var(--color-brand);
  border-radius: 3px;
  color: var(--color-brand);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.lang-btn:hover {
  background: var(--color-brand);
  color: var(--color-bg);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-icon {
  width: 20px;
  height: 20px;
}

/* ===========================
   Nawigacja
   =========================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 5rem;
}

.nav-links li {
  transition: 0.3s;
}

.nav-links li a {
  padding: 0.5rem;
  font-size: 16px;
  color: var(--color-brand);
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.nav-links li a:hover {
  border-bottom-color: var(--color-teal);
}

.nav-links li a.active {
  border-bottom-color: var(--color-brand);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  background: none;
}

.navbar img {
  max-width: 180px;
}

/* ===========================
   Karuzela główna
   =========================== */
.shopping-mall {
  justify-items: center;
}

.shopping-mall.carousel-section {
  justify-self: center;
  max-height: 500px;
}

.shopping-mall.gallery-carousel {
  justify-self: center;
  max-width: 600px;
  max-height: 400px;
  align-self: center;
}

.shopping-mall img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  display: block;
  object-fit: cover;
}

.shopping-mall.one-photo-section img {
  object-position: center 80%;
}

.shopping-mall.gallery-carousel img {
  max-width: 600px;
  max-height: 400px;
  border-radius: 25px;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.carousel-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.carousel-arrow {
  background: transparent;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  opacity: 0.9;
  transition: 0.3s;
}

.carousel-arrow:hover {
  opacity: 1;
  transform: scale(1.2);
}

.carousel-indicators {
  display: flex;
  gap: 10px;
}

.carousel-bar {
  width: 50px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-bar.active {
  background: var(--color-teal);
}

.carousel-bar:hover:not(.active) {
  background: var(--color-brand);
}

/* ===========================
   Sekcja powitalna (strona główna)
   =========================== */
.welcome {
  width: 100%;
  padding: 4rem 2rem;
  justify-items: center;
  background-color: var(--color-bg-section);
}

.welcome .welcome-content {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
  color: var(--color-brand);
}

.welcome .welcome-content .welcome-content-top{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
}

.welcome h1 {
  font-size: 40px;
  font-weight: 400;
  justify-self: end;
}

.welcome h3 {
  font-size: 16px;
  font-weight: 400;
}

.welcome p {
  font-size: 12px;
  font-weight: 300;
}

.welcome-content-top img {
  padding-bottom: 0.5rem;
  margin-right: 1rem;
}

/* ===========================
   Sekcja mapy centrum (strona główna)
   =========================== */
.map-center {
  background-color: var(--color-bg-section);
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.map-container {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.map-left {
  display: flex;
  flex-direction: column;
  justify-items: left;
  text-align: start;
  gap: 2rem;
  flex: 1;
  padding-top: 2rem;
}

.map-left h3 {
  font-size: 16px;
  font-weight: 400;
}

.map-logo {
  width: 140px;
}

.map-right h2 {
  flex: 1;
}

.map-left h2 {
  font-size: 48px;
  font-weight: 300;
  color: var(--color-heading);
  line-height: 1.2;
}

.map-right img {
  max-width: 700px;
  width: 100%;
  height: auto;
  display: block;
}

/* ===========================
   Sklepy — slider (strona główna)
   =========================== */
.shops {
  padding: 4rem 2rem;
  text-align: center;
}

.shops h2 {
  font-size: 36px;
  font-weight: 300;
  color: var(--color-heading);
  margin-bottom: 3rem;
}

.shops-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.shops-track {
  display: flex;
  overflow: hidden;
  width: 980px;
  max-width: 100%;
  scroll-behavior: smooth;
  gap: 20px;
}

.shop-item {
  flex: 0 0 calc((100% - 120px) / 3);
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100px;
}

.shop-item img {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.8;
  transition: 0.3s;
}

.shop-item img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.slider-btn {
  border: none;
  background: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-heading);
  transition: 0.3s;
}

.slider-btn:hover {
  transform: scale(1.2);
}

/* ===========================
   Promocje — slider (strona główna)
   =========================== */
.promotions {
  padding: 5rem 2rem;
  position: relative;
}

.promotions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/carousel/karuzela2.jpg") center/cover no-repeat;
  opacity: 0.5;
  z-index: 0;
}

.promotions > * {
  position: relative;
  z-index: 1;
}

.promotions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto 3rem auto;
  flex-wrap: wrap;
  gap: 1rem;
}

.promotions-header h2 {
  font-size: 48px;
  font-weight: 300;
  color: var(--color-heading);
}

.promo-btn {
  background: var(--color-btn);
  color: white;
  padding: 12px 28px;
  font-size: 14px;
  transition: 0.3s;
}

.promo-btn:hover {
  transform: scale(1.05);
}

.promotions-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.promotions-track {
  display: flex;
  overflow: hidden;
  width: 1100px;
  max-width: 100%;
  gap: 20px;
}

.promo-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: white;
  min-width: 280px;
  text-align: left;
}

.promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.promo-content {
  padding: 12px;
}

.promo-content span {
  font-size: 14px;
  color: var(--color-brand);
  text-align: left;
}

.promo-content p {
  font-size: 18px;
  margin-top: 2px;
  color: var(--color-teal);
  text-align: left;
}

.promo-btn-slider {
  border: none;
  background: var(--color-btn);
  color: white;
  font-size: 22px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.promo-btn-slider:hover {
  transform: scale(1.2);
}

/* ===========================
   Stopka
   =========================== */
.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-bg);
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 40px 80px;
  flex-wrap: wrap;
}

.footer-logo img {
  width: 160px;
}

.footer-info {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 12px;
  color: var(--color-accent);
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-col p {
  font-size: 13px;
  color: var(--color-border-light);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-menu {
  list-style: none;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-menu a {
  color: var(--color-footer-link);
  font-size: 13px;
}

.footer-menu a:hover {
  color: white;
}

.copyright {
  font-size: 12px;
  color: var(--color-copyright);
}

/* ===========================
   Strona kontaktu
   =========================== */
.contact-page {
  background: var(--color-bg-section);
  padding: 80px 20px;
  text-align: center;
}

.contact-page h1 {
  font-size: 48px;
  font-weight: 300;
  color: var(--color-heading);
  margin-bottom: 50px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.contact-box {
  text-align: left;
}

.contact-box h4 {
  font-size: 12px;
  color: var(--color-teal);
  margin-bottom: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-box img {
  float: left;
  margin-right: 6px;
}

.contact-icon {
  width: 20px;
  height: 20px;
}

.contact-box p {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.6;
}

.contact-map {
  justify-items: center;
  margin: auto;
}

.contact-map iframe {
  width: 100%;
  max-width: 1200px;
  height: 500px;
  border: 0;
  display: block;
  margin: auto;
}

/* ===========================
   Strona informacji
   =========================== */
.info-intro {
  background: var(--color-bg-section);
  text-align: center;
  padding: 80px 20px;
}

.info-intro h1 {
  font-size: 48px;
  font-weight: 300;
  color: var(--color-heading);
  margin-bottom: 30px;
}

.info-intro h3 {
  max-width: 800px;
  margin: auto;
  font-weight: 400;
  font-size: 18px;
  color: var(--color-heading);
  line-height: 1.6;
}

.info-intro p {
  max-width: 850px;
  margin: 30px auto 0 auto;
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.8;
}

.info-details {
  display: flex;
  justify-content: center;
  gap: 120px;
  padding: 80px 20px;
  background: var(--color-bg);
  flex-wrap: wrap;
}

.info-column {
  max-width: 420px;
}

.info-column h2 {
  font-size: 40px;
  font-weight: 300;
  color: var(--color-heading);
  margin-bottom: 40px;
}

.info-block {
  margin-bottom: 25px;
}

.info-block strong {
  display: block;
  font-size: 15px;
  color: var(--color-heading);
  margin-bottom: 6px;
}

.info-block p {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.6;
}

/* ===========================
   Udogodnienia (strona informacji)
   =========================== */
.facilities {
  background: var(--color-bg-section);
  padding: 80px 40px;
  text-align: center;
}

.facilities h2 {
  font-size: 40px;
  font-weight: 300;
  color: var(--color-heading);
  margin-bottom: 60px;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.facility {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.facility img {
  width: 40px;
  height: 40px;
  opacity: 0.9;
}

.facility p {
  font-size: 13px;
  color: var(--color-heading);
  text-align: center;
}

/* ===========================
   Regulaminy (strona informacji)
   =========================== */
.regulations {
  padding: 80px 40px;
  background: var(--color-bg);
  max-width: 1100px;
  margin: auto;
}

.regulations h2 {
  font-size: 40px;
  font-weight: 300;
  color: var(--color-heading);
  margin-bottom: 40px;
}

.regulation-list {
  border-top: 1px solid var(--color-border-light);
}

.regulation-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 14px;
  color: var(--color-text);
  cursor: pointer;
}

.regulation-item:hover {
  color: var(--color-heading);
}

.arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.regulation-item.active .arrow {
  transform: rotate(180deg);
}

.regulation-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0;
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.8;
}

.regulation-content.active {
  max-height: 10000px;
  padding: 15px 0;
}

.regulation-content ol {
  padding-left: 30px;
  list-style: decimal;
}

.regulation-content ul {
  padding-left: 30px;
  list-style: disc;
}

/* ===========================
   Strona galerii
   =========================== */
.gallery-header {
  position: relative;
  justify-self: center;
  width: 100%;
}

.gallery-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background: url("images/carousel/karuzela2.jpg") center/cover no-repeat;
  z-index: 0;
}

.gallery-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    var(--color-heading) 0%,
    var(--color-heading) 10%,
    transparent 50%
  );
  z-index: 1;
  pointer-events: none;
}

.gallery-header > * {
  position: relative;
  z-index: 2;
}

.gallery-header-track {
  display: flex;
  width: 100%;
  max-width: 100%;
  align-items: end;
  justify-content: center;
  height: 500px;
  gap: 1rem;
  overflow: hidden;
}

.gallery-header-item {
  text-align: center;
  height: 170px;
  margin-bottom: 0.5rem;
  width: 200px;
  color: var(--color-border-light);
  font-size: 0.75rem;
}

.gallery-header-item img {
  height: 120px;
}

.gallery-page {
  background: var(--color-bg-light);
  padding: 80px 20px;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.gallery-row {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.gallery-row.reverse {
  flex-direction: row-reverse;
}

.gallery-text {
  flex: 1;
  color: var(--color-heading);
  min-width: 280px;
}

.gallery-text h2 {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 20px;
}

.gallery-text p {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.8;
  max-width: 500px;
}

.gallery-image {
  flex: 1;
  min-width: 280px;
}

.gallery-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.gallery-carousel-wrapper {
  width: 100%;
  background-color: var(--color-bg-section);
}

/* ===========================
   Strona promocji
   =========================== */
.promotions-page {
  background: var(--color-bg-section);
  padding: 80px 20px;
  text-align: center;
}

.promotions-page h1 {
  font-size: 48px;
  font-weight: 300;
  color: var(--color-heading);
  margin-bottom: 60px;
}

.promotions-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ===========================
   Strona sklepów
   =========================== */
.shops-page {
  background: var(--color-bg-section);
  padding: 80px 20px;
  text-align: center;
}

.shops-page h1 {
  font-size: 48px;
  font-weight: 300;
  color: var(--color-heading);
  margin-bottom: 40px;
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.filter {
  border: 1px solid var(--color-filter);
  background: none;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 13px;
  color: var(--color-heading);
  transition: 0.3s;
}

.filter:hover {
  background: var(--color-bg-section);
}

.filter.active {
  background: var(--color-heading);
  color: white;
}

.shops-grid {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--color-filter);
}

.shops-header {
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 120px 1fr 200px 150px;
  gap: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-heading);
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-filter);
}

.shop-card {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-filter);
}

.shop-row {
  display: grid;
  grid-template-columns: 120px 1fr 200px 150px;
  align-items: center;
  gap: 20px;
}

.shop-col img {
  height: 40px;
  max-width: 120px;
  object-fit: contain;
  transition: 0.3s;
}

.shop-col img:hover {
  transform: scale(1.05);
}

.shop-col.description strong {
  display: block;
  color: var(--color-heading);
  margin-bottom: 5px;
}

.shop-col.description p,
.shop-col.hours p,
.shop-col.phone p {
  font-size: 13px;
  color: var(--color-text);
}

/* ===========================
   Responsywność — szeroki ekran (1200px)
   =========================== */
@media (max-width: 1200px) {
  .nav-links {
    gap: 3rem;
  }

  /* Nagłówek galerii — tło dopasowane do szerokości ekranu */
  .gallery-header::before {
    width: 100%;
  }
}

/* ===========================
   Responsywność — tablet (1024px)
   =========================== */
@media (max-width: 1024px) {
  .welcome .welcome-content {
    width: 85%;
  }

  .map-container {
    gap: 3rem;
  }

  .shops-track {
    width: 100%;
    max-width: 700px;
  }

  .shop-item {
    flex: 0 0 calc((100% - 80px) / 3);
    min-width: 100px;
  }

  .promotions-track {
    width: 100%;
    max-width: 700px;
  }

  .promo-card {
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: 250px;
  }

  .footer-top,
  .footer-bottom {
    padding: 30px 40px;
  }

  .contact-info {
    justify-content: left;
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .info-details {
    gap: 60px;
  }
}

/* ===========================
   Responsywność — średni ekran (900px)
   =========================== */
@media (max-width: 900px) {
  .nav-links {
    gap: 2rem;
  }

  .promotions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================
   Responsywność — mobile (768px)
   =========================== */
@media (max-width: 768px) {
  .header-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .navbar {
    position: relative;
  }

  .nav-links {
    position: absolute;
    flex-direction: column;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background-color: var(--color-bg);
    transition: max-height 0.3s ease;
    gap: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(31, 92, 94, 0.1);
  }

  .nav-links li a {
    display: block;
    padding: 1rem;
    width: 100%;
  }

  .nav-links.active {
    max-height: 400px;
    padding: 0.5rem 0;
  }

  .menu-toggle {
    display: block;
  }

  .welcome .welcome-content {
    width: 95%;
  }

  .welcome h1 {
    font-size: 32px;
  }

  .welcome h3 {
    font-size: 14px;
  }

  .map-container {
    flex-direction: column;
    gap: 2rem;
  }

  .map-left h2 {
    font-size: 36px;
  }

  .shops-track {
    max-width: 500px;
  }

  .shop-item {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 100px;
  }

  .shops h2,
  .promotions-header h2,
  .contact-page h1,
  .info-intro h1,
  .promotions-page h1,
  .shops-page h1 {
    font-size: 32px;
  }

  .promotions-header {
    width: 100%;
    justify-content: center;
  }

  .footer-top,
  .footer-bottom {
    padding: 20px;
  }

  .footer-info,
  .footer-menu {
    gap: 30px;
  }

  /* Tabela sklepów — układ pionowy */
  .shops-header {
    display: none;
  }

  .shop-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .shop-col {
    width: 100%;
  }

  .shop-col.logo {
    margin-bottom: 10px;
  }

  .gallery-header {
    display: flex;
    flex-direction: column;
  }

  .gallery-header::before {
    position: relative;
    width: 100%;
    height: 300px;
  }

  .gallery-header::after {
    display: none;
  }

  .gallery-header-track {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 1rem;
    background: var(--color-teal);
  }

  .gallery-header-item {
    width: 150px;
    height: 150px;
    color: var(--color-bg);
  }

  .gallery-header-item img {
    height: 90px;
  }
}

/* ===========================
   Responsywność — małe mobile (600px)
   =========================== */
@media (max-width: 600px) {
  .shops-track {
    max-width: 350px;
  }

  .shop-item {
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: 100px;
  }

  .promotions-grid {
    grid-template-columns: 1fr;
  }

  .promotions-track {
    max-width: 350px;
  }

  .promo-card {
    flex: 0 0 100%;
    min-width: 280px;
  }

  .shop-filters {
    gap: 10px;
  }

  .filter {
    font-size: 11px;
    padding: 6px 12px;
  }

  .gallery-row {
    gap: 40px;
  }

  .gallery-container {
    gap: 40px;
  }

  .gallery-text h2,
  .info-column h2,
  .facilities h2,
  .regulations h2 {
    font-size: 28px;
  }

  .info-details {
    gap: 40px;
    padding: 60px 20px;
    justify-content: left;
  }

  .facilities {
    padding: 60px 20px;
  }

  .regulations {
    padding: 60px 20px;
  }

  /* Nagłówek galerii — małe telefony */
  .gallery-header::before {
    height: 200px;
  }

  .gallery-header-item {
    width: 110px;
    height: 110px;
    font-size: 0.65rem;
    margin-bottom: 2rem;
  }

  .gallery-header-item img {
    height: 75px;
  }

  .welcome h1 {
    font-size: 24px;
  }
}
