/* ═══════════════════════════════════════════
   Apple-Inspired Premium UI Design System
   Dual-Persona: Designer (Teal) vs. Photographer (Gold)
   ═══════════════════════════════════════════ */

:root {
  --apple-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --apple-font-serif: "Syne", "Georgia", "Times New Roman", serif;
  
  /* Brand Base Tokens (Default: Designer Mode) */
  --apple-bg: #070b12;
  --apple-bg-secondary: #0d1423;
  --apple-card-light: #f5f5f7;
  --apple-card-dark: #121b2d;
  --apple-text-primary: #f5f5f7;
  --apple-text-secondary: #94a3b8;
  --apple-blue: #2dd4bf;
  --apple-blue-hover: #39d0ff;
  --apple-border: rgba(255, 255, 255, 0.08);
  --apple-border-light: rgba(0, 0, 0, 0.08);
  --hero-title-gradient: linear-gradient(135deg, #ffffff 40%, #2dd4bf 100%);
  --font-hero: var(--apple-font);
}

/* Base Body Resets */
body.apple-theme {
  font-family: var(--apple-font) !important;
  background-color: var(--apple-bg) !important;
  color: var(--apple-text-primary) !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.8s cubic-bezier(0.16, 1, 0.3, 1), color 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Photographer Mode Tokens */
body.apple-theme.photo-mode {
  --apple-bg: #0a0908;
  --apple-bg-secondary: #141210;
  --apple-card-dark: #1a1816;
  --apple-text-secondary: #a7a29e;
  --apple-blue: #fbbf24;
  --apple-blue-hover: #f59e0b;
  --apple-border: rgba(255, 255, 255, 0.06);
  --hero-title-gradient: linear-gradient(135deg, #ffffff 30%, #fbbf24 100%);
  --font-hero: var(--apple-font-serif);
}

/* Glassmorphism Header */
.apple-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 52px;
  background: rgba(7, 11, 18, 0.8) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--apple-border);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s ease, border-color 0.5s ease;
}

body.apple-theme.photo-mode .apple-header {
  background: rgba(10, 9, 8, 0.8) !important;
}

.apple-header-inner {
  width: 100%;
  max-width: 1024px;
  padding: 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.apple-logo img {
  height: 20px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.apple-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}

.apple-nav-list a {
  color: var(--apple-text-secondary) !important;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.apple-nav-list a:hover,
.apple-nav-list .active a {
  color: var(--apple-blue) !important;
}

/* Responsive Header */
@media (max-width: 767px) {
  .apple-nav-list {
    display: none;
  }
}

/* Hero Section */
.apple-hero {
  padding-top: 160px;
  padding-bottom: 100px;
  text-align: center;
  background: var(--apple-bg);
  position: relative;
  overflow: hidden;
  transition: background-color 0.8s ease;
}

/* Duality Switcher Widget (Extremely Creative) */
.apple-mode-switcher {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--apple-border);
  padding: 4px;
  border-radius: 50px;
  margin-bottom: 30px;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.switcher-btn {
  border: none;
  background: transparent;
  color: var(--apple-text-secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s, background-color 0.3s, transform 0.2s;
  font-family: var(--apple-font);
}

.switcher-btn:hover {
  color: #ffffff;
}

.switcher-btn.active {
  background: var(--apple-blue);
  color: #000000;
  box-shadow: 0 4px 12px rgba(45, 212, 191, 0.3);
}

body.apple-theme.photo-mode .switcher-btn.active {
  color: #000000;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.apple-hero-kicker {
  font-size: 13px;
  font-weight: 700;
  color: var(--apple-blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  display: block;
  transition: color 0.5s ease;
}

.apple-hero-title {
  font-size: clamp(38px, 8vw, 84px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 auto 24px;
  max-width: 900px;
  font-family: var(--font-hero);
  background: var(--hero-title-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background 0.8s ease, font-family 0.8s ease;
}

.apple-hero-desc {
  font-size: clamp(16px, 3.5vw, 22px);
  font-weight: 400;
  color: var(--apple-text-secondary);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.45;
  letter-spacing: -0.015em;
  transition: color 0.5s ease;
}

.apple-hero-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.apple-cta-link {
  font-size: 17px;
  color: var(--apple-blue);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.3s;
}

.apple-cta-link:hover {
  color: var(--apple-blue-hover);
  gap: 10px;
}

/* Bento Grid Showcase */
.apple-bento-section {
  padding: 60px 20px;
  background: var(--apple-bg);
  transition: background-color 0.8s ease;
}

.apple-section-header {
  max-width: 1024px;
  margin: 0 auto 50px;
  padding: 0 10px;
}

.apple-section-title {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 12px;
}

.apple-section-subtitle {
  font-size: 16px;
  color: var(--apple-text-secondary);
  font-weight: 400;
  max-width: 600px;
  line-height: 1.5;
}

.apple-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1024px;
  margin: 0 auto;
}

/* Premium Bento Cards with Spec Overlay */
.apple-bento-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 480px;
  background: var(--apple-card-dark);
  border: 1px solid var(--apple-border);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  z-index: 2;
}

.apple-bento-card.full-width {
  grid-column: span 2;
  height: 520px;
}

.apple-bento-card:hover {
  transform: translateY(-4px) scale(1.008);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Card Background Media */
.apple-card-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.apple-card-bg-media img,
.apple-card-bg-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.apple-bento-card:hover .apple-card-bg-media img,
.apple-bento-card:hover .apple-card-bg-media video {
  transform: scale(1.03);
}

/* Premium Inset Gradient Border (Vercel Style) */
.apple-bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 1;
  z-index: 3;
}

/* Dynamic Brand Overlay Border on Hover */
.apple-bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--apple-blue) 0%, rgba(255, 255, 255, 0) 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 4;
}

.apple-bento-card:hover::before {
  opacity: 1;
}

/* Card Content Details */
.apple-card-info {
  position: relative;
  z-index: 5;
  max-width: 85%;
}

.apple-card-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--apple-blue);
  margin-bottom: 10px;
  display: block;
}

.apple-card-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: #ffffff;
}

