
@font-face {
  font-family: 'Stencil Std';
  src: url('https://auctionyard.com/wp-content/themes/divi-auction-enhanced/fonts/stencil-std-bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-dark: #0a0a12;
  --bg-card: #11111d;
  --bg-card-hover: #1a1a2a;
  --accent-primary: #4F5BD5;
  --accent-bright: #6C7AFF;
  --accent-glow: rgba(79,91,213,0.25);
  --accent-blue: #4F5BD5;
  --accent-gold: #4F5BD5;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-subtle: rgba(255,255,255,0.06);
}

.ayr-wrap * { margin: 0; padding: 0; box-sizing: border-box; }

.ayr-wrap {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== PAGE HEADER ===== */
.ayr-wrap .page-header {
  position: relative;
  text-align: center;
  padding: 48px 20px 20px;
  overflow: hidden;
}

.ayr-wrap .page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 20%, rgba(79,91,213,0.1) 0%, transparent 60%);
  z-index: 0;
}

.ayr-wrap .page-header-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.ayr-wrap .page-header h1 {
  font-family: 'Stencil Std', Stencil, Impact, sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: bold;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  animation: fadeInUp 0.6s ease both;
}

.ayr-wrap .page-header h1 .highlight {
  background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ayr-wrap .page-header-sub {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== FANNED CATEGORY CARDS ===== */
.ayr-wrap .fan-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 20px 40px;
  overflow: hidden;
}

.ayr-wrap .fan-track {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  padding: 40px 0 20px;
  position: relative;
  perspective: 1200px;
}

.ayr-wrap .fan-card {
  width: 160px;
  flex-shrink: 0;
  margin: 0 -14px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  transform-origin: bottom center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  text-decoration: none;
  color: inherit;
  display: block;
}

.ayr-wrap .fan-card:nth-child(1) { transform: rotate(-13deg) translateY(10px); z-index: 1; }
.ayr-wrap .fan-card:nth-child(2) { transform: rotate(-10.5deg) translateY(7px); z-index: 2; }
.ayr-wrap .fan-card:nth-child(3) { transform: rotate(-8deg) translateY(4px); z-index: 3; }
.ayr-wrap .fan-card:nth-child(4) { transform: rotate(-6deg) translateY(2px); z-index: 4; }
.ayr-wrap .fan-card:nth-child(5) { transform: rotate(-4deg) translateY(1px); z-index: 5; }
.ayr-wrap .fan-card:nth-child(6) { transform: rotate(-2.5deg) translateY(0px); z-index: 6; }
.ayr-wrap .fan-card:nth-child(7) { transform: rotate(-1deg) translateY(-1px); z-index: 7; }
.ayr-wrap .fan-card:nth-child(8) { transform: rotate(0deg) translateY(-2px); z-index: 8; }
.ayr-wrap .fan-card:nth-child(9) { transform: rotate(1deg) translateY(-1px); z-index: 8; }
.ayr-wrap .fan-card:nth-child(10) { transform: rotate(2.5deg) translateY(0px); z-index: 7; }
.ayr-wrap .fan-card:nth-child(11) { transform: rotate(4deg) translateY(1px); z-index: 6; }
.ayr-wrap .fan-card:nth-child(12) { transform: rotate(6deg) translateY(2px); z-index: 5; }
.ayr-wrap .fan-card:nth-child(13) { transform: rotate(8deg) translateY(4px); z-index: 4; }
.ayr-wrap .fan-card:nth-child(14) { transform: rotate(10.5deg) translateY(7px); z-index: 3; }
.ayr-wrap .fan-card:nth-child(15) { transform: rotate(13deg) translateY(10px); z-index: 2; }
.ayr-wrap .fan-card:nth-child(16) { transform: rotate(15deg) translateY(12px); z-index: 1; }

.ayr-wrap .fan-card:hover {
  transform: rotate(0deg) translateY(-28px) scale(1.12) !important;
  z-index: 50 !important;
  border-color: var(--fc-color, var(--accent-blue));
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px var(--fc-glow, rgba(59,130,246,0.2));
}

.ayr-wrap .fan-card-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: filter 0.3s;
}

