/* Ζαχαροπλαστείο Hilton — styles */

/* ── Variables ───────────────────────────────── */
:root {
  --red:        #C0392B;
  --red-dark:   #a93226;
  --white:      #FFFBF5;
  --gray-soft:  #F5EDE0;
  --cream:      #FBF0E4;
  --gold:       #C8A042;
  --gold-light: #e8c870;
  --dark:       #1C0F0A;
  --dark-mid:   #2C1A12;
  --gap:        1.5rem;
  --radius:     10px;
  scroll-padding-top: 88px;
}

/* ── Reset ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2 { font-family: 'Playfair Display', serif; }

/* ── Scroll reveal ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Ornament divider ────────────────────────── */
.ornament {
  display: flex;
  justify-content: center;
  margin: -1rem auto 2.2rem;
}
.ornament svg { display: block; }

/* ── Wave separators ─────────────────────────── */
.wave-sep {
  display: block;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
  background: transparent;
}
.wave-sep--gray  { background: var(--gray-soft); }
.wave-sep--white { background: var(--white); }
.wave-sep--cream { background: var(--cream); }
.wave-sep svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ── Navbar ──────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 80px;
  background: #FFF3E6;
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 12px rgba(28,15,10,0.10);
}

.navbar__brand { display: flex; align-items: center; }
.navbar__logo  { height: 62px; width: auto; display: block; }

.navbar__links { display: flex; gap: 2rem; }

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.navbar__links a:hover,
.navbar__links a.active { color: var(--red); }
.navbar__links a:hover::after,
.navbar__links a.active::after { transform: scaleX(1); }

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  width: 34px;
  height: 30px;
}
.navbar__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  position: absolute;
  left: 4px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s;
}
.navbar__toggle span:nth-child(1) { top: 4px; }
.navbar__toggle span:nth-child(2) { top: 13px; }
.navbar__toggle span:nth-child(3) { top: 22px; }
.navbar__toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg);  background: var(--red); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background: var(--red); }

@media (max-width: 600px) {
  .navbar__toggle { display: flex; }
  .navbar__links {
    display: none;
    position: absolute;
    top: 80px; left: 0; right: 0;
    flex-direction: column;
    background: #FFF3E6;
    border-bottom: 3px solid var(--red);
    padding: 1rem 2rem;
    gap: 1rem;
    box-shadow: 0 6px 16px rgba(28,15,10,0.12);
  }
  .navbar__links.open { display: flex; }
  .navbar__links a { font-size: 1.1rem; }
}

/* ── Hero ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  background: url('../photos/εξω.png') center center / cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (hover: none) {
  .hero { background-attachment: scroll; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28, 10, 4, 0.72) 0%,
    rgba(60, 20, 5, 0.55) 50%,
    rgba(28, 10, 4, 0.72) 100%
  );
}

/* corner decorations */
.hero__corner {
  position: absolute;
  width: 80px;
  height: 80px;
  pointer-events: none;
}
.hero__corner--tl { top: 28px; left: 28px; }
.hero__corner--tr { top: 28px; right: 28px; }
.hero__corner--bl { bottom: 28px; left: 28px; }
.hero__corner--br { bottom: 28px; right: 28px; }

@media (max-width: 600px) {
  .hero__corner { width: 50px; height: 50px; }
  .hero__corner--tl { top: 16px; left: 16px; }
  .hero__corner--tr { top: 16px; right: 16px; }
  .hero__corner--bl { bottom: 16px; left: 16px; }
  .hero__corner--br { bottom: 16px; right: 16px; }
}

.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero__since {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  letter-spacing: 5px;
  color: var(--gold-light);
  animation: heroFadeUp 1s ease both;
}

.hero__title {
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  animation: heroFadeUp 1s 0.15s ease both;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 2.2vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 3px;
  opacity: 0.85;
  animation: heroFadeUp 1s 0.3s ease both;
}

.hero__cta {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.9rem 2.4rem;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: background 0.3s, color 0.3s, transform 0.25s, box-shadow 0.3s;
  animation: heroFadeUp 1s 0.45s ease both;
  box-shadow: 0 4px 20px rgba(200,160,66,0.35);
}
.hero__cta:hover {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200,160,66,0.25);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Section shared ──────────────────────────── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 5rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark);
  letter-spacing: 0.5px;
}
.section-title--light { color: var(--white); }