.apple-card-desc {
  font-size: 14px;
  color: var(--apple-text-secondary);
  margin-top: 10px;
  line-height: 1.45;
}

.apple-card-action {
  position: relative;
  z-index: 5;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.apple-bento-card:hover .apple-card-action {
  gap: 10px;
  color: var(--apple-blue);
}

@media (max-width: 767px) {
  .apple-bento-grid {
    grid-template-columns: 1fr;
  }
  .apple-bento-card,
  .apple-bento-card.full-width {
    grid-column: span 1;
    height: 420px;
    padding: 30px;
  }
}

/* ─────────────────────────────────
   "THROUGH THE LENS" PHOTOGRAPHY CAROUSEL (Exclusive)
   ───────────────────────────────── */
.apple-lens-section {
  padding: 80px 0;
  background: var(--apple-bg-secondary);
  overflow: hidden;
  border-top: 1px solid var(--apple-border);
  border-bottom: 1px solid var(--apple-border);
  transition: background-color 0.8s ease;
}

.apple-lens-track-wrapper {
  width: 100%;
  overflow-x: auto;
  display: flex;
  padding: 20px 40px;
  scrollbar-width: none;
}
.apple-lens-track-wrapper::-webkit-scrollbar {
  display: none;
}

.apple-lens-track {
  display: flex;
  gap: 24px;
}

.apple-lens-item {
  width: 320px;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #000;
  border: 1px solid var(--apple-border);
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

/* Letterbox cinema borders */
.apple-lens-item::before,
.apple-lens-item::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 40px;
  background: #000000;
  z-index: 2;
  transition: height 0.3s ease;
}
.apple-lens-item::before { top: 0; }
.apple-lens-item::after { bottom: 0; }

.apple-lens-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
  opacity: 0.8;
}

.apple-lens-item:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.apple-lens-item:hover::before,
.apple-lens-item:hover::after {
  height: 20px;
}