.ayr-wrap .fan-card:hover .fan-card-img {
  filter: brightness(1);
}

.ayr-wrap .fan-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  pointer-events: none;
}

.ayr-wrap .fan-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 10px 12px;
  z-index: 2;
}

.ayr-wrap .fan-card-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 3px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.ayr-wrap .fan-card-count {
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.ayr-wrap .fan-card-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 3;
}

/* Stats strip */
.ayr-wrap .stats-strip {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 0 20px 8px;
  max-width: 700px;
  margin: 0 auto;
}

.ayr-wrap .stats-strip .s-item {
  text-align: center;
}

.ayr-wrap .stats-strip .s-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 30%, #6C7AFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ayr-wrap .stats-strip .s-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

@media (max-width: 1100px) {
  .ayr-wrap .fan-card { width: 130px; margin: 0 -16px; }
  .ayr-wrap .fan-card-img { height: 85px; }
}

@media (max-width: 768px) {
  .ayr-wrap .fan-track {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 30px 20px 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .ayr-wrap .fan-track::-webkit-scrollbar { display: none; }
  .ayr-wrap .fan-card {
    width: 120px;
    margin: 0 -10px;
    transform: rotate(0deg) translateY(0) !important;
  }
  .ayr-wrap .fan-card:hover {
    transform: translateY(-16px) scale(1.08) !important;
  }
}

/* Breadcrumbs */
.ayr-wrap .breadcrumbs {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 20px 0;
  font-size: 13px;
  color: var(--text-muted);
}
.ayr-wrap .breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.ayr-wrap .breadcrumbs a:hover { color: var(--accent-blue); }
.ayr-wrap .breadcrumbs .sep { margin: 0 8px; opacity: 0.5; }

/* Category nav */
.ayr-wrap .cat-nav-section {
  padding: 0 20px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.ayr-wrap .cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.ayr-wrap .cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.ayr-wrap .cat-pill svg { width: 16px; height: 16px; opacity: 0.7; flex-shrink: 0; }
.ayr-wrap .cat-pill:hover, .ayr-wrap .cat-pill.active {
  background: rgba(59,130,246,0.1);
  border-color: rgba(59,130,246,0.3);
  color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(59,130,246,0.15);
}
.ayr-wrap .cat-pill:hover svg, .ayr-wrap .cat-pill.active svg { opacity: 1; }
.ayr-wrap .cat-pill .count {
  font-size: 11px;
  padding: 2px 7px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  font-weight: 600;
}

/* Category sections */
.ayr-wrap .categories-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.ayr-wrap .category-section {
  margin-bottom: 80px;
  scroll-margin-top: 80px;
}

.ayr-wrap .category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.ayr-wrap .category-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ayr-wrap .category-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.ayr-wrap .category-meta {
  margin-bottom: 16px;
  padding-left: 68px;
}
.ayr-wrap .category-meta .val {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.ayr-wrap .category-desc {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 68px;
  margin-bottom: 28px;
  max-width: 800px;
  line-height: 1.7;
}

/* Card carousel */
.ayr-wrap .card-carousel {
  position: relative;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 20px 4px 30px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ayr-wrap .card-carousel::-webkit-scrollbar { display: none; }

.ayr-wrap .auction-card {
  flex: 0 0 280px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.ayr-wrap .auction-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--card-glow, rgba(59,130,246,0.1));
  z-index: 10;
}

.ayr-wrap .card-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #1a1a28;
}
.ayr-wrap .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ayr-wrap .auction-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.ayr-wrap .card-price-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 6px 14px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #10b981;
}
.ayr-wrap .card-bid-count {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  background: rgba(59,130,246,0.85);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.ayr-wrap .card-body { padding: 16px; }
.ayr-wrap .card-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ayr-wrap .card-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ayr-wrap .card-date { font-size: 12px; color: var(--text-muted); }
.ayr-wrap .card-location {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Fan effect */
.ayr-wrap .card-carousel .auction-card:nth-child(1) { transform: rotate(-1.5deg); }
.ayr-wrap .card-carousel .auction-card:nth-child(2) { transform: rotate(-0.8deg); }
.ayr-wrap .card-carousel .auction-card:nth-child(3) { transform: rotate(0deg); }
.ayr-wrap .card-carousel .auction-card:nth-child(4) { transform: rotate(0.5deg); }
.ayr-wrap .card-carousel .auction-card:nth-child(5) { transform: rotate(1deg); }
.ayr-wrap .card-carousel .auction-card:nth-child(6) { transform: rotate(-0.5deg); }
.ayr-wrap .card-carousel .auction-card:nth-child(7) { transform: rotate(-1deg); }
.ayr-wrap .card-carousel .auction-card:nth-child(8) { transform: rotate(0.8deg); }
.ayr-wrap .card-carousel .auction-card:nth-child(9) { transform: rotate(1.2deg); }
.ayr-wrap .card-carousel .auction-card:nth-child(10) { transform: rotate(-0.3deg); }
.ayr-wrap .card-carousel .auction-card:nth-child(11) { transform: rotate(0.6deg); }
.ayr-wrap .card-carousel .auction-card:nth-child(12) { transform: rotate(-1deg); }
.ayr-wrap .card-carousel .auction-card:hover {
  transform: translateY(-8px) scale(1.02) rotate(0deg) !important;
}

.ayr-wrap .carousel-wrap { position: relative; }
.ayr-wrap .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(18,18,26,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.ayr-wrap .carousel-arrow:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  box-shadow: 0 0 30px rgba(59,130,246,0.3);
}
.ayr-wrap .carousel-arrow.left { left: -10px; }
.ayr-wrap .carousel-arrow.right { right: -10px; }

/* SEO sections */
.ayr-wrap .seo-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}
.ayr-wrap .seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.ayr-wrap .seo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.3s;
}
.ayr-wrap .seo-card:hover { border-color: rgba(255,255,255,0.1); }
.ayr-wrap .seo-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.ayr-wrap .seo-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.ayr-wrap .section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.ayr-wrap .section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-top: 12px;
  font-size: 15px;
}

