/* C:\Users\Abrofood\.gemini\antigravity\scratch\abrofood\assets\css\style.css */

/* ==========================================================================
   CSS Variables & Resets
   ========================================================================== */
:root {
  --primary-color: #e63946;  /* Red for Abrofood */
  --primary-hover: #b71c1c; /* Keeping original hover for now, or should it be derived from new primary? */
  --secondary-color: #f1faee;
  --text-dark: #1f2937; /* Renamed from --text-color */
  --text-light: #6b7280; /* Renamed from --text-muted */
  --bg-color: #ffffff;
  --bg-light: #f3f4f6;
  --white: #ffffff; /* Keeping original --white */
  --border-color: #e5e7eb;
  --success: #10b981; /* Keeping original --success */
  --warning: #f59e0b; /* Keeping original --warning */
  --danger: #ef4444; /* Keeping original --danger */
  --transition: all 0.3s ease;
  --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 -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;

  /* Minangkabau Colors */
  --marawa-black: #111827;
  --marawa-red: #da251d;
  --marawa-yellow: #fecb00;
}

/* Minangkabau Utilities */
.minang-bg {
    background-color: var(--bg-color);
}

.marawa-strip {
    height: 8px;
    width: 100%;
    background: linear-gradient(to right, var(--marawa-black) 33.33%, var(--marawa-red) 33.33%, var(--marawa-red) 66.66%, var(--marawa-yellow) 66.66%);
    position: sticky;
    top: 0;
    z-index: 1001;
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

a:hover {
  color: var(--primary-hover);
}

ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.primary-navigation {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.primary-navigation a {
  color: var(--text-dark);
  font-weight: 500;
}

.primary-navigation a:hover {
  color: var(--primary-color);
}

.nav-highlight {
  background-color: var(--primary-color);
  color: var(--white) !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.nav-highlight:hover {
  background-color: var(--primary-hover);
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* ==========================================================================
   Main Content Layouts
   ========================================================================== */
.main-content {
  flex-grow: 1;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: #f3f4f6;
  color: var(--text-dark);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #1a1a1a;
  color: #e5e7eb;
  padding-top: 4rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
}

.social-links a:hover {
  background-color: var(--primary-color);
}

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

.footer-col ul li a {
  color: #9ca3af;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: #9ca3af;
}

.contact-info i {
  color: var(--primary-color);
  margin-top: 5px;
}

.footer-bottom {
  background-color: #111;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}

/* ==========================================================================
   Forms & Cards (For Careers)
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #e0f2fe;
  color: #0369a1;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

/* ==========================================================================
   Minang & Spice Ornaments
   ========================================================================== */
.motif-divider {
  width: 100%;
  height: 35px;
  background: url('../images/motif-border.png') center/contain repeat-x;
  margin: 2rem 0;
}

.ornament-container {
  position: relative;
  overflow: hidden;
}

.spice-corner {
  position: absolute;
  width: 300px;
  height: 300px;
  background: url('../images/spice-corner.png') center/contain no-repeat;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.spice-corner.top-left {
  top: -80px;
  left: -80px;
  transform: rotate(15deg);
}

.spice-corner.bottom-right {
  bottom: -80px;
  right: -80px;
  transform: rotate(-165deg);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
  .primary-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    gap: 1.5rem;
    display: none;
  }
  
  .primary-navigation[data-visible="true"] {
    display: flex;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
}

/* ==========================================================================
   Premium Product Catalog Styles
   ========================================================================== */

/* Page Hero */
.prod-hero {
  background: linear-gradient(rgba(17, 24, 39, 0.75), rgba(17, 24, 39, 0.85)), url('../../images/bg-spices.png') no-repeat center center !important;
  background-size: cover !important;
  position: relative;
  padding: 95px 0 65px !important;
  overflow: hidden;
  text-align: center;
  color: #ffffff;
}
.prod-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: none;
  pointer-events: none;
  z-index: 1;
}
.prod-hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(218, 37, 29, 0.15);
  border: 1px solid rgba(218, 37, 29, 0.3);
  color: #fca5a5;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 2;
}
.prod-hero-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #ffffff, #fecb00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}
.prod-hero-desc {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Filter Section */
.prod-filter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.prod-filter-btn {
  padding: 0.6rem 1.5rem;
  background: #ffffff;
  color: #4b5563;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.prod-filter-btn:hover {
  background: #f9fafb;
  color: #da251d;
  border-color: #fca5a5;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.prod-filter-btn.active {
  background: linear-gradient(135deg, #da251d 0%, #b71c1c 100%);
  color: #ffffff !important;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(218, 37, 29, 0.25);
}

/* PDF Catalogue Link */
.prod-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: #fef2f2;
  color: #da251d !important;
  border: 1px solid #fecaca;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}
.prod-pdf-btn:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(218, 37, 29, 0.1);
}

/* Product Card - Premium Bubble */
.prod-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.02), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 25px -10px rgba(218, 37, 29, 0.08), 0 8px 12px -3px rgba(0, 0, 0, 0.03);
  border-color: #fca5a5;
}
.prod-card-img-wrap {
  padding: 1.25rem;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.15; /* slightly wider/shorter than perfectly square */
  overflow: hidden;
  border-bottom: 1px solid #f8fafc;
}
.prod-card-img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.prod-card:hover .prod-card-img-wrap img {
  transform: scale(1.06);
}
.prod-card-body {
  padding: 1rem;
  background: #ffffff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.prod-card-brand {
  font-size: 0.75rem;
  font-weight: 700;
  color: #da251d;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
  text-align: left;
}
.prod-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.35;
  margin-bottom: 0.4rem;
  /* limit to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.6rem;
  text-align: left;
}
.prod-card-gramasi {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 550;
  margin-bottom: 0.75rem;
  margin-top: auto;
  text-align: left;
}
.prod-card-gramasi i {
  color: #94a3b8;
  font-size: 0.8rem;
}
.prod-card-btn {
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: #f8fafc;
  color: #475569 !important;
  border: 1px solid #e2e8f0;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.prod-card:hover .prod-card-btn {
  background-color: #da251d;
  border-color: #da251d;
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(218, 37, 29, 0.2);
}

/* Filter Panel */
.prod-filter-panel {
  background: #ffffff;
  padding: 1.75rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid #f1f5f9;
  margin-top: -2rem;
  position: relative;
  z-index: 10;
  margin-bottom: 3rem;
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.filter-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.filter-select {
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  background-color: #f8fafc;
  transition: all 0.2s ease;
  cursor: pointer;
  width: 100%;
}
.filter-select:focus {
  border-color: #da251d;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(218, 37, 29, 0.1);
  outline: none;
}
.btn-print-katalog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #da251d 0%, #b71c1c 100%);
  color: #ffffff !important;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(218, 37, 29, 0.25);
  transition: all 0.3s ease;
  height: 43px;
  width: 100%;
  text-decoration: none;
}
.btn-print-katalog:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(218, 37, 29, 0.35);
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
}
.btn-print-katalog:active {
  transform: translateY(0);
}

/* ==========================================================================
   Premium Recipe Section Styles
   ========================================================================== */

/* Recipe Page Hero */
.recipe-hero {
  background: linear-gradient(rgba(17, 24, 39, 0.75), rgba(17, 24, 39, 0.85)), url('../../assets/images/bg-recipes.png') no-repeat center center !important;
  background-size: cover !important;
  position: relative;
  padding: 95px 0 65px !important;
  overflow: hidden;
  text-align: center;
  color: #ffffff;
}

/* Recipe Card - Premium Bubble Card */
.recipe-bubble {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.02), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  position: relative;
}
.recipe-bubble:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 25px -10px rgba(218, 37, 29, 0.08), 0 8px 12px -3px rgba(0, 0, 0, 0.03);
  border-color: #fca5a5;
  text-decoration: none;
}
.recipe-bubble-img-wrap {
  position: relative;
  height: 200px;
  width: 100%;
  overflow: hidden;
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
}
.recipe-bubble-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.recipe-bubble:hover .recipe-bubble-img-wrap img {
  transform: scale(1.08);
}
.recipe-bubble-body {
  padding: 1rem;
  background: #ffffff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.recipe-bubble-meta-container {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.recipe-badge-level {
  font-size: 0.72rem;
  font-weight: 700;
  color: #065f46;
  background: #d1fae5;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.recipe-badge-time {
  font-size: 0.72rem;
  font-weight: 700;
  color: #92400e;
  background: #fef3c7;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.recipe-badge-product {
  font-size: 0.72rem;
  font-weight: 700;
  color: #1e40af;
  background: #dbeafe;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.recipe-bubble-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.6rem;
  text-align: left;
  flex-grow: 1;
}
.recipe-bubble-btn {
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: #f8fafc;
  color: #475569 !important;
  border: 1px solid #e2e8f0;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: all 0.3s ease;
}
.recipe-bubble:hover .recipe-bubble-btn {
  background-color: var(--abro-red, #da251d);
  color: #ffffff !important;
  border-color: var(--abro-red, #da251d);
  box-shadow: 0 4px 10px rgba(218, 37, 29, 0.2);
}

/* Print Friendly Overrides */
@media print {
  body {
    background: #ffffff !important;
    color: #000000 !important;
    font-size: 11pt !important;
  }
  
  .print-hide, 
  .clean-navbar, 
  .marawa-strip, 
  .site-footer, 
  #button-load-resep, 
  .prod-filter-panel, 
  .recipe-bubble-btn, 
  .btn-pill, 
  .btn-hubungi {
    display: none !important;
  }
  
  /* Screen element overrides when printing recipe book */
  .recipe-hero, 
  .produk-page .row, 
  #row-data, 
  #no-recipes-message {
    display: none !important;
  }

  .produk-page {
    padding: 0 !important;
    background: transparent !important;
  }

  #print-recipe-book {
    display: block !important;
    font-family: 'Georgia', serif !important;
    color: #111111 !important;
  }

  /* Book Cover */
  .book-cover {
    height: 100vh;
    page-break-after: always;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 8px double #da251d;
    padding: 3rem;
    box-sizing: border-box;
  }

  .cover-content {
    width: 100%;
  }

  .cover-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 36pt !important;
    font-weight: 800 !important;
    color: #da251d !important;
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
  }

  .cover-accent {
    width: 120px;
    height: 4px;
    background-color: #fecb00;
    margin: 1.5rem auto;
  }

  .cover-subtitle {
    font-size: 18pt !important;
    font-style: italic;
    color: #4b5563 !important;
    margin-bottom: 4rem;
  }

  .cover-date {
    font-size: 12pt !important;
    color: #9ca3af;
    font-weight: 600;
  }

  /* Recipe Print Page */
  .print-recipe-page {
    page-break-after: always;
    padding: 2rem 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 95vh;
    position: relative;
  }

  .recipe-print-header {
    border-bottom: 2px solid #da251d;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }

  .recipe-print-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 26pt !important;
    font-weight: 800 !important;
    color: #111827 !important;
    margin-bottom: 0.5rem;
  }

  .recipe-print-hero-image {
    width: 100%;
    height: 220px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #da251d;
  }

  .recipe-print-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .recipe-print-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 10pt !important;
    color: #4b5563 !important;
    font-weight: 600;
    font-family: 'Inter', sans-serif !important;
  }

  .recipe-print-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .recipe-print-content {
    display: flex;
    flex-grow: 1;
    gap: 2rem;
  }

  .recipe-print-col {
    width: 47%;
  }

  .recipe-print-col h3 {
    font-family: 'Inter', sans-serif !important;
    font-size: 14pt !important;
    font-weight: 700 !important;
    color: #da251d !important;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.5rem;
  }

  .recipe-print-divider {
    width: 2px;
    border-left: 2px dashed #da251d;
    margin: 0;
    padding: 0;
  }

  .ingredients-list, .instructions-list {
    font-size: 11pt !important;
    line-height: 1.6 !important;
  }

  .ingredients-list ul, .instructions-list ol {
    padding-left: 1.25rem !important;
    margin-bottom: 1rem !important;
  }

  .ingredients-list li, .instructions-list li {
    margin-bottom: 0.5rem !important;
  }

  .recipe-print-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 0.75rem;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    font-size: 9pt !important;
    color: #9ca3af !important;
    font-family: 'Inter', sans-serif !important;
  }
}

