/* ============================================================
   Rawafed Al Enjaz – Production CSS (Light Engineering Theme)
   ============================================================ */

/* ==================== Custom Properties ==================== */
:root {
  /* Colors */
  --color-navy: #1E3A8A;
  --color-navy-dark: #152E6A;
  --color-bright-blue: #3B82F6;
  --color-bright-blue-dark: #2563EB;
  --color-bg-body: #F8FAFC;
  --color-bg-card: #FFFFFF;
  --color-text-heading: #0F172A;
  --color-text-body: #64748B;
  --color-text-muted: #94A3B8;
  --color-border: #E2E8F0;
  --color-border-focus: #3B82F6;
  --color-glass-bg: rgba(255, 255, 255, 0.85);
  --color-glass-border: rgba(255, 255, 255, 0.9);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.15);

  /* Typography */
  --font-ar: 'Cairo', sans-serif;
  --font-en: 'Outfit', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Radii */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Nav */
  --nav-height: 80px;
}

/* ==================== Reset & Base ==================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-ar);
  background-color: var(--color-bg-body);
  color: var(--color-text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: font-family var(--transition);
}

body[lang="en"] {
  font-family: var(--font-en);
}

/* ==================== Typography ==================== */
h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--color-text-heading);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--color-text-heading);
  line-height: 1.3;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-heading);
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-body);
}

a {
  color: var(--color-bright-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-bright-blue-dark);
}

/* ==================== Utility ==================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-hidden {
  opacity: 0;
  transform: translateY(30px);
}

/* ==================== Floating Buttons ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px; /* RTL: left is fine for fixed buttons, but use logical? */
  background: #25D366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  z-index: 997;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(30, 58, 138, 0.1);
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 997;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--color-navy);
  color: #fff;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* ==================== Navigation ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--color-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-glass-border);
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--color-navy);
  flex-shrink: 0;
}

.logo img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 6px;
  border: 2px solid var(--color-border);
  object-fit: contain;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.logo:hover img {
  transform: scale(1.08);
  border-color: var(--color-navy);
  box-shadow: var(--shadow-md);
}

.logo-text {
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--color-navy);
}

.logo-text span {
  display: block;
  font-size: 0.68rem;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 1.2px;
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--color-text-body);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 16px;
  transition: var(--transition);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  white-space: nowrap;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--color-bright-blue);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-navy);
  background: rgba(59, 130, 246, 0.05);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
  padding: 9px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.88rem;
  font-family: inherit;
  transition: var(--transition);
  white-space: nowrap;
}

.lang-btn:hover {
  background: var(--color-navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.lang-btn i {
  font-size: 0.82rem;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--color-navy);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 8px;
  transition: var(--transition);
  border-radius: 6px;
}

.hamburger:hover {
  color: var(--color-bright-blue);
  background: rgba(30, 58, 138, 0.05);
}

/* ==================== Mobile Menu ==================== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0; /* RTL: slide from right */
  bottom: 0;
  width: 280px;
  background: #fff;
  z-index: 999;
  padding: 90px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 2px solid var(--color-border);
  box-shadow: var(--shadow-xl);
}

[dir="ltr"] .mobile-menu {
  left: 0;
  right: auto;
  transform: translateX(-100%);
  border-left: none;
  border-right: 2px solid var(--color-border);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  padding: 13px 18px;
  color: var(--color-text-body);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: rgba(59, 130, 246, 0.08);
  color: var(--color-navy);
}

.mobile-menu__close {
  position: absolute;
  top: 22px;
  right: 18px; /* RTL: close button on right? Typically on the side where menu opens. Since menu is from right, close button should be on the right inside. We'll keep it. */
  background: none;
  border: none;
  color: var(--color-navy);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition-fast);
}

.mobile-menu__close:hover {
  color: var(--color-bright-blue);
  background: rgba(0, 0, 0, 0.05);
}

/* ==================== Hero Section ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-bg-body);
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(30, 58, 138, 0.02) 2px,
      rgba(30, 58, 138, 0.02) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(30, 58, 138, 0.02) 2px,
      rgba(30, 58, 138, 0.02) 4px
    );
  z-index: 2;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-bright-blue), transparent);
  z-index: 3;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  padding: 40px 24px;
}

.hero__logo-frame {
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 18px;
  position: relative;
}

.hero__logo-frame::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(30, 58, 138, 0.3);
  animation: rotateRing 10s linear infinite;
}

@keyframes rotateRing {
  to { transform: rotate(360deg); }
}

.hero__logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  margin-bottom: 18px;
}

.hero-content .highlight {
  color: var(--color-bright-blue);
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--color-text-body);
  max-width: 700px;
  margin: 0 auto 32px;
  font-weight: 500;
}

.btn-cta {
  display: inline-block;
  padding: 16px 44px;
  background: var(--color-bright-blue);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  border: 2px solid var(--color-bright-blue);
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-md);
}

.btn-cta:hover {
  background: var(--color-navy);
  border-color: var(--color-navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  color: #fff;
}

/* ==================== Sections General ==================== */
section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-bright-blue);
  margin: 14px auto 0;
  border-radius: 3px;
}

