/* ==========================================================================
   Purisep Chromatography - Master Stylesheet
   ========================================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* === BRAND PALETTE (USA Scientific Standard) === */
  --primary-color: #0A2342;
  /* Deep Navy Blue */
  --secondary-color: #0F62FE;
  /* Scientific Blue */
  --accent-color: #3BC9FF;
  /* Electric Cyan */
  --accent-light: #a5d8f3;
  --success: #00C389;
  /* Success Green */
  --text-dark: #1F2937;
  /* Rich Charcoal */
  --text-muted: #6B7280;
  --bg-white: #FFFFFF;
  --bg-light: #F5F8FC;
  /* Light Scientific Background */
  --border-color: #E3EAF4;
  /* Clean Border */

  /* Gradient helpers */
  --bg-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --hero-gradient: radial-gradient(circle at 65% 25%, #0d3b66 0%, #0A2342 55%, #050f20 100%);

  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 2px 8px rgba(10, 35, 66, 0.05);
  --shadow-md: 0 8px 24px rgba(10, 35, 66, 0.09);
  --shadow-lg: 0 20px 50px rgba(10, 35, 66, 0.14);
  --shadow-glow: 0 0 30px rgba(59, 201, 255, 0.45);
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: 1px solid rgba(255, 255, 255, 0.35);
  --glass-shadow: 0 8px 32px 0 rgba(10, 35, 66, 0.08);

  /* Layout */
  --border-radius: 16px;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.75;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.text-primary-custom {
  color: var(--primary-color) !important;
}

.text-secondary-custom {
  color: var(--secondary-color) !important;
}

.text-accent {
  color: var(--accent-color) !important;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  border-radius: 2px;
  transition: width 0.4s ease;
}

.section-title:hover::after {
  width: 80px;
}

.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--border-radius);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-custom {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 30px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.1px;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white !important;
  border: none;
  box-shadow: 0 4px 18px rgba(10, 35, 66, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(15, 98, 254, 0.45);
  background: linear-gradient(135deg, #0a1e38 0%, #0a4fcf 100%);
}

.btn-primary-custom::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn-primary-custom:hover::after {
  left: 120%;
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline-custom:hover {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 8px 20px rgba(10, 35, 66, 0.25);
}

.btn-white {
  background: #ffffff;
  color: var(--primary-color) !important;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar-custom {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(227, 234, 244, 0.7);
  box-shadow: 0 1px 30px rgba(10, 35, 66, 0.08);
  padding: 16px 0;
  transition: var(--transition);
}

.navbar-custom.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 40px rgba(10, 35, 66, 0.13);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--primary-color) !important;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.3px;
  text-decoration: none;
}

.navbar-brand svg {
  filter: drop-shadow(0 2px 8px rgba(15, 98, 254, 0.35));
  transition: filter 0.3s ease;
}

.navbar-brand:hover svg {
  filter: drop-shadow(0 2px 18px rgba(59, 201, 255, 0.65));
}

/* Custom Logo Styling */
.logo-symbol-wrapper {
  width: 42px;
  height: 42px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.navbar-logo-symbol {
  width: 100%;
  height: 130%;
  /* Scale vertically to hide the bottom text block */
  object-fit: cover;
  object-position: top;
  /* Keep only the top icon symbol */
  filter: drop-shadow(0 2px 8px rgba(15, 98, 254, 0.15));
}

.navbar-brand:hover .logo-symbol-wrapper {
  transform: scale(1.06);
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.5px;
  color: #0A2342 !important;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

/* Light text overlay for footer logo text */
.footer .logo-text {
  color: #ffffff !important;
}

.logo-subtext {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3BC9FF !important;
}

@media (max-width: 575.98px) {
  .logo-symbol-wrapper {
    width: 34px;
    height: 34px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .logo-subtext {
    font-size: 0.58rem;
    letter-spacing: 1px;
  }
}


.nav-link {
  font-weight: 500;
  font-size: 0.92rem;
  color: #374151 !important;
  position: relative;
  margin: 0 4px;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color) !important;
  background: rgba(15, 98, 254, 0.06);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

@media (max-width: 991.98px) {
  .navbar-custom .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    margin-top: 0.75rem;
    box-shadow: 0 15px 35px rgba(11, 37, 69, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
  }
}

/* ==========================================================================
   Hero Section & 3D Showcase
   ========================================================================== */
.hero {
  min-height: 92vh;
  background: var(--hero-gradient);
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 80px;
}

/* Page Header Stage (Product Details, Applications, Contact, etc.) */
.page-header {
  background: radial-gradient(circle at 50% 30%, #0d3b66 0%, #0b2545 60%, #051329 100%);
  position: relative;
  padding-top: 130px !important;
  padding-bottom: 60px !important;
  color: white !important;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60 4.02 45V15z' fill-opacity='0.03' fill='%23ffffff' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
}

.page-header h1 {
  color: #ffffff !important;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item {
  color: rgba(255, 255, 255, 0.8) !important;
}

.page-header .breadcrumb-item.active {
  color: #ffffff !important;
  font-weight: 600;
}

/* ==========================================================================
   Dark Mode Neon Catalog & Applications Dashboard (3D Animated)
   ========================================================================== */
.dark-catalog-bg,
.dark-apps-bg {
  background-color: #020617 !important;
  color: #f1f5f9;
  position: relative;
}

.dark-catalog-bg::before,
.dark-apps-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60 4.02 45V15z' fill-opacity='0.02' fill='%23ffffff' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.app-card-dashboard {
  background: rgba(12, 26, 48, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 180, 216, 0.25);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transform-style: preserve-3d;
}

.app-card-dashboard:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(-1deg);
  border-color: rgba(0, 240, 255, 0.7);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 180, 216, 0.45);
}

.app-card-header {
  padding: 24px 24px 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.app-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.app-chromatogram-frame {
  background: #040914;
  border: 1px solid rgba(0, 180, 216, 0.25);
  border-radius: 12px;
  padding: 16px;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.85);
  position: relative;
  margin-top: 15px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

.app-card-dashboard:hover .app-chromatogram-frame {
  border-color: rgba(0, 240, 255, 0.5);
}

.app-recommendation-bar {
  background: rgba(4, 9, 20, 0.92);
  border-top: 1px solid rgba(0, 180, 216, 0.25);
  padding: 16px 24px;
  margin-top: auto;
}

.peak-marker-dot {
  animation: pulseGlow 2s infinite ease-in-out;
  cursor: pointer;
}

@keyframes pulseGlow {
  0% {
    r: 4;
    opacity: 0.7;
  }

  50% {
    r: 6.5;
    opacity: 1;
    filter: drop-shadow(0 0 8px #00f0ff);
  }

  100% {
    r: 4;
    opacity: 0.7;
  }
}

.app-column-thumb {
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.app-card-dashboard:hover .app-column-thumb {
  transform: translateY(-3px) scale(1.1);
}

/* Hexagon SVG Overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60 4.02 45V15z' fill-opacity='0.03' fill='%23ffffff' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 22px;
  line-height: 1.12;
  letter-spacing: -1px;
}

.hero-content h1 .text-accent {
  background: linear-gradient(135deg, #3BC9FF, #0F62FE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.18rem;
  opacity: 0.84;
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 520px;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
}

.badge-chip i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

/* 3D Platform Showcase (Hero) */
.showcase-3d-stage {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.pedestal-base {
  position: absolute;
  bottom: 40px;
  width: 320px;
  height: 120px;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.4) 0%, rgba(0, 119, 182, 0.1) 60%, transparent 80%);
  border-radius: 50%;
  transform: rotateX(65deg);
  box-shadow: 0 0 50px rgba(0, 180, 216, 0.6);
  animation: pedestalPulse 4s ease-in-out infinite alternate;
}

.pedestal-ring-1 {
  position: absolute;
  bottom: 50px;
  width: 280px;
  height: 90px;
  border: 3px solid rgba(0, 180, 216, 0.7);
  border-radius: 50%;
  transform: rotateX(65deg);
  box-shadow: inset 0 0 20px rgba(0, 180, 216, 0.5), 0 0 20px rgba(0, 180, 216, 0.5);
}

.pedestal-ring-2 {
  position: absolute;
  bottom: 60px;
  width: 220px;
  height: 70px;
  background: rgba(11, 37, 69, 0.7);
  border: 2px solid rgba(144, 224, 239, 0.9);
  border-radius: 50%;
  transform: rotateX(65deg);
}

.floating-column-img {
  position: relative;
  z-index: 10;
  max-height: 280px;
  max-width: 90%;
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.6));
  animation: float3D 4s ease-in-out infinite;
  transform-origin: center center;
}

.rotation-badge {
  position: absolute;
  bottom: 10px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 20;
}

/* Keyframes */
@keyframes float3D {
  0% {
    transform: translateY(0px) rotate(-2deg);
  }

  50% {
    transform: translateY(-16px) rotate(2deg);
  }

  100% {
    transform: translateY(0px) rotate(-2deg);
  }
}

@keyframes pedestalPulse {
  0% {
    opacity: 0.6;
    transform: rotateX(65deg) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: rotateX(65deg) scale(1.05);
  }
}

/* ==========================================================================
   Enhanced Animated Statistics Section
   ========================================================================== */
.stats-section-container {
  position: relative;
  z-index: 20;
  margin-top: -70px;
}

.stats-glass-wrapper {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(10, 35, 66, 0.14),
    0 0 0 1px rgba(59, 201, 255, 0.1),
    0 0 0 5px rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.stats-glass-wrapper:hover {
  box-shadow: 0 28px 70px rgba(10, 35, 66, 0.18),
    0 0 0 1.5px rgba(59, 201, 255, 0.22);
}

.stat-card {
  padding: 15px 10px;
  border-radius: 16px;
  transition: var(--transition);
  position: relative;
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-icon-box {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.stat-card:hover .stat-icon-box {
  transform: scale(1.12) rotate(6deg);
}

.icon-cyan {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.12), rgba(0, 119, 182, 0.22));
  color: #0077b6;
  border: 1px solid rgba(0, 180, 216, 0.3);
}

.icon-emerald {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(5, 150, 105, 0.22));
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.icon-blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(29, 78, 216, 0.22));
  color: #1d4ed8;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.icon-amber {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(217, 119, 6, 0.22));
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, #0A2342 0%, #0F62FE 60%, #3BC9FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.stat-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ==========================================================================
   Top Filter Toolbar & Layout
   ========================================================================== */
.top-filter-bar {
  background: var(--bg-white);
  padding: 16px 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
}

.filter-select-sm {
  font-size: 0.9rem;
  padding: 8px 30px 8px 14px;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  background-color: #fcfcfc;
  color: var(--text-dark);
  font-weight: 500;
}

.filter-select-sm:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.15);
}

.layout-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: var(--bg-white);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.layout-btn.active,
.layout-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* ==========================================================================
   Product Cards - 3D Scientific Style
   ========================================================================== */
.product-card-3d {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card-3d:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(11, 37, 69, 0.12);
  border-color: var(--accent-light);
}

/* Card Internal Layout & Vertical Alignment */
.card-body-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.card-product-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  min-height: 2.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.45;
  min-height: 2.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.spec-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  margin-bottom: 16px;
  min-height: 36px;
  align-items: center;
}