/* ==========================================================================
   Dark Theme Premium Styles
   ========================================================================== */
.dark-theme {
  --bg-color: #111827;
  --bg-light: #1f2937;
  --text-dark: #f9fafb;
  --text-light: #9ca3af;
  --border-color: #374151;
  --white: #1f2937;
}

.dark-theme body {
  background-color: #111827 !important;
  color: #f9fafb !important;
}

/* Navbar & Clean Navbar overrides */
.dark-theme .clean-navbar {
  background-color: #1f2937 !important;
  border-bottom: 1px solid #374151;
}

.dark-theme .clean-nav-links a {
  color: #cbd5e1 !important;
}

.dark-theme .clean-nav-links a:hover,
.dark-theme .clean-nav-links a.active {
  color: var(--marawa-yellow) !important;
}

.dark-theme .clean-nav-links a.active::after {
  background-color: var(--marawa-yellow) !important;
}

.dark-theme .dark-mode-toggle-btn {
  color: #cbd5e1 !important;
}

.dark-theme .dark-mode-toggle-btn:hover {
  color: var(--marawa-yellow) !important;
}

/* Product page / Recipe index page overrides */
.dark-theme .produk-page {
  background-color: #111827 !important;
}

.dark-theme .prod-filter-panel {
  background-color: #1f2937 !important;
  border-color: #374151 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.dark-theme .filter-label {
  color: #9ca3af !important;
}

