html {
  scroll-behavior: smooth;
}
:root{
  --bg: #F6F1E6;
  --bg2:#F1E8D8;
  --card:#FFFFFF;
  --text:#1E1E1E;
  --muted:#5b5b5b;
  --green:#1F3B2B;
  --green2:#2D5A40;

  /* ARANY KRÓM */
  --gold-chrome: linear-gradient(
    135deg,
    #fff6c3,
    #e6c15a,
    #b88a1a,
    #f6e27a,
    #fff6c3
  );

  /* ROSE GOLD */
  --rosegold: linear-gradient(
    135deg,
    #cfa5a5,
    #e7bcbc,
    #b97f7f
  );

  --line: rgba(31,59,43,.18);
  --shadow: 0 12px 30px rgba(0,0,0,.10);
  --radius: 18px;
  --max: 1100px;
}


*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
   margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  background-image: url("../img/watercolor-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  color: var(--text);
}

a{ color: inherit; }
code{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: .92em; }

.container{ max-width: var(--max); margin:0 auto; padding: 0 18px; }
.section{ padding: 54px 0; }
.section--alt{ background: rgba(255,255,255,.55); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section__head{ display:flex; align-items:flex-end; justify-content:space-between; gap:14px; margin-bottom:18px; }
.section__head h2{
  margin:0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 34px;
  letter-spacing: .2px;
  color: var(--green);
}
.section__head p{ margin:0; color: var(--muted); line-height:1.5; }

.card{
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Top bar */
.topbar{
  position: sticky; top:0; z-index:50;
  background: rgba(246,241,230,.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding: 12px 18px;
}
.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; }
.brand__logo{
  width: 44px; height: 44px; object-fit: contain;
  border-radius: 12px;
  background: rgba(31,59,43,.06);
  border:1px solid rgba(31,59,43,.12);
}
.brand__name{ font-weight:600; color: var(--green); }
.brand__tag{ font-size:12px; color: var(--muted); }

.nav{ display:flex; gap:14px; align-items:center; }
.nav a{
  text-decoration:none;
  font-size: 13px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover{ background: rgba(31,59,43,.06); color: var(--green); }

.topbar__cta{ display:flex; gap:10px; align-items:center; }
.hamburger{
  display:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.6);
  border-radius: 12px;
  padding: 10px;
}
.hamburger span{ display:block; width:18px; height:2px; background: var(--green); margin:4px 0; border-radius:10px; }

.mobile-menu{
  border-top: 1px solid var(--line);
  background: rgba(246,241,230,.95);
}
.mobile-menu__inner{
  padding: 14px 18px 18px;
  display:flex; flex-direction:column; gap:10px;
}
.mobile-menu__inner a{ text-decoration:none; color: var(--green); font-weight: 500; }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  text-decoration:none;
  font-weight:600;
  font-size: 14px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.9); border-color: rgba(31,59,43,.26); }
.btn--primary{
  background: linear-gradient(135deg, var(--green), var(--green2));
  border-color: rgba(201,164,90,.55);
  color: #fff;
  box-shadow: 0 10px 22px rgba(31,59,43,.22);
}
.btn--primary:hover{ border-color: rgba(201,164,90,.85); }
.btn--ghost{
  background: rgba(255,255,255,.55);
  color: var(--green);
}
.btn--wide{ width:100%; }

/* Hero */
.hero{ padding: 28px 0 18px; }
.hero__grid{ display:grid; grid-template-columns: 1.25fr .75fr; gap:14px; align-items:stretch; }
.hero__copy{ padding: 22px; }
.hero__visual{ padding: 18px; }
@media (max-width: 960px){
  .nav{ display:none; }
  .hamburger{ display:inline-block; }
  .hero__grid{ grid-template-columns: 1fr; }
}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(31,59,43,.16);
  background: rgba(255,255,255,.6);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
}
.dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,164,90,.22);
}
.hero h1{
  margin: 12px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  line-height: 1.05;
  color: var(--green);
  letter-spacing: .2px;
}
@media (max-width: 520px){ .hero h1{ font-size: 36px; } }
.lead{ margin:0; color: var(--muted); font-size: 15.5px; line-height: 1.6; }
.hero__buttons{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 16px; }
.hero__meta{ margin-top: 16px; display:flex; flex-direction:column; gap:6px; font-size: 13px; color: var(--muted); }
.hero__meta a{ color: var(--green); }

.visual__frame{
  border-radius: 16px;
  border: 1px solid rgba(201,164,90,.45);
  background:
    radial-gradient(600px 260px at 20% 0%, rgba(31,59,43,.10), transparent 65%),
    rgba(255,255,255,.75);
  padding: 16px;
}
.visual__label{
  display:inline-block;
  font-size: 12px;
  letter-spacing:.6px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight:700;
}
.visual__frame h2{
  margin: 10px 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  color: var(--green);
}
.visual__frame p{ margin:0 0 12px; color: var(--muted); line-height:1.55; }
.visual__note{ margin-top: 10px; font-size: 12px; color: var(--muted); }

