/* Select Estates — static site */
:root {
  --brand: #76b82a;
  --brand-hover: #69b42b;
  --text: #000000;
  --muted: #4b5563;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --font-poppins: "Poppins", system-ui, sans-serif;
  --font-playfair: "Playfair Display", Georgia, serif;
  --font-inter: "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-inter);
  color: var(--text);
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

/* --- Layout --- */
.se-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* --- Nav (sticky) --- */
.se-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.se-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.se-nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.se-nav-logo {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--brand);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
}

.se-nav-title {
  font-family: var(--font-poppins);
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
}

.se-nav-links {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .se-nav-links {
    display: flex;
  }
}

.se-nav-links a {
  color: var(--gray-700);
  text-decoration: none;
  transition: color 0.15s;
}

.se-nav-links a:hover {
  color: var(--brand);
}

/* Properties / detail top bar: back + title */
.se-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.se-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  color: #000;
}

.se-back:hover {
  opacity: 0.8;
}

.se-back svg {
  color: var(--brand);
}

.se-spacer {
  width: 5rem;
}

/* --- Hero (Home): full-bleed photo + overlay for legible white type --- */
.se-hero {
  position: relative;
  height: 100vh;
  min-height: 28rem;
  overflow: hidden;
  background-color: #1a2118;
  background-image: url("../assets/hero-garden-route.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.se-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.12) 38%,
    rgba(0, 0, 0, 0.45) 72%,
    rgba(0, 0, 0, 0.62) 100%
  );
}

.se-hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 1rem 2rem;
  box-sizing: border-box;
}

/* Spacer: ~70% of hero height minus ascent to first-line baseline of the Playfair title */
.se-hero-content::before {
  content: "";
  flex: 0 0 auto;
  align-self: stretch;
  width: 100%;
  height: calc(70% - clamp(2.25rem, 5.5vw, 3.1rem));
  pointer-events: none;
}

.se-hero-title {
  font-family: var(--font-playfair);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.se-hero-lead {
  font-family: var(--font-inter);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 400;
  margin: 0 0 2rem;
  max-width: 42rem;
  color: #fff;
  line-height: 1.5;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.4);
}

.se-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

/* Hero CTAs (lime + ghost), matching opening screen */
.se-btn-hero-primary {
  background: #84cc16;
  color: #fff;
  padding: 0.65rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  border: none;
}

.se-btn-hero-primary:hover {
  background: #73b512;
  color: #fff;
}

.se-btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.65rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
}

.se-btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* --- Buttons --- */
.se-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-poppins);
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}

.se-btn-primary {
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
}

.se-btn-primary:hover {
  background: var(--brand-hover);
}

.se-btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
}

.se-btn-outline-white:hover {
  background: #fff;
  color: #000;
}

.se-btn-full {
  width: 100%;
}

.se-btn-gray {
  flex: 1;
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  background: #fff;
  padding: 0.5rem;
}

.se-btn-gray:hover {
  background: var(--gray-50);
}

/* --- Sections --- */
.se-section {
  padding: 4rem 0;
}

.se-section-gray {
  background: var(--gray-50);
}

.se-section-title {
  font-family: var(--font-poppins);
  font-size: 2.25rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 0.5rem;
}

.se-accent-bar {
  width: 4rem;
  height: 0.25rem;
  background: var(--brand);
  margin-bottom: 2rem;
}

/* Home / listings: grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 (Tailwind v4 theme spacing 0.25rem) */
.se-grid-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: calc(0.25rem * 8);
}

