/* ═══════════════════════════════════════════
   ESHIEV ART STUDIO — Monochrome Bold
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Nunito:wght@400;600;700&display=swap');

:root {
  --bg: #ffffff;
  --surface: #f2f2f2;
  --accent: #e63946;
  --accent-hover: #ff4d5a;
  --text: #0a0a0a;
  --text-muted: #555555;
  --border: #d0d0d0;
  --accent-rgb: 230, 57, 70;
  --bg-rgb: 255, 255, 255;
  --heading-font: 'Oswald', sans-serif;
  --body-font: 'Nunito', sans-serif;
  --heading-weight: 700;
  --body-weight: 400;
  --radius: 0px;
  --radius-sm: 0px;
  --shadow: 0 4px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body-font);
  font-weight: var(--body-weight);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ── TEXT SAFETY ── */
.service-card,
.team-card,
.hero h1,
.section-header h2,
.section-header p,
.service-card h3,
.team-card h3,
.team-card p {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ── PRELOADER ── */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  gap: 24px;
}

.preloader-logo {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--bg);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--text);
  transition: var(--transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo span {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  transition: var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.burger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5.5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5.5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: right var(--transition);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--accent);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 24px 80px;
  background: var(--text);
  color: var(--bg);
  overflow: hidden;
}

.hero::before {
  content: 'ESHIEV';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--heading-font);
  font-size: 20vw;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 8px 16px;
  width: fit-content;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.hero h1 span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat span:first-child {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hero-stat span:last-child {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.1);
  filter: grayscale(40%);
}

.hero-photo::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  z-index: -1;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 36px;
  min-height: 52px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--bg);
  border-color: rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── SECTIONS ── */
.section {
  padding: 100px 24px;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
  position: relative;
  padding-left: 56px;
}

.section-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 40px;
  height: 6px;
  background: var(--accent);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 12px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── DIAGONAL SHAPES DECOR ── */
.section--shapes {
  position: relative;
}

.section--shapes::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(var(--accent-rgb), 0.08) 40px,
    rgba(var(--accent-rgb), 0.08) 46px
  );
  pointer-events: none;
  z-index: 0;
}

.section--shapes > * {
  position: relative;
  z-index: 1;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.service-card {
  border: 2px solid var(--text);
  padding: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.service-card:hover {
  border-color: var(--accent);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--transition), transform var(--transition);
}

.service-card:hover .service-card-img img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.service-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.service-card-number {
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.service-card h3 {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 24px;
  min-height: 44px;
  font-size: 0.8rem;
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.team-card {
  border: 2px solid var(--text);
  transition: var(--transition);
  background: var(--bg);
}

.team-card:hover {
  border-color: var(--accent);
}

.team-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--transition);
}

.team-card:hover .team-card-img img {
  filter: grayscale(0%);
}

.team-card-body {
  padding: 20px 24px 24px;
}

.team-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.testimonial-card {
  border: 2px solid var(--text);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  background: var(--bg);
}

.testimonial-card:hover {
  border-color: var(--accent);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--heading-font);
  font-size: 5rem;
  color: var(--accent);
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
  opacity: 0.2;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  position: relative;
  z-index: 1;
}

/* ── UTP / FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature-card {
  border: 2px solid var(--text);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  background: var(--bg);
}

.feature-card:hover {
  border-color: var(--accent);
}

.feature-card-number {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--text);
  color: var(--bg);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'ЗАПИСЬ';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--heading-font);
  font-size: 15vw;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-section .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

.cta-section .btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.gallery-item {
  border: 2px solid var(--text);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  border-color: var(--accent);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--transition), transform var(--transition);
}

.gallery-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
}

/* ── CONTACT LIST ── */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--heading-font);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bg);
  transition: color var(--transition);
}

.contact-list a:hover {
  color: var(--accent);
}

/* ── FOOTER ── */
.footer {
  background: var(--text);
  color: var(--bg);
  padding: 60px 24px 32px;
  border-top: 2px solid rgba(255,255,255,0.1);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer h4 {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  color: var(--accent);
}

.footer a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  transition: color var(--transition);
}

.footer a:hover {
  color: var(--accent);
}

.footer p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ── STICKY BOTTOM BAR ── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--accent);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 900;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar a {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 10px 24px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}

.sticky-bar a:hover {
  background: rgba(255,255,255,0.15);
}

/* ── SERVICES PAGE FULL LIST ── */
.service-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 2px solid var(--text);
  margin-bottom: -2px;
  transition: var(--transition);
}

.service-full:hover {
  border-color: var(--accent);
}

.service-full:nth-child(even) {
  direction: rtl;
}

.service-full:nth-child(even) > * {
  direction: ltr;
}

.service-full-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
}

.service-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--transition);
}

.service-full:hover .service-full-img img {
  filter: grayscale(0%);
}

.service-full-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.service-full-number {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.service-full h3 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  overflow-wrap: break-word;
  word-break: break-word;
}

.service-full p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── PAGE HERO (services, gallery) ── */
.page-hero {
  padding: 140px 24px 80px;
  background: var(--text);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: attr(data-bg-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--heading-font);
  font-size: 15vw;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  max-width: 1200px;
  margin: 16px auto 0;
  position: relative;
  z-index: 1;
}

/* ── COUNTERS ── */
.counters-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

/* ── MAP ── */
.map-container {
  width: 100%;
  border: 2px solid var(--text);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  filter: grayscale(100%);
  transition: filter var(--transition);
}

.map-container:hover iframe {
  filter: grayscale(0%);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-photo::after {
    display: none;
  }

  .hero-cta {
    justify-content: center;
  }

  .section-header {
    padding-left: 56px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-full {
    grid-template-columns: 1fr;
  }

  .service-full:nth-child(even) {
    direction: ltr;
  }

  .service-full-img {
    min-height: 220px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .service-card-number,
  .service-full-number {
    font-size: 2.5rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .sticky-bar {
    flex-direction: column;
    gap: 8px;
    padding: 10px 16px;
  }

  .sticky-bar a {
    width: 100%;
    justify-content: center;
  }
}

/* Body padding for sticky bar */
body {
  padding-bottom: 70px;
}
