/* ===== MODULAR BOOTH MANUFACTURER TEMPLATE - MAIN CSS ===== */

/* Bootstrap 5 CDN Integration */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css');

/* FontAwesome Icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* Google Fonts - Professional & Modern */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES - COLOR PALETTE ===== */
:root {
  /* Primary Colors */
  --primary-color: #47a4f2;
  --primary-light: #91cbff;
  --primary-dark: #3780ed;
  
  --secondary-color: #f6980e;
  --secondary-light: #ffb326;
  --secondary-dark: #da8400;
  
  --accent-color: #17b974;
  --accent-light: #6ecfa8;
  --accent-dark: #056749;
  
  --neutral-color: #55596d;
  --neutral-light: #d1d2d2;
  --neutral-dark: #232f3a;
  
  --complement-color: #8862e1;
  --complement-light: #d0c0ff;
  --complement-dark: #923fe6;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--accent-color) 0%, var(--complement-color) 100%);
  --gradient-neutral: linear-gradient(135deg, var(--neutral-light) 0%, var(--neutral-color) 100%);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  --font-size-base: 0.95rem;
  --font-size-sm: 0.85rem;
  --font-size-lg: 1.1rem;
  
  /* 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);
  --shadow-lg: 0 10px 15px -6px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-base: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

/* ===== GLOBAL STYLES ===== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.86rem; }
h3 { font-size: 1.58rem; }
h4 { font-size: 1.32rem; }
h5 { font-size: 1.16rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

/* ===== HEADER & NAVIGATION ===== */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--neutral-light);
  transition: var(--transition-base);
  padding: 0.75rem 0;
}

.navbar-brand {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.42rem;
  color: var(--primary-color);
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--neutral-dark);
  margin: 0 0.5rem;
  transition: var(--transition-fast);
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: var(--gradient-primary);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-primary);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
    padding-top: 275px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.69rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.41rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-description {
  font-size: var(--font-size-lg);
  margin-bottom: 2.63rem;
  opacity: 0.8;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.61rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--font-size-sm);
}

.section-description {
  text-align: center;
  color: var(--neutral-color);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: var(--font-size-lg);
}

/* ===== ABOUT SECTION ===== */
.about-feature {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 1rem;
  background: white;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.about-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-item {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border: 1px solid var(--neutral-light);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1.60rem;
}

.service-name {
  font-size: 1.31rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.service-description {
  color: var(--neutral-color);
  margin-bottom: 1.67rem;
  flex-grow: 1;
}

.service-features {
  margin-bottom: 1.57rem;
}

.service-features ul {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--neutral-color);
}

.service-features li::before {
  content: '“';
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

.service-price {
  font-size: 1.62rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  padding: 1rem;
  background: var(--primary-light);
  border-radius: 0.5rem;
  margin-top: auto;
}

/* ===== TEAM SECTION ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-light);
}

.team-name {
  font-size: 1.34rem;
  font-weight: 600;
  margin-bottom: 0.70rem;
  color: var(--neutral-dark);
}

.team-role {
  color: var(--primary-color);
  font-weight: 500;
}

/* ===== TESTIMONIALS / REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border-left: 4px solid var(--accent-color);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.58rem;
  color: var(--neutral-color);
  line-height: 1.7;
}

.review-author {
  font-weight: 600;
  color: var(--neutral-dark);
}

.review-stars {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* ===== FAQ SECTION ===== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-light);
}

.faq-question {
  padding: 1.5rem;
  font-weight: 600;
  color: var(--neutral-dark);
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
}

.faq-question:hover {
  background: var(--neutral-light);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  font-size: 1.30rem;
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--neutral-color);
  line-height: 1.7;
}

/* ===== GALLERY SECTION ===== */
.gallery-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-base);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: white;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.74rem;
}

.form-label {
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.69rem;
  display: block;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--neutral-light);
  border-radius: 0.5rem;
  font-size: var(--font-size-base);
  transition: var(--transition-fast);
  background: white;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(54, 112, 255, 0.10);
}

