/* ============================================
   GeoStay LLC — Arkusz stylów IdoSell
   Styl: Ciepły śródziemnomorski
   Prefix: .gs-
   Panel: client57156.idosell.com
   ============================================ */

/* --- IMPORT FONTÓW --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- ZMIENNE KOLORÓW --- */
:root {
  /* Paleta śródziemnomorska */
  --gs-terracotta: #C4704B;
  --gs-terracotta-light: #D4896A;
  --gs-terracotta-dark: #A85A38;
  --gs-sand: #F5EDE3;
  --gs-sand-light: #FAF7F2;
  --gs-sand-dark: #E8DDD0;
  --gs-olive: #6B7F5E;
  --gs-olive-light: #8A9E7C;
  --gs-olive-dark: #536549;
  --gs-warm-white: #FDFBF8;
  --gs-cream: #F0E6D8;
  --gs-charcoal: #2C2C2C;
  --gs-text: #3A3632;
  --gs-text-light: #7A746D;
  --gs-text-muted: #A49E96;
  --gs-sea-blue: #5B8FA8;
  --gs-sea-light: #7FB3C9;
  --gs-gold: #C9A96E;
  --gs-gold-light: #D9BF8E;
  --gs-border: rgba(196, 112, 75, 0.15);

  /* Typografia */
  --gs-font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --gs-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --gs-section-padding: 80px 0;
  --gs-container-max: 1200px;
  --gs-radius: 12px;
  --gs-radius-sm: 8px;

  /* Shadows */
  --gs-shadow: 0 4px 20px rgba(44, 44, 44, 0.08);
  --gs-shadow-hover: 0 12px 40px rgba(44, 44, 44, 0.14);
  --gs-shadow-soft: 0 2px 12px rgba(196, 112, 75, 0.1);
}

/* --- RESET & BASE --- */
.gs-section {
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

.gs-container {
  max-width: var(--gs-container-max);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* --- TYPOGRAPHY --- */
.gs-h1 {
  font-family: var(--gs-font-heading);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.gs-h2 {
  font-family: var(--gs-font-heading);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--gs-charcoal);
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}

.gs-h3 {
  font-family: var(--gs-font-heading);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--gs-charcoal);
  margin: 0 0 12px 0;
}

.gs-h4 {
  font-family: var(--gs-font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--gs-charcoal);
  margin: 0 0 8px 0;
}

.gs-text {
  font-family: var(--gs-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--gs-text);
}

.gs-text-sm {
  font-family: var(--gs-font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--gs-text-light);
}

.gs-label {
  font-family: var(--gs-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gs-terracotta);
}

.gs-subtitle {
  font-family: var(--gs-font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gs-text-light);
  max-width: 640px;
}

/* --- BUTTONS --- */
.gs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--gs-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  line-height: 1;
}

.gs-btn-primary {
  background: var(--gs-terracotta);
  color: #fff;
}
.gs-btn-primary:hover {
  background: var(--gs-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 112, 75, 0.35);
}

.gs-btn-outline {
  background: transparent;
  color: var(--gs-terracotta);
  border: 2px solid var(--gs-terracotta);
  padding: 13px 34px;
}
.gs-btn-outline:hover {
  background: var(--gs-terracotta);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 112, 75, 0.35);
}

.gs-btn-white {
  background: rgba(255,255,255,0.95);
  color: var(--gs-terracotta);
  backdrop-filter: blur(8px);
}
.gs-btn-white:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

.gs-btn-olive {
  background: var(--gs-olive);
  color: #fff;
}
.gs-btn-olive:hover {
  background: var(--gs-olive-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107, 127, 94, 0.35);
}

/* --- HERO SECTION --- */
.gs-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.gs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 44, 44, 0.15) 0%,
    rgba(44, 44, 44, 0.4) 60%,
    rgba(44, 44, 44, 0.7) 100%
  );
  z-index: 1;
}

.gs-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 24px;
}

.gs-hero-content .gs-label {
  color: var(--gs-gold-light);
  margin-bottom: 20px;
  display: block;
}

