/* ============================================================
   Before/After Slider
   ============================================================ */
.lceap-ba-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--lceap-radius-lg, 16px);
  cursor: ew-resize;
  user-select: none;
  height: 480px;
  touch-action: none;
}
.lceap-ba-before, .lceap-ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.lceap-ba-before { z-index: 2; }
.lceap-ba-before img, .lceap-ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.lceap-ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  z-index: 10;
  cursor: ew-resize;
  transform: translateX(-50%);
}
.lceap-ba-wrap.lceap-ba-vertical .lceap-ba-line {
  left: 0;
  right: 0;
  width: auto;
  height: 3px;
  cursor: ns-resize;
  transform: translateY(-50%);
}
.lceap-ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  color: #fff;
  transition: transform 0.2s ease;
}
.lceap-ba-handle:hover { transform: translate(-50%, -50%) scale(1.1); }
.lceap-ba-badge {
  position: absolute;
  top: 14px;
  padding: 5px 12px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.04em;
}
.lceap-ba-badge-before { left: 14px; }
.lceap-ba-badge-after  { right: 14px; }

/* ============================================================
   Video Popup
   ============================================================ */
.lceap-video-popup-wrap { position: relative; }
.lceap-vp-thumb {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: var(--lceap-radius-lg, 16px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}
.lceap-vp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  transition: background 0.3s ease;
}
.lceap-vp-thumb:hover .lceap-vp-overlay { background: rgba(0,0,0,0.45); }
.lceap-vp-play {
  position: relative;
  z-index: 2;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lceap-vp-btn-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.lceap-vp-btn-circle:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(233,69,96,0.5); }