/* Tiles */
.grid3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 960px){ .grid3{ grid-template-columns: 1fr; } }
.tile {
  position: relative;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}
.tile {
  position: relative;
  border-radius: 20px;
  padding: 22px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4px;               /* vastag keret */
  border-radius: 22px;
  background: var(--rosegold); /* 👈 ROSE GOLD */

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.tile:hover::before {
  filter: brightness(1.2);
}
.tile h3{ margin:0 0 6px; color: var(--green); }
.tile p{ margin:0; color: var(--muted); line-height:1.55; font-size: 13.5px; }
.tile__foot{ display:flex; align-items:center; justify-content:space-between; margin-top: 12px; color: var(--muted); font-size: 12px; }
.link{ color: var(--green); }

/* Accordion */
.accordion details{
  border: 1px solid rgba(31,59,43,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.75);
  margin-bottom: 10px;
  overflow:hidden;
}
.accordion summary{
  cursor:pointer;
  list-style:none;
  padding: 14px 16px;
  display:flex; align-items:center; justify-content:space-between;
  font-weight:700;
  color: var(--green);
}
.accordion summary::-webkit-details-marker{ display:none; }
.accordion summary::after{
  content:"+";
  color: var(--gold);
  font-weight: 800;
}
.accordion details[open] summary::after{ content:"–"; }
.rows{ padding: 4px 16px 14px; }
.row{
  display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
  padding: 10px 0;
  border-top: 1px dashed rgba(31,59,43,.18);
}
.row:first-child{ border-top: none; }
.row span{ color: var(--muted); line-height:1.45; }
.row b{ color: var(--green); white-space:nowrap; }
.disclaimer{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(201,164,90,.35);
}
.disclaimer{
  margin-top: 28px;
  margin-bottom: 48px;   /* 🔥 EZ A KULCS */
  padding: 18px 22px;

  border-radius: 18px;
  background: rgba(255,255,255,.75);

  border: 1px solid rgba(201,164,90,.35);
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.disclaimer p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 13.5px;
}
#galeria {
  border-top: 1px dashed rgba(201,164,90,.35);
  padding-top: 54px;
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 960px){ .gallery{ grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 520px){ .gallery{ grid-template-columns: 1fr; } }
.ph{
  margin:0;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(31,59,43,.18);
  background: rgba(255,255,255,.7);
}
.ph img{
  width:100%; height: 230px; object-fit: cover; display:block;
}
.note{
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  background: rgba(255,255,255,.65);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
}

/* Contact */
.contact{ padding: 18px; display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 960px){ .contact{ grid-template-columns: 1fr; } }
.contact__item{ margin-bottom: 12px; }
.label{ font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.value{ font-size: 15px; font-weight: 600; color: var(--green); text-decoration:none; }
.contact__buttons{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 10px; }

.map{
  border: 1px solid rgba(201,164,90,.35);
  border-radius: 16px;
  background: rgba(255,255,255,.75);
  padding: 14px;
}
.map__title{ font-weight: 700; color: var(--green); margin-bottom: 6px; }
.map__text{ color: var(--muted); line-height:1.55; margin-bottom: 10px; }
.map__note{ margin-top: 8px; font-size: 12px; color: var(--muted); }

/* Footer */
.footer{ padding: 24px 0 90px; }
.footer__inner{ display:flex; justify-content:space-between; gap:14px; align-items:center; flex-wrap:wrap; }
.footer__brand{ display:flex; align-items:center; gap:10px; }
.footer__logo{
  width: 36px; height:36px; object-fit:contain;
  border-radius: 12px;
  background: rgba(31,59,43,.06);
  border:1px solid rgba(31,59,43,.12);
}
.footer__name{ font-weight:700; color: var(--green); }
.footer__small{ font-size: 12px; color: var(--muted); }
.footer__links{ display:flex; gap:12px; flex-wrap:wrap; }
.footer__links a{ color: var(--muted); text-decoration:none; font-size: 13px; }
.footer__links a:hover{ color: var(--green); }

/* Floating booking bar */
.floating{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  width: min(var(--max), calc(100% - 24px));
  background: rgba(246,241,230,.92);
  border: 1px solid rgba(31,59,43,.20);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 10px 12px;
  z-index: 60;
}
.floating__title{ font-weight: 800; color: var(--green); font-size: 13px; }
.floating__sub{ color: var(--muted); font-size: 12px; }
/* LOGÓ MÉRET */
.logo {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.08));
}
/* FEJLÉC LOGÓ MÉRET */
.brand__logo {
  height: 110px;        /* ha még nagyobb kell: 120–130px */
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.08));
}
/* SOCIAL LINK EK – VASTAG ARANY */
.social-links a {
  color: #C9A45A;              /* arany */
  font-weight: 700;            /* vastag */
  text-decoration: none;
  margin-right: 16px;
  letter-spacing: 0.5px;
}

