/* ==========================================================================
   Phat Galz Boutique — demo redesign
   Palette: near-black boutique base, hot-pink accent, brushed-gold detail
   ========================================================================== */

:root{
  --bg: #130f14;
  --bg-alt: #1b1520;
  --surface: #221a27;
  --surface-2: #2a2030;
  --line: rgba(255,255,255,0.09);
  --fg: #f6f1ee;
  --fg-muted: #c4b8c2;
  --fg-faint: #8d7f8a;
  --accent: #ff2f7e;
  --accent-2: #ff6fa8;
  --gold: #d9ac4f;
  --shadow-accent: rgba(255,47,126,0.28);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  --container: 1240px;
  --radius: 20px;
  --radius-sm: 10px;
}

*, *::before, *::after{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }

a{ color: inherit; text-decoration: none; }

ul{ list-style: none; margin: 0; padding: 0; }

h1, h2, h3{
  font-family: var(--font-display);
  margin: 0;
  font-weight: 600;
}

p{ margin: 0; }

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

/* film grain, fixed, never on scrolling content */
.grain{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Focus states — accessibility
   ========================================================================== */
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 320ms cubic-bezier(0.32,0.72,0,1), box-shadow 320ms cubic-bezier(0.32,0.72,0,1), background 320ms ease, color 320ms ease, border-color 320ms ease;
}
.btn:active{ transform: scale(0.97); }

.btn-primary{
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px -10px var(--shadow-accent);
}
.btn-primary:hover{
  background: var(--accent-2);
  box-shadow: 0 18px 38px -8px var(--shadow-accent);
  transform: translateY(-2px);
}
.btn-primary .btn-icon{
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 320ms cubic-bezier(0.32,0.72,0,1);
}
.btn-primary:hover .btn-icon{ transform: translate(3px,-2px); }

.btn-ghost{
  background: transparent;
  color: var(--fg);
  border-color: var(--line);
}
.btn-ghost:hover{
  border-color: var(--accent-2);
  color: var(--accent-2);
  transform: translateY(-2px);
}

.btn-nav{
  padding: 10px 20px;
  font-size: 13px;
}

/* ==========================================================================
   Nav
   ========================================================================== */
