/* ==========================================================
   BATCHES HERO
========================================================== */

.fe-batches-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

/*==================================
 Background Shapes
===================================*/

.fe-batches-hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.18;
}

.fe-shape-1 {
  width: 320px;
  height: 320px;
  background: #2563eb;
  top: -100px;
  left: -100px;
}

.fe-shape-2 {
  width: 260px;
  height: 260px;
  background: #06b6d4;
  right: -60px;
  top: 40px;
}

.fe-shape-3 {
  width: 280px;
  height: 280px;
  background: #f97316;
  bottom: -120px;
  left: 40%;
}

/*==================================
 Hero Card
===================================*/

.fe-batches-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);

  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 32px;

  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
}

/*==================================
 Left
===================================*/

.fe-batches-hero-content {
  position: relative;
  z-index: 2;
}

.fe-batches-title {
  margin: 1rem 0 1.25rem;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
}

.fe-batches-title-gradient {
  background: linear-gradient(135deg, #2563eb, #0ea5e9, #3b82f6);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fe-batches-subtitle {
  max-width: 700px;
  margin-bottom: 2rem;
  font-size: 1.08rem;
  color: #64748b;
  line-height: 1.8;
}

/*==================================
 Chips
===================================*/

.fe-batches-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.fe-badge-glass {
  padding: 0.75rem 1rem;

  border: 1px solid rgba(255, 255, 255, 0.6);

  background: rgba(255, 255, 255, 0.55);

  backdrop-filter: blur(12px);

  border-radius: 999px;

  font-weight: 600;

  transition: 0.3s;
}

.fe-badge-glass:hover {
  transform: translateY(-4px);

  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.12);
}

/*==================================
 CTA
===================================*/

.fe-batches-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.fe-batches-hero-actions .fe-btn {
  min-width: 180px;
  justify-content: center;
}

/*==================================
 Right Panel
===================================*/

.fe-batches-hero-side {
  position: relative;
  z-index: 2;
}

.fe-batches-metric-grid {
  display: grid;
  gap: 1.2rem;
}

.fe-batches-metric {
  display: flex;
  align-items: center;
  gap: 1rem;

  padding: 1.25rem;

  border-radius: 20px;

  background: #fff;

  border: 1px solid #e5e7eb;

  transition: 0.35s;
}

.fe-batches-metric:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
}

.fe-batches-metric-icon {
  width: 65px;
  height: 65px;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  font-size: 1.4rem;

  flex-shrink: 0;
}