.gs-hero-content .gs-h1 {
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.gs-hero-content .gs-subtitle {
  color: rgba(255,255,255,0.85);
  margin: 0 auto 32px auto;
}

.gs-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- SECTION HEADERS --- */
.gs-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.gs-section-header .gs-label {
  margin-bottom: 12px;
  display: block;
}

.gs-section-header .gs-subtitle {
  margin: 12px auto 0 auto;
}

.gs-divider {
  width: 60px;
  height: 2px;
  background: var(--gs-terracotta);
  margin: 20px auto 0 auto;
  border: none;
}

/* --- APARTMENT CARDS --- */
.gs-apartments {
  padding: var(--gs-section-padding);
  background: var(--gs-sand-light);
}

.gs-apt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.gs-apt-card {
  background: #fff;
  border-radius: var(--gs-radius);
  overflow: hidden;
  box-shadow: var(--gs-shadow);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.gs-apt-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gs-shadow-hover);
}

.gs-apt-img {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.gs-apt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gs-apt-card:hover .gs-apt-img img {
  transform: scale(1.05);
}

.gs-apt-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gs-terracotta);
  color: #fff;
  font-family: var(--gs-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.gs-apt-price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--gs-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--gs-charcoal);
}
.gs-apt-price span {
  font-size: 11px;
  font-weight: 400;
  color: var(--gs-text-light);
}

.gs-apt-body {
  padding: 28px;
}

.gs-apt-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--gs-font-body);
  font-size: 13px;
  color: var(--gs-text-muted);
  margin-bottom: 8px;
}

.gs-apt-features {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gs-sand-dark);
  flex-wrap: wrap;
}

.gs-apt-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--gs-font-body);
  font-size: 13px;
  color: var(--gs-text-light);
}

.gs-apt-feature svg {
  width: 18px;
  height: 18px;
  color: var(--gs-terracotta-light);
  flex-shrink: 0;
}

/* --- O NAS / ABOUT --- */
.gs-about {
  padding: var(--gs-section-padding);
  background: var(--gs-warm-white);
}

.gs-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.gs-about-img {
  border-radius: var(--gs-radius);
  overflow: hidden;
  height: 480px;
}
.gs-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gs-about-text .gs-text {
  margin-bottom: 24px;
}

.gs-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gs-sand-dark);
}

.gs-stat {
  text-align: center;
}

.gs-stat-number {
  font-family: var(--gs-font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--gs-terracotta);
  display: block;
  line-height: 1.1;
}

.gs-stat-label {
  font-family: var(--gs-font-body);
  font-size: 12px;
  color: var(--gs-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* --- WHY BATUMI --- */
.gs-why-batumi {
  padding: var(--gs-section-padding);
  background: var(--gs-sand);
}

.gs-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gs-feature-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--gs-radius);
  text-align: center;
  box-shadow: var(--gs-shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gs-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gs-shadow-hover);
}

.gs-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gs-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 24px;
}

/* --- CTA / BANNER --- */
.gs-cta {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}
.gs-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 112, 75, 0.88) 0%, rgba(107, 127, 94, 0.85) 100%);
  z-index: 1;
}
.gs-cta-content {
  position: relative;
  z-index: 2;
}
.gs-cta .gs-h2 {
  color: #fff;
}
.gs-cta .gs-subtitle {
  color: rgba(255,255,255,0.85);
  margin: 12px auto 32px auto;
}

/* --- TESTIMONIALS --- */
.gs-testimonials {
  padding: var(--gs-section-padding);
  background: var(--gs-warm-white);
}

.gs-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gs-testimonial {
  background: #fff;
  padding: 32px;
  border-radius: var(--gs-radius);
  box-shadow: var(--gs-shadow);
  position: relative;
}

.gs-testimonial::before {
  content: '\201C';
  font-family: var(--gs-font-heading);
  font-size: 64px;
  color: var(--gs-terracotta-light);
  opacity: 0.3;
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}

.gs-testimonial-text {
  font-family: var(--gs-font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--gs-text);
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 12px;
}

.gs-testimonial-author {
  font-family: var(--gs-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--gs-charcoal);
}

.gs-testimonial-source {
  font-family: var(--gs-font-body);
  font-size: 12px;
  color: var(--gs-text-muted);
}