.social-links a:hover {
  color: #E2C98A;              /* világosabb arany hover */
  text-decoration: underline;
}
assets/css/styles.css
2️⃣ A FÁJL LEGALJÁRA MÁSOLD BE EZT
(Ez FELÜLÍR mindent, ami eddig volt a social linkeknél)

/* SOCIAL LINK EK – NAGY, LÁTHATÓ, LUXUS */
.social-links {
  margin-top: 14px;
}

.social-links a {
  color: #C9A45A;              /* arany */
  font-weight: 800;            /* nagyon vastag */
  font-size: 16px;             /* NAGYOBB MÉRET */
  text-transform: uppercase;  /* luxus hatás */
  letter-spacing: 1px;
  text-decoration: none;
  margin-right: 20px;
}

.social-links a:hover {
  color: #EAD7A0;
  text-decoration: underline;
}
/* =========================
   FEJLÉC – FULL LUXUS (1–2–3)
   ========================= */

/* 1️⃣ ARANY DEKOR VONAL */
.topbar {
  position: relative;
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #C9A45A,
    #EAD7A0,
    #C9A45A,
    transparent
  );
}

/* 2️⃣ ÜVEGES, PRÉMIUM HÁTTÉR */
.topbar {
  background: rgba(31, 59, 43, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* 3️⃣ LOGÓ ARANY FÉNY */
.brand__logo {
  filter:
    drop-shadow(0 8px 16px rgba(201,164,90,0.30))
    drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}
/* FEJLÉC – MÁRKANÉV ERŐSÍTÉSE */
.brand__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #F2E6C9; /* törtfehér-arany */
  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.brand__tag{
  font-size:13px;
  font-weight:700;
  color:#EAD7A0;
  letter-spacing:1.2px;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

/* FEJLÉC MENÜ – ERŐSEBB SZÖVEG */
.nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #EAD7A0;
  text-transform: uppercase;
}

.nav a:hover {
  background: var(--gold-chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 8px rgba(184,138,26,0.6);
}

/* =========================
   SZOLGÁLTATÁS KÁRTYÁK – ARANY KERET
   ========================= */

.tile {
  position: relative;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 20px;
  background: var(--gold-chrome);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.tile:hover::before {
  filter: brightness(1.25);
}

/* Hover – finom luxus emelés */
.tile:hover {
  border-color: #EAD7A0;
  box-shadow:
    0 14px 36px rgba(0,0,0,0.12),
    0 0 0 1px rgba(234,215,160,0.6);
  transform: translateY(-3px);
}

/* Cím hangsúlyosabb */
.tile h3 {
  font-weight: 600;
  color: #1F3B2B;
}

/* Szöveg finomabb */
.tile p {
  color: #4b5a53;
}
.tile {
  position: relative;
  border-radius: 20px;
  padding: 22px;
  background: rgba(255,255,255,0.90);
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 20px;

  background: linear-gradient(
    135deg,
    #f7d6d0,
    #d9a1a1,
    #b76e79,
    #f4c2c2
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.tile:hover::before {
  background: linear-gradient(
    135deg,
    #f4c2c2,
    #b76e79,
    #f7d6d0,
    #d9a1a1
  );
}
.section h2 {
  color: #C9A45A;
  text-shadow:
    0 0 3px rgba(255,255,255,0.9),
    0 2px 4px rgba(0,0,0,0.2);
}
.about {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: #4b5a53;
}

.about p + p {
  margin-top: 16px;
}
/* =========================
   RÓLAM – ROSE GOLD LUXUS KÁRTYA
   ========================= */

.about {
  /* szélesség – ugyanaz a logika, mint a 3 tile */
  max-width: 1100px;
  margin: 0 auto;

  /* vastag rose gold keret */
  border: 2px solid #C49A9A;
  border-radius: 20px;

  /* belső tér – FONTOS, hogy ne érjen a szöveg a széléhez */
  padding: 42px 48px;

  /* háttér és mélység */
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.10),
    inset 0 0 0 1px rgba(255,255,255,0.4);
}

/* Szöveg tagolása */
.about p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #4b5a53;
}

.about p + p {
  margin-top: 18px;
}
.rolam-tile {
  grid-column: span 3;
  background: rgba(255,255,255,0.9);
  border-radius: 22px;
  padding: 0;
  position: relative;
}

/* =========================
   RÓLAM – FINOM ROSE GOLD BUBORÉK
   ========================= */

.rolam-tile {
  position: relative;
  background: rgba(255,255,255,0.95);
  border-radius: 26px;
  padding: 0;
  box-shadow:
    0 14px 34px rgba(0,0,0,0.12);
}



.rolam-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .rolam-grid {
    grid-template-columns: 1fr;
  }
/* RÓLAM szélesség: akkora, mint a 3 szolgáltatás kártya együtt */
.rolam-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.rolam-tile{
  grid-column: span 3;
  position: relative;
  border-radius: 26px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
  overflow: hidden;
}


/* A fekete háromszög eltüntetése + arany/rose plusz jel */
.rolam-tile summary{
  position: relative;
  padding: 22px 56px 22px 28px;
  cursor: pointer;
  list-style: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  color: #b46f6f;
}



.rolam-tile details[open] summary::after{
  content:"–";
}

/* Lenyíló tartalom: legyen “testesebb” és kiemeltebb */
.rolam-tile .about{
  padding: 18px 28px 28px;
  font-size: 16.5px;
  line-height: 1.85;
  color: #3f4f47;
}

/* =========================
   RÓLAM – TESTES, LUXUS ACCORDION
   ========================= */

.rolam-box{
  position: relative;
  max-width: 1100px;              /* ugyanakkora, mint 3 tile */
  margin: 0 auto;
  border-radius: 28px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  overflow: hidden;
}

/* ROSE GOLD KERET – NEM TÚL VASTAG */
.rolam-box::before{
  content:"";
  position:absolute;
  inset:0;
  padding: 4px;                   /* EZ A KERET VASTAGSÁGA */
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    #cfa5a5,
    #e7bcbc,
    #b97f7f
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
}

/* FEJLÉC – KATTINTHATÓ */
.rolam-toggle{
  width:100%;
  background: transparent;
  border: none;
  padding: 30px 70px 30px 36px;    /* TESTES BUBORÉK */
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: #b46f6f;
  text-align: left;
  cursor: pointer;
  position: relative;
}

/* ARANY + / – JEL */
.rolam-plus{
  position:absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  font-weight: 700;
  color: #C9A45A;
}

/* LENYÍLÓ TARTALOM */
.rolam-content{
  display: none;
  padding: 26px 40px 40px;         /* SZÖVEG KIEMELVE */
  font-size: 17px;
  line-height: 1.9;
  color: #3f4f47;
}

.rolam-content p + p{
  margin-top: 22px;
}

/* NYITOTT ÁLLAPOT */
.rolam-box.open .rolam-content{
  display: block;
}
/* =========================
   RÓLAM – ROSE GOLD ACCORDION
   ========================= */

.rolam-accordion details {
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  position: relative;
  overflow: hidden;
}

/* Vastag ROSE GOLD keret */
.rolam-accordion details::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4px; /* 👉 EZ a keret vastagsága */
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    #cfa5a5,
    #e7bcbc,
    #b97f7f,
    #f4c2c2
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* SUMMARY – nincs fekete nyíl */
.rolam-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 700;
  font-size: 18px;
  color: #1F3B2B;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rolam-accordion summary::-webkit-details-marker {
  display: none;
}

/* ARANY + JEL */
.rolam-accordion summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 800;
  background: var(--gold-chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rolam-accordion details[open] summary::after {
  content: "–";
}

/* BELSŐ SZÖVEG – „BUBORÉK” */
.rolam-accordion .about {
  padding: 26px 30px 30px;
  font-size: 16px;
  line-height: 1.8;
  color: #4b5a53;
}
/* =========================
   MUNKÁIM – KÜLÖN BUBORÉK
   ========================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.ph {
  border-radius: 20px;
  padding: 14px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
  border: 1px solid rgba(201,164,90,0.35);
}

.ph img {
  width: 100%;
  height: 260px;
  object-fit: cover;      /* soha nem vágja torzra */
  border-radius: 12px;
}

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}
#galeria {
  margin-top: 60px;
}
/* =========================
   ÁRINFÓ – KÜLÖN BUBORÉK
   ========================= */

.price-note{
  max-width: 1100px;
  margin: 36px auto 64px;     /* felül–alul tér, hogy ne érjen össze */
  padding: 20px 26px;

  background: rgba(255,255,255,0.92);
  border-radius: 18px;

  /* finom, elegáns keret */
  border: 1px solid rgba(201,164,90,.35);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}

.price-note p{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
}
.ph{
  padding: 12px;
}

.ph img{
  width:100%;
  max-height: 260px;
  object-fit: contain;
}
/* =========================
   INSTAGRAM FEED – LUXUS BUBORÉK
   ========================= */

.insta-box{
  position: relative;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

/* Finom rose gold keret */
.insta-box::before{
  content:"";
  position:absolute;
  inset:0;
  padding: 2px;
  border-radius: 26px;
  background: linear-gradient(
    135deg,
    #f4c2c2,
    #b76e79,
    #e7bcbc
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
}

/* iframe szépen kitölt */
.lightwidget-widget{
  width: 100%;
  border: 0;
  overflow: hidden;
}
/* =========================
   INSTAGRAM FEED – LUXUS BUBORÉK
   ========================= */

.insta-box{
  position: relative;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

/* Finom rose gold keret */
.insta-box::before{
  content:"";
  position:absolute;
  inset:0;
  padding: 2px;
  border-radius: 26px;
  background: linear-gradient(
    135deg,
    #f4c2c2,
    #b76e79,
    #e7bcbc
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
}

/* iframe szépen kitölt */
.lightwidget-widget{
  width: 100%;
  border: 0;
  overflow: hidden;
}
/* =========================
   INSTAGRAM – KÜLÖN BUBORÉK
   ========================= */

.insta-card {
  position: relative;
  padding: 28px;
  background: rgba(255,255,255,0.92);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.12);
  overflow: hidden;
}

/* Vastag ROSE GOLD keret */
.insta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4px;
  border-radius: 24px;

  background: linear-gradient(
    135deg,
    #cfa5a5,
    #e7bcbc,
    #b97f7f,
    #f4c2c2
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.lightwidget-widget {
  width: 100%;
  min-height: 420px;
  border: 0;
  overflow: hidden;
}
.insta-card {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(31,59,43,.18);
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

.insta-card iframe {
  width: 100%;
  height: 600px; /* ha kevés, emeld 700–800-ra */
  display: block;
}
/* MUNKÁIM – ARANY-KRÓM CÍM */
#galeria h2 {
  background: var(--gold-chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

#galeria .section__head p {
  color: #8c7a4e;
  font-weight: 600;
  letter-spacing: 0.6px;
}
/* MUNKÁIM – ROSE GOLD LUXUS LÁDA */
.rolam-tile summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #b97f7f;
  letter-spacing: 1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* arany + jel */
.rolam-tile summary::after {
  content: "+";
  font-size: 22px;
  color: #b97f7f;
  font-weight: 900;
}

.rolam-tile details[open] summary::after {
  content: "–";
}

/* vastag rose gold keret */
.rolam-tile {
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  padding: 0;
  position: relative;
}

.rolam-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* V É K O N Y  rose gold keret */
filter: brightness(1.1) contrast(1.15); /* éles fényes rose-gold keret */
  border-radius: 24px;
  background: linear-gradient(135deg, #cfa5a5, #e7bcbc, #b97f7f, #f4c2c2);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}


.rolam-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.insta-card {
  position: relative;
  padding: 32px;
  border-radius: 26px;
 background: rgba(255,255,255,0.98); /* sokkal tisztább, élesebb */
  box-shadow: 0 10px 20px rgba(0,0,0,0.08); /* tisztább, kevésbé elmosódó */

}

.insta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* V É K O N Y Í T V A */


  border-radius: 28px;
  background: linear-gradient(135deg, #cfa5a5, #e7bcbc, #b97f7f, #f4c2c2);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.lightwidget-widget {
  width: 100%;
  height: 620px;
  border: 0;
  display: block;
}
/* === CÍMEK ÉLES ARANYRA JAVÍTÁSA – FORCE OVERRIDE === */

.section__head h2,
.section h2,
#galeria .section__head h2,
#instagram .section__head h2 {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;

  color: #C9A45A !important; /* éles arany */
  font-weight: 700 !important;

  text-shadow:
    0 0 2px rgba(255,255,255,0.6),
    0 1px 2px rgba(0,0,0,0.15) !important;
}
/* =============================
   HÁZIREND – ROSE GOLD BUBORÉK
   ============================= */

#hazirend summary {
  font-weight: 700;
  font-size: 18px;
  padding: 18px 20px;
  cursor: pointer;
  color: var(--green);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#hazirend summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 800;
  background: var(--gold-chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#hazirend details[open] summary::after {
  content: "–";
}

/* Buborék */
.rolam-tile {
  border-radius: 22px;
  position: relative;
  padding: 0;
  background: rgba(255,255,255,0.92);
  overflow: hidden;
}

/* Rose gold vékony keret */
.rolam-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px; /* ici-pici, elegáns */
  border-radius: 24px;
  background: linear-gradient(135deg,#f4c2c2,#b76e79,#e7bcbc);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

#hazirend .about {
  padding: 30px 32px;
  line-height: 1.75;
  font-size: 15px;
  color: #4b5a53;
}

#hazirend .about p + p {
  margin-top: 14px;
}
/* ================================
   HÁZIREND BUBORÉK – VÉKONY ARANY KERET ZÁRT ÁLLAPOTBAN
   ================================ */

#hazirend .rolam-tile summary {
  border: 1px solid rgba(201,164,90,0.45); /* nagyon finom arany keret */
  border-radius: 18px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.92);
  cursor: pointer;
  font-weight: 500;
}

/* Plusz jel formázása */
#hazirend summary::after {
  content: "+";
  float: right;
  font-size: 20px;
  color: #c9a45a; /* arany */
  transition: 0.25s ease;
}

/* ================================
   NYITOTT ÁLLAPOT – RÓZSAARANY VASTAGABB KERET
   ================================ */

#hazirend details[open] summary {
  border: 3px solid transparent;
  background: rgba(255,255,255,0.98);
  position: relative;
}

#hazirend details[open] summary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;

  background: linear-gradient(135deg,
    #f4c2c2,
    #e7bcbc,
    #b76e79,
    #f4c2c2
  );

  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Plusz jel forogjon át X-re, ha nyitva */
#hazirend details[open] summary::after {
  content: "–";
  color: #b76e79; /* rose gold */
}
/* ====================================
   RÓLAM BUBORÉK – VÉKONY ARANY KERET ZÁRT ÁLLAPOTBAN
   ==================================== */