.card-action-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: auto;
}

/* Card Header Stage */
.card-header-stage {
  height: 270px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Phase Theme Gradients */
.theme-c18 {
  background: linear-gradient(135deg, #091e36 0%, #112a46 50%, #1a3a60 100%);
}

.theme-c8 {
  background: linear-gradient(135deg, #042628 0%, #084043 50%, #0d6266 100%);
}

.theme-ods {
  background: linear-gradient(135deg, #18113c 0%, #291b54 50%, #432b78 100%);
}

.theme-bio {
  background: linear-gradient(135deg, #0a3a5c 0%, #0f5282 50%, #156da9 100%);
}

.theme-prep {
  background: linear-gradient(135deg, #15181c 0%, #22272e 50%, #323942 100%);
}

.theme-sil {
  background: linear-gradient(135deg, #2b1f66 0%, #41328c 100%);
}

.theme-aps {
  background: linear-gradient(135deg, #042628 0%, #084043 50%, #0d6266 100%);
}

/* 3D Oval Pedestal in Card Header */
.card-pedestal-disc {
  position: absolute;
  bottom: 25px;
  width: 180px;
  height: 54px;
  border-radius: 50%;
  transform: rotateX(70deg);
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.65) 0%, rgba(255, 255, 255, 0.08) 70%, transparent 100%);
  border: 2px solid rgba(0, 180, 216, 0.85);
  box-shadow: 0 0 30px rgba(0, 180, 216, 0.75), inset 0 0 15px rgba(0, 180, 216, 0.5);
  transition: var(--transition);
}

.product-card-3d:hover .card-pedestal-disc {
  transform: rotateX(70deg) scale(1.18);
  box-shadow: 0 0 40px rgba(0, 180, 216, 1), inset 0 0 20px rgba(0, 180, 216, 0.7);
  border-color: #ffffff;
}

.card-column-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: contain;
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 15px 22px rgba(0, 0, 0, 0.35));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
  background: #ffffff !important;
  padding: 10px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.product-card-3d:hover .card-column-img {
  transform: translateY(-16px) scale(1.08) rotate(3deg);
  filter: drop-shadow(0 25px 32px rgba(0, 180, 216, 0.65));
}

.card-top-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 10;
}

.card-fav-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
  z-index: 10;
  cursor: pointer;
}

.card-fav-btn:hover,
.card-fav-btn.active {
  background: #ef4444;
  color: white;
  border-color: #ef4444;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.card-bestseller-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.4);
}

/* Card Body */
.card-body-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-product-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-product-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Spec Pills Row */
.spec-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.spec-pill {
  background: #f0f4f8;
  color: #334155;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid #e2e8f0;
}

.spec-pill.accent {
  background: rgba(0, 119, 182, 0.08);
  color: var(--secondary-color);
  border-color: rgba(0, 119, 182, 0.2);
}

.spec-pill.purple {
  background: rgba(88, 28, 135, 0.08);
  color: #6b21a8;
  border-color: rgba(88, 28, 135, 0.2);
}

/* Card Bottom Footer */
.card-action-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
}

.btn-card-details {
  background: var(--primary-color);
  color: white !important;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-card-details:hover {
  background: var(--secondary-color);
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
}

.card-icon-actions {
  display: flex;
  gap: 6px;
}

.btn-icon-action {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
}

.btn-icon-action:hover {
  background: var(--accent-light);
  color: var(--primary-color);
  border-color: var(--accent-color);
}

/* ==========================================================================
   Bottom Scientific Feature Ribbon
   ========================================================================== */
.features-ribbon {
  background: var(--bg-white);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 30px 0;
  margin-top: 60px;
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ribbon-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 119, 182, 0.08);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.ribbon-text h6 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--primary-color);
}

.ribbon-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   Footer & Responsive
   ========================================================================== */
/* Legacy footer kept for compatibility; new pages use .footer-premium from premium.css */
.footer {
  background: linear-gradient(175deg, #0A2342 0%, #061528 100%);
  color: white;
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 201, 255, 0.4), transparent);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  margin-right: 8px;
  transition: var(--transition);
  font-size: 1rem;
}

