/* ==========================================================================
   Platemen Steel - Brutalist Iron Plate / Industrial Foundry Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;900&family=Roboto+Mono:wght@300;400;500;700&display=swap');

:root {
  /* Colors */
  --cast-iron: #111827;
  --steel-charcoal: #1F2937;
  --concrete-grey: #9CA3AF;
  --concrete-dark: #374151;
  --concrete-light: #F3F4F6;
  --rust-red: #B91C1C;
  --rust-hover: #991B1B;
  --steel-shine: #4B5563;
  --bg-dark: #0B0F17;
  --text-light: #F9FAFB;
  --text-dark: #1F2937;
  --gold-tint: #D97706;
  
  /* Fonts */
  --font-heading: 'Roboto Mono', monospace;
  --font-body: 'Montserrat', sans-serif;
  
  /* Transitions */
  --transition-rigid: 0.15s cubic-bezier(0.19, 1, 0.22, 1);
  --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  background-image: 
    radial-gradient(var(--steel-charcoal) 1px, transparent 0),
    radial-gradient(var(--steel-charcoal) 1px, transparent 0);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.05em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-rigid);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: var(--cast-iron);
  border-left: 3px solid var(--steel-charcoal);
}
::-webkit-scrollbar-thumb {
  background: var(--rust-red);
  border: 2px solid var(--cast-iron);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--rust-hover);
}

/* Structural Components */

/* Layout Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 4px solid var(--steel-charcoal);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 35px;
  height: 35px;
  background: var(--rust-red);
  border: 3px solid var(--text-light);
  position: relative;
  transform: rotate(45deg);
}

.logo-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--text-light);
  border-radius: 50%;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo-text span {
  color: var(--rust-red);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--rust-red);
  transition: var(--transition-rigid);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a.active {
  color: var(--rust-red);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  margin: 5px 0;
  transition: var(--transition-rigid);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 40%, rgba(27, 38, 59, 0.4)), url('https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&q=80&w=1920') no-repeat center center;
  background-size: cover;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-left: 5%;
}

.hero-stamp {
  display: inline-block;
  font-family: var(--font-heading);
  color: var(--rust-red);
  border: 2px solid var(--rust-red);
  padding: 0.25rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  transform: rotate(-2deg);
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 0px var(--cast-iron);
}

.hero h1 span {
  display: block;
  color: var(--concrete-grey);
}

.hero p {
  font-size: 1.25rem;
  color: var(--concrete-grey);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* Premium Buttons - Industrial Style */
.btn-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem 2rem;
  cursor: pointer;
  position: relative;
  transition: var(--transition-rigid);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.btn-primary {
  background-color: var(--rust-red);
  color: var(--text-light);
  border: 3px solid var(--rust-red);
  box-shadow: 4px 4px 0px var(--text-light);
}

.btn-primary:hover {
  background-color: var(--cast-iron);
  border-color: var(--rust-red);
  color: var(--rust-red);
  box-shadow: 0px 0px 0px var(--text-light);
  transform: translate(4px, 4px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 3px solid var(--steel-shine);
  box-shadow: 4px 4px 0px var(--steel-shine);
}

.btn-secondary:hover {
  background-color: var(--steel-shine);
  box-shadow: 0px 0px 0px var(--steel-shine);
  transform: translate(4px, 4px);
}

/* Riveted Iron Plate & Concrete Layouts */
.section-title {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.section-title h2 {
  font-size: 3rem;
  display: inline-block;
  background-color: var(--bg-dark);
  padding: 0 2rem;
  z-index: 2;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    -45deg,
    var(--steel-charcoal),
    var(--steel-charcoal) 10px,
    var(--rust-red) 10px,
    var(--rust-red) 20px
  );
  z-index: 1;
}

.plate-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  padding: 2rem;
}

/* Iron Plate Element (Brutalist style with rivets) */
.iron-plate {
  background-color: var(--steel-charcoal);
  border: 6px solid var(--cast-iron);
  padding: 3rem 2rem;
  position: relative;
  box-shadow: 10px 10px 0px var(--cast-iron);
  transition: var(--transition-smooth);
}

.iron-plate:hover {
  transform: translateY(-5px);
  box-shadow: 15px 15px 0px var(--cast-iron);
}

