:root {
  --main-bg: #d7c9a9;
  --accent: #063d49;
  --text: #111;
  --secondary: #444;
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: var(--main-bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: var(--accent);
  text-decoration: none;
}

.radial-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
}

.radial-icon img {
  width: 20px;
  height: 20px;
}
header {
  background: var(--accent);
  color: white;
}

header nav a {
  color: white;
}

section {
  padding: 4rem 1rem;
  max-width: 960px;
  margin: auto;
}
h1, h2 {
  color: var(--accent);
}
.logo {
  max-width: 150px;
}
.btn, .sticky-cta {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
}
  .btn:hover, .sticky-cta:hover {
    background: white;
    color: var(--accent);
  }

  .philosophy-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .philosophy-text {
    flex: 1;
  }

  .philosophy-image {
    flex: 1;
    width: 100%;
    max-width: 400px;
  }

  .photo-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #e2e2e2;
    border: 4px solid var(--accent);
    border-radius: 8px;
  }

  @media (min-width: 768px) {
    .philosophy-content {
      flex-direction: row;
    }
  }

  .services {
    text-align: center;
  }

.services h2 {
  font-size: 1.75rem;
  font-weight: bold;
}

.services h3 {
  font-weight: bold;
}

.services-intro {
  margin-bottom: 2rem;
  color: var(--secondary);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.services-grid .pawsh-service-card {
  flex: 1 1 280px;
  display: flex;
  margin-bottom: 1rem;
}

.services-grid .pawsh-service-card .service-card {
  flex: 1 1 auto;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 26px rgba(6, 61, 73, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-icon {
  background: #e7e7e7;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-size: 1.5rem;
}

.service-duration {
  font-size: 0.9rem;
  color: var(--secondary);
}

.service-card:hover {
  transform: scale(1.05);
}

.service-link {
  margin-top: auto;
  font-weight: bold;
  color: var(--accent);
}

/* Ensure CTA buttons in services and reviews have space from previous content */
.services .hero-cta,
.reviews .hero-cta {
  margin-top: 1rem;
}

@media (max-width: 640px) {
  #services .services-grid {
    display: block;
    padding-bottom: 45vh;
  }

  #services .pawsh-service-card {
    position: sticky;
    top: var(--pawsh-service-sticky-offset, 5.5rem);
    margin-inline: auto;
    max-width: min(420px, 100%);
    transform-origin: top center;
    transition: transform 0.35s ease;
  }

  #services .pawsh-service-card + .pawsh-service-card {
    margin-top: 1rem;
  }

  #services .pawsh-service-card:not(.pawsh-service-card-active) .service-card {
    transform: translateY(-6px) scale(0.98);
  }

  #services .pawsh-service-card-active .service-card {
    transform: translateY(0) scale(1);
    box-shadow: 0 24px 42px rgba(6, 61, 73, 0.16);
  }
}
.faq {
  max-width: 960px;
  margin: auto;
  color: #063d49;
  background: #fff;
  padding: 2rem 1rem;
}
.faq h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  font-weight: bold;
}
.faq-item {
  background: #f5f5f5;
  border: 1px solid rgba(6, 61, 73, 0.3);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.faq-question {
  font-weight: bold;
  position: relative;
  padding-right: 1.5rem;
  cursor: pointer;
}
.faq-question::after {
  content: '\25B6';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(90deg);
}
.faq-answer {
  display: none;
  margin-top: 0.5rem;
}
.faq-item.active .faq-answer {
  display: block;
}

  .reviews {
    text-align: center;
    position: relative;
  }

  .reviews h2 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: bold;
  }

  .review-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
  }

  .review {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    overflow-y: auto;
    transition: box-shadow 0.3s ease;
  }

  .review:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  }

  .review-carousel-btn {
    display: none;
  }

  .stars {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }

  .review-author {
    margin-top: 0.5rem;
    font-weight: bold;
  }

  @media (max-width: 600px) {
    .review-list {
      gap: 1rem;
    }
  }
.contact-info {
  max-width: 960px;
  margin: auto;
  padding: 2rem 1rem;
}
.map iframe {
  width: 100%;
  height: 300px;
  max-height: 300px;
  border: none;
  border-radius: 8px;
}
footer {
  background: var(--accent);
  color: #d7c9a9;
  font-size: 0.9rem;
  padding: 2rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  text-align: center;
}
.footer-column {
  flex: 1 1 300px;
}
.footer-column p:last-child {
  margin-bottom: 0;
}
footer img.logo {
  max-height: 180px;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-links {
  margin-top: 1rem;
}
.footer-links a {
  color: #d7c9a9;
  margin: 0 0.5rem;
  cursor: pointer;
}
@media (max-width: 600px) {
  footer {
    flex-direction: column;
    gap: 0;
  }
  .footer-column {
    flex: 1 1 auto;
  }

}

/* Further increase header logo size on desktop screens */
@media (min-width: 768px) {
  header img.logo {
    max-width: 450px;
    max-height: 450px;
  }
}

/* Back to Top button */
#back-to-top {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 9999px;
  background: var(--accent);
  color: white;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
}