/* FAQ */
.ayr-wrap .faq-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}
.ayr-wrap .faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color 0.3s;
}
.ayr-wrap .faq-item:hover { border-color: rgba(255,255,255,0.1); }
.ayr-wrap .faq-q {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.ayr-wrap .faq-q::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.ayr-wrap .faq-item.open .faq-q::after {
  transform: rotate(45deg);
  color: var(--accent-blue);
}
.ayr-wrap .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.ayr-wrap .faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 24px 20px;
}
.ayr-wrap .faq-a p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* CTA */
.ayr-wrap .cta-section {
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.ayr-wrap .cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(79,91,213,0.06) 0%, transparent 70%);
}
.ayr-wrap .cta-content { position: relative; z-index: 1; }
.ayr-wrap .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #4F5BD5 0%, #6C7AFF 100%);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  margin-top: 28px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.ayr-wrap .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(79,91,213,0.4);
}

/* Footer */
.ayr-wrap .site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 60px 20px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.ayr-wrap .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.ayr-wrap .footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.ayr-wrap .footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}
.ayr-wrap .footer-col a:hover { color: var(--accent-blue); }
.ayr-wrap .footer-bottom {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

/* Lightbox */
.ayr-wrap .lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ayr-wrap .lightbox-overlay.active { display: flex; }
.ayr-wrap .lightbox-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  max-width: 600px;
  width: 100%;
  animation: zoomIn 0.3s ease;
}
@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.ayr-wrap .lightbox-img { width: 100%; height: 350px; object-fit: cover; }
.ayr-wrap .lightbox-body { padding: 24px; }
.ayr-wrap .lightbox-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.ayr-wrap .lightbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ayr-wrap .lightbox-stat {
  background: rgba(255,255,255,0.04);
  padding: 12px;
  border-radius: 10px;
}
.ayr-wrap .lightbox-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ayr-wrap .lightbox-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 4px;
}
.ayr-wrap .lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .ayr-wrap .category-meta { padding-left: 0; flex-wrap: wrap; gap: 12px; }
  .ayr-wrap .category-desc { padding-left: 0; }
  .ayr-wrap .auction-card { flex: 0 0 250px; }
  .ayr-wrap .carousel-arrow { display: none; }
  .ayr-wrap .lightbox-img { height: 220px; }
  .ayr-wrap .footer-grid { grid-template-columns: 1fr 1fr; }
}