.fe-batches-metric-icon-gradient-1 {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.fe-batches-metric-icon-gradient-2 {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.fe-batches-metric-icon-gradient-3 {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.fe-batches-metric-icon-gradient-4 {
  background: linear-gradient(135deg, #f97316, #fb923c);
}

.fe-batches-metric h3 {
  margin: 0;

  font-size: 1.05rem;

  font-weight: 700;

  color: #0f172a;
}

.fe-batches-metric p {
  margin: 0.3rem 0 0;

  color: #64748b;

  font-size: 0.92rem;
}

/*==================================
 Animation
===================================*/

.fe-batches-metric,
.fe-badge-glass,
.fe-btn {
  transition: all 0.35s ease;
}

.fe-batches-shimmer {
  position: relative;

  overflow: hidden;
}

.fe-batches-shimmer::before {
  content: "";

  position: absolute;

  inset: 0;

  transform: translateX(-120%);

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );

  animation: feHeroShimmer 3.5s infinite;
}

@keyframes feHeroShimmer {
  to {
    transform: translateX(120%);
  }
}

.fe-batches-pulse {
  animation: feHeroPulse 2.5s infinite;
}

@keyframes feHeroPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

/*==================================
 Responsive
===================================*/

@media (max-width: 992px) {
  .fe-batches-hero-inner {
    grid-template-columns: 1fr;

    gap: 2.5rem;

    padding: 2.5rem;
  }

  .fe-batches-hero-side {
    order: -1;
  }
}

@media (max-width: 768px) {
  .fe-batches-hero {
    padding: 4rem 0;
  }

  .fe-batches-hero-inner {
    padding: 2rem;
  }

  .fe-batches-title {
    font-size: 2.3rem;
  }

  .fe-batches-hero-actions {
    flex-direction: column;
  }

  .fe-batches-hero-actions .fe-btn {
    width: 100%;
  }

  .fe-batches-metric {
    padding: 1rem;
  }

  .fe-batches-metric-icon {
    width: 55px;
    height: 55px;
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .fe-batches-chips {
    gap: 0.6rem;
  }

  .fe-badge-glass {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================
   BATCH FILTER SECTION
========================================================== */

.fe-batches-filter-section {
  position: relative;
  padding: 5rem 0;
}

.fe-batches-filter-header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.fe-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--fe-primary, #2563eb);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.fe-text-gradient {
  background: linear-gradient(135deg, #2563eb, #3b82f6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================
   FILTER CARD
========================================================== */

.fe-batches-filter-card {
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: #fff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.fe-batches-filter-form {
  width: 100%;
}

.fe-batches-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: end;
}

/* ==========================================================
   FORM
========================================================== */

.fe-field {
  display: flex;
  flex-direction: column;
}

.fe-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #1e293b;
}

.fe-input-wrap {
  position: relative;
}

.fe-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

.fe-input,
.fe-select {
  width: 100%;
  height: 54px;
  padding: 0 1rem;
  border: 1px solid #dbe3ec;
  border-radius: 14px;
  background: #fff;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.fe-input {
  padding-left: 46px;
}

.fe-input:focus,
.fe-select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

/* ==========================================================
   ACTIONS
========================================================== */

.fe-batches-filter-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.fe-batches-filter-actions .fe-btn {
  flex: 1;
  justify-content: center;
  min-height: 54px;
}

/* ==========================================================
   DIVIDER
========================================================== */

.fe-divider {
  height: 1px;
  background: #edf2f7;
  margin: 2rem 0;
}

/* ==========================================================
   QUICK FILTER TABS
========================================================== */

.fe-batches-class-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.fe-batches-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #475569;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.fe-batches-tab:hover {
  color: #2563eb;
  border-color: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.12);
}

.fe-batches-tab.is-active {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  border-color: #2563eb;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

/* ==========================================================
   FILTER NOTE
========================================================== */

.fe-batches-filter-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.fe-batches-filter-note-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.fe-batches-filter-note-content h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: #0f172a;
}

.fe-batches-filter-note-content p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
}

/* ==========================================================
   HOVER EFFECTS
========================================================== */

.fe-batches-filter-card,
.fe-batches-tab,
.fe-input,
.fe-select,
.fe-btn {
  transition: all 0.3s ease;
}

.fe-batches-filter-card:hover {
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1200px) {
  .fe-batches-filter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .fe-batches-filter-section {
    padding: 4rem 0;
  }

  .fe-batches-filter-card {
    padding: 1.5rem;
  }

  .fe-batches-filter-grid {
    grid-template-columns: 1fr;
  }

  .fe-batches-filter-actions {
    flex-direction: column;
  }

  .fe-batches-filter-actions .fe-btn {
    width: 100%;
  }

  .fe-batches-class-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
  }

  .fe-batches-tab {
    white-space: nowrap;
  }

  .fe-batches-filter-note {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .fe-batches-filter-card {
    padding: 1.25rem;
  }

  .fe-section-kicker {
    font-size: 0.82rem;
  }

  .fe-label {
    font-size: 0.9rem;
  }
}

/*=========================================================
  BATCH LIST SECTION
=========================================================*/

.fe-batches-list {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.fe-batches-list-header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.fe-batches-list-header .fe-section-title {
  margin-bottom: 1rem;
}

.fe-batches-list-header .fe-section-subtitle {
  color: #64748b;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

/*=========================================================
  SECTION KICKER
=========================================================*/

.fe-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;

  padding: 0.65rem 1rem;

  margin-bottom: 1rem;

  border-radius: 999px;

  background: rgba(37, 99, 235, 0.08);

  color: #2563eb;

  font-weight: 600;

  font-size: 0.9rem;
}

.fe-text-gradient {
  background: linear-gradient(135deg, #2563eb, #3b82f6, #06b6d4);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*=========================================================
  EMPTY STATE
=========================================================*/

.fe-batches-empty {
  max-width: 760px;

  margin: 0 auto;

  padding: 4rem 3rem;

  text-align: center;

  border-radius: 28px;

  background: #fff;

  border: 1px solid #e2e8f0;

  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.fe-batches-empty-icon {
  width: 100px;
  height: 100px;

  margin: 0 auto 1.5rem;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(135deg, #2563eb, #60a5fa);

  color: #fff;

  font-size: 2.4rem;
}

.fe-batches-empty h3 {
  margin-bottom: 0.75rem;

  font-size: 1.8rem;

  color: #0f172a;
}

.fe-batches-empty p {
  max-width: 560px;

  margin: 0 auto;

  color: #64748b;

  line-height: 1.8;
}

.fe-batches-empty-actions {
  margin-top: 2rem;

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 1rem;
}

/*=========================================================
  CLASS GROUP
=========================================================*/

.fe-batches-group {
  margin-bottom: 4rem;
}

.fe-batches-group:last-child {
  margin-bottom: 0;
}

.fe-batches-group-head {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 2rem;

  margin-bottom: 2rem;

  padding: 1.5rem 2rem;

  background: #fff;

  border-radius: 22px;

  border: 1px solid #e2e8f0;

  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
}

.fe-batches-group-left {
  display: flex;

  align-items: center;

  gap: 1.2rem;
}

.fe-batches-group-icon {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;

  background: linear-gradient(135deg, #2563eb, #3b82f6);

  color: #fff;

  font-size: 1.6rem;

  flex-shrink: 0;
}

.fe-batches-group-title {
  margin: 0;

  font-size: 1.5rem;

  font-weight: 700;

  color: #0f172a;
}

.fe-batches-group-left .fe-badge {
  margin-top: 0.55rem;
}

.fe-batches-group-right {
  display: flex;

  align-items: center;
}

/*=========================================================
  GRID
=========================================================*/

.fe-batches-card-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));

  gap: 2rem;
}

/*=========================================================
  HOVER
=========================================================*/

.fe-batches-group-head,
.fe-batches-empty {
  transition: 0.35s ease;
}

.fe-batches-group-head:hover {
  transform: translateY(-4px);

  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.08);
}

.fe-batches-empty:hover {
  transform: translateY(-5px);
}

/*=========================================================
  RESPONSIVE
=========================================================*/

@media (max-width: 992px) {
  .fe-batches-group-head {
    flex-direction: column;

    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .fe-batches-list {
    padding: 4rem 0;
  }

  .fe-batches-empty {
    padding: 2.5rem 1.5rem;
  }

  .fe-batches-empty-actions {
    flex-direction: column;
  }

  .fe-batches-empty-actions .fe-btn {
    width: 100%;
  }

  .fe-batches-group-head {
    padding: 1.25rem;
  }

  .fe-batches-group-icon {
    width: 60px;
    height: 60px;

    font-size: 1.35rem;
  }

  .fe-batches-group-title {
    font-size: 1.25rem;
  }

  .fe-batches-card-grid {
    grid-template-columns: 1fr;
  }
}

/*=========================================================
  PREMIUM BATCH CARD
=========================================================*/

.fe-batches-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
  transition: all 0.35s ease;
}

.fe-batches-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.14);
  border-color: #bfdbfe;
}

/*=========================================================
  TOP BAR
=========================================================*/

.fe-batches-card-topbar {
  height: 6px;
  background: linear-gradient(90deg, #2563eb, #3b82f6, #06b6d4);
}

/*=========================================================
  BODY
=========================================================*/

.fe-batches-card-body {
  padding: 1.75rem;
}

/*=========================================================
  HEADER
=========================================================*/

.fe-batches-card-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.fe-batches-card-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  background: linear-gradient(135deg, #2563eb, #3b82f6);

  color: #fff;
  font-size: 1.5rem;

  transition: 0.35s;
}

.fe-batches-card:hover .fe-batches-card-icon {
  transform: rotate(-8deg) scale(1.08);
}

.fe-batches-card-content {
  flex: 1;
}

.fe-batches-card-title {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

/*=========================================================
  STATUS
=========================================================*/

.fe-batches-card-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.fe-batches-card-status .fe-badge {
  font-size: 0.78rem;
}

/*=========================================================
  DETAILS
=========================================================*/

.fe-batches-card-details {
  display: grid;
  gap: 1rem;
}

.fe-batches-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.fe-batches-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #eff6ff;
  color: #2563eb;

  flex-shrink: 0;
}

.fe-batches-info-label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.82rem;
  color: #64748b;
}

.fe-batches-info-item strong {
  color: #0f172a;
  font-size: 0.96rem;
  font-weight: 600;
}

/*=========================================================
  DIVIDER
=========================================================*/

.fe-batches-divider {
  height: 1px;
  background: #eef2f7;
  margin: 1.5rem 0;
}

/*=========================================================
  BUTTONS
=========================================================*/

.fe-batches-card-actions {
  display: flex;
  gap: 0.85rem;
}

.fe-btn-flex {
  flex: 1;
}

.fe-batches-card-actions .fe-btn {
  justify-content: center;
  min-height: 48px;
}

/*=========================================================
  FOOTER NOTE
=========================================================*/

.fe-batches-card-note {
  margin-top: 1.5rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;

  display: flex;
  align-items: center;
  gap: 0.65rem;

  background: #f8fafc;
  border: 1px solid #e2e8f0;

  color: #475569;
  font-size: 0.88rem;
}

.fe-batches-card-note i {
  color: #f59e0b;
}

/*=========================================================
  ACTIVE CARD EFFECT
=========================================================*/

.fe-batches-card:hover .fe-batches-card-note {
  background: #eff6ff;
  border-color: #bfdbfe;
}

/*=========================================================
  BADGE COLORS
=========================================================*/

.fe-badge-success {
  background: #dcfce7;
  color: #15803d;
}

.fe-badge-danger {
  background: #fee2e2;
  color: #b91c1c;
}

.fe-badge-warning {
  background: #fef3c7;
  color: #b45309;
}

.fe-badge-primary {
  background: #dbeafe;
  color: #1d4ed8;
}

/*=========================================================
  MICRO ANIMATION
=========================================================*/

.fe-batches-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), transparent 60%);
  opacity: 0;
  transition: 0.4s;
}