.gs-stars {
  color: var(--gs-gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

/* --- CONTACT --- */
.gs-contact {
  padding: var(--gs-section-padding);
  background: var(--gs-sand-light);
}

.gs-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.gs-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.gs-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gs-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 18px;
}

.gs-contact-item h4 {
  font-family: var(--gs-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--gs-charcoal);
  margin: 0 0 4px 0;
}

.gs-contact-item p {
  font-family: var(--gs-font-body);
  font-size: 15px;
  color: var(--gs-text-light);
  margin: 0;
}

.gs-map {
  border-radius: var(--gs-radius);
  overflow: hidden;
  height: 100%;
  min-height: 360px;
}
.gs-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- GALLERY PAGE --- */
.gs-gallery {
  padding: var(--gs-section-padding);
  background: var(--gs-warm-white);
}

.gs-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gs-gallery-item {
  border-radius: var(--gs-radius-sm);
  overflow: hidden;
  height: 280px;
  position: relative;
  cursor: pointer;
}
.gs-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gs-gallery-item:hover img {
  transform: scale(1.08);
}
.gs-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 44, 44, 0);
  transition: background 0.3s ease;
}
.gs-gallery-item:hover::after {
  background: rgba(44, 44, 44, 0.15);
}

/* Duży item */
.gs-gallery-item.gs-large {
  grid-column: span 2;
  height: 400px;
}

.gs-gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.gs-gallery-tab {
  font-family: var(--gs-font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--gs-sand-dark);
  background: #fff;
  color: var(--gs-text);
  cursor: pointer;
  transition: all 0.3s ease;
}
.gs-gallery-tab:hover,
.gs-gallery-tab.active {
  background: var(--gs-terracotta);
  color: #fff;
  border-color: var(--gs-terracotta);
}

/* --- ATTRACTIONS PAGE --- */
.gs-attractions {
  padding: var(--gs-section-padding);
  background: var(--gs-warm-white);
}

.gs-attraction-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.gs-attraction-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: #fff;
  border-radius: var(--gs-radius);
  overflow: hidden;
  box-shadow: var(--gs-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gs-attraction-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gs-shadow-hover);
}

.gs-attraction-img {
  height: 100%;
  min-height: 200px;
}
.gs-attraction-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gs-attraction-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gs-attraction-distance {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--gs-font-body);
  font-size: 12px;
  color: var(--gs-terracotta);
  background: var(--gs-sand);
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 12px;
  width: fit-content;
}

/* --- OWNERS PAGE --- */
.gs-owners {
  padding: var(--gs-section-padding);
  background: var(--gs-warm-white);
}

.gs-owners-hero {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--gs-charcoal) 0%, #4A4540 100%);
}
.gs-owners-hero .gs-h1 {
  font-size: 48px;
}
.gs-owners-hero .gs-subtitle {
  color: rgba(255,255,255,0.75);
  margin: 12px auto 32px auto;
}

.gs-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gs-benefit-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--gs-radius);
  box-shadow: var(--gs-shadow);
  border-top: 3px solid var(--gs-terracotta);
  transition: transform 0.3s ease;
}
.gs-benefit-card:hover {
  transform: translateY(-4px);
}

.gs-benefit-number {
  font-family: var(--gs-font-heading);
  font-size: 48px;
  font-weight: 600;
  color: var(--gs-sand-dark);
  line-height: 1;
  margin-bottom: 16px;
}

.gs-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  margin-top: 48px;
}

.gs-step {
  position: relative;
}
.gs-step::after {
  content: '\2192';
  position: absolute;
  right: -20px;
  top: 30px;
  font-size: 24px;
  color: var(--gs-terracotta-light);
}
.gs-step:last-child::after {
  display: none;
}

.gs-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gs-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  font-size: 28px;
}
.gs-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gs-terracotta);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  font-family: var(--gs-font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--gs-terracotta);
}

/* --- EXTRAS / TOURS PAGE --- */
.gs-extras {
  padding: var(--gs-section-padding);
  background: var(--gs-warm-white);
}

.gs-extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gs-extra-card {
  background: #fff;
  border-radius: var(--gs-radius);
  overflow: hidden;
  box-shadow: var(--gs-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gs-extra-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gs-shadow-hover);
}

.gs-extra-img {
  height: 220px;
  overflow: hidden;
}
.gs-extra-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gs-extra-card:hover .gs-extra-img img {
  transform: scale(1.05);
}

.gs-extra-body {
  padding: 24px;
}

.gs-extra-meta {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  font-family: var(--gs-font-body);
  font-size: 13px;
  color: var(--gs-text-muted);
}

.gs-extra-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gs-extra-price-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gs-sand-dark);
}