#rolam .rolam-tile summary {
  border: 1px solid rgba(201,164,90,0.45); /* finom arany keret */
  border-radius: 18px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.92);
  cursor: pointer;
  font-weight: 500;
}

/* Arany plusz jel */
#rolam summary::after {
  content: "+";
  float: right;
  font-size: 20px;
  color: #c9a45a; /* arany */
  transition: 0.25s ease;
}

/* ====================================
   NYITOTT ÁLLAPOT – RÓZSAARANY KERET
   ==================================== */

#rolam details[open] summary {
  border: 3px solid transparent;
  background: rgba(255,255,255,0.98);
  position: relative;
}

/* rose-gold vastag keret */
#rolam details[open] summary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;

  background: linear-gradient(
    135deg,
    #f4c2c2,
    #e7bcbc,
    #b76e79,
    #f4c2c2
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Plusz → "–" nyitva */
#rolam details[open] summary::after {
  content: "–";
  color: #b76e79; /* rose gold */
}
/* ============================
   RÓLAM BUBORÉK – VÉKONY ARANY KERET (ZÁRT)
   ============================ */
#rolam summary {
  border: 1px solid rgba(201,164,90,0.45); /* arany */
  border-radius: 18px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.92);
  cursor: pointer;
  position: relative;
  font-weight: 500;
}