.ayr-wrap .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ayr-wrap .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ELEMENTOR COMPATIBILITY ===== */
/* Override Elementor section/column padding and width constraints */
.elementor-widget-shortcode .ayr-wrap,
.elementor-widget-text-editor .ayr-wrap,
.elementor-shortcode .ayr-wrap {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Ensure Elementor's section doesn't constrain our full-width layouts */
.elementor-section .ayr-wrap .categories-wrapper,
.elementor-section .ayr-wrap .cat-nav-section,
.elementor-section .ayr-wrap .fan-section,
.elementor-section .ayr-wrap .seo-section,
.elementor-section .ayr-wrap .faq-section,
.elementor-section .ayr-wrap .site-footer {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Prevent Elementor's default link colors from overriding */
.ayr-wrap a,
.ayr-wrap a:hover,
.ayr-wrap a:focus,
.ayr-wrap a:visited {
  color: inherit;
  text-decoration: none;
}

.ayr-wrap .cta-btn,
.ayr-wrap .cta-btn:hover,
.ayr-wrap .cta-btn:visited {
  color: #fff;
}

/* Prevent Elementor h2/h3 overrides */
.ayr-wrap h1,
.ayr-wrap h2,
.ayr-wrap h3 {
  color: inherit;
  margin: 0;
  padding: 0;
}

.ayr-wrap .category-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.ayr-wrap .page-header h1 {
  font-family: 'Stencil Std', Stencil, Impact, sans-serif;
  text-transform: uppercase;
}

/* Prevent Elementor image styling from affecting cards */
.ayr-wrap img {
  max-width: 100%;
  height: auto;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.ayr-wrap .card-img-wrap img,
.ayr-wrap .fan-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Reset Elementor button styles on our elements */
.ayr-wrap .carousel-arrow {
  background: rgba(18,18,26,0.9);
  line-height: 1;
}

/* ===== ADDITIONAL MOBILE BREAKPOINTS FOR ELEMENTOR ===== */
@media (max-width: 1024px) {
  .ayr-wrap .fan-card {
    width: 130px;
    margin: 0 -16px;
  }
  .ayr-wrap .fan-card-img { height: 85px; }
  .ayr-wrap .seo-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 480px) {
  .ayr-wrap .page-header {
    padding: 32px 16px 16px;
  }
  .ayr-wrap .page-header h1 {
    font-size: 1.8rem;
  }
  .ayr-wrap .page-header-sub {
    font-size: 13px;
  }
  .ayr-wrap .fan-track {
    padding: 20px 12px 16px;
  }
  .ayr-wrap .fan-card {
    width: 100px;
    margin: 0 -8px;
  }
  .ayr-wrap .fan-card-img { height: 65px; }
  .ayr-wrap .fan-card-label { font-size: 9px; }
  .ayr-wrap .fan-card-count { font-size: 8px; }
  .ayr-wrap .category-title { font-size: 1.3rem; }
  .ayr-wrap .auction-card { flex: 0 0 220px; }
  .ayr-wrap .card-img-wrap { height: 150px; }
  .ayr-wrap .cat-nav { padding: 12px; gap: 6px; }
  .ayr-wrap .cat-pill { padding: 6px 12px; font-size: 12px; }
  .ayr-wrap .seo-grid {
    grid-template-columns: 1fr;
  }
  .ayr-wrap .seo-card { padding: 20px; }
  .ayr-wrap .faq-q { padding: 16px; font-size: 14px; }
  .ayr-wrap .lightbox-card { border-radius: 14px; }
  .ayr-wrap .lightbox-img { height: 180px; }
  .ayr-wrap .lightbox-title { font-size: 1.1rem; }
  .ayr-wrap .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .ayr-wrap .category-desc { font-size: 13px; }
}