.fe-batches-card:hover::before {
  opacity: 1;
}

/*=========================================================
  RESPONSIVE
=========================================================*/

@media (max-width: 768px) {
  .fe-batches-card-body {
    padding: 1.4rem;
  }

  .fe-batches-card-header {
    align-items: flex-start;
  }

  .fe-batches-card-icon {
    width: 58px;
    height: 58px;
    font-size: 1.25rem;
  }

  .fe-batches-card-title {
    font-size: 1.1rem;
  }

  .fe-batches-card-actions {
    flex-direction: column;
  }

  .fe-batches-card-actions .fe-btn {
    width: 100%;
  }

  .fe-batches-info-item {
    gap: 0.8rem;
  }

  .fe-batches-info-icon {
    width: 42px;
    height: 42px;
  }
}
/*=========================================================
  BOTTOM CTA
=========================================================*/

.fe-batches-bottom-cta {
  margin-top: 5rem;
}

.fe-batches-bottom-card {
  position: relative;
  overflow: hidden;

  padding: 3rem;

  border-radius: 30px;

  background: linear-gradient(135deg, #2563eb, #3b82f6);

  color: #fff;

  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.22);
}

.fe-batches-bottom-card::before {
  content: "";

  position: absolute;

  top: -120px;
  right: -120px;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);
}