.apple-lens-caption {
  position: absolute;
  bottom: 50px;
  left: 24px;
  z-index: 3;
  color: #ffffff;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}

.apple-lens-item:hover .apple-lens-caption {
  opacity: 1;
  transform: translateY(0);
}

.apple-lens-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.apple-lens-cat {
  font-size: 11px;
  color: var(--apple-blue);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Engineered Specs */
.apple-specs-section {
  background: var(--apple-bg-secondary);
  padding: 80px 20px;
  transition: background-color 0.8s ease;
}

.apple-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1024px;
  margin: 0 auto;
}

.apple-spec-card {
  padding: 30px 20px;
  border-radius: 24px;
  background: var(--apple-card-dark);
  border: 1px solid var(--apple-border);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

.apple-spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(45, 212, 191, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

body.apple-theme.photo-mode .apple-spec-card::before {
  background: radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.06) 0%, transparent 70%);
}

.apple-spec-card:hover {
  transform: translateY(-6px);
  border-color: var(--apple-blue);
}

.apple-spec-card:hover::before {
  opacity: 1;
}

.apple-spec-number {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.apple-spec-number span {
  color: var(--apple-blue);
}

.apple-spec-label {
  font-size: 13px;
  color: var(--apple-text-secondary);
  font-weight: 600;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .apple-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Apple Services Accordion */
.apple-accordion-section {
  padding: 100px 20px;
  background: var(--apple-bg);
  transition: background-color 0.8s ease;
}

.apple-accordion-container {
  max-width: 800px;
  margin: 0 auto;
}

.apple-accordion-item {
  border-bottom: 1px solid var(--apple-border);
  padding: 28px 0;
}

.apple-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.apple-accordion-title {
  font-size: clamp(19px, 3vw, 26px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.015em;
}

.apple-accordion-icon {
  font-size: 20px;
  color: var(--apple-text-secondary);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.apple-accordion-item.active .apple-accordion-icon {
  transform: rotate(45deg);
  color: var(--apple-blue);
}

.apple-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  color: var(--apple-text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.apple-accordion-item.active .apple-accordion-content {
  max-height: 350px;
  padding-top: 18px;
}

/* Floating Glass Dock */
.apple-dock {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(13, 20, 35, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 9998;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

body.apple-theme.photo-mode .apple-dock {
  background: rgba(20, 18, 16, 0.75);
}

.apple-dock.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.apple-dock-item {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--apple-text-secondary);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.apple-dock-item:hover {
  color: var(--apple-blue);
  background: rgba(45, 212, 191, 0.1);
  transform: scale(1.15) translateY(-4px);
}

body.apple-theme.photo-mode .apple-dock-item:hover {
  background: rgba(251, 191, 36, 0.1);
}

.apple-dock-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 4px;
}

/* CSS Scroll Reveal animations */
.apple-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.apple-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Footer & Form styles */
.apple-form-section {
  padding: 100px 20px;
  background: var(--apple-bg-secondary);
  transition: background-color 0.8s ease;
}

.apple-form-container {
  max-width: 600px;
  margin: 0 auto;
}

.apple-form-title {
  text-align: center;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  color: #ffffff;
}

.apple-input-group {
  margin-bottom: 24px;
}

.apple-input-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--apple-text-secondary);
  margin-bottom: 8px;
}

.apple-input-control {
  width: 100%;
  background: var(--apple-bg);
  border: 1px solid var(--apple-border);
  color: #ffffff;
  border-radius: 12px;
  padding: 16px;
  font-family: var(--apple-font);
  font-size: 15px;
  transition: border-color 0.25s, box-shadow 0.25s, background-color 0.5s;
  outline: none;
}

.apple-input-control:focus {
  border-color: var(--apple-blue);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.15);
}

body.apple-theme.photo-mode .apple-input-control:focus {
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.15);
}

select.apple-input-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2386868b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

.apple-btn-submit {
  width: 100%;
  background: var(--apple-blue);
  color: #000000;
  border: none;
  border-radius: 12px;
  padding: 18px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.2s;
  margin-top: 20px;
}

.apple-btn-submit:hover {
  background: var(--apple-blue-hover);
}

.apple-footer {
  background: var(--apple-bg);
  color: var(--apple-text-secondary);
  font-size: 12px;
  line-height: 1.6;
  padding: 80px 20px 40px;
  border-top: 1px solid var(--apple-border);
  transition: background-color 0.8s ease;
}

.apple-footer-inner {
  max-width: 1024px;
  margin: 0 auto;
}

.apple-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 40px;
}

.apple-footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
}

.apple-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.apple-footer-col li {
  margin-bottom: 10px;
}

.apple-footer-col a {
  color: var(--apple-text-secondary) !important;
  text-decoration: none;
  transition: color 0.2s;
}

.apple-footer-col a:hover {
  color: #ffffff !important;
}

.apple-footer-bar {
  border-top: 1px solid var(--apple-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.apple-footer-social {
  display: flex;
  gap: 20px;
}

.apple-footer-social a {
  color: var(--apple-text-secondary);
  font-size: 18px;
  transition: color 0.2s;
}

.apple-footer-social a:hover {
  color: #ffffff;
}

@media (max-width: 767px) {
  .apple-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   GLOBAL INTERACTIVE LIKE BUTTON STYLING
   ============================================================ */
button.content-like-btn,
.content-like-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 14px 24px !important;
  background: rgba(45, 212, 191, 0.12) !important;
  border: 1.5px solid rgba(45, 212, 191, 0.4) !important;
  border-radius: 100px !important;
  color: #2dd4bf !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 20px rgba(45, 212, 191, 0.2) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  margin-top: 12px !important;
  text-decoration: none !important;
  outline: none !important;
}

button.content-like-btn:hover,
.content-like-btn:hover {
  background: #2dd4bf !important;
  color: #070b12 !important;
  border-color: #2dd4bf !important;
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 8px 30px rgba(45, 212, 191, 0.45) !important;
}

button.content-like-btn:active,
.content-like-btn:active {
  transform: scale(0.97) !important;
}

.content-like-btn .content-like-icon {
  font-size: 1.2rem !important;
  transition: transform 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
}

.content-like-btn:hover .content-like-icon {
  transform: scale(1.25) !important;
}

button.content-like-btn.is-liked,
.content-like-btn.is-liked {
  background: rgba(244, 63, 94, 0.18) !important;
  border-color: rgba(244, 63, 94, 0.5) !important;
  color: #fb7185 !important;
  box-shadow: 0 4px 20px rgba(244, 63, 94, 0.3) !important;
}

button.content-like-btn.is-liked:hover,
.content-like-btn.is-liked:hover {
  background: #f43f5e !important;
  color: #ffffff !important;
  border-color: #f43f5e !important;
  box-shadow: 0 8px 30px rgba(244, 63, 94, 0.5) !important;
}

.content-like-btn .content-like-count {
  background: rgba(255, 255, 255, 0.15) !important;
  padding: 2px 12px !important;
  border-radius: 20px !important;
  font-size: 0.85rem !important;
  margin-inline-start: 6px !important;
}

.content-like-btn:hover .content-like-count {
  background: rgba(0, 0, 0, 0.25) !important;
  color: currentColor !important;
}