/* Metallic Rivets in corners */
.iron-plate::before,
.iron-plate::after,
.iron-plate-rivets::before,
.iron-plate-rivets::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--concrete-grey);
  border-radius: 50%;
  box-shadow: inset -2px -2px 3px rgba(0,0,0,0.6), 1px 1px 2px rgba(255,255,255,0.2);
}

.iron-plate::before { top: 10px; left: 10px; }
.iron-plate::after { top: 10px; right: 10px; }

.iron-plate-rivets {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.iron-plate-rivets::before { bottom: 10px; left: 10px; }
.iron-plate-rivets::after { bottom: 10px; right: 10px; }

/* Sandblasted Concrete Block Elements */
.concrete-block {
  background-color: var(--concrete-dark);
  border: 4px solid var(--concrete-grey);
  padding: 2.5rem;
  position: relative;
  background-image: radial-gradient(rgba(0,0,0,0.15) 1px, transparent 0);
  background-size: 8px 8px;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.3);
}

.concrete-block h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  border-bottom: 2px dashed var(--concrete-grey);
  padding-bottom: 0.5rem;
}

/* Feature grid on homepage */
.features-section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Testimonials section */
.testimonials-section {
  background-color: var(--cast-iron);
  border-top: 8px solid var(--steel-charcoal);
  border-bottom: 8px solid var(--steel-charcoal);
  padding: 8rem 2rem;
  position: relative;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-dark);
  border-left: 6px solid var(--rust-red);
  padding: 2rem;
  position: relative;
}

.testimonial-card p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--concrete-light);
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--rust-red);
}

.testimonial-meta {
  font-size: 0.8rem;
  color: var(--concrete-grey);
}

/* Footer Section */
footer {
  background-color: var(--cast-iron);
  border-top: 8px solid var(--steel-charcoal);
  padding: 5rem 2rem 2rem;
  position: relative;
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.footer-info p {
  color: var(--concrete-grey);
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--rust-red);
  position: relative;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--concrete-grey);
}

.footer-links a:hover {
  color: var(--text-light);
  padding-left: 5px;
}

.footer-newsletter input[type="email"] {
  width: 100%;
  padding: 0.85rem;
  background-color: var(--steel-charcoal);
  border: 3px solid var(--concrete-grey);
  color: var(--text-light);
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  outline: none;
}

.footer-newsletter input[type="email"]:focus {
  border-color: var(--rust-red);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 2px solid var(--steel-charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--concrete-grey);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a:hover {
  color: var(--rust-red);
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 420px;
  background-color: var(--cast-iron);
  border: 4px solid var(--rust-red);
  box-shadow: 8px 8px 0px rgba(0,0,0,0.5);
  padding: 2rem;
  z-index: 1000;
  display: none;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s ease;
}

.cookie-consent.show {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--rust-red);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-consent p {
  font-size: 0.9rem;
  color: var(--concrete-grey);
  margin-bottom: 1.5rem;
}

.cookie-consent-actions {
  display: flex;
  gap: 1rem;
}

/* Animation Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* About Us Layout specific classes */
.about-hero {
  padding: 10rem 2rem 6rem;
  background-color: var(--cast-iron);
  border-bottom: 8px solid var(--steel-charcoal);
  text-align: center;
}

.about-hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 6rem auto;
  padding: 0 2rem;
  align-items: center;
}

.about-image {
  border: 8px solid var(--steel-charcoal);
  box-shadow: 15px 15px 0px var(--cast-iron);
  position: relative;
  overflow: hidden;
  height: 500px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(120%);
  transition: var(--transition-smooth);
}

.about-image:hover img {
  filter: grayscale(0%) contrast(100%);
  transform: scale(1.05);
}

/* Products Layout specific classes */
.products-filter-container {
  max-width: 1400px;
  margin: 4rem auto 2rem;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-heading);
  background-color: var(--steel-charcoal);
  border: 3px solid var(--concrete-dark);
  color: var(--concrete-grey);
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  transition: var(--transition-rigid);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--rust-red);
  color: var(--text-light);
  border-color: var(--rust-red);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto 6rem;
  padding: 0 2rem;
}

.product-card {
  background-color: var(--steel-charcoal);
  border: 4px solid var(--cast-iron);
  box-shadow: 8px 8px 0px var(--cast-iron);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 14px 14px 0px var(--cast-iron);
}

