/* Base & CSS Variables */
:root {
  --primary: #C9A84C;
  --primary-foreground: #FDFBF7;
  --background: #FDFBF7;
  --foreground: #0F2D6B;
  --card: #FFFFFF;
  --border: rgba(15, 45, 107, 0.1);
  --muted: rgba(15, 45, 107, 0.6);
  
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  
  --transition-fast: 0.3s ease;
  --transition-slow: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

/* Typography */
.font-serif { font-family: var(--font-serif); }
.fw-bold { font-weight: 700; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }

.text-primary { color: var(--primary); }
.text-background { color: var(--background) !important; }
.text-sm { font-size: 0.875rem; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
}

p {
  margin-bottom: 1rem;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container { padding: 0 3rem; }
}

.section-padding {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .section-padding { padding: 5rem 0; }
}

.py-0 { padding-top: 0; padding-bottom: 0; }
.bg-card { background-color: var(--card); }
.bg-foreground { background-color: var(--foreground); }
.border-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.border-t-thick { border-top: 8px solid var(--primary); }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.max-w-md { max-width: 28rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.flex-between { display: flex; justify-content: space-between; align-items: flex-start; }
.hidden { display: none !important; }

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 1.5rem 0;
  transition: background-color 0.5s ease, padding 0.5s ease, box-shadow 0.5s ease;
  background-color: transparent;
}
.header.scrolled {
  background-color: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-family: var(--font-serif);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.5s ease;
}
.header.scrolled .logo-text, .header.menu-open .logo-text {
  color: var(--foreground);
}

.desktop-nav {
  display: none;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .desktop-nav { display: flex; }
}

.nav-link {
  background: none;
  border: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  transition: color var(--transition-fast);
}
.header.scrolled .nav-link, .header.menu-open .nav-link { color: rgba(15, 45, 107, 0.8); }
.nav-link:hover { color: var(--primary); }

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 0.75rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.header.scrolled .lang-btn, .header.menu-open .lang-btn {
  border-color: rgba(15, 45, 107, 0.2);
  color: rgba(15, 45, 107, 0.8);
}
.lang-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.header.scrolled .lang-btn:hover, .header.menu-open .lang-btn:hover {
  color: var(--foreground);
  border-color: rgba(15, 45, 107, 0.4);
}

.desktop-btn {
  display: none;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  background: transparent;
}
.header.scrolled .desktop-btn, .header.menu-open .desktop-btn {
  border-color: var(--primary);
  color: var(--primary);
}
.header.scrolled .desktop-btn:hover, .header.menu-open .desktop-btn:hover {
  background: var(--primary);
  color: #fff;
}
@media (min-width: 768px) {
  .desktop-btn { display: block; }
}

.mobile-toggle {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .mobile-toggle { display: none; }
}

.icon-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.header.scrolled .icon-btn, .header.menu-open .icon-btn { color: var(--foreground); }

/* Buttons */
.btn-primary {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.btn-primary.w-full {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 1rem;
}

.btn-text {
  background: none;
  border: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}
.btn-text:hover { color: var(--primary); }
.btn-text.group:hover i { transform: translateX(4px); }
.icon-sm { width: 1rem; height: 1rem; }
.icon-xs { width: 0.75rem; height: 0.75rem; }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background-color: var(--background);
  padding: 6rem 1.5rem 1.5rem;
  display: flex;
  flex-col: column;
  justify-content: space-between;
  flex-direction: column;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}
.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  text-align: start;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding-bottom: 1rem;
  color: var(--foreground);
  cursor: pointer;
  transition: color var(--transition-fast);
}
.mobile-nav-link:hover { color: var(--primary); }

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--foreground);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  animation: heroZoom 10s ease-out forwards;
}
@keyframes heroZoom {
  0% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 45, 107, 0.4), transparent, var(--background));
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 56rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge {
  color: var(--primary);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-title {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

[dir="rtl"] .hero-title,
[dir="rtl"] .hero-title-italic {
  font-family: 'Tajawal', sans-serif;
}
.hero-title-italic {
  /*font-style: italic;*/
  color: rgba(253, 251, 247, 0.9);
}
@media (min-width: 768px) {
  .hero-title { font-size: 4.5rem; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 6rem; }
}
.hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  max-width: 32rem;
  margin: 0 auto 3rem;
}

.scroll-discover {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: color var(--transition-fast);
}
.scroll-discover:hover { color: #fff; }
.scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.scroll-indicator {
  width: 2px;
  height: 4rem;
  background-color: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.scroll-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: #fff;
  border-radius: 2px;
  animation: scrollDown 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(400%); }
}

/* About / Logo Component */
.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}
.logo-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: var(--background);
  border: 6px double rgba(201, 168, 76, 0.2);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  max-width: 28rem;
  width: 100%;
}
.logo-border {
  position: absolute;
  inset: 0.5rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  pointer-events: none;
}
.logo-svg {
  width: 5rem;
  height: 5rem;
  position: relative;
  z-index: 10;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .logo-svg { width: 6rem; height: 6rem; }
}
.logo-content-box {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo-title {
  font-family: var(--font-serif);
  color: var(--foreground);
  font-size: 1.875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .logo-title { font-size: 2.25rem; }
}
.logo-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  width: 100%;
}
.logo-divider .line {
  height: 1px;
  width: 3rem;
  background-color: var(--primary);
}
.logo-divider .text {
  color: var(--primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 500;
}
.logo-quote {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(15, 45, 107, 0.8);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin: 0;
}
@media (min-width: 768px) {
  .logo-quote { font-size: 1rem; }
}

.about-body {
  font-size: 1.125rem;
  font-family: var(--font-serif);
  color: var(--muted);
  line-height: 1.75;
  max-width: 48rem;
  margin: 3rem auto 0;
}
@media (min-width: 768px) {
  .about-body { font-size: 1.5rem; }
}

/* Sections General */
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
}
.section-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--foreground);
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}