#back-to-top.show {
  display: flex;
}

/* Paw background boxes for gallery */
.pawsh-compare-grid {
  max-width: min(1100px, 92vw);
  margin: 3rem auto 0;
  padding: 0 1rem 3rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pawsh-compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pawsh-compare {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(6, 61, 73, 0.2);
  background: #0f2d34;
  aspect-ratio: 4 / 5;
  isolation: isolate;
  --pc-position: 50;
  touch-action: pan-y;
}

.pawsh-compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.pawsh-compare .pc-after {
  z-index: 1;
}

.pawsh-compare .pc-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--pc-position) * 1%) 0 0);
  transition: clip-path 80ms linear;
}

.pawsh-compare .pc-slider {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
}

.pawsh-compare .pc-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--pc-position) * 1%);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3px;
  background: rgba(215, 201, 169, 0.85);
  z-index: 4;
  cursor: ew-resize;
  transition: box-shadow 0.3s ease;
  touch-action: pan-y;
}

.pawsh-compare .pc-handle span {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #d7c9a9;
  border: 4px solid #063d49;
  box-shadow: 0 12px 26px rgba(6, 61, 73, 0.3);
  display: grid;
  place-items: center;
  position: relative;
}

.pawsh-compare .pc-handle span::before,
.pawsh-compare .pc-handle span::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 2px;
  background: #063d49;
  top: 50%;
  transform: translateY(-50%);
}

.pawsh-compare .pc-handle span::before {
  left: 14px;
}

.pawsh-compare .pc-handle span::after {
  right: 14px;
}

.pawsh-compare.pc-active .pc-handle {
  box-shadow: 0 12px 28px rgba(6, 61, 73, 0.35);
}

@media (max-width: 640px) {
  .pawsh-compare {
    aspect-ratio: 3 / 4;
  }
}

.paw-box {
  background-color: #fff;

  transition: transform 0.3s ease;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

/* Gallery page base styles */
.gallery-paw-bg {
  color: #063d49;
}

.paw-box:hover {
  transform: scale(1.05);
}
/* Home page gallery */
.gallery-carousel {
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-radius: 16px;
  overflow: hidden;
  padding: 1rem;
}
.gallery-carousel img {
  border-radius: 12px;
  margin-right: 10px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Swiper gallery on homepage */
.doghouse-gallery-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 0;
}

.doghouse-main {
  border-radius: 16px;
  overflow: hidden;
}

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

.doghouse-thumbs {
  margin-top: 1rem;
}

.doghouse-thumbs .swiper-slide {
  width: 80px;
  height: 80px;
  opacity: 0.4;
}

.doghouse-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.doghouse-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Lightbox overlay */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.lightbox button {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.lb-close {
  top: 1rem;
  right: 1rem;
}

.lb-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lb-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive gallery sizing */
@media (min-width: 768px) {
  .doghouse-gallery-wrap {
    max-width: 600px;
  }
  .doghouse-main {
    width: 600px;
    height: 600px;
  }
  .doghouse-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.radial-icon {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  overflow: hidden;
  cursor: pointer;
}

.radial-icon img {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 2;
  transition: filter 0.3s ease;
  filter: brightness(0) invert(1); /* λευκό σε σκούρο φόντο */
}

.radial-icon::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background-color: #d7c9a9; /* ανοιχτό χρώμα γεμίσματος */
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s ease;
  z-index: 1;
}

.radial-icon:hover::before {
  transform: scale(1);
}

.radial-icon:hover img {
  filter: brightness(0.2) invert(0);
}


.social-icon {
  color: #ffffff; /* ή το αρχικό χρώμα */
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #063d49; /* το πετρόλ χρώμα */
}


/* Pawsh gallery */
.pawsh-gallery-heading {
  text-align: center;
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: #063d49;
  font-weight: 700;
  margin: 4rem auto 1.5rem;
  padding: 0 1rem;
}

.pawsh-gallery-section {
  padding: 3rem 0;
}

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

.pawsh-gallery-scroller {
  --pawsh-gallery-gap: 1.5rem;
  position: relative;
  height: 260px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-inline: var(--pawsh-gallery-gap);
  padding: 1rem var(--pawsh-gallery-gap);
  -webkit-overflow-scrolling: touch;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

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

.pawsh-gallery-scroller::-webkit-scrollbar-thumb {
  background: rgba(6, 61, 73, 0.35);
  border-radius: 999px;
}

.pawsh-gallery-scroller::-webkit-scrollbar-track {
  background: transparent;
}

.pawsh-gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--pawsh-gallery-gap) * 2)) / 3);
  gap: var(--pawsh-gallery-gap);
  height: 100%;
  align-items: center;
}