.lceap-vp-btn-outline {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: transparent;
  border: 3px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lceap-vp-btn-pill {
  padding: 14px 28px;
  border-radius: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}
.lceap-vp-icon { width: 24px; height: 24px; }
.lceap-vp-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lceap-vp-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
}
.lceap-vp-dialog {
  position: relative;
  width: 100%;
  max-width: 900px;
  z-index: 1;
  animation: lceap-vp-in 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes lceap-vp-in { from { opacity:0; transform:scale(0.88); } to { opacity:1; transform:scale(1); } }
.lceap-vp-frame-wrap { position: relative; padding-top: 56.25%; background: #000; border-radius: 12px; overflow: hidden; }
.lceap-vp-frame-wrap iframe, .lceap-vp-frame-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.lceap-vp-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lceap-vp-close:hover { background: var(--lceap-primary, #e94560); }

/* ============================================================
   Team Members
   ============================================================ */
.lceap-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lceap-team-card {
  border-radius: var(--lceap-radius-lg, 16px);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.lceap-team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.14); }
.lceap-team-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--member-accent, #e94560);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.lceap-team-card:hover::before { transform: scaleX(1); }
.lceap-team-photo { position: relative; overflow: hidden; aspect-ratio: 1/1; }
.lceap-team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s ease; }
.lceap-team-card:hover .lceap-team-photo img { transform: scale(1.05); }
.lceap-team-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lceap-team-card:hover .lceap-team-hover-overlay { opacity: 1; }
.lceap-team-hover-overlay .lceap-team-bio { color: rgba(255,255,255,0.88); font-size: 13px; line-height: 1.6; margin-bottom: 12px; }
.lceap-team-info { padding: 18px 20px; }
.lceap-team-name { font-size: 1.05rem; font-weight: 800; color: var(--lceap-dark, #1a1a2e); margin: 0 0 4px; }
.lceap-team-role { font-size: 12px; font-weight: 600; color: var(--member-accent, #e94560); text-transform: uppercase; letter-spacing: 0.08em; }
.lceap-team-socials { display: flex; gap: 8px; margin-top: 12px; }
.lceap-social-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}
.lceap-social-icon:hover { background: var(--member-accent, #e94560); color: #fff; }

/* Flip Card */
.lceap-team-style-flip .lceap-team-inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  aspect-ratio: 1/1.2;
}
.lceap-team-style-flip .lceap-team-card:hover .lceap-team-inner { transform: rotateY(180deg); }
.lceap-team-front, .lceap-team-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--lceap-radius-lg, 16px);
  overflow: hidden;
}
.lceap-team-back {
  transform: rotateY(180deg);
  background: var(--member-accent, #e94560);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
}
.lceap-team-back .lceap-team-bio { color: rgba(255,255,255,0.9); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.lceap-team-back .lceap-social-icon { background: rgba(255,255,255,0.2); }

/* ============================================================
   FAQ Accordion
   ============================================================ */
.lceap-faq-wrap { display: flex; flex-direction: column; gap: 10px; }
.lceap-faq-item {
  border-radius: var(--lceap-radius, 10px);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.lceap-faq-style-card .lceap-faq-item {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid var(--lceap-border, #dfe6e9);
}
.lceap-faq-style-card .lceap-faq-item.lceap-faq-open {
  box-shadow: 0 6px 28px rgba(0,0,0,0.10);
  border-left: 3px solid var(--lceap-primary, #e94560);
}
.lceap-faq-style-bordered .lceap-faq-item { border-bottom: 1px solid var(--lceap-border, #dfe6e9); border-radius: 0; }
.lceap-faq-style-minimal .lceap-faq-item { border-bottom: 1px solid var(--lceap-border, #dfe6e9); border-radius: 0; background: transparent; }
.lceap-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 16px;
  text-align: left;
}
.lceap-faq-q-text { font-size: 15px; font-weight: 700; flex: 1; line-height: 1.4; }
.lceap-faq-icon { flex-shrink: 0; font-size: 20px; font-weight: 300; transition: transform 0.3s ease; line-height: 1; }
.lceap-faq-item.lceap-faq-open .lceap-faq-icon svg { transform: rotate(180deg); }
.lceap-faq-icon-plus .lceap-plus-close,
.lceap-faq-item:not(.lceap-faq-open) .lceap-faq-icon-plus .lceap-plus-open { display: inline; }
.lceap-faq-item.lceap-faq-open .lceap-faq-icon-plus .lceap-plus-close { display: inline; }
.lceap-faq-item.lceap-faq-open .lceap-faq-icon-plus .lceap-plus-open { display: none; }
.lceap-faq-answer-wrap { overflow: hidden; }
.lceap-faq-answer { padding: 0 22px 20px; font-size: 14px; line-height: 1.75; }
.lceap-faq-answer p:last-child { margin: 0; }

/* ============================================================
   Animated Stats
   ============================================================ */
.lceap-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lceap-stat-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--lceap-radius-lg, 16px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lceap-stat-card:hover { transform: translateY(-5px); }
.lceap-stats-style-glass .lceap-stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}
.lceap-stats-style-solid .lceap-stat-card {
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid var(--lceap-border, #dfe6e9);
}
.lceap-stats-style-minimal .lceap-stat-card {
  background: transparent;
  border-top: 3px solid var(--stat-accent, #e94560);
  padding-top: 24px;
}
.lceap-stat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--stat-accent, #e94560);
}
.lceap-stats-style-minimal .lceap-stat-card::before { display: none; }
.lceap-stat-icon { font-size: 2.2rem; margin-bottom: 10px; line-height: 1; }
.lceap-stat-number-wrap { display: flex; align-items: baseline; justify-content: center; gap: 2px; margin-bottom: 8px; }
.lceap-stat-number { font-size: 3rem; font-weight: 900; color: var(--stat-accent, #e94560); line-height: 1; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.lceap-stat-prefix, .lceap-stat-suffix { font-size: 1.4rem; font-weight: 800; color: var(--stat-accent, #e94560); }
.lceap-stat-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.7; }
.lceap-stat-desc { font-size: 12px; opacity: 0.5; margin-top: 4px; }

/* ============================================================
   Image Gallery + Lightbox
   ============================================================ */
.lceap-gallery-grid { display: grid; gap: 12px; }
.lceap-gallery-masonry { columns: 3; column-gap: 12px; }
.lceap-gallery-masonry .lceap-gallery-item { break-inside: avoid; margin-bottom: 12px; }
.lceap-gallery-item { position: relative; overflow: hidden; border-radius: 10px; }
.lceap-gallery-img-wrap { position: relative; overflow: hidden; }
.lceap-gallery-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.lceap-gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lceap-gallery-hover-zoom-overlay .lceap-gallery-item:hover .lceap-gallery-img-wrap img { transform: scale(1.08); }
.lceap-gallery-hover-zoom-overlay .lceap-gallery-item:hover .lceap-gallery-overlay,
.lceap-gallery-hover-slide-up .lceap-gallery-item:hover .lceap-gallery-overlay { opacity: 1; }
.lceap-gallery-hover-zoom .lceap-gallery-item:hover .lceap-gallery-img-wrap img { transform: scale(1.08); }
.lceap-gallery-overlay-inner { text-align: center; color: #fff; }
.lceap-gallery-zoom-icon { font-size: 28px; display: block; margin-bottom: 6px; }
.lceap-gallery-caption { font-size: 13px; font-weight: 600; }
.lceap-gallery-lightbox-trigger { position: absolute; inset: 0; z-index: 2; }
/* Lightbox */
.lceap-lightbox { position: fixed; inset: 0; z-index: 999999; display: flex !important; align-items: center; justify-content: center; }
.lceap-lb-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.95); }
.lceap-lb-dialog { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; }
.lceap-lb-img-wrap { display: flex; align-items: center; justify-content: center; }
.lceap-lb-img { max-width: 90vw; max-height: 80vh; border-radius: 8px; object-fit: contain; }
.lceap-lb-close { position: absolute; top: -48px; right: 0; background: rgba(255,255,255,0.12); border: none; color: #fff; width: 40px; height: 40px; border-radius: 50%; font-size: 22px; cursor: pointer; }
.lceap-lb-prev, .lceap-lb-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 22px; cursor: pointer; transition: background 0.2s; z-index: 2; }
.lceap-lb-prev { left: 24px; }
.lceap-lb-next { right: 24px; }
.lceap-lb-prev:hover, .lceap-lb-next:hover { background: var(--lceap-primary, #e94560); }
.lceap-lb-counter { position: absolute; bottom: -36px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-size: 13px; }

/* ============================================================
   Social Proof Bar
   ============================================================ */
.lceap-spb-wrap { display: flex; align-items: center; gap: 20px; padding: 20px 28px; border-radius: var(--lceap-radius-lg, 16px); flex-wrap: wrap; }
.lceap-spb-avatars { display: flex; }
.lceap-spb-avatar { width: 38px; height: 38px; border-radius: 50%; border: 2px solid #fff; object-fit: cover; margin-left: -10px; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.lceap-spb-avatar:first-child { margin-left: 0; }
.lceap-spb-stars { display: flex; gap: 2px; font-size: 18px; }
.lceap-spb-rating-block { display: flex; align-items: center; gap: 12px; }
.lceap-spb-rating-info { display: flex; flex-direction: column; gap: 2px; }
.lceap-spb-rating-info strong { font-size: 1.3rem; font-weight: 900; color: var(--lceap-dark, #1a1a2e); }
.lceap-spb-rating-info span { font-size: 13px; font-weight: 600; }
.lceap-spb-rating-info small { font-size: 11px; color: var(--lceap-muted, #636e72); }
/* Ticker */
.lceap-spb-ticker { overflow: hidden; width: 100%; }
.lceap-spb-ticker-track { display: flex; gap: 48px; align-items: center; animation: lceap-ticker linear infinite; white-space: nowrap; }
.lceap-spb-ticker[data-pause="true"]:hover .lceap-spb-ticker-track { animation-play-state: paused; }
.lceap-spb-logo-item img { height: 36px; width: auto; object-fit: contain; filter: grayscale(100%); opacity: 0.55; transition: filter 0.2s, opacity 0.2s; }
.lceap-spb-logo-item:hover img { filter: none; opacity: 1; }
@keyframes lceap-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* Trust badges */
.lceap-spb-badges { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.lceap-spb-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; }
.lceap-spb-badge-icon { font-size: 20px; }

/* ============================================================
   Mega Menu
   ============================================================ */
.lceap-mega-menu-nav { position: relative; display: inline-block; }
.lceap-mm-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
}
.lceap-mm-trigger:hover { filter: brightness(1.1); }
.lceap-mm-chevron { transition: transform 0.3s ease; }
.lceap-mm-trigger[aria-expanded="true"] .lceap-mm-chevron { transform: rotate(180deg); }
.lceap-mm-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 680px;
  border-radius: var(--lceap-radius-lg, 16px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  border: 1px solid var(--lceap-border, #dfe6e9);
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}
.lceap-mm-dropdown.lceap-mm-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.lceap-mm-inner { display: flex; gap: 0; }
.lceap-mm-columns { display: flex; flex: 1; }
.lceap-mm-col { flex: 1; padding: 24px 20px; border-right: 1px solid var(--lceap-border, #dfe6e9); }
.lceap-mm-col:last-child { border-right: none; }
.lceap-mm-col-heading { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; color: var(--lceap-muted, #636e72); margin-bottom: 14px; }
.lceap-mm-col-icon { font-size: 16px; }
.lceap-mm-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.lceap-mm-links a { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px; text-decoration: none; color: var(--lceap-text, #2d3436); transition: background 0.15s; }
.lceap-mm-links a:hover { background: var(--lceap-light, #f8f9fa); }
.lceap-mm-link-icon { flex-shrink: 0; font-size: 16px; }
.lceap-mm-link-body { display: flex; flex-direction: column; gap: 2px; }
.lceap-mm-link-text { font-size: 13px; font-weight: 600; }
.lceap-mm-link-desc { font-size: 11px; color: var(--lceap-muted, #636e72); }
.lceap-mm-featured { width: 200px; flex-shrink: 0; overflow: hidden; }
.lceap-mm-featured a { display: block; position: relative; height: 100%; }
.lceap-mm-featured img { width: 100%; height: 100%; object-fit: cover; }
.lceap-mm-featured-label { position: absolute; bottom: 16px; left: 16px; right: 16px; background: rgba(0,0,0,0.6); color: #fff; font-size: 12px; font-weight: 700; padding: 8px 12px; border-radius: 8px; }

/* ============================================================
   WooCommerce Product Grid
   ============================================================ */
.lceap-woo-grid { display: grid; gap: 24px; }
.lceap-woo-card { background: #fff; border-radius: var(--lceap-radius-lg, 16px); overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.lceap-woo-style-modern .lceap-woo-card { box-shadow: 0 4px 20px rgba(0,0,0,0.07); border: 1px solid var(--lceap-border, #dfe6e9); }
.lceap-woo-style-bordered .lceap-woo-card { border: 2px solid var(--lceap-border, #dfe6e9); }
.lceap-woo-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.lceap-woo-thumb-wrap { position: relative; overflow: hidden; aspect-ratio: 1/1; background: #f8f9fa; }
.lceap-woo-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.lceap-woo-card:hover .lceap-woo-thumb { transform: scale(1.05); }
.lceap-woo-badge { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 800; color: #fff; padding: 4px 10px; border-radius: 20px; letter-spacing: 0.05em; text-transform: uppercase; }
.lceap-woo-wishlist { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,0.9); border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.12); opacity: 0; }
.lceap-woo-card:hover .lceap-woo-wishlist { opacity: 1; }
.lceap-woo-wishlist:hover { background: var(--lceap-primary, #e94560); color: #fff; transform: scale(1.1); }
.lceap-woo-body { padding: 16px 18px 20px; }
.lceap-woo-title { font-size: 14px; font-weight: 700; margin: 0 0 6px; line-height: 1.4; }
.lceap-woo-title a { color: var(--lceap-dark, #1a1a2e); text-decoration: none; }
.lceap-woo-title a:hover { color: var(--lceap-primary, #e94560); }
.lceap-woo-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.lceap-woo-star { font-size: 13px; color: #ddd; }
.lceap-woo-star.filled { color: #f5c842; }
.lceap-woo-rcount { font-size: 11px; color: var(--lceap-muted, #636e72); }
.lceap-woo-price { margin-bottom: 14px; }
.lceap-woo-price .price { font-size: 1.1rem; font-weight: 800; color: var(--lceap-dark, #1a1a2e); }
.lceap-woo-price .price del { font-size: 0.85rem; color: var(--lceap-muted, #636e72); font-weight: 400; }
.lceap-woo-price .price ins { text-decoration: none; color: var(--lceap-primary, #e94560); }
.lceap-woo-atc {
  display: block;
  width: 100%;
  padding: 10px 16px;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
}
.lceap-woo-atc:hover { filter: brightness(1.1); transform: translateY(-1px); color: #fff; }

@media (max-width: 900px) {
  .lceap-team-grid { grid-template-columns: repeat(2, 1fr); }
  .lceap-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .lceap-mm-dropdown { min-width: 480px; }
}
@media (max-width: 580px) {
  .lceap-team-grid, .lceap-stats-grid { grid-template-columns: 1fr; }
  .lceap-mm-dropdown { min-width: calc(100vw - 40px); }
  .lceap-gallery-masonry { columns: 2; }
}