.btn-submit {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: var(--font-size-lg);
  transition: var(--transition-base);
  cursor: pointer;
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== CONTACT INFO ===== */
.contact-info {
  background: var(--gradient-secondary);
  color: white;
  padding: 3rem;
  border-radius: 1rem;
  text-align: center;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: var(--font-size-lg);
}

.contact-info i {
  margin-right: 0.5rem;
  width: 20px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--neutral-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.14rem;
}

.footer-section p,
.footer-section a {
  color: var(--neutral-light);
  text-decoration: none;
  line-height: 1.8;
}

.footer-section a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--neutral-color);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom small {
  color: var(--neutral-light);
  font-size: var(--font-size-sm);
}

/* ===== BLOG SECTION ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-item {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.23rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.blog-excerpt {
  color: var(--neutral-color);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.blog-link:hover {
  text-decoration: underline;
}

/* ===== PRICE PLAN SECTION ===== */
.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.priceplan-item {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  text-align: center;
  border: 2px solid transparent;
}

.priceplan-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.priceplan-item.featured {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, white 0%, var(--accent-light) 100%);
}

/* ===== UTILITIES ===== */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-pattern {
  background-image: radial-gradient(circle at 25% 25%, var(--primary-light) 0%, transparent 50%),
                    radial-gradient(circle at 75% 75%, var(--accent-light) 0%, transparent 50%);
}

.border-gradient {
  position: relative;
}

.border-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: var(--gradient-primary);
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.34rem;
  }
  
  .hero-subtitle {
    font-size: 1.15rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  h1 { font-size: 1.82rem; }
  h2 { font-size: 1.58rem; }
  h3 { font-size: 1.33rem; }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.94rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}

/* ===== MISSING STYLES FOR JAVASCRIPT FUNCTIONALITY ===== */

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--neutral-dark);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  z-index: 9999;
  transition: var(--transition-fast);
}

.skip-link:focus {
  top: 0;
  color: white;
  text-decoration: none;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.24rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
  z-index: 1000;
  display: none;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.back-to-top:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Navbar Scrolled State */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

/* Bootstrap Navbar Toggler Icon */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  font-size: 1.31rem;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(35, 112, 222, 0.25);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

/* Notification System */
.notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: white;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--accent-color);
  max-width: 400px;
  z-index: 9999;
  transform: translateX(120%);
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.notification.show {
  transform: translateX(0);
}

.notification-success {
  border-left-color: var(--accent-color);
}

.notification-error {
  border-left-color: #e53653;
}

.notification-info {
  border-left-color: var(--primary-color);
}

.notification i {
  font-size: 1.22rem;
  color: var(--accent-color);
}

.notification-error i {
  color: #f03848;
}

.notification-info i {
  color: var(--primary-color);
}

.notification-close {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--neutral-color);
  margin-left: auto;
  padding: 0;
  transition: var(--transition-fast);
}

.notification-close:hover {
  color: var(--neutral-dark);
}

/* FAQ Active State */
.faq-item.active .faq-question {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.faq-item.active .faq-question::after {
  content: 'âˆ’';
  transform: rotate(180deg);
}

/* JavaScript Loaded State */
.js-loaded .loading-spinner {
  display: none;
}

.js-loaded .fade-in-on-load {
  opacity: 1;
  transform: translateY(0);
}

/* Breadcrumb Styling */
.breadcrumb {
  background: transparent;
  padding: 0.5rem 0;
  margin: 0;
  font-size: var(--font-size-sm);
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
}

.breadcrumb-item img {
  opacity: 0.7;
  transition: var(--transition-fast);
}

.breadcrumb-item:hover img {
  opacity: 1;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width 0.1s ease;
  z-index: 9999;
}

/* Loading States */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form Validation States */
.form-control.is-invalid {
  border-color: #d84267;
  box-shadow: 0 0 0 0.2rem rgba(235, 44, 64, 0.25);
}

.form-control.is-valid {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(35, 193, 156, 0.25);
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.40rem;
  font-size: 0.875em;
  color: #c93751;
}

/* Additional Mobile Optimizations */
@media (max-width: 767.98px) {
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .notification {
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