/* Treatments */
.section-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
  gap: 2rem;
}
@media (min-width: 768px) {
  .section-header { flex-direction: row; align-items: flex-end; }
}

.grid-treatments {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .grid-treatments { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}
@media (min-width: 1024px) {
  .grid-treatments { grid-template-columns: repeat(3, 1fr); }
}

.treatment-card {
  cursor: pointer;
  height: 100%;
}
.treatment-content {
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding-bottom: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.treatment-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--foreground);
  transition: color var(--transition-fast);
}
.treatment-card:hover .treatment-title { color: var(--primary); }
.treatment-time {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  white-space: nowrap;
  margin-top: 0.25rem;
  margin-inline-start: 0.5rem;
}
.treatment-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
.treatment-footer {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.treatment-card:hover .treatment-footer { opacity: 1; }

/* The Experience */
.grid-split {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .grid-split { grid-template-columns: repeat(2, 1fr); }
}
.img-container {
  height: 60vh;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .img-container { height: 90vh; }
}
.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
@media (min-width: 768px) {
  .split-content { padding: 6rem; }
}
.text-body-light {
  color: rgba(253, 251, 247, 0.7);
  line-height: 1.75;
}
.mini-img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.7s ease;
}
.mini-img:hover { filter: grayscale(0%); opacity: 1; }

/* Sanctuary */
.grid-sanctuary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .grid-sanctuary { grid-template-columns: 5fr 7fr; }
}
.text-body {
  color: var(--muted);
  line-height: 1.75;
}
.sanctuary-img-wrapper {
  position: relative;
}
.aspect-4-3 {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.award-badge {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 12rem;
  height: 12rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}
[dir="rtl"] .award-badge {
  left: auto;
  right: -2rem;
}
@media (max-width: 767px) {
  .hidden-mobile { display: none; }
}
.award-title {
  font-size: 1.875rem;
  color: var(--primary);
  font-family: var(--font-serif);
  margin-bottom: 0.5rem;
}
.award-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* Quote */
.quote-mark {
  color: var(--primary);
  font-size: 3.75rem;
  font-family: var(--font-serif);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--foreground);
  line-height: 1.25;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .quote-text { font-size: 3rem; }
}
.quote-divider {
  width: 3rem;
  height: 1px;
  background-color: var(--primary);
  margin: 0 auto 1.5rem;
}
.quote-attr {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* Contact */
.grid-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .grid-contact { grid-template-columns: repeat(2, 1fr); }
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.info-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.info-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}
.info-desc {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 0;
}

.form-wrapper {
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .form-wrapper { padding: 3rem; }
}
.form-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background-color: rgba(201, 168, 76, 0.03);
  border-bottom-left-radius: 9999px;
  pointer-events: none;
}
[dir="rtl"] .form-decoration {
  right: auto;
  left: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 9999px;
}
.booking-form {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.grid-2-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .grid-2-cols { grid-template-columns: repeat(2, 1fr); }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 500;
}
.form-group input, .form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  outline: none;
  transition: border-color var(--transition-fast);
  color: var(--foreground);
  font-family: var(--font-sans);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(15, 45, 107, 0.3);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary);
}
.form-group textarea {
  resize: none;
}

.btn-submit-navy {
  background-color: var(--foreground);
  color: #fff;
  border: none;
  padding: 1rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: opacity var(--transition-fast);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}
.btn-submit-navy:hover {
  opacity: 0.9;
}
.btn-submit-navy:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.btn-submit {
  width: 100%;
  background-color: var(--foreground);
  color: var(--background);
  padding: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-submit:hover {
  background-color: var(--primary);
  color: #fff;
}
.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.loader {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(253, 251, 247, 0.3);
  border-top-color: var(--background);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Footer */
.footer {
  background-color: var(--foreground);
  color: var(--background);
  padding: 4rem 0;
}
.footer-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #fff;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-links a {
  color: rgba(253, 251, 247, 0.6);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--primary); }
.footer-copy {
  color: rgba(253, 251, 247, 0.4);
  font-size: 0.75rem;
  margin: 0;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
}

.fade-up {
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.zoom-in {
  transform: scale(1.05);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.zoom-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-container.is-visible .stagger-item {
  animation: staggerFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.stagger-item { opacity: 0; transform: translateY(30px); }
.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }
.stagger-item:nth-child(5) { animation-delay: 0.5s; }
.stagger-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes staggerFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
  transform: translateY(20px);
}
.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.8s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Toast */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.toast {
  background-color: var(--background);
  border: 1px solid var(--primary);
  color: var(--foreground);
  padding: 1rem 1.5rem;
  font-family: var(--font-serif);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s ease;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.toast-desc {
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--muted);
}