.dark-theme .filter-select {
  background-color: #111827 !important;
  border-color: #4b5563 !important;
  color: #f9fafb !important;
}

.dark-theme .filter-select:focus {
  border-color: var(--marawa-yellow) !important;
  box-shadow: 0 0 0 3px rgba(254, 203, 0, 0.15) !important;
}

.dark-theme .btn-print-katalog {
  background: linear-gradient(135deg, var(--marawa-red) 0%, #991b1b 100%) !important;
}

.dark-theme .btn-print-katalog:hover {
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%) !important;
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.35) !important;
}

/* Product & Recipe Cards */
.dark-theme .prod-card,
.dark-theme .recipe-bubble {
  background-color: #1f2937 !important;
  border-color: #374151 !important;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06) !important;
}

.dark-theme .prod-card:hover,
.dark-theme .recipe-bubble:hover {
  border-color: var(--marawa-yellow) !important;
  box-shadow: 0 10px 20px -5px rgba(254, 203, 0, 0.1), 0 8px 16px -6px rgba(0, 0, 0, 0.2) !important;
}

.dark-theme .prod-card-img-wrap,
.dark-theme .recipe-bubble-img-wrap {
  background-color: #1f2937 !important;
  border-bottom-color: #374151 !important;
}

.dark-theme .prod-card-body,
.dark-theme .recipe-bubble-body {
  background-color: #1f2937 !important;
}

