/* Feniks Components Styles */

/* =========================================
   TOP EMERGENCY BAR 24/7
   ========================================= */
.top-bar {
  background-color: #07090d;
  border-bottom: 1px solid rgba(206, 175, 111, 0.2);
  font-size: 0.86rem;
  color: var(--text-secondary);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 101;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.emergency-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.35);
  color: #ff6b6b;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.emergency-tag .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #ff4757;
  box-shadow: 0 0 8px #ff4757;
  animation: pulse-red 1.6s infinite;
}

@keyframes pulse-red {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px #ff4757; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-phone-link {
  color: var(--gold-light);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.top-phone-link:hover {
  color: #fff;
  text-shadow: 0 0 10px var(--gold-primary);
}

/* =========================================
   BUTTONS - SOLIDNY KONTRAST W KAŻDYM STANIE
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 30px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-base);
  border: none;
  outline: none;
  letter-spacing: 0.4px;
}

/* Złoty przycisk - ZAWSZE ciemny czytelny tekst na złotym tle */
.btn-gold {
  background: var(--gold-gradient-btn) !important;
  color: #111317 !important;
  box-shadow: 0 4px 18px rgba(206, 175, 111, 0.35);
  position: relative;
  overflow: hidden;
  font-weight: 700 !important;
}

.btn-gold:visited,
.btn-gold:hover,
.btn-gold:focus,
.btn-gold:active {
  background: var(--gold-gradient-btn) !important;
  color: #111317 !important;
  box-shadow: 0 8px 25px rgba(206, 175, 111, 0.5);
  transform: translateY(-2px);
  text-decoration: none !important;
  outline: none;
}

.btn-gold svg {
  stroke: #111317;
  fill: #111317;
}

/* Przycisk konturowy - ZAWSZE biały tekst */
.btn-outline-gold {
  background: rgba(255, 255, 255, 0.04) !important;
  color: #ffffff !important;
  border: 1.5px solid var(--gold-primary) !important;
  box-shadow: inset 0 0 12px rgba(206, 175, 111, 0.08);
}

.btn-outline-gold:visited,
.btn-outline-gold:hover,
.btn-outline-gold:focus,
.btn-outline-gold:active {
  background: rgba(212, 175, 55, 0.22) !important;
  color: #ffffff !important;
  border-color: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(206, 175, 111, 0.3);
  text-decoration: none !important;
  outline: none;
}

/* Przycisk awaryjny czerwony */
.btn-emergency {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(211, 47, 47, 0.35);
}

.btn-emergency:visited,
.btn-emergency:hover,
.btn-emergency:focus,
.btn-emergency:active {
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(211, 47, 47, 0.5);
  outline: none;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.92rem;
}

/* =========================================
   FLOATING 24/7 SOS BUTTON
   ========================================= */
.floating-sos {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #181f2a 0%, #0d1117 100%);
  border: 1px solid var(--gold-primary);
  padding: 8px 18px 8px 10px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(206, 175, 111, 0.35);
  transition: var(--transition-base);
  text-decoration: none;
}

.floating-sos:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(206, 175, 111, 0.5);
}

.floating-sos-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16191f !important;
  position: relative;
}

.floating-sos-icon svg {
  width: 24px;
  height: 24px;
}

.floating-sos-icon::after {
  content: "";
  position: absolute;
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(1.45); opacity: 0; }
}

.floating-sos-text {
  display: flex;
  flex-direction: column;
}

.floating-sos-sub {
  font-size: 0.72rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
}

.floating-sos-num {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.4px;
}

/* =========================================
   ANIMATED CANDLE FLAME
   ========================================= */
.candle-wrapper {
  position: relative;
  display: inline-block;
}

.candle-flame-glow {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 38px;
  background: radial-gradient(ellipse at bottom, #ffffff 0%, #ffeaa7 25%, #ff9f43 65%, rgba(255, 107, 107, 0) 100%);
  border-radius: 50% 50% 35% 35% / 60% 60% 40% 40%;
  filter: drop-shadow(0 0 16px rgba(255, 165, 2, 0.85));
  animation: candle-flicker 2.4s infinite ease-in-out;
  pointer-events: none;
}

@keyframes candle-flicker {
  0% { transform: translateX(-50%) scale(1) rotate(-1deg); opacity: 0.95; }
  25% { transform: translateX(-49%) scale(1.04, 0.96) rotate(1deg); opacity: 1; }
  50% { transform: translateX(-51%) scale(0.98, 1.02) rotate(-0.5deg); opacity: 0.92; }
  75% { transform: translateX(-50%) scale(1.02, 0.98) rotate(1.5deg); opacity: 0.98; }
  100% { transform: translateX(-50%) scale(1) rotate(-1deg); opacity: 0.95; }
}

/* =========================================
   CARDS & CONTAINERS
   ========================================= */
.card-dark {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.card-dark:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(206, 175, 111, 0.15);
}

.card-dark::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: var(--transition-base);
}

.card-dark:hover::before {
  opacity: 1;
}

/* STEPPER TABS - KONTRAST */
.stepper-tabs {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 30px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.step-tab-btn {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-fast);
}

.step-tab-btn:visited {
  color: #ffffff !important;
}

.step-tab-btn:hover,
.step-tab-btn:focus {
  border-color: var(--gold-primary) !important;
  color: #ffffff !important;
  background: rgba(212, 175, 55, 0.18) !important;
  outline: none;
}

.step-tab-btn.active,
.step-tab-btn.active:hover,
.step-tab-btn.active:focus,
.step-tab-btn.active:active {
  background: var(--gold-gradient-btn) !important;
  color: #111317 !important;
  font-weight: 700 !important;
  border-color: transparent !important;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.45) !important;
  outline: none;
}