.pawsh-gallery-slide {
  position: relative;
  height: 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  border-radius: 14px;
  overflow: hidden;
  transform: scale(0.98);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 24px rgba(6, 61, 73, 0.18);
  background: rgba(255, 255, 255, 0.55);
  display: flex;
}

.pawsh-gallery-slide.is-active {
  transform: scale(1.06);
  box-shadow: 0 24px 48px rgba(6, 61, 73, 0.35);
}

.pawsh-gallery-slide-button {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  display: block;
}

.pawsh-gallery-slide-button:focus-visible {
  outline: 3px solid #d7c9a9;
  outline-offset: 4px;
}

.pawsh-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pawsh-gallery-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background: rgba(6, 61, 73, 0.92);
  backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.pawsh-gallery-lightbox[hidden] {
  display: none;
}

.pawsh-gallery-lightbox:not([hidden]) {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.pawsh-gallery-lightbox-figure {
  max-width: min(90vw, 960px);
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  color: #f4f0e4;
}

.pawsh-gallery-lightbox-image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.pawsh-gallery-lightbox-caption {
  font-size: 1rem;
  line-height: 1.4;
  color: #fefaf1;
}

.pawsh-gallery-lightbox-control {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  border: none;
  background: rgba(215, 201, 169, 0.9);
  color: #063d49;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.pawsh-gallery-lightbox-control:hover,
.pawsh-gallery-lightbox-control:focus-visible {
  background: rgba(250, 242, 220, 1);
  transform: scale(1.05);
  outline: none;
}

.pawsh-gallery-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.pawsh-gallery-lightbox-close:hover,
.pawsh-gallery-lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.05);
  outline: none;
}

body.pawsh-gallery-no-scroll {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .pawsh-gallery-scroller {
    height: 320px;
  }
}

@media (max-width: 920px) {
  .pawsh-gallery-scroller {
    height: 220px;
    --pawsh-gallery-gap: 1.25rem;
  }

  .pawsh-gallery-track {
    grid-auto-columns: calc((100% - var(--pawsh-gallery-gap)) / 2);
  }
}

@media (max-width: 640px) {
  .pawsh-gallery-section {
    padding: 2.5rem 0;
  }

  .pawsh-gallery-scroller {
    height: calc(100vw - 2rem);
    padding-inline: 1rem;
    --pawsh-gallery-gap: 1rem;
  }

  .pawsh-gallery-track {
    grid-auto-columns: 100%;
    align-items: stretch;
  }

  .pawsh-gallery-slide {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .pawsh-gallery-lightbox {
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .pawsh-gallery-lightbox-control {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.5rem;
  }

  .pawsh-gallery-lightbox-caption {
    font-size: 0.95rem;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(640px, calc(100% - 2rem));
  background: rgba(6, 61, 73, 0.96);
  color: #fefaf0;
  padding: 1.75rem;
  border-radius: 1.25rem;
  box-shadow: 0 22px 45px rgba(6, 61, 73, 0.35);
  border: 2px solid #d7c9a9;
  z-index: 9999;
  display: none;
  gap: 1rem;
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner__heading {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  color: #d7c9a9;
}

.cookie-banner p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-banner__button {
  flex: 1 0 auto;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cookie-banner__button--primary {
  background: #d7c9a9;
  color: #063d49;
  box-shadow: 0 12px 24px rgba(215, 201, 169, 0.35);
}

.cookie-banner__button--primary:hover,
.cookie-banner__button--primary:focus-visible {
  background: #f3e7ca;
  box-shadow: 0 16px 28px rgba(215, 201, 169, 0.45);
}

.cookie-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #fefaf0;
  font-weight: 600;
  text-decoration: underline;
}

.cookie-banner__link::after {
  content: '›';
  font-size: 1.15rem;
}

.cookie-banner__link:focus-visible,
.cookie-banner__link:hover {
  color: #d7c9a9;
}

.cookie-banner__dismiss {
  background: transparent;
  border: 1px solid rgba(215, 201, 169, 0.4);
  color: #fefaf0;
}

.cookie-banner__dismiss:hover,
.cookie-banner__dismiss:focus-visible {
  background: rgba(215, 201, 169, 0.2);
}

.cookie-banner__fine-print {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(254, 250, 240, 0.8);
}

@media (max-width: 640px) {
  .cookie-banner {
    bottom: 1rem;
    width: calc(100% - 1.5rem);
    padding: 1.5rem;
  }

  .cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__button {
    width: 100%;
  }
}