.dark-theme .prod-card-title,
.dark-theme .recipe-bubble-title {
  color: #f9fafb !important;
}

.dark-theme .prod-card-gramasi {
  color: #9ca3af !important;
}

.dark-theme .prod-card-btn,
.dark-theme .recipe-bubble-btn {
  background-color: #111827 !important;
  border-color: #4b5563 !important;
  color: #cbd5e1 !important;
}

.dark-theme .prod-card:hover .prod-card-btn,
.dark-theme .recipe-bubble:hover .recipe-bubble-btn {
  background-color: var(--marawa-yellow) !important;
  border-color: var(--marawa-yellow) !important;
  color: #111827 !important;
  box-shadow: 0 4px 10px rgba(254, 203, 0, 0.2) !important;
}

.dark-theme #button-load-resep {
  background-color: #1f2937 !important;
  border-color: #4b5563 !important;
  color: #cbd5e1 !important;
}

.dark-theme #button-load-resep:hover {
  background-color: #111827 !important;
  color: #f9fafb !important;
  border-color: var(--marawa-yellow) !important;
}

/* Recipe detail page overrides for inline background elements */
.dark-theme div[style*="background: #f9fafb"],
.dark-theme div[style*="background:#f9fafb"] {
  background-color: #111827 !important;
}