/* Arany + jel */
#rolam summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 22px;
  color: #c9a45a;
  transition: 0.25s ease;
}

/* ============================
   NYITOTT ÁLLAPOT – ROSEGOLD KERET
   ============================ */
#rolam details[open] summary {
  background: rgba(255,255,255,0.96);
  border: 3px solid transparent;
}

#rolam details[open] summary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;

  background: linear-gradient(
    135deg,
    #f4c2c2,
    #e7bcbc,
    #b76e79,
    #f4c2c2
  );

  -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* + jel → – jel */
#rolam details[open] summary::after {
  content: "–";
  color: #b76e79;
}
/* ============================
   RÓLAM BUBORÉK – VÉKONY ARANY KERET (ZÁRT)
   ============================ */
#rolam summary {
  border: 1px solid rgba(201,164,90,0.45); /* arany */
  border-radius: 18px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.92);
  cursor: pointer;
  position: relative;
  font-weight: 500;
}

/* Arany + jel */
#rolam summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 22px;
  color: #c9a45a;
  transition: 0.25s ease;
}

/* ============================
   NYITOTT ÁLLAPOT – ROSEGOLD KERET
   ============================ */
#rolam details[open] summary {
  background: rgba(255,255,255,0.96);
  border: 3px solid transparent;
}