.gs-extra-price {
  font-family: var(--gs-font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--gs-terracotta);
}
.gs-extra-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--gs-text-muted);
}

/* --- FOOTER OVERRIDE --- */
.gs-footer-override {
  background: var(--gs-charcoal);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px 0;
}

.gs-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.gs-footer-brand .gs-h4 {
  color: #fff;
  font-family: var(--gs-font-heading);
  font-size: 24px;
  margin-bottom: 12px;
}

.gs-footer-brand p {
  font-family: var(--gs-font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.gs-footer-col h5 {
  color: #fff;
  font-family: var(--gs-font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 16px 0;
}

.gs-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gs-footer-col li {
  margin-bottom: 10px;
}

.gs-footer-col a {
  color: rgba(255,255,255,0.5);
  font-family: var(--gs-font-body);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.gs-footer-col a:hover {
  color: var(--gs-terracotta-light);
}

.gs-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--gs-font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.gs-social-links {
  display: flex;
  gap: 12px;
}
.gs-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.3s ease;
}
.gs-social-links a:hover {
  background: var(--gs-terracotta);
  color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet Landscape */
@media (max-width: 1100px) {
  .gs-h1 { font-size: 46px; }
  .gs-h2 { font-size: 36px; }
  .gs-container { padding: 0 20px; }
  .gs-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Tablet Portrait */
@media (max-width: 850px) {
  .gs-h1 { font-size: 40px; }
  .gs-h2 { font-size: 32px; }
  .gs-h3 { font-size: 24px; }

  .gs-hero { min-height: 70vh; }

  .gs-apt-grid { grid-template-columns: 1fr; gap: 24px; }
  .gs-about-grid { grid-template-columns: 1fr; gap: 32px; }
  .gs-features-grid { grid-template-columns: repeat(2, 1fr); }
  .gs-testimonial-grid { grid-template-columns: 1fr; }
  .gs-contact-grid { grid-template-columns: 1fr; }
  .gs-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gs-gallery-item.gs-large { grid-column: span 2; height: 300px; }
  .gs-attraction-grid { grid-template-columns: 1fr; }
  .gs-benefits-grid { grid-template-columns: 1fr; }
  .gs-extras-grid { grid-template-columns: repeat(2, 1fr); }
  .gs-steps { grid-template-columns: repeat(2, 1fr); }
  .gs-step::after { display: none; }

  .gs-about-img { height: 340px; }
}

/* Large Mobile */
@media (max-width: 768px) {
  :root {
    --gs-section-padding: 56px 0;
  }
  .gs-features-grid { grid-template-columns: 1fr; }
  .gs-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .gs-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* Mobile */
@media (max-width: 540px) {
  :root {
    --gs-section-padding: 48px 0;
  }

  .gs-h1 { font-size: 32px; }
  .gs-h2 { font-size: 26px; }
  .gs-h3 { font-size: 20px; }
  .gs-subtitle { font-size: 15px; }

  .gs-hero { min-height: 65vh; }
  .gs-hero-buttons { flex-direction: column; align-items: center; }
  .gs-btn { padding: 14px 28px; font-size: 12px; width: 100%; max-width: 280px; }

  .gs-apt-img { height: 220px; }
  .gs-apt-body { padding: 20px; }
  .gs-about-img { height: 260px; }

  .gs-gallery-grid { grid-template-columns: 1fr; }
  .gs-gallery-item.gs-large { grid-column: span 1; height: 240px; }
  .gs-gallery-item { height: 220px; }

  .gs-attraction-card { grid-template-columns: 1fr; }
  .gs-attraction-img { height: 180px; min-height: unset; }

  .gs-extras-grid { grid-template-columns: 1fr; }
  .gs-steps { grid-template-columns: 1fr; }

  .gs-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .gs-stat-number { font-size: 28px; }
}

/* Very Small */
@media (max-width: 380px) {
  .gs-h1 { font-size: 28px; }
  .gs-h2 { font-size: 22px; }
  .gs-container { padding: 0 16px; }
  .gs-stats { grid-template-columns: 1fr; }
}

/* ============================================
   STRONA GŁÓWNA — usunięcie białych przerw
   ============================================ */

/* Usunięcie paddingu FullPage.js na sekcjach CMS */
.page-index main .section.fp-auto-height {
  padding-bottom: 0;
  margin-bottom: 0;
}
.page-index main .section.fp-auto-height .fp-tableCell {
  padding-bottom: 0;
}
/* Usunięcie padding-bottom z pb-5 na sekcjach treści */
.page-index main .section.pb-5 {
  padding-bottom: 0;
}

/* ============================================
   NAVBAR — wspólne dla wszystkich stron
   ============================================ */

#navbar,
header nav,
banner nav,
[role="banner"] nav {
  font-family: var(--gs-font-body);
}
#navbar a,
header nav a {
  font-family: var(--gs-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: none;
  transition: color 0.3s ease;
}
#navbar a:hover,
header nav a:hover {
  color: var(--gs-terracotta);
}

/* ============================================
   FOOTER — wspólne dla wszystkich stron
   ============================================ */

footer,
[role="contentinfo"] {
  background: var(--gs-charcoal);
  font-family: var(--gs-font-body);
  color: rgba(255,255,255,0.85);
}
footer *,
[role="contentinfo"] * {
  color: rgba(255,255,255,0.85);
}
footer a,
[role="contentinfo"] a {
  color: rgba(255,255,255,0.95);
  font-family: var(--gs-font-body);
  transition: color 0.3s ease;
}
footer a:hover,
[role="contentinfo"] a:hover {
  color: var(--gs-terracotta-light);
}

/* ============================================
   STRONA /offers — Oferta
   ============================================ */

body.page-offers {
  background: var(--gs-sand-light) !important;
}

/* Tytuł strony */
body.page-offers .big-label {
  font-family: var(--gs-font-heading) !important;
  font-size: 36px !important;
  font-weight: 500 !important;
  color: var(--gs-charcoal) !important;
  border-bottom: 2px solid var(--gs-border) !important;
  padding-bottom: 16px !important;
  margin-bottom: 32px !important;
}
body.page-offers .big-label small {
  font-family: var(--gs-font-body) !important;
  color: var(--gs-text-muted) !important;
  font-weight: 400 !important;
}

/* Karty ofert */
body.page-offers .offers-container {
  background: #fff !important;
  border-radius: var(--gs-radius) !important;
  overflow: hidden !important;
  box-shadow: var(--gs-shadow) !important;
  margin-bottom: 24px !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  border: none !important;
}
body.page-offers .offers-container:hover {
  transform: translateY(-4px);
  box-shadow: var(--gs-shadow-hover);
}

/* Obrazy w kartach */
body.page-offers .object-icon {
  overflow: hidden !important;
  border-radius: var(--gs-radius) 0 0 var(--gs-radius) !important;
}
body.page-offers .object-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  min-height: 240px !important;
  transition: transform 0.5s ease !important;
}
body.page-offers .offers-container:hover .object-icon img {
  transform: scale(1.05);
}

/* Treść karty */
body.page-offers .accommodation-rest {
  padding: 28px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

/* Nazwa apartamentu */
body.page-offers .accommodation-rest h2,
body.page-offers .accommodation-rest h2 a {
  font-family: var(--gs-font-heading) !important;
  font-size: 26px !important;
  font-weight: 600 !important;
  color: var(--gs-charcoal) !important;
  text-decoration: none !important;
  line-height: 1.3 !important;
}
body.page-offers .accommodation-rest h2 a:hover {
  color: var(--gs-terracotta);
}

/* Pojemność */
body.page-offers .roomspace,
body.page-offers .accommodation-roomspace {
  font-family: var(--gs-font-body) !important;
  font-size: 13px !important;
  color: var(--gs-text-muted) !important;
}

/* Cena */
body.page-offers .object-price {
  text-align: right !important;
}
body.page-offers .object-price .price {
  font-family: var(--gs-font-heading) !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  color: var(--gs-terracotta) !important;
}

/* Opis */
body.page-offers .accommodation-short-description {
  font-family: var(--gs-font-body) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: var(--gs-text-light) !important;
}

/* Przycisk SZCZEGÓŁY — kontener <a> */
body.page-offers .accommodation-buttons a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  background: var(--gs-terracotta) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 8px 22px !important;
  font-family: var(--gs-font-body) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
  height: auto !important;
  line-height: 1.4 !important;
}
/* Przycisk SZCZEGÓŁY — wewnętrzny <span.btn> */
body.page-offers .accommodation-buttons .btn {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #fff !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: inherit !important;
  line-height: inherit !important;
  display: inline !important;
  height: auto !important;
}
body.page-offers .accommodation-buttons a:hover {
  background: var(--gs-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(196, 112, 75, 0.3);
}

/* Filtry domyślnie zwinięte */
body.page-offers .filter_content.collapse.show {
  display: none !important;
}
body.page-offers .filter_content.collapse.show.user-opened {
  display: block !important;
}

/* Sidebar filtrów */
body.page-offers #menu_filter {
  background: #fff !important;
  border-radius: var(--gs-radius) !important;
  padding: 24px !important;
  box-shadow: var(--gs-shadow-soft) !important;
  border: 1px solid var(--gs-sand-dark) !important;
}
body.page-offers #menu_filter h4,
body.page-offers .filter_header {
  font-family: var(--gs-font-heading) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: var(--gs-charcoal) !important;
}
body.page-offers .filter_header strong {
  font-family: var(--gs-font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: var(--gs-text) !important;
}
body.page-offers #filters_submit {
  font-family: var(--gs-font-body) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: var(--gs-terracotta) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 12px 24px !important;
  width: 100% !important;
  transition: all 0.3s ease !important;
}
body.page-offers #filters_submit:hover {
  background: var(--gs-terracotta-dark);
}

/* Wyszukiwarka na offers */
body.page-offers .iai-search {
  background: #fff !important;
  border-radius: var(--gs-radius) !important;
  padding: 20px !important;
  box-shadow: var(--gs-shadow-soft) !important;
  margin-bottom: 24px !important;
  border: 1px solid var(--gs-sand-dark) !important;
}
body.page-offers .iai-search .iai_book_trigger {
  font-family: var(--gs-font-body) !important;
  font-weight: 600 !important;
  color: var(--gs-terracotta) !important;
}
body.page-offers .iai-search .formbutton button,
body.page-offers .iai-search .formbutton input[type="submit"] {
  font-family: var(--gs-font-body) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: var(--gs-terracotta) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 12px !important;
  width: 100% !important;
  transition: background 0.3s ease !important;
}
body.page-offers .iai-search .formbutton button:hover,
body.page-offers .iai-search .formbutton input[type="submit"]:hover {
  background: var(--gs-terracotta-dark);
}

/* Mapa */
body.page-offers .side-map {
  border-radius: var(--gs-radius) !important;
  overflow: hidden !important;
  box-shadow: var(--gs-shadow-soft) !important;
}

/* Informacja o płatnościach */
body.page-offers .payment-info {
  background: #fff !important;
  border-radius: var(--gs-radius) !important;
  padding: 24px !important;
  box-shadow: var(--gs-shadow-soft) !important;
}
body.page-offers .payment-info h5 {
  font-family: var(--gs-font-heading) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: var(--gs-charcoal) !important;
}

/* ============================================
   STRONA /contact — Kontakt
   ============================================ */

body.page-contact {
  background: var(--gs-sand-light) !important;
}

body.page-contact .contact {
  padding: 60px 0 !important;
}

/* Tytuły */
body.page-contact .contact__label {
  font-family: var(--gs-font-heading) !important;
  font-size: 36px !important;
  font-weight: 500 !important;
  color: var(--gs-charcoal) !important;
  margin-bottom: 24px !important;
}
body.page-contact .contact__label.--inner {
  font-family: var(--gs-font-heading) !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  color: var(--gs-charcoal) !important;
  margin-top: 32px !important;
  padding-top: 24px !important;
  border-top: 1px solid var(--gs-sand-dark) !important;
}

/* Blok kontaktu */
body.page-contact .contact__block {
  background: #fff !important;
  border-radius: var(--gs-radius) !important;
  padding: 24px !important;
  box-shadow: var(--gs-shadow-soft) !important;
  margin-bottom: 20px !important;
}
body.page-contact .contact__block.--links {
  background: #fff !important;
}

/* Telefon i email */
body.page-contact .contact__tel,
body.page-contact .contact__email {
  font-family: var(--gs-font-body) !important;
  font-size: 16px !important;
  color: var(--gs-terracotta) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: color 0.3s ease !important;
}
body.page-contact .contact__tel:hover,
body.page-contact .contact__email:hover {
  color: var(--gs-terracotta-dark);
}

/* Lista danych właściciela */
body.page-contact .contact__list {
  font-family: var(--gs-font-body) !important;
  font-size: 14px !important;
  color: var(--gs-text-light) !important;
  list-style: none !important;
  padding: 0 !important;
}
body.page-contact .contact__list li {
  padding: 8px 0 !important;
  border-bottom: 1px solid var(--gs-sand-dark) !important;
}

/* Lokalizacje */
body.page-contact .contact__locations {
  display: grid !important;
  gap: 20px !important;
}
body.page-contact .contact__item {
  background: #fff !important;
  border-radius: var(--gs-radius-sm) !important;
  padding: 20px !important;
  box-shadow: var(--gs-shadow-soft) !important;
  display: flex !important;
  gap: 16px !important;
  align-items: flex-start !important;
}
body.page-contact .contact__item .icon-pointer {
  color: var(--gs-terracotta) !important;
  font-size: 20px !important;
}
body.page-contact .contact__item strong {
  font-family: var(--gs-font-body) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--gs-charcoal) !important;
}
body.page-contact .contact__item span {
  font-family: var(--gs-font-body) !important;
  font-size: 13px !important;
  color: var(--gs-text-light) !important;
}

/* Przycisk kontaktu */
body.page-contact .contact__btn {
  font-family: var(--gs-font-body) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--gs-terracotta) !important;
  text-decoration: none !important;
  border: 1px solid var(--gs-terracotta) !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-top: 8px !important;
  margin-right: 8px !important;
}
body.page-contact .contact__btn:hover {
  background: var(--gs-terracotta);
  color: #fff;
}

/* Sekcja płatności */
body.page-contact .contact__payments {
  background: #fff !important;
  border-radius: var(--gs-radius) !important;
  padding: 28px !important;
  box-shadow: var(--gs-shadow-soft) !important;
}
body.page-contact .contact__payments p {
  font-family: var(--gs-font-body) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: var(--gs-text-light) !important;
}

/* Mapa na kontakcie */
body.page-contact #map_container {
  border-radius: var(--gs-radius) !important;
  overflow: hidden !important;
  margin-top: 32px !important;
  box-shadow: var(--gs-shadow) !important;
}

/* ============================================
   PODSTRONY TXT — wspólne
   ============================================ */

/* Ukrycie systemowego nagłówka h1 (szary pasek) na podstronach txt */
body.page-txt {
  padding-top: 0 !important;
}
body.page-txt h1.big-label {
  display: none !important;
}

/* Usunięcie domyślnych marginesów IdoSell na podstronach txt */
body.page-txt main > .container,
body.page-txt main > div > .container {
  max-width: 100% !important;
  padding: 0 !important;
}

/* ============================================
   WYSZUKIWARKA — wspólny styl na głównej
   ============================================ */

.page-index .iai-search .formbutton button,
.page-index .iai-search .formbutton input[type="submit"] {
  background: var(--gs-terracotta) !important;
  border: none !important;
  border-radius: 50px !important;
  font-family: var(--gs-font-body) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  transition: background 0.3s ease !important;
}
.page-index .iai-search .formbutton button:hover,
.page-index .iai-search .formbutton input[type="submit"]:hover {
  background: var(--gs-terracotta-dark);
}

/* ============================================
   OFFERS RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  body.page-offers .object-icon {
    border-radius: var(--gs-radius) var(--gs-radius) 0 0 !important;
  }
  body.page-offers .object-icon img {
    min-height: 200px !important;
    max-height: 220px !important;
  }
  body.page-offers .offers-container {
    margin-bottom: 20px !important;
  }
  body.page-offers .accommodation-rest {
    padding: 20px 16px !important;
  }
}

@media (max-width: 540px) {
  body.page-offers .big-label {
    font-size: 28px !important;
  }
  body.page-contact .contact__label {
    font-size: 28px !important;
  }
  body.page-contact .contact__label.--inner {
    font-size: 22px !important;
  }
}

/* ============================================
   FIX: Hero padding — naglowki podstron nizej
   ============================================ */

.gs-owners-hero {
  padding: 100px 0 70px 0 !important;
}

/* ============================================
   FIX: Ukrycie systemowych zdjec IdoSell
   na podstronach /txt/ (pula nieuzytych)
   ============================================ */

body.page-txt main > img,
body.page-txt main > a > img,
body.page-txt main > p > img,
body.page-txt main > br,
body.page-txt .container > .row > .col > img,
body.page-txt .container > .row > .col > a > img,
body.page-txt .container > .row > .col > p > img {
  display: none !important;
}
/* Zachowaj zdjecia wewnatrz naszych komponentow */
body.page-txt [class*="gs-"] img {
  display: block !important;
}

/* ============================================
   FIX: Offers — przyciski SZCZEGOLY wyrownane
   ============================================ */

body.page-offers .offers-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
}

body.page-offers .accommodation-rest {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: auto !important;
  flex: 1 !important;
}

body.page-offers .accommodation-buttons {
  margin-top: auto !important;
  padding-top: 16px !important;
  display: flex !important;
  justify-content: flex-end !important;
}

/* ============================================
   GALERIA: Filtry — animacje show/hide
   ============================================ */

.gs-gallery-item {
  transition: opacity 0.4s ease, transform 0.4s ease !important;
}

.gs-gallery-item.gs-hidden {
  opacity: 0 !important;
  transform: scale(0.92) !important;
  position: absolute !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ============================================
   LIGHTBOX — globalny styl
   ============================================ */

.gs-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(10, 10, 10, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gs-lightbox.gs-lightbox--open,
.gs-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.gs-lightbox__img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6);
  transition: opacity 0.25s ease;
}

.gs-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  z-index: 10;
  line-height: 1;
}
.gs-lightbox__close:hover {
  color: #fff;
}