.dark-theme div[style*="background: #ffffff"],
.dark-theme div[style*="background:#ffffff"] {
  background-color: #1f2937 !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
}

.dark-theme h1[style*="color: #1f2937"] {
  color: #f9fafb !important;
}

.dark-theme div[style*="color: #4b5563"],
.dark-theme div[style*="color:#4b5563"],
.dark-theme h2[style*="color: #1f2937"] {
  color: #cbd5e1 !important;
}

.dark-theme div[style*="background: #000"] {
  background-color: #000000 !important;
}

.dark-theme .recipe-content-html {
  color: #cbd5e1 !important;
}

.dark-theme h3[style*="color: #1f2937"] {
  color: #f9fafb !important;
}

.dark-theme div[style*="background: #fee2e2"] {
  background-color: #7f1d1d !important;
}

.dark-theme div[style*="background: #fef3c7"] {
  background-color: #78350f !important;
}

.dark-theme i[style*="color: var(--abro-red)"] {
  color: #fca5a5 !important;
}

.dark-theme i[style*="color: var(--abro-amber)"] {
  color: #fde68a !important;
}

.dark-theme a[style*="color: #6b7280"] {
  color: #9ca3af !important;
}

.dark-theme span[style*="background: #dbeafe"] {
  background-color: #1e3a8a !important;
  color: #93c5fd !important;
}

.dark-theme span[style*="background: #d1fae5"] {
  background-color: #065f46 !important;
  color: #6ee7b7 !important;
}

.dark-theme span[style*="background: #fef3c7"] {
  background-color: #78350f !important;
  color: #fde68a !important;
}

.dark-theme div[style*="background: #fff"] {
  background-color: #1f2937 !important;
}

/* ==========================================================================
   Home Revamp & Animation Styles
   ========================================================================== */