/* ── About section ───────────────────────────── */
.about-section { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.about-eyebrow {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.about-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1rem;
}

.about-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #4a3828;
  margin-bottom: 1.2rem;
}
.about-body strong { color: var(--red); font-weight: 700; }

.about-quote {
  margin-top: 1.6rem;
  padding: 1.4rem 1.8rem;
  border-left: 3px solid var(--gold);
  background: rgba(200,160,66,0.07);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5a3a20;
}

/* About Media */
.about-media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0 5rem;
}

.about-media__group {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-media__item--tall {
  height: 100%;
}

.about-media__item--tall img {
  height: 100% !important;
  object-fit: cover;
}

@media (max-width: 800px) {
  .about-media {
    grid-template-columns: 1fr;
  }
}

.about-media__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  background: var(--white);
}

.about-media__item:hover {
  transform: translateY(-5px);
}

.about-media__item img {
  width: 100%;
  height: auto;
  display: block;
}

.about-media__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 1.5rem 1.2rem 0.8rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  z-index: 5;
}

/* Stat cards grid */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  position: sticky;
  top: 100px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.2rem;
  text-align: center;
  box-shadow: 0 4px 18px rgba(28,15,10,0.08);
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(200,160,66,0.18);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.stat-number sup {
  font-size: 1.1rem;
  vertical-align: super;
  color: var(--gold);
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7a5030;
}

/* Services row */
.services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  border-top: 1px solid rgba(200,160,66,0.25);
  padding-top: 3rem;
}

.service-item {
  text-align: center;
  padding: 0.5rem;
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.service-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #6a4828;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats { position: static; grid-template-columns: repeat(4, 1fr); }
  .services-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .services-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-number { font-size: 2.2rem; }
}

/* ── Products section ────────────────────────── */
.products-section { background: var(--gray-soft); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
}

.product-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 4px 15px rgba(28,15,10,0.08);
  border-bottom: 3px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  cursor: pointer;
}
.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(200,160,66,0.18);
}
.product-item span {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1.3;
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .product-item {
    padding: 1rem;
    min-height: 70px;
  }
  .product-item span {
    font-size: 0.95rem;
  }
}

/* ── Gallery sections ────────────────────────── */
.gallery-section        { background: var(--gray-soft); }
.gallery-section--white { background: var(--white); }

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

.gallery__item {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 3px 12px rgba(28,15,10,0.12);
}
.gallery__item:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 32px rgba(200,160,66,0.30);
}

@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery { grid-template-columns: 1fr; } }

/* Center lone last image in 3-col layout */
.gallery__item:last-child:nth-child(3n+1) { grid-column: 2; }

/* Center lone last image in 2-col layout */
@media (max-width: 900px) {
  .gallery__item:last-child:nth-child(3n+1) { grid-column: auto; }
  .gallery__item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin-inline: auto;
  }
}
@media (max-width: 600px) {
  .gallery__item:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: 100%;
    margin-inline: 0;
  }
}

/* ── Custom cakes CTA ────────────────────────── */
.custom-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem 2rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid rgba(200,160,66,0.25);
}
.custom-cta__text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #5a3a20;
  margin-bottom: 1.4rem;
}
.custom-cta__btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: var(--red);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid var(--red);
  transition: background 0.3s, color 0.3s, transform 0.25s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(192,57,43,0.30);
  text-decoration: none;
}
.custom-cta__btn:hover {
  background: transparent;
  color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(192,57,43,0.18);
}

/* ── Reviews section ─────────────────────────── */
.reviews-section { background: var(--cream); }

.reviews-rating {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #7a6040;
  margin-top: -1rem;
  margin-bottom: 2.2rem;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: 0 2px 14px rgba(28,15,10,0.07);
  border-top: 3px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(200,160,66,0.18);
}