.social-links a:hover {
  background: linear-gradient(135deg, #0F62FE, #3BC9FF);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15, 98, 254, 0.4);
}

.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.83rem;
}

/* ==========================================================================
   Upgraded E-Commerce Catalog Layout & Interactive Features
   ========================================================================== */

/* Two-Column Consolidated Layout (CSS Grid) */
.catalog-layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 991.98px) {
  .catalog-layout-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-filter {
    display: none;
  }
}

/* Multi-column Grid vs Single-Column List View */
.products-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  transition: all 0.3s ease;
  width: 100%;
}

.products-grid-wrapper>.product-item,
.products-grid-wrapper>* {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  margin-bottom: 0 !important;
  height: 100%;
}

.products-grid-wrapper .product-card-3d {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.products-grid-wrapper.list-view {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.products-grid-wrapper.list-view .product-item {
  width: 100% !important;
}

.products-grid-wrapper.list-view .product-card-3d {
  flex-direction: row;
  min-height: 220px;
  align-items: stretch;
}

.products-grid-wrapper.list-view .card-header-stage {
  width: 260px;
  height: 100%;
  min-height: 220px;
  flex-shrink: 0;
}

.products-grid-wrapper.list-view .card-body-content {
  flex-grow: 1;
  padding: 1.25rem 1.5rem;
}

@media (max-width: 768px) {
  .products-grid-wrapper.list-view .product-card-3d {
    flex-direction: column;
  }

  .products-grid-wrapper.list-view .card-header-stage {
    width: 100%;
    height: 220px;
  }
}

/* Product Card Action Buttons & Favourite Heart Micro-interactions */
.card-fav-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  background: rgba(11, 37, 69, 0.7) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-fav-btn i {
  font-size: 1.1rem;
  color: #ffffff !important;
  transition: color 0.2s ease;
}

.card-fav-btn:hover {
  background: #ffffff !important;
  color: #ef4444 !important;
  transform: scale(1.12);
  border-color: #ffffff !important;
}

.card-fav-btn:hover i {
  color: #ef4444 !important;
}

/* Card Action Footer Icon Buttons (Always Visible) */
.card-icon-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-icon-action {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f1f5f9 !important;
  border: 1px solid #cbd5e1 !important;
  color: #0077b6 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-icon-action i {
  font-size: 1rem;
  color: #0077b6 !important;
  transition: color 0.2s ease;
}

.btn-icon-action:hover {
  background-color: #0077b6 !important;
  border-color: #0077b6 !important;
  color: #ffffff !important;
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 6px 14px rgba(0, 119, 182, 0.25);
}

.btn-icon-action:hover i {
  color: #ffffff !important;
}

/* Favourite / Bookmark Icon Button (Tinted Red, Always Visible) */
.btn-icon-action.bookmark-btn,
.btn-icon-action.heart-icon-btn {
  background-color: #fef2f2 !important;
  border-color: #fca5a5 !important;
  color: #ef4444 !important;
}

.btn-icon-action.bookmark-btn i,
.btn-icon-action.heart-icon-btn i {
  color: #ef4444 !important;
}

.btn-icon-action.bookmark-btn:hover,
.btn-icon-action.heart-icon-btn:hover {
  background-color: #ef4444 !important;
  border-color: #ef4444 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 14px rgba(239, 68, 68, 0.35);
}

.btn-icon-action.bookmark-btn:hover i,
.btn-icon-action.heart-icon-btn:hover i {
  color: #ffffff !important;
}

/* Active Saved / Favourites State */
.btn-icon-action.active,
.card-fav-btn.active,
.bookmark-btn.active,
.heart-icon-btn.active {
  background-color: #ef4444 !important;
  border-color: #ef4444 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 15px rgba(239, 68, 68, 0.45);
  animation: heartPop 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-icon-action.active i,
.card-fav-btn.active i,
.bookmark-btn.active i,
.heart-icon-btn.active i {
  color: #ffffff !important;
}

@keyframes heartPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.25);
  }

  100% {
    transform: scale(1);
  }
}