#rolam details[open] summary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;

  background: linear-gradient(
    135deg,
    #f4c2c2,
    #e7bcbc,
    #b76e79,
    #f4c2c2
  );

  -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* + jel → – jel */
#rolam details[open] summary::after {
  content: "–";
  color: #b76e79;
}
/* =========================
   KIEMELT INSTAGRAM – HERO
   ========================= */

.featured-widget{
  border-radius: 16px;
  overflow: hidden;
}

/* csak az első sor látszódjon */
.featured-insta{
  width: 100%;
  height: 260px;      /* PC */
  border: 0;
}

@media (max-width: 768px){
  .featured-insta{
    height: 220px;   /* mobil */
  }
}

/* LightWidget belső layout finomítása */
.featured-insta iframe,
.featured-insta img{
  object-fit: cover;
}
<div class="featured-image">
  <img src="assets/img/gallery/4.png" alt="Kiemelt köröm munka">
</div>
/* KIEMELT KÉP – HERO */
.featured-image{
  margin-top: 16px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  border: 1px solid rgba(201,164,90,.35); /* finom arany */
}

.featured-image img{
  width: 100%;
  height: auto;
  display: block;
}
.floating__buttons{
  display:flex;
  gap:10px;
}
.img-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.img-modal img{
  max-width:90%;
  max-height:90%;
  border-radius:18px;
}
.img-close{
  position:absolute;
  top:20px;
  right:30px;
  font-size:42px;
  color:#fff;
  cursor:pointer;
}
/* BRAND TAG – BUDAPEST XI. KIEMELÉS (VÉGSŐ) */
.brand__tag{
  font-size:13px !important;
  font-weight:700 !important;
  color:#EAD7A0 !important;
  letter-spacing:1.2px !important;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}
/* BUDAPEST XI. – LETISZTULT PRÉMIUM ARANY */
.highlight-location{
  display: inline-block;
  margin-left: 6px;

  font-size: 1.3em;
  font-weight: 800;
  letter-spacing: 1px;

  color: #C9A24D;   /* prémium arany */
}