/* Product Bubble Card */
.product-bubble {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.02), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  position: relative;
}
.product-bubble:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 25px -10px rgba(218, 37, 29, 0.08), 0 8px 12px -3px rgba(0, 0, 0, 0.03);
  border-color: #fca5a5;
  text-decoration: none;
}
.product-bubble-img {
  position: relative;
  height: 220px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid #f8fafc;
  padding: 1.25rem;
}
.product-bubble-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product-bubble:hover .product-bubble-img img {
  transform: scale(1.08);
}
.product-bubble-body {
  padding: 2rem 1.5rem;
  background: #ffffff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.product-bubble-title {
  margin-top: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.product-bubble-desc {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Staggered Entrance Animation */
@keyframes revealStagger {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.reveal-item {
  opacity: 0;
  animation: revealStagger 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* White Pill Button for Career CTA */
.btn-white-pill {
  background-color: #ffffff !important;
  color: var(--marawa-red, #da251d) !important;
  border: 2px solid #ffffff !important;
  font-weight: 700 !important;
  padding: 0.6rem 2rem !important;
  border-radius: 50px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}
.btn-white-pill:hover {
  background-color: transparent !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

/* Dark theme overrides for product bubble */
.dark-theme .product-bubble {
  background-color: #1f2937 !important;
  border-color: #374151 !important;
}
.dark-theme .product-bubble:hover {
  border-color: var(--marawa-yellow) !important;
}
.dark-theme .product-bubble-img {
  background-color: #1f2937 !important;
  border-bottom-color: #374151 !important;
}
.dark-theme .product-bubble-body {
  background-color: #1f2937 !important;
}
.dark-theme .product-bubble-title {
  color: #f9fafb !important;
}
.dark-theme .product-bubble-desc {
  color: #9ca3af !important;
}

/* Navbar Link Sliding Underline Hover Effect */
.clean-nav-links a {
  position: relative;
}
.clean-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--abro-red, #dc2626);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}
.clean-nav-links a:hover::after,
.clean-nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.dark-theme .clean-nav-links a::after {
  background-color: var(--marawa-yellow) !important;
}

/* Footer Animated Underline */
.footer-col h3 {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 1.5rem;
  display: inline-block;
}
.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--abro-red, #dc2626), var(--marawa-yellow, #fecb00), var(--abro-red, #dc2626));
  background-size: 200% auto;
  animation: walkingLine 3s linear infinite;
  border-radius: 2px;
  transition: width 0.3s ease;
}
.footer-col:hover h3::after {
  width: 100%;
}
@keyframes walkingLine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Premium Pill Buttons styling */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.8rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.btn-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.btn-pill-yellow {
  background-color: var(--marawa-yellow, #fecb00);
  color: #111827 !important;
}
.btn-pill-yellow:hover {
  background-color: #e5b700;
  color: #111827 !important;
}
.btn-pill-red {
  background-color: var(--abro-red, #dc2626);
  color: #ffffff !important;
}
.btn-pill-red:hover {
  background-color: #b91c1c;
  color: #ffffff !important;
}
.btn-pill-green {
  background-color: #10b981;
  color: #ffffff !important;
}
.btn-pill-green:hover {
  background-color: #059669;
  color: #ffffff !important;
}

/* Center Section Title with Premium Underline Effect */
.section-title-bubbly {
  text-align: center !important;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark, #1f2937);
  margin-bottom: 3rem;
  position: relative;
  display: block;
  width: 100%;
}
.section-title-bubbly::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--marawa-red, #da251d), var(--marawa-yellow, #fecb00));
  margin: 1rem auto 0;
  border-radius: 10px;
  position: relative;
  background-size: 200% 200%;
  animation: titleGradientShift 4s ease infinite;
}

@keyframes titleGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Swiper Custom Navigation & Padding (Buttons Outside Cards) */
.swiper-container-padding {
  padding: 15px 60px 4.5rem 60px !important;
}

.swiper-button-prev,
.swiper-button-next {
  width: 46px;
  height: 46px;
  background-color: var(--white, #ffffff) !important;
  border: 1px solid var(--border-color, #e5e7eb) !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  color: var(--marawa-red, #da251d) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.1rem !important;
  font-weight: 900 !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--marawa-red, #da251d) !important;
  border-color: var(--marawa-red, #da251d) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 16px rgba(218, 37, 29, 0.3) !important;
  transform: translateY(-50%) scale(1.05) !important;
}

.swiper-button-prev {
  left: 8px !important;
}

.swiper-button-next {
  right: 8px !important;
}

/* Position pagination at the bottom of the container padding */
.swiper-pagination {
  bottom: 12px !important;
}

/* Dark Theme Swiper Navigation */
.dark-theme .swiper-button-prev,
.dark-theme .swiper-button-next {
  background-color: #1f2937 !important;
  border-color: #374151 !important;
  color: var(--marawa-yellow, #fecb00) !important;
}

.dark-theme .swiper-button-prev:hover,
.dark-theme .swiper-button-next:hover {
  background-color: var(--marawa-yellow, #fecb00) !important;
  border-color: var(--marawa-yellow, #fecb00) !important;
  color: #111827 !important;
  box-shadow: 0 6px 16px rgba(254, 203, 0, 0.3) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .swiper-container-padding {
    padding: 10px 45px 3.8rem 45px !important;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 38px;
    height: 38px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 0.9rem !important;
  }
  .swiper-button-prev {
    left: 4px !important;
  }
  .swiper-button-next {
    right: 4px !important;
  }
}

@media (max-width: 576px) {
  .swiper-container-padding {
    padding: 10px 15px 3.5rem 15px !important;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}

/* ==========================================================================
   Premium Utility Classes (Interactive Redesign & Workspace)
   ========================================================================== */
.glass-panel {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.glass-panel-dark {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gold-gradient-text {
  background: linear-gradient(135deg, #fecb00 0%, #fff6d1 50%, #e2b400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-gradient-bg {
  background: linear-gradient(135deg, #fecb00 0%, #ffd83b 50%, #d1a600 100%);
}

.red-gradient-bg {
  background: linear-gradient(135deg, #da251d 0%, #b71c1c 100%);
}

.premium-shadow {
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
}

.premium-glow-red {
  box-shadow: 0 0 30px rgba(218, 37, 29, 0.2);
}

/* ==========================================================================
   Interactive History Timeline
   ========================================================================== */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 3rem auto;
  padding: 1rem 0;
}
.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--border-color, #cbd5e1);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}
.timeline-container {
  padding: 15px 40px;
  position: relative;
  width: 50%;
  transition: all 0.3s ease;
}
.timeline-container::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background-color: #ffffff;
  border: 4px solid var(--abro-red, #da251d);
  top: 25px;
  border-radius: 50%;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.timeline-left {
  left: 0;
  text-align: right;
}
.timeline-right {
  left: 50%;
  text-align: left;
}
.timeline-left::after {
  right: -11px;
}
.timeline-right::after {
  left: -11px;
}
.timeline-content {
  padding: 2rem;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
  position: relative;
}
.timeline-container:hover .timeline-content {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(218, 37, 29, 0.08);
  border-color: #fca5a5;
  background-color: #ffffff;
}
.timeline-container:hover::after {
  background-color: var(--abro-amber, #fecb00);
  border-color: var(--abro-amber, #fecb00);
  transform: scale(1.3);
}
.timeline-year {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--abro-red, #da251d);
  margin-bottom: 0.4rem;
}
.timeline-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}
.timeline-content p {
  font-size: 0.95rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.7;
}

/* Dark Theme Support for Timeline */
.dark-theme .timeline-content {
  background-color: #1f2937 !important;
  border-color: #374151 !important;
}
.dark-theme .timeline-container:hover .timeline-content {
  background-color: #111827 !important;
  border-color: var(--marawa-yellow) !important;
}
.dark-theme .timeline-title {
  color: #ffffff !important;
}
.dark-theme .timeline-content p {
  color: #cbd5e1 !important;
}
.dark-theme .timeline-container::after {
  background-color: #1f2937;
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
  .timeline-container {
    width: 100%;
    padding-left: 60px;
    padding-right: 15px;
    text-align: left !important;
  }
  .timeline-left {
    left: 0;
  }
  .timeline-right {
    left: 0;
  }
  .timeline-left::after, .timeline-right::after {
    left: 20px;
    right: auto;
  }
}

/* ==========================================================================
   Premium Organization Diagram
   ========================================================================== */
.chart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4rem auto;
  width: 100%;
}
.chart-row {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
}
.chart-node {
  background: #ffffff;
  border: 2px solid var(--abro-red, #da251d);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  min-width: 250px;
  max-width: 280px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.chart-node:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(218, 37, 29, 0.12);
  border-color: var(--abro-amber, #fecb00);
}
.chart-node-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--abro-amber, #fecb00);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}
.chart-node:hover .chart-node-img {
  transform: scale(1.05);
}
.chart-node-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chart-node h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.chart-node p {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--abro-red, #da251d);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0;
}
.chart-connector-line {
  width: 3px;
  height: 45px;
  background-color: var(--border-color, #cbd5e1);
  position: relative;
  z-index: 1;
}

/* Dark Theme Support for Chart Nodes */
.dark-theme .chart-node {
  background-color: #1f2937 !important;
  border-color: var(--marawa-red) !important;
}
.dark-theme .chart-node:hover {
  border-color: var(--marawa-yellow) !important;
  box-shadow: 0 20px 45px rgba(254, 203, 0, 0.12) !important;
}
.dark-theme .chart-node h4 {
  color: #ffffff !important;
}
.dark-theme .chart-node p {
  color: var(--marawa-yellow) !important;
}
.dark-theme .chart-connector-line {
  background-color: #374151;
}

@media (max-width: 768px) {
  .chart-row {
    gap: 2rem;
  }
  .chart-node {
    min-width: 220px;
    padding: 1.5rem 1rem;
  }
}
