/* ===== Responsive base (mos e prek) ===== */
* { box-sizing: border-box; }
html, body { width: 100%; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }

/* Hermes Men's Salon - single page */
:root{
  --bg: #fbf7f2;
  --bg2:#f6efe7;
  --card:#ffffff;
  --ink:#121826;
  --muted:#000000;
  --brown:#8a5a3c;
  --brown2:#6f452d;
  --milk:#f7f1ea;
  --shadow: 0 18px 50px rgba(18,24,38,.10);
  --shadow2: 0 10px 30px rgba(18,24,38,.08);
  --radius: 22px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background: radial-gradient(1000px 500px at 10% 10%, rgba(138,90,60,.08), transparent 60%),
              radial-gradient(900px 500px at 90% 30%, rgba(138,90,60,.10), transparent 55%),
              linear-gradient(180deg, var(--bg), #ffffff 55%, var(--bg2));
}

img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
.container{max-width:1100px; padding:0 18px; margin:0 auto}
.maxw{max-width:780px; margin-left:auto; margin-right:auto}

.site-header{
  position:sticky; top:0; z-index:40;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(18,24,38,.06);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:12px}
.brand-logo-wrap{width:38px; height:38px; border-radius:999px; overflow:hidden; box-shadow:0 10px 24px rgba(33,27,18,.12); border:1px solid rgba(122,91,58,.18)}
.brand-logo{width:100%; height:100%; object-fit:cover; display:block}
.brand-mark{
  font-weight:800;
  letter-spacing:.12em;
  color:var(--brown);
  font-size:18px;
}
.nav{display:flex; align-items:center; gap:14px}
.nav-links{
  display:flex; gap:18px; list-style:none; padding:0; margin:0;
}
.nav-links a{
  font-weight:700;
  font-size:15px;
  color:#243041;
  padding:12px 14px;
  border-radius:999px;
  background:rgba(122,91,58,.10);
  border:1px solid rgba(122,91,58,.16);
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}
.nav-links a:hover{
  background:rgba(122,91,58,.16);
  border-color:rgba(122,91,58,.26);
  transform:translateY(-1px);
}
.nav-toggle{
  display:none;
  width:44px; height:44px;
  border:1px solid rgba(18,24,38,.10);
  border-radius:14px;
  background:#fff;
}
.nav-toggle span{
  display:block;
  width:18px; height:2px;
  background:#2a3342;
  margin:4px auto;
  border-radius:2px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border-radius:16px;
  padding:12px 16px;
  font-weight:700;
  font-size:14px;
  border:1px solid transparent;
  box-shadow:none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover{transform: translateY(-1px); box-shadow: var(--shadow2)}
.btn:active{transform: translateY(0px)}
.btn-primary{background: var(--brown); color:white}
.btn-primary:hover{background: var(--brown2)}
.btn-ghost{
  background: rgba(255,255,255,.8);
  border-color: rgba(18,24,38,.10);
}
.btn-ghost:hover{background:#fff}
.btn-pill{border-radius:999px}
.btn-wide{width:100%}
.btn-whatsapp{
  background:#1fbf5b; color:white;
}
.btn-whatsapp:hover{filter: brightness(.95)}

.btn-instagram{
  background: linear-gradient(135deg, #ff4f7b, #c02bff, #ff9f43);
  color: #fff;
}
.btn-instagram:hover{filter: brightness(.95)}

.hero{
  position:relative;
  min-height: 78vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 600px at 30% 20%, rgba(138,90,60,.18), transparent 55%),
    radial-gradient(700px 500px at 80% 60%, rgba(138,90,60,.12), transparent 55%),
    linear-gradient(180deg, var(--milk), rgba(255,255,255,.92));
}
.hero-bg::after{
  content:"";
  position:absolute; inset:-10%;
  background: url("assets/logo.jpg") center/720px no-repeat;
  opacity:.08;
  filter: blur(.2px);
  transform: rotate(-8deg);
}
.hero-inner{position:relative; padding:56px 0 44px}
.hero-card{
  max-width: 760px;
  margin: 0 auto;
  text-align:center;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(18,24,38,.08);
  border-radius: 28px;
  padding: 34px 22px 24px;
  box-shadow: var(--shadow);
}
.logo-pill{
  width: 320px;
  max-width: 92%;
  margin: 0 auto 16px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(18,24,38,.08);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 14px 40px rgba(18,24,38,.10);
}
.logo-pill img{border-radius:12px}
.hero h1{
  margin: 14px 0 10px;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.08;
}
.lead{
  margin: 0 auto 18px;
  color: rgba(42,51,66,.82);
  max-width: 620px;
  font-size: 15.5px;
  line-height: 1.6;
}
.hero-actions{
  display:flex; gap:12px; justify-content:center; flex-wrap:wrap;
  margin: 18px 0 12px;
}
.rating-pill{
  margin: 14px auto 0;
  display:inline-flex; align-items:center; gap:10px;
  background:#fff;
  border: 1px solid rgba(18,24,38,.08);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 10px 30px rgba(18,24,38,.08);
}
.star{color:#ffb300}
.muted{color: var(--muted)}
.small{font-size:12px}
.center{text-align:center}

.scroll-hint{display:flex; justify-content:center; margin-top:18px}
.mouse{
  width:24px; height:38px;
  border:2px solid rgba(42,51,66,.25);
  border-radius:18px;
  position:relative;
}
.mouse::after{
  content:"";
  width:4px; height:7px;
  background: rgba(42,51,66,.28);
  border-radius:4px;
  position:absolute; left:50%; top:8px;
  transform:translateX(-50%);
  animation: wheel 1.4s infinite;
}
@keyframes wheel{0%{opacity:0; transform:translate(-50%, 0)} 30%{opacity:1} 100%{opacity:0; transform:translate(-50%, 12px)}}

.section{padding:70px 0}
.section-alt{background: linear-gradient(180deg, rgba(246,239,231,.55), rgba(255,255,255,1))}
.section-title{
  font-family:"Playfair Display", serif;
  font-size: clamp(26px, 3.2vw, 38px);
  margin: 0 0 16px;
}
.section-title.center{margin-bottom:10px}
.grid-2{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 22px;
  align-items:start;
}
.card{
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(18,24,38,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
}
.card-soft{padding:26px 22px}
.card-soft p{color:#2a3342; line-height:1.68; margin-top:10px}
.accent{color: var(--brown); font-weight:700}

.feature-stack{
  display:flex;
  flex-direction:column;
  gap:16px;
  height:100%;
}
.feature-card{
  flex:1;
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:22px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(122,91,58,.92), rgba(122,91,58,.82));
  color:#fff;
  box-shadow:0 16px 36px rgba(33,27,18,.18);
}
.feature-card .icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.14);
  font-size:22px;
  flex:0 0 44px;
}
.feature h3{margin:0 0 6px; font-size:16px}
.feature p{margin:0; opacity:.9; font-size:13.5px; line-height:1.4}

.price-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.price-card{
  background:#fff;
  border:1px solid rgba(18,24,38,.08);
  border-radius: 18px;
  padding: 16px 16px;
  display:flex; gap:12px;
  box-shadow: var(--shadow2);
}
.check{
  width:28px; height:28px;
  border-radius: 999px;
  display:grid; place-items:center;
  color:#fff;
  background: var(--brown);
  flex:0 0 auto;
  margin-top: 2px;
}
.pc-body h3{margin:0 0 10px; font-size:14px}
.price{
  font-weight:800;
  color: var(--brown);
}
.note-pill{
  margin: 18px auto 0;
  width: fit-content;
  background:#fff;
  border:1px solid rgba(18,24,38,.08);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: var(--shadow2);
  font-size: 13px;
}

.gallery{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.shot{
  margin:0;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(18,24,38,.08);
  background:#fff;
  box-shadow: var(--shadow2);
  cursor: zoom-in;
}
.shot img{
  width:100%;
  height: 250px;
  object-fit: cover;
  transition: transform .2s ease;
}
.shot:hover img{transform: scale(1.03)}

.rating-badge{
  margin: 14px auto 22px;
  width: fit-content;
  display:flex; align-items:center; gap:10px;
  background:#fff;
  border:1px solid rgba(18,24,38,.08);
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: var(--shadow2);
}
.review-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review{
  background:#fff;
  border:1px solid rgba(18,24,38,.08);
  border-radius: 18px;
  padding: 16px 16px;
  box-shadow: var(--shadow2);
}
.review .stars{color:#ffb300; font-weight:800; letter-spacing: .06em}
.review p{margin:10px 0 12px; color:#2a3342; line-height:1.6; font-size:13.5px}
.review .who{color: var(--brown); font-weight:700; font-size:13px}

.contact-grid{
  margin-top: 26px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.contact-card{
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(18,24,38,.08);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow2);
}
.contact-row{
  display:flex; gap:12px; align-items:flex-start;
  padding: 10px 0;
}
.cicon{
  width:38px; height:38px;
  border-radius: 14px;
  background: rgba(138,90,60,.12);
  display:grid; place-items:center;
  flex:0 0 auto;
}
.label{font-size:12px; color: var(--muted); margin-bottom:3px}
.value{font-weight:700}
.link{color: var(--brown)}
.link:hover{text-decoration:underline}

.contact-actions{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top: 10px;
}

.map-card{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(18,24,38,.08);
  box-shadow: var(--shadow2);
  background:#fff;
}
.map-card iframe{width:100%; height:100%; min-height: 330px; border:0}

.form{
  max-width: 640px;
  margin: 22px auto 0;
  padding: 18px 18px;
}
.field{margin-bottom: 12px}
label{display:block; font-weight:700; margin-bottom:8px; font-size:13px}
input, select, textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(18,24,38,.12);
  background: rgba(255,255,255,.92);
  padding: 12px 12px;
  font-size: 14px;
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(138,90,60,.50);
  box-shadow: 0 0 0 4px rgba(138,90,60,.12);
}
.qr-card{
  max-width: 420px;
  margin: 22px auto 0;
  padding: 18px;
  text-align:center;
}
.qr{
  width: 320px;
  max-width: 92%;
  margin: 0 auto 12px;
  border-radius: 18px;
  border: 1px solid rgba(18,24,38,.08);
  background:#fff;
}
.qr-meta{margin-bottom: 12px}

.footer{
  padding: 34px 0;
  background: linear-gradient(180deg, #1b1512, #0f0c0b);
  color: rgba(255,255,255,.86);
}
.footer-inner{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
}
.foot-title{font-weight:800; margin-bottom: 10px; color: rgba(255,255,255,.94)}
.foot-link{display:block; margin-bottom: 8px; color: rgba(255,255,255,.86)}
.foot-link:hover{text-decoration:underline}

.floating-wa{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  background: #1fbf5b;
  color: #fff;
  padding: 12px 14px;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0,0,0,.20);
  font-weight: 800;
  letter-spacing: .02em;
}
.floating-wa:hover{filter: brightness(.96)}
.floating-wa span{font-size:12px}

.lightbox{
  position: fixed; inset:0;
  background: rgba(0,0,0,.75);
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 80;
  padding: 18px;
}
.lightbox.show{display:flex}
.lightbox img{
  max-width:min(980px, 96vw);
  max-height: 86vh;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.lb-close{
  position:absolute;
  top: 14px; right: 14px;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color:#fff;
  font-size: 18px;
  cursor:pointer;
}

@media (max-width: 980px){
  .grid-2{grid-template-columns: 1fr}
  .price-grid{grid-template-columns: repeat(2, 1fr)}
  .gallery{grid-template-columns: repeat(2, 1fr)}
  .review-grid{grid-template-columns: repeat(2, 1fr)}
  .contact-grid{grid-template-columns: 1fr}
  .footer-inner{grid-template-columns: 1fr 1fr}
}
@media (max-width: 560px){
  .nav-links{
    position:absolute;
    right: 18px;
    top: 66px;
    flex-direction:column;
    background:#fff;
    border:1px solid rgba(18,24,38,.10);
    border-radius: 18px;
    padding: 10px;
    width: min(260px, calc(100vw - 36px));
    display:none;
    box-shadow: var(--shadow2);
  }
  .nav-links.show{display:flex}
  .nav-toggle{display:block}
  .nav-links a{padding: 12px 12px}
  .btn{padding: 12px 14px}
  .price-grid{grid-template-columns: 1fr}
  .review-grid{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr}
  .shot img{height: 240px}
}

.feature-card h3{margin:0 0 6px; font-size:18px; letter-spacing:.01em}
.feature-card p{margin:0; opacity:.95; line-height:1.5}

@media (min-width: 900px){.brand-mark{font-size:20px;}}

/* Floating Instagram button */
.floating-ig{
  position: fixed;
  right: 18px;
  bottom: 86px; /* sits above WhatsApp */
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  background: #c13584;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.floating-ig:hover{ transform: translateY(-1px); }

/* Footer credits */
.site-footer .credits, footer .credits{
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  opacity: .9;
}
.site-footer .credits a, footer .credits a{ color: inherit; text-decoration: underline; }

/* Contact social pills */
.contact-social{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}
.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
}
.pill.wa{ color:#0b3d2e; }
.pill.ig{ color:#6b1f46; }

/* Nice select */
.select-pill{
  width:100%;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  outline:none;
  appearance:none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(0,0,0,.45) 50%),
                    linear-gradient(135deg, rgba(0,0,0,.45) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(1.15em), calc(100% - 12px) calc(1.15em);
  background-size: 6px 6px, 6px 6px;
  background-repeat:no-repeat;
}

/* WEB STUDIO credit block */
.studio-credit{
  padding: 0 40px 60px;
}
.studio-badge{
  display:flex;
  align-items:center;
  gap:16px;
  max-width: 520px;
  margin: 0 auto;
  background:#fff;
  border:1px solid rgba(0,0,0,.10);
  border-radius:22px;
  padding:18px 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}
.studio-mark{
  width:64px;
  height:64px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  letter-spacing:.5px;
  background:#111;
  color:#fff;
}
.studio-title{
  font-weight:900;
  font-size:18px;
  letter-spacing:.6px;
}
.studio-sub a{
  text-decoration:none;
  font-weight:800;
}
.onlywa{
  opacity:.75;
  font-weight:700;
}

/* --- Footer base (dark, premium) --- */
.site-footer{
  background: radial-gradient(1100px 360px at 12% 0%, rgba(255,255,255,.10), rgba(0,0,0,0)),
              linear-gradient(180deg, #161110, #0e0b0a);
  color: rgba(255,255,255,.92);
  padding: 56px 0 44px;
  margin-top: 70px;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 26px;
}

.footer-brand{
  font-weight: 900;
  letter-spacing: 2px;
  color: #c79b6a;
  font-size: 22px;
  margin-bottom: 8px;
}

.footer-muted{
  color: rgba(255,255,255,.72);
  line-height: 1.55;
  margin-bottom: 16px;
}

.footer-title{
  font-weight: 900;
  margin-bottom: 10px;
}

.footer-item{
  color: rgba(255,255,255,.80);
  line-height: 1.7;
}

.footer-item a{ color: rgba(255,255,255,.92); text-decoration: none; }
.footer-item a:hover{ text-decoration: underline; }

.studio-inline{
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  max-width: 420px;
}

.studio-inline .studio-mark{
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

.studio-inline .studio-title{ color: #fff; font-size: 15px; }
.studio-inline .studio-sub{ color: rgba(255,255,255,.80); font-weight: 700; }

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

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


/* --- Booking: multi services + time --- */
.services-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:10px;
}
@media (max-width: 640px){
  .services-grid{ grid-template-columns: 1fr; }
}
.service-pill{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.service-pill:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0,0,0,.08);
  border-color: rgba(111, 74, 45, .35);
}
.service-pill input{
  width:18px; height:18px;
  accent-color:#6f4a2d;
  margin:0 10px 0 0;
  flex:0 0 auto;
}
.service-pill .pill-text{
  font-weight:700;
  color:#1f2328;
  flex:1 1 auto;
}
.service-pill .pill-price{
  font-weight:800;
  color:#6f4a2d;
  flex:0 0 auto;
}
.select-pill{
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

/* --- Buttons with icons --- */
.action-btn .icon, .btn .icon, .floating-btn .icon, .hero-actions .icon, .contact-actions .icon{
  width:18px; height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.action-btn svg, .btn svg, .floating-btn svg, .contact-actions svg{
  width:18px; height:18px;
  fill: currentColor;
}
.action-btn, .btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.floating-btn{
  display:flex;
  align-items:center;
  gap:10px;
}

/* --- Footer polish --- */
.site-footer{
  background: radial-gradient(1200px 500px at 50% 0%, rgba(111,74,45,.35), rgba(0,0,0,.92));
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid{
  gap:28px;
}
.footer-grid h4{
  letter-spacing:.3px;
}
.footer-grid a, .footer-grid p{
  color: rgba(255,255,255,.84);
}
.footer-grid .muted{
  color: rgba(255,255,255,.62);
}

.floating-wa, .floating-ig{
  display:flex;
  align-items:center;
  gap:10px;
}
.floating-wa .icon, .floating-ig .icon{
  width:18px; height:18px;
  display:inline-flex;
}
.floating-wa svg, .floating-ig svg{
  width:18px; height:18px;
  fill: currentColor;
}
/* ===== Mobile (telefon) ===== */
@media (max-width: 768px){

  /* 1) Header / menu të mos dalë jashtë */
  header { padding: 10px 14px; }

  nav, .nav, .navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  nav a, .nav a, .navbar a {
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 999px;
  }

  /* 2) Titujt dhe tekstet */
  h1 { font-size: 28px; line-height: 1.15; }
  h2 { font-size: 22px; line-height: 1.2; }
  p  { font-size: 15px; line-height: 1.5; }

  /* 3) Seksionet të kenë hapësirë */
  section { padding-left: 14px; padding-right: 14px; }

  /* 4) Çdo layout me kolona -> 1 kolonë */
  .grid, .cards, .services, .footer-grid {
    grid-template-columns: 1fr !important;
  }

  /* 5) Form / Rezervimi */
  input, select, textarea {
    width: 100%;
    font-size: 16px;
    padding: 12px;
  }

  button, .btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }

  /* 6) Butonat floating (IG/WA) mos të zënë shumë */
  .floating-buttons, .float-buttons, .social-float {
    right: 12px;
    bottom: 12px;
    transform: scale(0.92);
    transform-origin: right bottom;
  }
}
