/* =============================================
   CPAR PORTFOLIO - Section Styles
   ============================================= */

/* ===== HERO SECTION ===== */
.hero {
  background: var(--bg-hero);
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-hero-overlay);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 2;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.7);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulseGlow 2s ease infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-md);
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

.hero-meta-item strong {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.hero-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.2);
}

/* Decorative elements */
.hero-decoration {
  position: absolute;
  z-index: 1;
  opacity: 0.08;
  pointer-events: none;
}

.hero-decoration-1 {
  top: 60px;
  left: 8%;
  width: 120px;
  height: 120px;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: float 8s ease infinite;
}

.hero-decoration-2 {
  bottom: 100px;
  right: 10%;
  width: 80px;
  height: 80px;
  border: 2px solid var(--accent);
  transform: rotate(45deg);
  animation: float 6s ease infinite 1s;
}

.hero-decoration-3 {
  top: 40%;
  right: 5%;
  font-size: 4rem;
  animation: float 10s ease infinite 0.5s;
}


/* ===== STICKY NAVIGATION ===== */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg-header);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: var(--space-sm) 0;
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
}

.nav-bar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-brand-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-link {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--accent-soft);
  opacity: 1;
}

.nav-link.active {
  color: var(--accent);
  background: var(--accent-soft);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* Theme toggle in nav */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 6px;
}

.theme-toggle-track {
  width: 44px;
  height: 24px;
  background: var(--bg-tag);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  position: relative;
  transition: background var(--transition-fast);
}

.theme-toggle-thumb {
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform var(--transition-fast);
}

html[data-theme="dark"] .theme-toggle-thumb {
  transform: translateX(20px);
}


/* ===== INTRO / OVERVIEW SECTION ===== */
.intro-section {
  text-align: center;
  padding: var(--space-xl) var(--space-xl) var(--space-2xl);
}

.intro-section h2 {
  font-size: 1.35rem;
  margin-bottom: var(--space-md);
}

.intro-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: var(--radius-full);
  margin: var(--space-md) auto 0;
  animation: lineGrow 1s ease forwards;
}

.intro-section p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.88rem;
  line-height: 1.9;
}

.island-map-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.island-stat {
  padding: var(--space-lg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-fast);
}

.island-stat:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.island-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.island-stat-number.luzon { color: var(--luzon-color); }
.island-stat-number.visayas { color: var(--visayas-color); }
.island-stat-number.mindanao { color: var(--mindanao-color); }

.island-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}


/* ===== REGION CARD ===== */
.region-card {
  overflow: hidden;
}

.region-card-header {
  position: relative;
  height: 280px;
  overflow: hidden;
  margin: calc(-1 * var(--space-xl));
  margin-bottom: var(--space-xl);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.region-card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.region-card:hover .region-card-header img {
  transform: scale(1.04);
}

.region-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.05) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
}

.region-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: var(--space-sm);
}

.region-tag.luzon {
  background: rgba(193, 120, 23, 0.25);
  color: #f0c060;
  border: 1px solid rgba(193, 120, 23, 0.35);
}

.region-tag.visayas {
  background: rgba(46, 125, 91, 0.25);
  color: #60d4a0;
  border: 1px solid rgba(46, 125, 91, 0.35);
}

.region-tag.mindanao {
  background: rgba(139, 58, 98, 0.25);
  color: #e080b0;
  border: 1px solid rgba(139, 58, 98, 0.35);
}

.region-tag.any-region {
  background: rgba(74, 111, 165, 0.25);
  color: #80b0e0;
  border: 1px solid rgba(74, 111, 165, 0.35);
}

.region-card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  margin-bottom: 4px;
}

.region-card-subtitle {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

/* Region card body */
.region-card-body {
  padding-top: 0;
}

.region-description {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.region-description:last-child {
  margin-bottom: 0;
}

/* Art details tags */
.art-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-lg);
}

.art-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  background: var(--bg-tag);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.art-detail-tag:hover {
  background: var(--bg-tag-hover);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.art-detail-tag .tag-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--accent);
}

/* Region gallery strip */
.region-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.region-gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
}

.region-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base), filter var(--transition-base);
}

.region-gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.region-gallery-item::after {
  content: '⤢';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #fff;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.region-gallery-item:hover::after {
  opacity: 1;
}


/* ===== SECTION DIVIDER ===== */
.section-divider {
  text-align: center;
  margin: var(--space-xl) 0;
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-divider-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}


/* ===== ISLAND GROUP HEADER ===== */
.island-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding: var(--space-md) 0;
}

.island-header-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.island-header-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.island-header-label.luzon { color: var(--luzon-color); }
.island-header-label.visayas { color: var(--visayas-color); }
.island-header-label.mindanao { color: var(--mindanao-color); }
.island-header-label.any-region { color: var(--any-color); }

.island-header-count {
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
}