.fe-batches-bottom-card::after {
  content: "";

  position: absolute;

  bottom: -80px;
  left: -80px;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);
}

.fe-batches-bottom-content {
  position: relative;
  z-index: 2;

  max-width: 700px;
}

.fe-batches-bottom-content h3 {
  margin: 1rem 0;

  font-size: 2rem;

  font-weight: 700;

  color: #fff;
}

.fe-batches-bottom-content p {
  color: rgba(255, 255, 255, 0.88);

  line-height: 1.9;
}

.fe-batches-bottom-actions {
  position: relative;
  z-index: 2;

  display: flex;
  gap: 1rem;

  margin-top: 2rem;
}

/*=========================================================
  CTA BUTTONS
=========================================================*/

.fe-batches-bottom-card .fe-btn {
  min-width: 190px;

  justify-content: center;
}

.fe-batches-bottom-card .fe-btn-primary {
  background: #fff;
  color: #2563eb;
}

.fe-batches-bottom-card .fe-btn-primary:hover {
  background: #f8fafc;
}

.fe-batches-bottom-card .fe-btn-success {
  background: #22c55e;
  border-color: #22c55e;
}

.fe-batches-bottom-card .fe-btn-success:hover {
  background: #16a34a;
}

/*=========================================================
  CARD ANIMATION
=========================================================*/

.fe-batches-card {
  animation: feBatchFade 0.5s ease both;
}

@keyframes feBatchFade {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*=========================================================
  FLOATING ICON
=========================================================*/

.fe-batches-card-icon {
  animation: feFloat 5s ease-in-out infinite;
}

@keyframes feFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/*=========================================================
  SHIMMER EFFECT
=========================================================*/

.fe-batches-card::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 65%
  );

  transform: translateX(-140%);

  transition: 1s;
}

.fe-batches-card:hover::after {
  transform: translateX(140%);
}

/*=========================================================
  BUTTON HOVER
=========================================================*/

.fe-batches-card .fe-btn {
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.fe-batches-card .fe-btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.18);
}

/*=========================================================
  BADGE ANIMATION
=========================================================*/

.fe-badge {
  transition: 0.3s;
}

.fe-batches-card:hover .fe-badge {
  transform: scale(1.04);
}

/*=========================================================
  ACCESSIBILITY
=========================================================*/

.fe-batches-card a:focus-visible,
.fe-batches-bottom-card a:focus-visible {
  outline: 3px solid #2563eb;

  outline-offset: 3px;
}

/*=========================================================
  RESPONSIVE
=========================================================*/

@media (max-width: 992px) {
  .fe-batches-bottom-card {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .fe-batches-bottom-card {
    text-align: center;

    padding: 2rem 1.5rem;
  }

  .fe-batches-bottom-content {
    max-width: 100%;
  }

  .fe-batches-bottom-content h3 {
    font-size: 1.6rem;
  }

  .fe-batches-bottom-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .fe-batches-bottom-actions .fe-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .fe-batches-list {
    padding: 3.5rem 0;
  }

  .fe-batches-bottom-card {
    border-radius: 22px;
  }

  .fe-batches-bottom-content h3 {
    font-size: 1.4rem;
  }

  .fe-batches-bottom-content p {
    font-size: 0.95rem;
  }
}