.step-tab-btn.active svg {
  stroke: #111317 !important;
}

.step-card {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: rgba(14, 19, 27, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  position: relative;
  transition: var(--transition-fast);
}

.step-card:hover {
  border-color: var(--gold-border);
  background: rgba(20, 26, 36, 0.85);
}

.step-num-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(206, 175, 111, 0.12);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h4 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.step-docs-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gold-light);
  background: rgba(206, 175, 111, 0.08);
  border: 1px solid rgba(206, 175, 111, 0.2);
  padding: 4px 12px;
  border-radius: 999px;
}

/* =========================================
   ZASIŁEK & KALKULATOR
   ========================================= */
.calculator-box {
  background: linear-gradient(145deg, #111722 0%, #0d1117 100%);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg), 0 0 35px rgba(206, 175, 111, 0.15);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.calc-options-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.calc-option-group label {
  display: block;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 10px;
  font-size: 0.98rem;
}

.calc-select, .calc-input {
  width: 100%;
  background: #090c10;
  border: 1px solid rgba(206, 175, 111, 0.3);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  outline: none;
  transition: var(--transition-fast);
}

.calc-select:focus, .calc-input:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 12px rgba(206, 175, 111, 0.3);
}

.calc-checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  margin-bottom: 8px;
}

.calc-checkbox-item:hover {
  background: rgba(206, 175, 111, 0.06);
  border-color: rgba(206, 175, 111, 0.25);
}

.calc-checkbox-item input[type="checkbox"] {
  accent-color: var(--gold-primary);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.calc-result-col {
  background: #070a0e;
  border: 1px solid rgba(206, 175, 111, 0.25);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.calc-allowance-badge {
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.35);
  color: #2ecc71;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.02rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.calc-total-box {
  margin-top: 24px;
  background: rgba(206, 175, 111, 0.08);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.calc-total-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.calc-total-sum {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-serif);
}

.calc-coverage-note {
  font-size: 0.86rem;
  color: #2ecc71;
  margin-top: 6px;
  font-weight: 600;
}

/* =========================================
   E-KLEPSYDRY & WIRTUALNY ZNICZ
   ========================================= */
.memorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.memorial-card {
  background: linear-gradient(180deg, #121822 0%, #0d1117 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  text-align: center;
  position: relative;
  transition: var(--transition-base);
  box-shadow: var(--shadow-md);
}

.memorial-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(206, 175, 111, 0.25);
}

.memorial-cross {
  color: var(--gold-primary);
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}

.memorial-cross svg {
  width: 28px;
  height: 28px;
}

.memorial-deceased-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.memorial-deceased-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 600;
}

.memorial-dates {
  font-size: 1.02rem;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.memorial-details {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 22px;
  text-align: left;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.memorial-details-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.memorial-details-row:last-child {
  margin-bottom: 0;
}

.memorial-details-row svg {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.memorial-action-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.btn-znicz {
  background: rgba(212, 175, 55, 0.12) !important;
  border: 1.5px solid var(--gold-primary) !important;
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.btn-znicz:hover,
.btn-znicz:focus,
.btn-znicz:active {
  background: rgba(212, 175, 55, 0.28) !important;
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.4);
  transform: scale(1.03);
  outline: none;
}

.btn-znicz.lit,
.btn-znicz.lit:hover,
.btn-znicz.lit:focus {
  background: rgba(255, 155, 38, 0.25) !important;
  border-color: #ff9f43 !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(255, 159, 67, 0.5) !important;
}

.znicz-count {
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.78rem;
}

/* =========================================
   ASORTYMENT GALLERY & FILTERS
   ========================================= */
/* ASORTYMENT FILTRY - KONTRAST */
.filter-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  padding: 12px 26px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:visited {
  color: #ffffff !important;
}

.filter-btn:hover,
.filter-btn:focus {
  border-color: var(--gold-primary) !important;
  color: #ffffff !important;
  background: rgba(212, 175, 55, 0.15) !important;
  outline: none;
}

.filter-btn.active,
.filter-btn.active:hover,
.filter-btn.active:focus,
.filter-btn.active:active {
  background: var(--gold-gradient-btn) !important;
  color: #111317 !important;
  font-weight: 700 !important;
  border-color: transparent !important;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.45) !important;
  outline: none;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}

.catalog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.catalog-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(206, 175, 111, 0.2);
}

.catalog-thumb {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
  background: #090c10;
}

.catalog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.catalog-card:hover .catalog-thumb img {
  transform: scale(1.06);
}

.catalog-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(14, 19, 27, 0.85);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(5px);
}

.catalog-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.catalog-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 6px;
}

.catalog-desc {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.catalog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-material {
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 500;
}

/* =========================================
   FAQ ACCORDION
   ========================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(20, 26, 36, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--gold-border);
}

.faq-item.active {
  background: rgba(24, 32, 45, 0.9);
  border-color: var(--gold-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  transition: color 0.2s;
}

.faq-item.active .faq-question {
  color: var(--gold-light);
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: var(--gold-primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 24px 24px 24px;
}

/* =========================================
   MODAL & TOAST
   ========================================= */
.modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6, 8, 12, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-window {
  background: #111722;
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 35px rgba(206, 175, 111, 0.3);
  transform: scale(0.95);
  transition: var(--transition-base);
}

.modal-backdrop.active .modal-window {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: #fff;
}

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #121822;
  border: 1px solid var(--gold-primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(206, 175, 111, 0.3);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