.review-stars { color: #D4A017; font-size: 1.05rem; letter-spacing: 2px; }

.review-text {
  font-size: 0.93rem;
  line-height: 1.75;
  color: #4a3828;
  flex: 1;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(200,160,66,0.2);
}
.review-name { font-weight: 700; font-size: 0.88rem; color: var(--dark); }
.review-date { font-size: 0.78rem; color: #a08060; }

@media (max-width: 900px) { .reviews-track { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .reviews-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
  }
  .reviews-track::-webkit-scrollbar { display: none; }
  .review-card { min-width: 82vw; scroll-snap-align: start; }
}

/* ── Info section ────────────────────────────── */
.info-section { background: var(--red); }

.info-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}

.info-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-socials {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.social-icon svg {
  width: 26px;
  height: 26px;
}

.social-icon--ig { color: #E4405F; }
.social-icon--fb { color: #1877F2; }
.social-icon--ef { 
  background: #ff0000; 
  color: white;
  text-decoration: none !important;
}

.ef-text {
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: lowercase;
  font-family: sans-serif;
}

.social-icon:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.info-grid { display: flex; flex-direction: column; gap: var(--gap); }

.info-card {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  color: var(--white);
  transition: background 0.25s;
}
.info-card:hover { background: rgba(255,255,255,0.22); }
.info-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.info-card p   { font-size: 1rem; line-height: 1.7; }
.info-card a   { color: var(--white); text-decoration: underline; }
.info-card small { opacity: 0.75; font-size: 0.84rem; }

.info-map iframe {
  display: block;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}

@media (max-width: 800px) {
  .info-layout { grid-template-columns: 1fr; }
  .info-grid { flex-direction: row; flex-wrap: wrap; }
  .info-card { flex: 1 1 140px; }
}

/* ── Footer ──────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 2rem 1rem 1.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.footer__ornament { margin-bottom: 0.2rem; }
.footer__socials {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 0.8rem;
}
.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(200,160,66,0.25);
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.footer__socials a:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}
.footer__since {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(200,160,66,0.55);
  font-size: 0.82rem;
  letter-spacing: 2px;
}

/* ── Lightbox ────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(14, 6, 2, 0.94);
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 10px 50px rgba(0,0,0,0.7);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(200,160,66,0.3);
  color: var(--white);
  font-size: 1.4rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.lightbox__prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox__next:hover { transform: translateY(-50%) translateX(2px); }

.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__prev  { left: 1.2rem;  top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 1.2rem; top: 50%; transform: translateY(-50%); }

@media (max-width: 600px) {
  .lightbox__prev { left: 0.4rem; }
  .lightbox__next { right: 0.4rem; }
}

/* ── Product Modal ───────────────────────────── */
.product-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(14, 6, 2, 0.85);
  backdrop-filter: blur(4px);
  padding: 40px 1.5rem;
  overflow-y: auto; /* Enable scrolling for the whole modal overlay */
}
.product-modal.active { display: block; }

.product-modal__content {
  background: var(--white);
  width: 100%;
  max-width: 600px;
  margin: 0 auto; /* Center horizontally */
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: 0 15px 50px rgba(0,0,0,0.5);
  animation: modalSlideUp 0.4s ease-out;
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.product-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: white; /* Give it a bg to stay visible */
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #eee;
  font-size: 1.2rem;
  cursor: pointer;
  color: #a08060;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background 0.2s;
  z-index: 10;
}
.product-modal__close:hover { color: var(--red); background: #f9f9f9; }

.product-modal__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--dark);
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.product-modal__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.product-modal__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.product-modal__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  background: #f0f0f0;
}
.product-modal__img.placeholder {
  opacity: 0.8;
}

.product-modal__name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark-mid);
}

@media (max-width: 500px) {
  .product-modal__list { grid-template-columns: 1fr; gap: 1.5rem; }
  .product-modal__content { padding: 2rem 1.5rem; }
}

/* ── Floating action buttons ─────────────────── */
.fab {
  position: fixed;
  right: 1.4rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  z-index: 150;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, opacity 0.3s ease, box-shadow 0.25s ease;
}
.fab:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* Phone call button — always visible */
.fab--call {
  bottom: 1.6rem;
  background: var(--red);
  color: var(--white);
}
.fab--call:hover { background: var(--red-dark); }

/* Scroll-to-top — appears after scrolling */
.fab--top {
  bottom: 5.4rem;
  background: var(--white);
  color: var(--dark);
  border: 2px solid rgba(200,160,66,0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
.fab--top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.fab--top:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px) scale(1.06);
}