.nav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 24px;
  transition: padding 300ms ease, background 300ms ease, box-shadow 300ms ease;
}
.nav.is-scrolled{
  padding: 10px 24px;
  background: rgba(19,15,20,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner{
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img{ height: 32px; width: auto; }

.nav-links{
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--fg-muted);
}
.nav-links a{ position: relative; transition: color 250ms ease; }
.nav-links a::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--accent-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms cubic-bezier(0.32,0.72,0,1);
}
.nav-links a:hover{ color: var(--fg); }
.nav-links a:hover::after{ transform: scaleX(1); }

.nav-burger{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-burger span{
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--fg);
  margin: 0 auto;
  transition: transform 320ms cubic-bezier(0.32,0.72,0,1), opacity 200ms ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile{
  display: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 32px;
  background: rgba(19,15,20,0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 380ms cubic-bezier(0.32,0.72,0,1), visibility 0s linear 380ms;
}
.nav-mobile.is-open{
  z-index: 45;
  opacity: 1;
  visibility: visible;
  transition: opacity 380ms cubic-bezier(0.32,0.72,0,1), visibility 0s linear 0s;
}
.nav-mobile a{
  padding: 16px 4px;
  border-top: 1px solid var(--line);
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 28px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms cubic-bezier(0.16,1,0.3,1), transform 420ms cubic-bezier(0.16,1,0.3,1), color 250ms ease;
}
.nav-mobile.is-open a{ opacity: 1; transform: translateY(0); }
.nav-mobile.is-open a:nth-child(1){ transition-delay: 90ms; }
.nav-mobile.is-open a:nth-child(2){ transition-delay: 150ms; }
.nav-mobile.is-open a:nth-child(3){ transition-delay: 210ms; }
.nav-mobile.is-open a:nth-child(4){ transition-delay: 270ms; }
.nav-mobile a:hover{ color: var(--accent-2); }

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.eyebrow{
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin: 0 0 16px;
  font-weight: 500;
}

.section-head{
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-title{
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-sub{
  margin-top: 14px;
  color: var(--fg-muted);
  font-size: 16px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-glow{
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 720px;
  max-height: 720px;
  background: radial-gradient(circle, var(--shadow-accent) 0%, transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}
.hero-inner{
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-title{
  font-size: clamp(46px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.hero-title em{
  font-style: italic;
  color: var(--accent-2);
}
.hero-sub{
  margin: 24px 0 34px;
  max-width: 42ch;
  font-size: 18px;
  color: var(--fg-muted);
}
.hero-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual{
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-frame{
  position: relative;
  width: min(360px, 82vw);
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
  animation: floaty 6.5s ease-in-out infinite;
}
.hero-img{
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.hero-badge{
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 24px -6px var(--shadow-accent);
}
.hero-ring{
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.35;
}
.hero-ring-1{
  width: 420px; height: 420px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: spin-slow 60s linear infinite;
}
.hero-ring-2{
  width: 480px; height: 480px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-style: dashed;
  opacity: 0.18;
  animation: spin-slow 90s linear infinite reverse;
}

@keyframes floaty{
  0%, 100%{ transform: translateY(0) rotate(-1.2deg); }
  50%{ transform: translateY(-16px) rotate(1deg); }
}
@keyframes spin-slow{
  from{ transform: translate(-50%,-50%) rotate(0deg); }
  to{ transform: translate(-50%,-50%) rotate(360deg); }
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track{
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--fg-muted);
}
.marquee-track .dot{
  color: var(--gold);
  font-style: normal;
  font-size: 14px;
}
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation: none; }
}

/* ==========================================================================
   Shop / bento
   ========================================================================== */
.shop{
  padding: 120px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.bento{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 20px;
}
.card-feature{ grid-column: span 2; grid-row: span 2; }
.card-wide{ grid-column: span 2; }

.card{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 420ms cubic-bezier(0.32,0.72,0,1), box-shadow 420ms cubic-bezier(0.32,0.72,0,1), border-color 420ms ease;
}
.card:nth-child(odd):not(.card-feature){ transform: rotate(-0.6deg); }
.card:nth-child(even):not(.card-feature){ transform: rotate(0.6deg); }
.card:hover{
  transform: translateY(-8px) rotate(0deg) scale(1.015);
  border-color: rgba(255,111,168,0.4);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,47,126,0.12);
  z-index: 2;
}

.card-media{
  position: relative;
  flex: 1;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.card-feature .card-media{ aspect-ratio: auto; height: 100%; min-height: 280px; }

.card-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16,1,0.3,1), filter 500ms ease;
}
.card:hover .card-media img{
  transform: scale(1.08) rotate(0.6deg);
}

.card-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,15,20,0.85) 0%, rgba(19,15,20,0.05) 45%, transparent 70%);
}

.tag{
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 999px;
}
.tag-sale{
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px -6px var(--shadow-accent);
}

.card-body{
  position: relative;
  z-index: 2;
  padding: 16px 18px 20px;
  margin-top: -54px;
}
.card-feature .card-body{ margin-top: -70px; padding: 20px 24px 26px; }

.card-body h3{
  font-size: 18px;
  color: #fff;
}
.card-feature .card-body h3{ font-size: 24px; }

.card-cat{
  font-size: 12px;
  color: var(--fg-faint);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price{
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.price .was{
  color: var(--fg-faint);
  text-decoration: line-through;
  font-size: 13px;
}
.price .now{
  color: var(--accent-2);
  font-size: 19px;
  font-weight: 600;
  font-family: var(--font-display);
}

/* ==========================================================================
   About
   ========================================================================== */
.about{
  position: relative;
  padding: 130px 24px;
  overflow: hidden;
}
.about-bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(255,47,126,0.16), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(217,172,79,0.12), transparent 55%),
    var(--bg-alt);
}
.about-inner{
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.about-title{
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.about-body{
  margin: 26px auto 0;
  max-width: 60ch;
  color: var(--fg-muted);
  font-size: 17px;
}
.about-strip{
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}
.about-stat-num{
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--gold);
}
.about-stat-label{
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--fg-faint);
  line-height: 1.5;
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews{
  padding: 120px 0;
}
.reviews .section-head{ padding: 0 24px; }

.review-row{
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 24px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.review-row::-webkit-scrollbar{ height: 6px; }
.review-row::-webkit-scrollbar-thumb{ background: var(--surface-2); border-radius: 999px; }

.review-card{
  scroll-snap-align: start;
  flex: 0 0 min(340px, 82vw);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 350ms cubic-bezier(0.32,0.72,0,1), border-color 350ms ease;
}
.review-card:hover{
  transform: translateY(-6px);
  border-color: rgba(255,111,168,0.35);
}
.quote-mark{ color: var(--accent); opacity: 0.8; }

.review-text{
  font-size: 16px;
  color: var(--fg);
  line-height: 1.55;
  flex: 1;
}
.review-who{
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-who img{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}
.review-name{
  display: block;
  font-size: 14px;
  font-weight: 500;
}
.review-src{
  display: block;
  font-size: 12px;
  color: var(--fg-faint);
  margin-top: 2px;
}

/* ==========================================================================
   Visit
   ========================================================================== */
.visit{
  padding: 130px 24px 140px;
}
.visit-inner{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.visit-copy .section-title,
.visit-copy .section-sub{ text-align: left; }
.visit-copy .section-sub{ max-width: 46ch; }

.visit-list{
  margin: 32px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.visit-list li{
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--fg-muted);
  font-size: 15px;
}
.visit-list svg{ color: var(--gold); flex-shrink: 0; }

.visit-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.visit-social{
  display: flex;
  gap: 14px;
  margin-top: 32px;
}
.visit-social a{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  transition: transform 300ms cubic-bezier(0.32,0.72,0,1), color 300ms ease, border-color 300ms ease;
}
.visit-social a:hover{
  color: var(--accent-2);
  border-color: var(--accent-2);
  transform: translateY(-3px);
}

.visit-panel{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 36px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.visit-panel-glow{
  position: absolute;
  top: -30%;
  left: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, var(--shadow-accent), transparent 70%);
}
.visit-panel-eyebrow{
  position: relative;
  z-index: 1;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.visit-panel-line{
  position: relative;
  z-index: 1;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
  color: var(--fg);
}
.visit-panel-badge{
  position: relative;
  z-index: 1;
  margin-top: 26px;
  align-self: flex-start;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fg-faint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer{
  border-top: 1px solid var(--line);
  padding: 48px 24px 32px;
  background: var(--bg-alt);
}
.footer-inner{
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo img{ height: 28px; width: auto; opacity: 0.9; }
.footer-nav{
  display: flex;
  gap: 26px;
  font-size: 14px;
  color: var(--fg-muted);
}
.footer-nav a:hover{ color: var(--accent-2); }
.footer-social{ display: flex; gap: 14px; }
.footer-social a{
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-muted);
  transition: color 300ms ease, border-color 300ms ease;
}
.footer-social a:hover{ color: var(--accent-2); border-color: var(--accent-2); }

.footer-bottom{
  max-width: var(--container);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  color: var(--fg-faint);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal-up{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.16,1,0.3,1), transform 700ms cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--delay, 0ms);
}
.reveal-up.is-visible{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal-up{ opacity: 1; transform: none; transition: none; }
  .hero-frame, .hero-ring-1, .hero-ring-2{ animation: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px){
  .hero-inner{ grid-template-columns: 1fr; text-align: center; }
  .hero-copy{ order: 1; }
  .hero-visual{ order: 0; }
  .hero-actions{ justify-content: center; }
  .hero-sub{ margin-left: auto; margin-right: auto; }

  .about-strip{ grid-template-columns: 1fr; gap: 28px; text-align: center; }

  .visit-inner{ grid-template-columns: 1fr; }
  .visit-copy .section-title, .visit-copy .section-sub{ text-align: center; }
  .visit-copy .section-sub{ margin-left: auto; margin-right: auto; }
  .visit-list{ align-items: center; }
  .visit-list li{ justify-content: center; }
  .visit-actions{ justify-content: center; }
  .visit-social{ justify-content: center; }
}

@media (max-width: 860px){
  .nav-links{ display: none; }
  .btn-nav{ display: none; }
  .nav-burger{ display: flex; }
  .nav-mobile{ display: flex; }

  .bento{ grid-template-columns: repeat(2, 1fr); }
  .card-feature{ grid-column: span 2; grid-row: span 1; }
  .card-feature .card-media{ aspect-ratio: 3/4; min-height: 0; }
  .card-wide{ grid-column: span 1; }
}

@media (max-width: 640px){
  .hero{ padding: 110px 20px 64px; }
  .hero-title{ font-size: clamp(38px, 12vw, 56px); }
  .shop{ padding: 80px 20px; }
  .bento{ grid-template-columns: 1fr; gap: 16px; }
  .card-feature{ grid-column: span 1; }
  .card-wide{ grid-column: span 1; }
  .about{ padding: 90px 20px; }
  .reviews{ padding: 80px 0; }
  .visit{ padding: 90px 20px 100px; }
  .footer-inner{ justify-content: center; text-align: center; }
  .footer-bottom{ justify-content: center; text-align: center; }
}