/* MODAL KEZDŐÁLLAPOT JAVÍTÁS */
.img-modal[hidden]{display:none !important;}


/* MIÉRT VÁLASSZ ENGEM – HERO KIEGÉSZÍTÉS */
.hero__feature-panel{
  margin-top: 24px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(201,164,90,.28);
  background:
    radial-gradient(420px 180px at 0% 0%, rgba(31,59,43,.08), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,248,242,.95));
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
}
.hero__feature-head{
  margin-bottom: 14px;
}
.hero__feature-kicker{
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(201,164,90,.14);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero__feature-head h3{
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  line-height: 1.08;
  color: var(--green);
}
.hero__feature-head p{
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.hero__feature-banner{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(201,164,90,.36);
  background: rgba(255,255,255,.98);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 12px 26px rgba(0,0,0,.06);
}
.hero__feature-banner img{
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 960px){
  .hero__feature-panel{
    margin-top: 20px;
  }
}
@media (max-width: 520px){
  .hero__feature-panel{
    margin-top: 18px;
    padding: 14px;
    border-radius: 18px;
  }
  .hero__feature-head h3{
    font-size: 26px;
  }
  .hero__feature-head p{
    font-size: 13.5px;
  }
  .hero__feature-banner{
    border-radius: 14px;
  }
}


/* =====================================================
   KOMPAKTABB TARTALOM + FINOM PINK AKCENTUS – 2026-07
   ===================================================== */
:root{
  --pink-soft:#F3D8DF;
  --pink:#D99AAA;
  --pink-deep:#B9687D;
}

/* A jobb oldali hero-kártya ne nyúljon le a bal oldal magasságáig. */
.hero__grid{
  align-items:start;
}
.hero__visual{
  height:auto;
  align-self:start;
}
.visual__frame{
  height:auto;
}

/* A fő blokk marad elegáns, de kevésbé levegős. */
.hero__copy{
  padding-bottom:18px;
}
.hero__feature-panel{
  margin-top:18px;
  padding:14px;
}
.hero__feature-head{
  margin-bottom:10px;
}
.hero__feature-head h3{
  font-size:27px;
}

/* Házirend, Rólam és Szolgáltatások közelebb egymáshoz. */
.compact-section{
  padding:26px 0;
}
#hazirend.compact-section{
  padding-top:28px;
  padding-bottom:18px;
}
#rolam.compact-section{
  padding-top:18px;
  padding-bottom:18px;
}
#szolgaltatasok.compact-section{
  padding-top:22px;
  padding-bottom:34px;
}

/* A cím és a leírás ne két szélen álljon, hanem egységes blokk legyen. */
.compact-section .section__head{
  position:relative;
  display:block;
  margin-bottom:12px;
  padding-left:16px;
}
.compact-section .section__head::before{
  content:"";
  position:absolute;
  left:0;
  top:5px;
  bottom:4px;
  width:4px;
  border-radius:999px;
  background:linear-gradient(180deg,var(--pink-soft),var(--pink-deep));
  box-shadow:0 0 0 4px rgba(217,154,170,.10);
}
.compact-section .section__head h2{
  margin:0;
  font-size:31px;
  line-height:1.05;
}
.compact-section .section__head p{
  margin-top:5px;
  max-width:720px;
  font-size:14px;
  line-height:1.45;
  color:#6d625f;
}

/* A lenyíló sorok keskenyebbek, tisztábbak és kapnak pink részletet. */
#hazirend .rolam-grid,
#rolam .rolam-grid{
  gap:0;
}
#hazirend .rolam-tile,
#rolam .rolam-tile{
  border-radius:18px;
  box-shadow:0 8px 22px rgba(31,59,43,.08);
}
#hazirend .rolam-tile::before,
#rolam .rolam-tile::before{
  padding:1px;
  border-radius:18px;
  background:linear-gradient(110deg,rgba(217,154,170,.95),rgba(244,222,227,.95),rgba(201,164,90,.72));
}
#hazirend .rolam-tile summary,
#rolam .rolam-tile summary,
#rolam summary{
  min-height:48px;
  padding:13px 48px 13px 17px;
  border-radius:17px;
  border:0;
  background:rgba(255,255,255,.94);
  color:var(--green);
  font-size:16px;
  letter-spacing:.04em;
}
#hazirend summary::after,
#rolam summary::after{
  right:17px;
  top:50%;
  transform:translateY(-50%);
  color:var(--pink-deep);
  -webkit-text-fill-color:initial;
  background:none;
}
#hazirend .about,
#rolam .about{
  padding:18px 22px 22px;
}