.section-header p {
  color: var(--color-text-body);
  margin-top: 10px;
  font-size: 1.05rem;
}

/* ==================== Products Section ==================== */
.products {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.product-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid transparent;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-bottom-color: var(--color-bright-blue);
}

.product-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(30, 58, 138, 0.06);
  color: var(--color-navy);
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.product-card:hover .product-card__icon {
  background: var(--color-navy);
  color: #fff;
  transform: scale(1.08);
}

.product-card__specs {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  border: 1px solid var(--color-border);
}

.product-card:hover .product-card__specs {
  opacity: 1;
  pointer-events: auto;
}

.product-card__specs span {
  display: block;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 0.9rem;
  margin: 6px 0;
}

.product-card__specs i {
  color: var(--color-bright-blue);
  margin: 0 6px;
  font-size: 0.7rem;
}

.product-card__title {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-text-heading);
  margin-bottom: 10px;
}

.product-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-body);
  line-height: 1.65;
}

/* ==================== About Section ==================== */
.about {
  background: var(--color-bg-body);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-text h2 {
  margin-bottom: 28px;
}

.about-text h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-bright-blue);
  margin-top: 14px;
  border-radius: 3px;
}

.about-text p {
  margin-bottom: 22px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.stats {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.stat-item {
  background: #fff;
  padding: 20px 24px;
  border-radius: var(--radius);
  border-right: 3px solid var(--color-bright-blue); /* RTL: right border */
  min-width: 130px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

[dir="ltr"] .stat-item {
  border-right: none;
  border-left: 3px solid var(--color-bright-blue);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-navy);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--color-navy);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 6px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-image-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  aspect-ratio: 4 / 3;
}

.about-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==================== Clients Section ==================== */
.clients {
  background: #fff;
  text-align: center;
  position: relative;
}

.clients .section-header h2 {
  color: var(--color-text-heading);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.client-box {
  padding: 26px 18px;
  background: var(--color-bg-body);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  font-weight: 700;
  color: var(--color-text-body);
  font-size: 0.95rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.client-box:hover {
  transform: translateY(-5px);
  border-color: var(--color-bright-blue);
  color: var(--color-navy);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

/* ==================== Contact Section ==================== */
.contact {
  background: var(--color-bg-body);
  position: relative;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.contact-info h2 {
  margin-bottom: 18px;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.contact-detail-box {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--color-text-heading);
}

.contact-detail-row i {
  color: var(--color-bright-blue);
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.contact-detail-box iframe {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  border: none;
  margin-top: 16px;
  filter: grayscale(20%);
}

.contact-form {
  background: #fff;
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  margin-bottom: 18px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--color-bg-body);
  color: var(--color-text-heading);
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-bright-blue);
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.contact-form textarea {
  min-height: 130px;
  max-height: 300px;
}

.contact-form button {
  width: 100%;
  padding: 16px;
  background: var(--color-bright-blue);
  color: #fff;
  border: 2px solid var(--color-bright-blue);
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
  font-size: 1.05rem;
  font-family: inherit;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.contact-form button:hover {
  background: var(--color-navy);
  border-color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.form-success-msg {
  display: none;
  padding: 14px 18px;
  background: rgba(59, 130, 246, 0.05);
  color: var(--color-navy);
  border-radius: var(--radius);
  font-weight: 600;
  margin-top: 14px;
  text-align: center;
  border: 1px solid var(--color-bright-blue);
}

.form-success-msg.visible {
  display: block;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==================== Footer ==================== */
footer {
  background: #fff;
  padding: 45px 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.footer-email {
  color: var(--color-bright-blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  transition: var(--transition-fast);
  display: inline-block;
  margin-bottom: 16px;
}

.footer-email:hover {
  color: var(--color-navy);
}

.footer-email i {
  margin: 0 6px;
}

footer p {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.footer-tagline {
  font-weight: 600;
  color: var(--color-navy);
}

/* ==================== Responsive ==================== */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-image-container {
    order: -1;
    aspect-ratio: 16 / 9;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .lang-btn {
    display: flex;
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  .lang-btn span {
    display: inline;
  }
  .hamburger {
    display: block;
  }
  .hero__logo-frame {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 600px) {
  :root {
    --nav-height: 66px;
  }
  .logo img {
    width: 44px;
    height: 44px;
  }
  .logo-text {
    font-size: 0.9rem;
  }
  .logo-text span {
    font-size: 0.6rem;
  }
  .lang-btn {
    padding: 7px 10px;
    font-size: 0.7rem;
    gap: 4px;
  }
  .lang-btn span {
    display: none;
  }
  .hero__logo-frame {
    width: 100px;
    height: 100px;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .contact-form {
    padding: 28px 18px;
  }
  .whatsapp-float {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
    bottom: 16px;
    left: 16px;
  }
  .back-to-top {
    width: 38px;
    height: 38px;
    bottom: 16px;
    right: 16px;
    font-size: 0.95rem;
  }
}