.gs-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}
.gs-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.gs-lightbox__nav--prev {
  left: 20px;
}
.gs-lightbox__nav--next {
  right: 20px;
}

.gs-lightbox__meta {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.gs-lightbox__label {
  font-family: var(--gs-font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.gs-lightbox__counter {
  font-family: var(--gs-font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
}

/* Lightbox responsive */
@media (max-width: 768px) {
  .gs-lightbox__nav {
    width: 40px;
    height: 40px;
  }
  .gs-lightbox__nav--prev { left: 10px; }
  .gs-lightbox__nav--next { right: 10px; }
  .gs-lightbox__close { top: 12px; right: 12px; }
}

/* ============================================
   GALERIA: Kursor zoom na zdjeciach
   ============================================ */

.gs-gallery-item {
  cursor: zoom-in;
}

/* ============================================
   FEATURE ICON: SVG styl premium
   ============================================ */

.gs-feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gs-terracotta);
  stroke-width: 1.5;
  fill: none;
}

/* ============================================
   FIX: Stopka — linki niewidoczne (ciemne na ciemnym)
   ============================================ */

footer a,
footer a:visited,
footer a:link {
  color: rgba(255, 255, 255, 0.75) !important;
}
footer a:hover {
  color: #fff !important;
}
footer li,
footer span,
footer p {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* ============================================
   FIX: Bialy pasek miedzy hero systemowym a naszym hero
   na stronie glownej (IdoSell fullpage.js wrapper)
   ============================================ */

body.page-index .section.pb-5 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: transparent !important;
}
body.page-index .section.fp-auto-height {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* ============================================
   FIX: Atrakcje — galeria systemowa IdoSell
   (.gallery-lightbox z uploadowanych zdjec)
   ============================================ */

body.page-txt .gallery-lightbox {
  display: none !important;
}

/* ============================================
   FIX: Offers — filtry rozwijalne + przycisk ZASTOSUJ
   Struktura IdoSell:
     .aside > .bg_alter > form > .filter_items
       > .filter_header + .filter_content.collapse
   ============================================ */

/* Filtry — wymuszenie widocznosci contentu */
body.page-offers .filter_content.collapse {
  display: block !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Naglowki filtrow — klikalny kursor */
body.page-offers .filter_header {
  cursor: pointer !important;
}

/* Przycisk ZASTOSUJ FILTRY — wysrodkowany */
body.page-offers .formbutton,
body.page-offers [class*="formbutton"] {
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
}

body.page-offers .formbutton button,
body.page-offers .formbutton input[type="submit"] {
  margin: 0 auto !important;
  display: block !important;
}

/* ============================================
   FIX: Emoji ikony — wymuszenie monochromatycznosci
   (na wypadek gdyby przegladarka renderowala emoji
   zamiast SVG, lub dla stron niezaktualizowanych)
   ============================================ */

.gs-feature-icon {
  font-family: 'Inter', -apple-system, sans-serif !important;
  -webkit-text-stroke: 0 !important;
  color: var(--gs-terracotta) !important;
  font-size: 28px !important;
}