/* Szolgáltatáskártyák: kisebb hézag és visszafogott pink felső fény. */
#szolgaltatasok .grid3{
  gap:10px;
}
#szolgaltatasok .tile{
  min-height:120px;
  padding:17px 18px;
  border-radius:17px;
  box-shadow:0 8px 20px rgba(31,59,43,.08);
  overflow:hidden;
}
#szolgaltatasok .tile::after{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  top:0;
  height:3px;
  border-radius:0 0 999px 999px;
  background:linear-gradient(90deg,transparent,var(--pink),transparent);
  opacity:.9;
}
#szolgaltatasok .tile::before{
  padding:1px;
  border-radius:17px;
  background:linear-gradient(135deg,rgba(217,154,170,.85),rgba(231,188,188,.55),rgba(201,164,90,.45));
}
#szolgaltatasok .tile h3{
  margin-bottom:5px;
  font-size:18px;
}
#szolgaltatasok .tile p{
  line-height:1.45;
}

@media (max-width:960px){
  .hero__visual{
    width:100%;
  }
  .compact-section{
    padding:22px 0;
  }
}
@media (max-width:520px){
  .hero__feature-panel{
    padding:10px;
  }
  .hero__feature-head h3{
    font-size:24px;
  }
  .compact-section .section__head h2{
    font-size:27px;
  }
  #hazirend .rolam-tile summary,
  #rolam .rolam-tile summary,
  #rolam summary{
    font-size:14px;
  }
}

/* =========================
   ÁRLISTA – LETISZTULT, FINOM PINK AKCENTUSSAL
   ========================= */
#arlista .container{
  max-width: 980px;
}

#arlista .section__head{
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(207,142,167,.28);
}

#arlista .section__head h2{
  position: relative;
  padding-left: 14px;
}

#arlista .section__head h2::before{
  content:"";
  position:absolute;
  left:0;
  top:7px;
  bottom:5px;
  width:4px;
  border-radius:999px;
  background: linear-gradient(180deg, #d8ad64, #cf8ea7);
}

#arlista .section__head p{
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(207,142,167,.22);
}

#arlista .accordion{
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.48);
  border: 1px solid rgba(207,142,167,.20);
  box-shadow: 0 10px 28px rgba(0,0,0,.05);
}

#arlista .accordion details{
  margin-bottom: 9px;
  border-radius: 14px;
  border: 1px solid rgba(31,59,43,.14);
  background: rgba(255,255,255,.86);
  box-shadow: none;
}

#arlista .accordion details:last-child{
  margin-bottom:0;
}

#arlista .accordion details[open]{
  border-color: rgba(207,142,167,.34);
  background: rgba(255,252,253,.94);
}

#arlista .accordion summary{
  padding: 14px 16px;
  font-size: 16px;
}

#arlista .accordion summary::after{
  color:#c77f99;
}

#arlista .accordion details[open] summary{
  border-bottom: 1px solid rgba(207,142,167,.18);
}

#arlista .rows{
  padding: 4px 16px 13px;
}

#arlista .row{
  padding: 10px 0;
  border-top: 1px dashed rgba(207,142,167,.24);
}

#arlista .row:first-child{
  border-top:none;
}

#arlista .row b{
  color: var(--green);
  padding-left: 10px;
}

#arlista .price-note{
  margin: 20px auto 34px;
  padding: 15px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(207,142,167,.22);
  box-shadow: 0 8px 22px rgba(0,0,0,.05);
}

@media (max-width: 720px){
  #arlista .section__head{
    align-items:flex-start;
    flex-direction:column;
  }

  #arlista .accordion{
    padding:10px;
  }

  #arlista .row{
    gap:10px;
  }
}


/* KEZDŐ BLOKK – FINOM PINK HANGSÚLYOK */
.hero__copy--pink,
.hero__visual--pink{
  position: relative;
  overflow: hidden;
}

.hero__copy--pink::before,
.hero__visual--pink::before{
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, rgba(207,127,153,.72), rgba(231,192,139,.68), transparent);
  pointer-events: none;
}

.hero .pill{
  border-color: rgba(207,127,153,.30);
  background: linear-gradient(135deg, rgba(255,255,255,.76), rgba(255,244,248,.78));
  box-shadow: 0 5px 14px rgba(160,95,118,.06);
}

.hero .pill .dot{
  background: #d592aa;
  box-shadow: 0 0 0 4px rgba(213,146,170,.18);
}

.hero__price-btn{
  border-color: rgba(207,127,153,.42);
  background: rgba(255,247,250,.74);
}

.hero__price-btn:hover{
  border-color: rgba(190,104,135,.62);
  background: rgba(255,239,245,.92);
}

.hero__visual--pink .visual__frame{
  border-color: rgba(207,127,153,.28);
  box-shadow: inset 0 0 0 1px rgba(231,192,139,.10);
}

.hero__feature-kicker{
  border: 1px solid rgba(207,127,153,.24);
  background: linear-gradient(135deg, rgba(231,192,139,.13), rgba(235,180,198,.15));
}

@media (max-width: 520px){
  .hero__copy--pink::before,
  .hero__visual--pink::before{
    left: 16px;
    right: 16px;
  }
}