.island-header-count.luzon { background: rgba(193,120,23,0.12); color: var(--luzon-color); }
.island-header-count.visayas { background: rgba(46,125,91,0.12); color: var(--visayas-color); }
.island-header-count.mindanao { background: rgba(139,58,98,0.12); color: var(--mindanao-color); }
.island-header-count.any-region { background: rgba(74,111,165,0.12); color: var(--any-color); }


/* ===== FULL-WIDTH GALLERY ===== */
.full-gallery {
  padding: var(--space-xl);
}

.full-gallery h2 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.full-gallery h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: var(--radius-full);
  margin: var(--space-md) auto 0;
}

.full-gallery-subtitle {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: var(--space-2xl);
}

.masonry-gallery {
  columns: 4;
  column-gap: var(--space-md);
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}

.masonry-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-base);
}

.masonry-item:hover img {
  transform: scale(1.03);
}

.masonry-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md) var(--space-md);
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-base);
}

.masonry-item:hover .masonry-item-caption {
  opacity: 1;
  transform: translateY(0);
}


/* ===== FOOTER ===== */
.footer-section {
  text-align: center;
  padding: var(--space-xl);
}

.footer-section h2 {
  font-size: 1.15rem;
  margin-bottom: var(--space-md);
}

.footer-credits {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.footer-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  text-align: left;
}

.footer-col h3 {
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.footer-col p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-source-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-source-link {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer-source-link:hover {
  color: var(--accent);
  opacity: 1;
}

.copyright {
  text-align: center;
  padding: var(--space-xl) 0 var(--space-lg);
  font-size: 0.72rem;
  color: var(--text-faint);
}

.copyright a {
  color: var(--accent);
  font-weight: 500;
}


/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  transform: scale(0.9);
  transition: transform var(--transition-slow);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  text-align: center;
  max-width: 500px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 85px;
  right: var(--space-lg);
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-primary);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: 40;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== HYPERLINK STYLES ADDED VIA SCRIPT ===== */
a.art-detail-tag {
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast) ease;
}
a.art-detail-tag:hover {
  border-color: var(--primary);
  background: rgba(142, 106, 60, 0.08);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.keyword-link {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px dashed var(--primary);
  transition: all var(--transition-fast) ease;
  position: relative;
}
.keyword-link:hover {
  color: var(--primary-light);
  border-bottom-style: solid;
  border-bottom-color: var(--primary-light);
  text-shadow: 0 0 12px rgba(142, 106, 60, 0.4);
}
.keyword-link strong, .keyword-link em {
  font-weight: inherit;
  font-style: inherit;
  color: inherit;
}

/* =========================================================
   👑 PREMIUM COMPANY-LEVEL OVERRIDES (GLASSMORPHISM & GLOW)
   ========================================================= */

/* Nav Bar Glassmorphism */
.nav-bar {
  background: transparent !important;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-bar.scrolled {
  background: var(--bg-header) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

/* Page Texture Overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 1; /* Dark theme default */
}
html[data-theme="light"] body::after {
  opacity: 0.5; /* Lighter noise on light mode */
}

/* Card Glow & Float Effect */
.card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease !important;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.card:hover {
  transform: translateY(-4px) scale(1.005);
  box-shadow: var(--shadow-xl), 0 20px 40px var(--accent-soft) !important;
  border-color: var(--accent) !important;
}
.card:hover::before {
  opacity: 1;
}

/* Hero Mesh Animated Gradient Background */
.hero {
  position: relative;
  overflow: hidden;
}
/* Removed backdrop-filter to keep image un-blurred */
/* Subtle flowing glow orbs behind hero */
.hero-decoration-3 {
  position: absolute;
  top: -20%; left: -10%;
  width: 50%; height: 80%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  animation: floatOrb 12s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}
.hero-decoration-4 {
  position: absolute;
  bottom: -20%; right: -10%;
  width: 60%; height: 90%;
  background: radial-gradient(circle, rgba(160, 82, 45, 0.15) 0%, transparent 60%);
  animation: floatOrb 15s ease-in-out infinite alternate-reverse;
  pointer-events: none;
  z-index: 1;
}
@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, 10%) scale(1.1); }
  100% { transform: translate(-5%, -5%) scale(0.9); }
}

/* Modern Typography Tweaks */
.region-card-title {
  letter-spacing: -0.015em;
}

/* Enhance Galleries Images hover */
.region-gallery-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.region-gallery-item img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.region-gallery-item:hover img {
  transform: scale(1.08); /* Dramatic zoom */
  filter: saturate(1.2) contrast(1.05); /* Color pop */
}

/* Chatbot Premium Shadow */
.chatbot-trigger {
  box-shadow: 0 8px 32px var(--accent-soft), inset 0 1px 1px rgba(255,255,255,0.2) !important;
}
.chatbot-trigger:hover {
  transform: translateY(-4px) scale(1.03) !important;
  box-shadow: 0 12px 40px var(--accent-glow) !important;
}