@media (min-width: 48rem) {
  .se-grid-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64rem) {
  .se-grid-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* PropertyCard + shadcn Card: bg-card flex flex-col gap-6 rounded-xl border py-6 shadow-sm overflow-hidden hover:shadow-xl transition-shadow */
.se-card {
  --se-radius: 0.65rem;
  overflow: hidden;
  border-radius: calc(var(--se-radius) + 4px);
  border: 1px solid oklch(92% 0.004 286.32);
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.1);
  background: oklch(100% 0 0);
  color: oklch(23.5% 0.015 65);
  transition: box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.se-card:hover {
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.se-card-link {
  display: flex;
  flex-direction: column;
  gap: calc(0.25rem * 6);
  padding-block: calc(0.25rem * 6);
  text-decoration: none;
  color: inherit;
  min-height: 0;
}

/* relative h-64 bg-gray-300 overflow-hidden group */
.se-card-img-wrap {
  position: relative;
  height: calc(0.25rem * 64);
  background-color: oklch(87.2% 0.01 258.338);
  overflow: hidden;
}

.se-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.se-card:hover .se-card-img-wrap img {
  transform: scale(1.05);
}

/* absolute top-4 right-4 bg-white rounded-full p-2 */
.se-card-fav {
  position: absolute;
  top: calc(0.25rem * 4);
  right: calc(0.25rem * 4);
  padding: calc(0.25rem * 2);
  border-radius: 9999px;
  border: none;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000;
  transition:
    background 150ms cubic-bezier(0.4, 0, 0.2, 1),
    color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.se-card-fav:hover {
  background: #76b82a;
  color: #fff;
}

/* inner p-6 */
.se-card-body {
  padding: calc(0.25rem * 6);
}

/* text-xl font-bold text-black mb-2 */
.se-card-title {
  font-size: 1.25rem;
  line-height: calc(1.75 / 1.25);
  font-weight: 700;
  color: #000;
  margin: 0 0 calc(0.25rem * 2);
}

/* text-[#76B82A] text-2xl font-bold mb-3 */
.se-card-price {
  color: #76b82a;
  font-size: 1.5rem;
  line-height: calc(2 / 1.5);
  font-weight: 700;
  margin: 0 0 calc(0.25rem * 3);
}

/* flex items-center gap-2 text-gray-600 mb-4 */
.se-card-loc {
  display: flex;
  align-items: center;
  gap: calc(0.25rem * 2);
  color: oklch(44.6% 0.03 256.802);
  margin-bottom: calc(0.25rem * 4);
  font-size: 1rem;
  line-height: 1.5;
}

.se-card-loc svg {
  flex-shrink: 0;
}

/* flex justify-between text-sm text-gray-600 mb-4 */
.se-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: calc(1.25 / 0.875);
  font-weight: 400;
  color: oklch(44.6% 0.03 256.802);
  margin-bottom: calc(0.25rem * 4);
}

.se-card-meta span:last-child {
  display: inline-flex;
  align-items: center;
  gap: calc(0.25rem * 1);
}

/* Button default + PropertyCard: inline-flex … rounded-md text-sm font-medium h-9 px-4 py-2 + w-full bg-[#76B82A] hover:bg-[#69B42B] text-white */
.se-card-cta {
  box-sizing: border-box;
  width: 100%;
  min-height: calc(0.25rem * 9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(0.25rem * 2) calc(0.25rem * 4);
  background: #76b82a;
  color: #fff;
  border: none;
  font-size: 0.875rem;
  line-height: calc(1.25 / 0.875);
  font-weight: 500;
  border-radius: calc(var(--se-radius) - 2px);
  cursor: pointer;
  transition:
    background 150ms cubic-bezier(0.4, 0, 0.2, 1),
    color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.se-card-cta:hover {
  background: #69b42b;
}

/* --- Search panel (PropertySearch) --- */
.se-search {
  background: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.se-search h3 {
  font-family: var(--font-poppins);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
}

.se-search-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .se-search-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .se-search-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.se-search label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.se-search input,
.se-search select {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  font: inherit;
}

.se-search input:focus,
.se-search select:focus {
  outline: none;
  border-color: var(--brand);
}

.se-search-actions {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}

.se-search-actions .se-btn-primary {
  flex: 1;
  padding: 0.5rem;
  font-size: 1rem;
}

/* --- Properties results --- */
.se-found-title {
  font-family: var(--font-poppins);
  font-size: 1.875rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.se-empty {
  text-align: center;
  padding: 3rem 0;
}

.se-empty p {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

/* --- About (Home) --- */
.se-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .se-about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.se-about h3 {
  font-family: var(--font-poppins);
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.se-about p {
  color: var(--gray-700);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.se-stats-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.se-stat {
  text-align: center;
  flex: 1;
  min-width: 5rem;
}

.se-stat-num {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--brand);
}

.se-stat-label {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.se-about-placeholder {
  background: var(--brand);
  height: 24rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 1.125rem;
}

/* --- Contact (Home) --- */
.se-contact-title {
  font-family: var(--font-poppins);
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.5rem;
}

.se-contact-bar {
  width: 4rem;
  height: 0.25rem;
  background: var(--brand);
  margin: 0 auto 3rem;
}

.se-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .se-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.se-form .se-field {
  margin-bottom: 1rem;
}

.se-form input,
.se-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  font: inherit;
}

.se-form input:focus,
.se-form textarea:focus {
  outline: none;
  border-color: var(--brand);
}

.se-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.se-info-block a {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-decoration: none;
  margin-bottom: 1rem;
  color: inherit;
  transition: opacity 0.15s;
}

.se-info-block a:hover {
  opacity: 0.8;
}

.se-info-block .se-ic {
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.se-info-block .name {
  font-weight: 600;
  color: #000;
}

.se-info-block .val {
  color: var(--gray-600);
}

/* --- Testimonials --- */
.se-testimonials {
  padding: 4rem 0;
  background: var(--gray-50);
}

.se-testimonials-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.se-testimonials-head {
  text-align: center;
  margin-bottom: 3rem;
}

.se-testimonials-head h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.se-testimonials-head p {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin: 0;
}

.se-testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .se-testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .se-testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.se-testimonial-card {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: box-shadow 0.2s;
}

.se-testimonial-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.se-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
}

.se-star {
  width: 1.125rem;
  height: 1.125rem;
  fill: var(--brand);
  color: var(--brand);
}

.se-quote {
  color: var(--gray-700);
  font-style: italic;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.se-testimonial-name {
  font-weight: 600;
  border-top: 1px solid var(--gray-200);
  padding-top: 1rem;
}

/* --- Footer (black) --- */
.se-footer {
  background: #000;
  color: #fff;
  padding: 3rem 0;
}

.se-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .se-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.se-footer h5 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.se-footer p,
.se-footer li {
  color: var(--gray-400);
}

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

.se-footer ul li {
  margin-bottom: 0.5rem;
}

.se-footer a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.15s;
}

.se-footer a:hover {
  color: var(--brand);
}

.se-footer-social {
  display: flex;
  gap: 1rem;
}

.se-footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-400);
}

/* --- Property detail --- */
.se-gallery {
  position: relative;
  height: 24rem;
  background: var(--gray-300);
  overflow: hidden;
}

.se-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.se-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  border-radius: 9999px;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}

.se-gallery-nav:hover {
  background: var(--brand);
  color: #fff;
}

.se-gallery-nav.prev {
  left: 1rem;
}

.se-gallery-nav.next {
  right: 1rem;
}

.se-gallery-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.se-gallery-dots button {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  border: none;
  background: #fff;
  cursor: pointer;
  padding: 0;
}

.se-gallery-dots button.active {
  background: var(--brand);
}

.se-detail-main {
  padding: 3rem 0;
  background: var(--gray-50);
}

.se-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .se-detail-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.se-detail h1 {
  font-family: var(--font-poppins);
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.se-detail-price {
  color: var(--brand);
  font-size: 1.875rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
}

.se-detail-loc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.se-panel {
  background: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.se-panel h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
}

.se-key-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .se-key-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.se-key-label {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.se-key-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
}

.se-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .se-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.se-feature-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-700);
}

.se-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--brand);
  border-radius: 9999px;
  flex-shrink: 0;
}

/* Virtual tour gradient fallback */
.se-vt-gradient {
  background: linear-gradient(to right, var(--brand), var(--brand-hover));
  border-radius: 0.5rem;
  padding: 2rem;
  color: #fff;
  margin-bottom: 2rem;
}

.se-vt-gradient h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.se-vt-gradient p {
  margin: 0 0 1.5rem;
  opacity: 0.95;
}

.se-vt-gradient .se-btn {
  background: #fff;
  color: var(--brand);
  padding: 0.5rem 1rem;
}

.se-vt-gradient .se-btn:hover {
  background: var(--gray-100);
}

/* Sidebar inquiry */
.se-sidebar {
  position: sticky;
  top: 6rem;
  align-self: start;
}

.se-sidebar h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
}

/* Toast */
.se-toast-wrap {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
}

.se-toast {
  background: #1f2937;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  max-width: 22rem;
  font-size: 0.95rem;
}

.se-toast.err {
  background: #b91c1c;
}

/* Not found */
.nf-wrap {
  min-height: 70vh;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.se-notfound {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, var(--gray-50), var(--gray-100));
  padding: 1rem;
}

.se-notfound-card {
  width: 100%;
  max-width: 32rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  text-align: center;
}

.se-notfound h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem;
}

.se-notfound h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #334155;
  margin: 0 0 1rem;
}

.se-notfound p {
  color: #475569;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.se-notfound .se-btn-blue {
  background: #2563eb;
  color: #fff;
  padding: 0.65rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.se-notfound .se-btn-blue:hover {
  background: #1d4ed8;
}

.se-notfound-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.se-notfound-icon-inner {
  position: relative;
  width: 4rem;
  height: 4rem;
}

.se-notfound-icon-pulse {
  position: absolute;
  inset: 0;
  background: #fee2e2;
  border-radius: 9999px;
  animation: se-pulse 2s ease-in-out infinite;
}

@keyframes se-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

.se-notfound-icon {
  position: relative;
  width: 4rem;
  height: 4rem;
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
}

.se-notfound-icon svg {
  width: 2rem;
  height: 2rem;
}

.se-notfound #not-found-button-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .se-notfound #not-found-button-group {
    flex-direction: row;
  }
}

.se-loading {
  text-align: center;
  color: var(--gray-600);
  padding: 2rem;
}