/* Skeleton Loading Cards & Linear-Gradient Shimmer Animation */
.skeleton-card {
  background: var(--bg-white, #ffffff);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.skeleton-shimmer {
  background: linear-gradient(90deg,
      #e2e8f0 0%,
      #f8fafc 50%,
      #e2e8f0 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.skeleton-image {
  height: 220px;
  width: 100%;
}

.skeleton-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.skeleton-title {
  height: 22px;
  width: 75%;
  border-radius: 6px;
}

.skeleton-text {
  height: 14px;
  width: 100%;
  border-radius: 4px;
}

.skeleton-text.short {
  width: 60%;
}

.skeleton-pills {
  display: flex;
  gap: 8px;
  margin-top: 0.5rem;
}

.skeleton-pill {
  height: 22px;
  width: 55px;
  border-radius: 12px;
}

.skeleton-footer {
  height: 36px;
  width: 100%;
  border-radius: 20px;
  margin-top: 1rem;
}

/* ==========================================================================
   Miniaturized Related Product Cards & 3-Column Grid Layout
   ========================================================================== */
.related-products-section {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 2.5rem 1.75rem;
  border-radius: 16px;
  margin-top: 3rem;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 991.98px) {
  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .related-products-grid {
    grid-template-columns: 1fr;
  }
}

/* Miniaturized Product Card */
.mini-product-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mini-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(11, 37, 69, 0.1);
  border-color: #cbd5e1;
}

.mini-card-thumb {
  height: 140px;
  background: linear-gradient(135deg, #091e36 0%, #112a46 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
}

.mini-card-img {
  max-height: 110px;
  max-width: 85%;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.mini-product-card:hover .mini-card-img {
  transform: scale(1.06);
}

.mini-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.mini-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0b2545;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.mini-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1rem;
}

.mini-badge {
  display: inline-block;
  border-radius: 99px;
  background-color: #e2e8f0;
  color: #334155;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  letter-spacing: 0.3px;
}

.mini-card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0077b6;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease, color 0.2s ease;
  margin-top: auto;
}

.mini-card-link:hover {
  color: #00b4d8;
  gap: 8px;
}

/* ==========================================================================
   Wishlist Drawer
   ========================================================================== */

/* Dark semi-transparent backdrop overlay */
.wishlist-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 37, 69, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wishlist-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Off-canvas slide-out container */
.wishlist-drawer {
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background-color: var(--bg-white, #ffffff);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

.wishlist-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

/* Drawer Header styling */
.wishlist-header {
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wishlist-title {
  font-family: var(--font-heading, inherit);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-color, #0b2545);
  margin: 0;
  display: flex;
  align-items: center;
}

/* Custom Close (X) button */
.btn-close-wishlist {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: var(--text-muted, #64748b);
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, color 0.2s;
}

.btn-close-wishlist:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--primary-color, #0b2545);
}

/* Scrollable favorites container */
.wishlist-items-container {
  flex-grow: 1;
  overflow-y: auto;
  padding: 10px 0;
}

/* Individual saved product list row */
.wishlist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease;
  animation: slideInWishlistItem 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wishlist-item:hover {
  background-color: var(--bg-light, #f8f9fa);
}

.wishlist-item-thumb {
  width: 55px;
  height: 55px;
  object-fit: contain;
  border-radius: 8px;
  background-color: #fcfcfc;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 5px;
}

.wishlist-item-body {
  flex-grow: 1;
}

.wishlist-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-color, #0b2545);
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.wishlist-item-link {
  font-size: 0.8rem;
  color: var(--secondary-color, #0077b6);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: color 0.2s;
}

.wishlist-item-link:hover {
  color: var(--accent-color, #00b4d8);
  text-decoration: underline;
}

/* Remove button */
.wishlist-item-remove {
  background: transparent;
  border: none;
  color: #dc3545;
  font-size: 1.1rem;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, transform 0.2s;
}

.wishlist-item-remove:hover {
  background-color: rgba(220, 53, 69, 0.1);
  transform: scale(1.05);
}

/* Empty State view styling */
.wishlist-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  padding: 40px 30px;
  text-align: center;
}

.empty-icon-wrapper {
  font-size: 3rem;
  color: #cbd5e1;
  margin-bottom: 15px;
}

.wishlist-empty-state h5 {
  font-weight: 700;
  color: var(--primary-color, #0b2545);
  margin-bottom: 8px;
}

.wishlist-empty-state p {
  font-size: 0.88rem;
  max-width: 260px;
  margin: 0;
}

/* Micro-interactions and keyframes */
@keyframes slideInWishlistItem {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Toggle heart click animation */
@keyframes heartPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.35);
  }

  100% {
    transform: scale(1);
  }
}

.card-fav-btn.active i,
.btn-icon-action.bookmark-btn.active i {
  animation: heartPop 0.3s ease-in-out;
}