.product-img-wrapper {
  position: relative;
  height: 300px;
  background-color: var(--cast-iron);
  overflow: hidden;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--rust-red);
  color: var(--text-light);
  font-family: var(--font-heading);
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.product-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.product-spec {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--concrete-grey);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--concrete-dark);
  padding-bottom: 0.5rem;
}

.product-price {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Contact Us Layout specific classes */
.contact-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  max-width: 1400px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.contact-form-container {
  background-color: var(--steel-charcoal);
  border: 6px solid var(--cast-iron);
  box-shadow: 12px 12px 0px var(--cast-iron);
  padding: 3rem;
  position: relative;
}

.form-group {
  position: relative;
  margin-bottom: 2.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 3px solid var(--concrete-dark);
  color: var(--text-light);
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition-rigid);
}

.form-input:focus {
  border-bottom-color: var(--rust-red);
}

.form-label {
  position: absolute;
  top: 1rem;
  left: 0;
  color: var(--concrete-grey);
  font-family: var(--font-heading);
  font-weight: 500;
  text-transform: uppercase;
  pointer-events: none;
  transition: var(--transition-rigid);
}

/* Floating label styling */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -1.2rem;
  font-size: 0.8rem;
  color: var(--rust-red);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  background-color: var(--steel-charcoal);
  border: 3px solid var(--rust-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  color: var(--rust-red);
  font-weight: 900;
  flex-shrink: 0;
}

.contact-method-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-method-info p, 
.contact-method-info a {
  color: var(--concrete-grey);
}

.contact-method-info a:hover {
  color: var(--text-light);
}

/* Custom Iron Plate Map Visual (Non-interactive fallback stylized Map) */
.iron-map-container {
  border: 6px solid var(--steel-charcoal);
  background-color: var(--cast-iron);
  height: 350px;
  position: relative;
  overflow: hidden;
  box-shadow: 10px 10px 0px rgba(0,0,0,0.5);
  margin-top: 2rem;
}

.iron-map-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: 30px 30px;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
}

.iron-map-shape {
  position: absolute;
  background-color: var(--steel-charcoal);
  border: 2px solid var(--concrete-dark);
}

.shape-1 { width: 120px; height: 180px; top: 40px; left: 50px; }
.shape-2 { width: 160px; height: 100px; top: 150px; left: 220px; }
.shape-3 { width: 100px; height: 120px; top: 80px; right: 80px; }

.map-marker {
  position: absolute;
  top: 140px;
  left: 280px;
  width: 20px;
  height: 20px;
  background-color: var(--rust-red);
  border: 3px solid var(--text-light);
  transform: rotate(45deg);
  animation: pulse-marker 2s infinite;
  z-index: 10;
}

.map-marker-label {
  position: absolute;
  top: 110px;
  left: 220px;
  background-color: var(--cast-iron);
  border: 2px solid var(--rust-red);
  padding: 0.25rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  z-index: 11;
}

@keyframes pulse-marker {
  0% { transform: rotate(45deg) scale(1); box-shadow: 0 0 0 0 rgba(185, 28, 28, 0.7); }
  70% { transform: rotate(45deg) scale(1.2); box-shadow: 0 0 0 10px rgba(185, 28, 28, 0); }
  100% { transform: rotate(45deg) scale(1); box-shadow: 0 0 0 0 rgba(185, 28, 28, 0); }
}

/* Legal Pages Specific Styling */
.legal-container {
  max-width: 900px;
  margin: 10rem auto 6rem;
  padding: 0 2rem;
}

.legal-box {
  background-color: var(--steel-charcoal);
  border: 6px solid var(--cast-iron);
  box-shadow: 12px 12px 0px var(--cast-iron);
  padding: 4rem;
}

.legal-box h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 4px solid var(--rust-red);
  padding-bottom: 1rem;
}

.legal-box h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--rust-red);
}

.legal-box p {
  color: var(--concrete-light);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.legal-box ul {
  list-style-type: square;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  color: var(--concrete-light);
}

.legal-box li {
  margin-bottom: 0.5rem;
}

.legal-meta {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--concrete-grey);
  margin-bottom: 2rem;
}

/* Media Queries */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  .nav-container {
    padding: 1rem;
  }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--cast-iron);
    border-bottom: 4px solid var(--steel-charcoal);
    padding: 2rem;
  }
  nav.active {
    display: block;
  }
  nav ul {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .mobile-toggle {
    display: block;
  }
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image {
    height: 350px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .legal-box {
    padding: 2rem;
  }
}
