@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&display=swap');



html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  /* KEIN display: flex hier */
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  background: #1D2229;
  color: #e6e6e6;
}


body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('/assets/images/bg_krypto_pattern.png') repeat;
  background-size: auto;
  z-index: 0; /* <--- war -1, jetzt 0 */
  pointer-events: none;
}



main {
  flex: 1;
  padding-top: 70px;
}



h1 {
  font-weight: 700;
}

h2, h3 {
  font-weight: 600;
}

small, .muted {
  font-weight: 300;
}


a {
  color: #f4a300;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #ffd580;
  text-decoration: underline;
}

a.btn:hover {
  text-decoration: none;
}


main,
main p,
main span,
main button,
main .lead {
  color: #e6e6e6;
}

lead {
	
}

.text-muted-light {
  color: #ccc !important;
}

.text-soft {
  color: rgba(255,255,255,0.6);
}


.text-orange {
  color: #f7931a !important;
}














.bg-orange {
  background-color: #f7931a !important;
  color: #111 !important; /* oder #000, wenn du's kontrastreicher willst */
}


.bg-secondary {
  background-color: #117a87 !important; /* Sattes, dunkles TÃ¼rkis */
  color: #fff !important;
}



.feature-check {
  color: #f7931a; /* SatoshiWall Orange */
  font-size: 1.25rem;
  text-shadow: 0 0 4px rgba(247, 147, 26, 0.6);
  vertical-align: middle;
}
.feature-check:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
  transition: all 0.2s ease;
}


.card-price {
  color: #f7931a;
  font-weight: 600;
  text-align: right;
  align-self: center;
}

.card:hover {
  border-color: #f7931a;
  box-shadow: 0 0 12px rgba(247, 147, 26, 0.3);
  transition: 0.3s ease;
}




.price-badge {
  background-color: rgba(247, 147, 26, 0.1);
  color: #f7931a;
  padding: 0.3rem 0.6rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
}


.sw-content-bg {
  background-color: #222935 !important;
  border-radius: 12px;
  /* optional mehr: */
  box-shadow: 0 2px 18px 0 rgba(0,0,0,0.09);
  padding: 2rem;
}


/* --------------------------------------- titel ----------------------------------------- */

/* Basistitel-Stil */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.5px;
/*  margin-bottom: 0.75em;  */
  line-height: 1.2;
  color: var(--headline-color, #fff); /* â† zentrale Steuerung */
}

/* GrÃ¶ÃŸen */
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 {
  font-size: 1rem;
  letter-spacing: 1px;
}

/* Farbklassen (optional fÃ¼r gezieltes Ãœberschreiben) */
.title-white     { color: #fff !important; }
.title-orange    { color: #f7931a !important; }
.title-lightgray { color: #ccc !important; }

/* --------------------------------------- Theme-Farben Ã¼ber body-Klasse ----------------------------------------- */

body.theme-wall {
  --headline-color: #ffffff;
}

body.theme-pricing {
  --headline-color: #f7931a;
}

body.theme-about {
  --headline-color: #f9b55f;
}


/* -------------------------------------   Logo beim Titel    ----------------- */

.logo-icon {
  height: 2.9rem;
  vertical-align: top;
/*  margin-top: -0.25rem; */
}


/* --------------------------------------------Forms --------------------------- */

/* Eingabefelder weicher gestalten */
form .form-control {
  background-color: #1f1f1f; /* dunkler, aber nicht schwarz */
  border: 1px solid #444;
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
}

/* Eingabefeld bei Fokus */
form .form-control:focus {
  border-color: #f7931a;
  box-shadow: 0 0 0 0.15rem rgba(247, 147, 26, 0.25);
  background-color: #262626;
  color: #fff;
}

/* Placeholder unterscheidbar machen */
form .form-control::placeholder {
  color: #aaa;
  font-style: italic;
  opacity: 0.8;
}


/* Labels und Texte in Formularen weiÃŸ darstellen */
form label,
form .form-label,
form .form-check-label,
form .form-text,
form p.lead {
  color: #e6e6e6 !important;
}



/* Disabled Input schÃ¶ner darstellen */
form .form-control:disabled {
  background-color: #2a2a2a;
  color: #aaa;
  border: 1px solid #444;
  opacity: 1; /* wichtig, sonst Bootstrap machtâ€™s zu blass */
}

/* Checkbox-Design modernisieren */
form .form-check-input {
  background-color: #1f1f1f;
  border: 1px solid #555;
  width: 1.1em;
  height: 1.1em;
  margin-top: 0.35em;
  cursor: pointer;
}

form .form-check-input:checked {
  background-color: #f7931a;
  border-color: #f7931a;
}

form .form-check-label {
  cursor: pointer;
  color: #f5f5f5;
  font-size: 0.95rem;
}



/* File Upload Button modernisieren */
input[type="file"] {
  background-color: #1f1f1f;
  color: #eee;
  border: 1px solid #444;
  padding: 6px;
  font-size: 0.95rem;
}

input[type="file"]::file-selector-button {
  background-color: #f7931a;
  color: #000;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: 600;
  border-radius: 4px;
  margin-right: 8px;
}

input[type="file"]::file-selector-button:hover {
  background-color: #ffa733;
}

/* --------------------------------------------Forms: Select Angleichen --------------------------- */

form .form-select {
  background-color: #1f1f1f;
  border: 1px solid #444;
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: border-color .15s, box-shadow .15s;
}

form .form-select:focus {
  border-color: #f7931a;
  box-shadow: 0 0 0 0.15rem rgba(247, 147, 26, 0.25);
  background-color: #262626;
  color: #fff;
}

form .form-select:disabled {
  background-color: #2a2a2a;
  color: #aaa;
  border: 1px solid #444;
  opacity: 1;
}

form .form-select option {
  background: #222;
  color: #fff;
}

/* Für Select2: Gleiche Optik für das Auswahlfeld */
.select2-container--bootstrap-5 .select2-selection {
  background-color: #1f1f1f !important;
  border: 1px solid #444 !important;
  color: #fff !important;
  border-radius: 6px !important;
  min-height: 38px;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  color: #fff !important;
  line-height: 2.2 !important;
}

.select2-container--bootstrap-5 .select2-selection--single:focus,
.select2-container--bootstrap-5 .select2-selection--single.select2-selection--focus {
  border-color: #f7931a !important;
  box-shadow: 0 0 0 0.15rem rgba(247, 147, 26, 0.25) !important;
  background-color: #262626 !important;
  color: #fff !important;
}

.select2-dropdown {
  background-color: #232323 !important;
  color: #fff !important;
}

.select2-results__option--selected {
  background: #f7931a !important;
  color: #1f1f1f !important;
}



/* -------------------------------------------- Ende Forms --------------------------- */



footer {
  position: relative;
  z-index: 10;
  background-color: #1d2229;
}

/* ----------------------------------------- -------------------------------------- */


/* Info-Elemente */
#info {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: #666;
}

#selectionInfo {
  text-align: center;
}

/* HoverBox: Vorschau bei Mouseover */
#hoverBox {
  position: absolute;
  display: none;
  background: #fffaf0;
  padding: 10px;
  border: 4px solid #f7931a;
  box-shadow: 3px 3px 0 #f7931a88;
  z-index: 10;
  width: auto;
  max-width: none;
  max-height: none;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
  opacity: 0;
  transform: scale(0.95);
}

#hoverBox.show {
  opacity: 1;
  transform: scale(1);
}

#hoverIcon img {
  display: block;
  margin: 0 auto 8px auto;
  image-rendering: pixelated;
  border: none;
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  #hoverIcon img {
    max-width: 300px;
    max-height: 300px;
  }
}

/* Navbar Scroll-Effekt */
#mainNavbar {
  transition: top 0.4s ease;
  z-index: 1030;
}

/* Navbar-Hintergrund & Grundfarbe */
.navbar {
  background-color: #1d2229 !important;
}

/* Alle Links in Navbar und Dropdown initial hellgrau */
.navbar a,
.navbar .dropdown-item {
  color: #aaa !important;
}
.dropdown-menu.show {
  background-color: #1D2229;;
}

/* Hover-Effekt in Navbar + Dropdown */
.navbar a:hover,
.navbar .dropdown-item:hover {
  color: #f7931a  !important;
  background-color: transparent; /* optional, falls Hintergrund sonst greift */
}

/* Aktiver MenÃ¼punkt */
.navbar .dropdown-item.active,
.navbar .dropdown-item.active:hover {
  background-color: #0d6efd; /* Bootstrap primary */
  color: #fff !important;
}

/* Optional: sanfte Transition */
.navbar a,
.navbar .dropdown-item {
  transition: color 0.2s ease;
}


/* Navbar-Brand */
.navbar-brand img {
  vertical-align: middle;
  max-height: 40px;
}



/* Mobile Anpassungen */
@media (max-width: 991.98px) {
  .navbar-brand {
    margin-right: auto;
  }

  .navbar-toggler {
    margin-left: 0.5rem;
  }

  #navLogo {
    content: url("/assets/images/logo/satoshiwall_logo_sticker.svg");
    height: 36px;
  }
}

/* Dropdown-MenÃ¼ */
.dropdown-menu {
  z-index: 1050;
}

.dropdown-menu-columns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  padding: 1rem;
  gap: 0.5rem;
}

.dropdown-menu-columns a {
  display: block;
  padding: 0.3rem;
  background-color: #f1f1f1;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  color: #000;
  transition: background-color 0.2s ease;
  overflow-x: auto;
  max-width: 100%;
}

.dropdown-menu-columns a:hover {
  background-color: #dfe6e9;
}


/* ----------------------------------------- Wall Basics ---------------------------------------- */

.wall-header {
  background: transparent;
  position: relative;
  z-index: 1;
}

.wall-title {
  font-size: 2.5rem;
  text-shadow: 0 0 5px #f0ad4e, 0 0 10px rgba(255, 255, 255, 0.2);
  animation: title-glow 3s ease-in-out infinite alternate;
}

.wall-description {
  max-width: 700px;
  margin: 0 auto;
  color: #adb5bd;
  animation: fadeInUp 1s ease-out;
}



/* Optional: Animationen */
@keyframes title-glow {
  0% { text-shadow: 0 0 5px #f0ad4e; }
  100% { text-shadow: 0 0 20px #f0ad4e, 0 0 40px rgba(255, 193, 7, 0.4); }
}

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


/* -----------------------------------------   Wall Label  -------------------------------------- */

.wall-label {
  position: absolute;
  top: 60px;
  left: 20px;
  color: #f0f0f0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

/* -----------------------------------------   Wall  -------------------------------------- */



  .wall {
    width: 600px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(6, 100px);
    grid-template-rows: repeat(30, 100px);
    gap: 0;
    background: transparent;
    position: relative;
  }

  .block {
    /* background: #fff; */
	  	background: #1D2229;
    border: 1px solid #2C343F;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
  }

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

  .block.free {
    /* background: #fff; */
	  	background: #1D2229;
  }



  .block.paid {
    background-color: #5cb85c;
    cursor: default;
  }

  .block.selected {
    outline: 3px solid #007bff;
    outline-offset: -3px;
  }


	.block.reserved {
	  background-color: #f7931a !important;
	  cursor: not-allowed;
	}

	.block.reserved img {
	  display: none !important;
	}

	.block.system {
	  background-color: #b36400 !important; /* dunkleres Orange */
	  background-image: repeating-linear-gradient(
		45deg,
		rgba(0,0,0,0.1),
		rgba(0,0,0,0.1) 10px,
		transparent 10px,
		transparent 20px
	  );
	  cursor: not-allowed;
	}

	.block.system img {
	  display: none !important;
	}


	.block.paid {
	  cursor: pointer; /* Interaktiv */
	}

	.block.free,
	.block.system,
	.block.reserved {
	  cursor: default; /* Kein Klick */
	}


/* ------------------------------------ Countrywall -------------------------------------- */


.countrywall-grid {
  display: grid;
  grid-template-columns: repeat(12, var(--cell-size, 50px));
  grid-auto-rows: var(--cell-size, 50px);
  gap: 0;
  position: relative;
  margin: 0 auto;
  background-color: #1e1f22;
  width: fit-content;
}

.countrywall-grid .block {
  width: var(--cell-size, 50px);
  height: var(--cell-size, 50px);
  box-sizing: border-box;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Bild korrekt skalieren */
.countrywall-grid .block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.countrywall-grid .block.empty {
  background-color: #262626;
}

@media (max-width: 600px) {
  .countrywall-grid {
    transform: scale(0.8);
    transform-origin: top center;
  }
}


.countrywall-grid .block.empty {
  cursor: default;
}

.countrywall-grid .block.paid {
  cursor: pointer;
}


/* ------------------------------------- Couuntry - Header --------------------------------- */

   .country-header {
      text-align: center;
      padding: 2rem 1rem;
    }
    .country-header img.flag {
      width: 48px;
      height: 36px;
      border-radius: 3px;
      margin-bottom: 1rem;
      box-shadow: 0 0 3px rgba(0,0,0,0.3);
    }
    .country-header h1 {
      font-size: 2.4rem;
      margin-bottom: 0.5rem;
    }
    .country-header p {
      color: #ccc;
      font-size: 1.1rem;
    }



/* ----------------------------------- / Modalfenster Infos ------------------------------ */



.modal-header {
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.modal-header .btn-close {
	color: #634B23 !important;
}

.modal-content {
/*  background: #fffaf2; /* Warmes, helles Elfenbein */	
/*  background: #fffaf0; /* fast wie Papier */	
/*  background: #fef6e4; /*etwas moderner */	
	
 background-color: #29303A; 
  border-radius: 16px;
  border: solid thick #CFAF78;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.modal-title {
  color: #CFAF78;
  text-align: center;
  width: 100%;
  font-weight: 700;
  font-size: 1.5rem;
}

/*
.modal-footer {
/*	 border: solid thin #4C3A1B; */
/* 	 border-top: solid thin #4C3A1B; */
/* 	border: none;  */
/* } */


.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.2rem 1.5rem 1.5rem;
  background-color: #20262E;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

.footer-logo img {
  height: 36px;
  opacity: 0.8;
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.4));
  transition: opacity 0.2s;
}

.footer-logo img:hover {
  opacity: 1;
}



#verifiedBadge {
  font-size: 1.1rem;
  color: #0dcaf0; /* Neonblau */
  background-color: rgba(13, 202, 240, 0.08);
  border-radius: 50%;
  padding: 6px;
  box-shadow:
    0 0 6px rgba(13, 202, 240, 0.4),
    0 0 12px rgba(13, 202, 240, 0.2);
  backdrop-filter: blur(3px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#verifiedBadge:hover {
  transform: scale(1.15);
  box-shadow:
    0 0 8px rgba(13, 202, 240, 0.6),
    0 0 16px rgba(13, 202, 240, 0.3);
}

.verifiedBadge {
  font-size: 1.1rem;
  color: #0dcaf0; /* Neonblau */
  background-color: rgba(13, 202, 240, 0.08);
  border-radius: 50%;
  padding: 6px;
  box-shadow:
    0 0 6px rgba(13, 202, 240, 0.4),
    0 0 12px rgba(13, 202, 240, 0.2);
  backdrop-filter: blur(3px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.verifiedBadge:hover {
  transform: scale(1.15);
  box-shadow:
    0 0 8px rgba(13, 202, 240, 0.6),
    0 0 16px rgba(13, 202, 240, 0.3);
}











#blockInfoImg {
  max-height: 220px;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

#blockInfoTitle {
	 color: #CFAF78;
}

#blockInfoText {
  font-size: 1rem;
  color: #CFAF78;
  margin-bottom: 1rem;
}

#blockInfoLinks a {
  text-decoration: none;
  padding: 6px 12px;
  margin: 4px;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}

#blockInfoLinks a i {
  font-size: 1.1rem;
}

/* Optional farbliche Buttons je nach Social */
#blockInfoLinks .instagram { color: #E4405F; }
#blockInfoLinks .youtube { color: #FF0000; }
#blockInfoLinks .tiktok { color: #000; }
#blockInfoLinks .facebook { color: #3b5998; }
#blockInfoLinks .twitter { color: #1DA1F2; }
#blockInfoLinks .linkedin { color: #0077b5; }
#blockInfoLinks .website { color: #111; }


#blockInfoLinks a:hover {
  opacity: 0.85;
  transform: scale(1.05);
  background-color: #fdf2da;
  transform: scale(1.05);	
}


/* Zentrierung & Basisformatierung der Slides */
#blockInfoCarousel .carousel-item {
  text-align: center;
}

/* Einheitliches Styling fÃ¼r Carousel-Bilder */
#blockInfoCarousel img {
  max-width: 100%;
  max-height: 240px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Optional: Animation oder einheitliche Klasse */
.modal-carousel-img {
  max-height: 260px;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.modal-carousel-img:hover {
  transform: scale(1.03);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  background-size: 70% 70%;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #999;
}

.carousel-indicators .active {
  background-color: #333;
}


/* Carousel Indicators sauber positionieren */
#blockInfoCarousel .carousel-indicators {
  position: relative;
  margin-top: 1rem;
  justify-content: center;
}

#blockInfoCarousel .carousel-indicators button {
  background-color: #888;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  border: none;
  margin: 0 5px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

#blockInfoCarousel .carousel-indicators .active {
  background-color: #000;
  opacity: 1;
}



.btn-social {
	background-color: #313944;
}

/* ----------------------------------- / Ende Modalfenster Infos ------------------------------ */


/* -------------------- Finaler Modal-Fix fÃ¼r Countrywall -------------------- */


/* ðŸŽ¯ Hauptverantwortlich fÃ¼r die Abdunkelung */
.modal-backdrop {
  z-index: -1 !important;
  opacity: 0 !important;
  background: transparent !important;
  pointer-events: none !important;
}

/* Modal selbst korrekt sichtbar und klickbar */
.modal {
  z-index: 1050 !important;
  pointer-events: auto !important;
}

/* -------------------- Ende Fix -------------------- */

/* ---------------------- Icons im Modal (Satoshi-Sexy) -------------------- */

#badgeContainer {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: right;
  gap: 0.6rem;
  flex-wrap: wrap;
  /* border: 2px dashed red; <-- entfernt */
}

#badgeContainer img.luck-badge {
  width: 32px;
  height: 32px;
  padding: 5px;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(3px);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  object-fit: contain;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
}

#badgeContainer img.luck-badge:hover,
#badgeContainer i:hover {
  transform: scale(1.12);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* ---------------------- Ende Icons im Modal -------------------- */


/* ------------------------- Tooltips --------------------------  */

.tooltip {
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.9);
}

.tooltip .tooltip-inner {
  background-color: rgba(0, 0, 0, 0.9);
  color: #f1f1f1;
  padding: 8px 12px;
  border-radius: 6px;
  max-width: 240px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
}

/* ------------------------- Ende Tooltips --------------------------  */


/* -------------------- Geschenkfelder kaufen --------------------- */


.sw-gift-box {
  background: linear-gradient(110deg, #18273b 80%, #242934 100%);
  color: #e6e6e6;
  border-radius: 12px;
  padding: 1.2rem 1.6rem 1.1rem 1.6rem;
  margin-bottom: 0.4em;
  margin-top: 0.15em;
  box-shadow: 0 2px 18px 0 rgba(0,0,0,0.07);
  border-left: 4.5px solid #ffd54f;
  font-size: 1.08rem;
}

.sw-gift-sub {
  margin: 0.8em 0 0.5em 0;
  font-size: 1.13rem;
  color: #ffe082;
  font-weight: 600;
}

.sw-gift-box ul {
  margin: 0 0 0 1.2em;
  padding: 0;
  list-style: disc inside;
}

.sw-gift-box li {
  margin-bottom: 0.2em;
  line-height: 1.45;
}

.sw-gift-box-lead {
	color:#ffe082;
}


		/* ---------- Gifts 2-Spalter ---------- */
			@media (min-width: 768px) {
			  .sw-gift-form .col-md-8 {
				background: linear-gradient(120deg, #1a2331 85%, #212836 100%);				
				border-radius: 14px 0 0 14px;
				padding: 2.2rem 2.2rem 1.6rem 2.2rem;
				box-shadow: 0 3px 28px 0 rgba(0,0,0,0.16);
				min-height: 480px;
				border-right: 2px solid #24292f;
			  }
			  .sw-gift-form .col-md-4 {
				background: linear-gradient(120deg, #222c3b 70%, #232834 100%);
				border-radius: 0 14px 14px 0;
				box-shadow: 0 3px 28px 0 rgba(0,0,0,0.12);
				padding: 2.2rem 1.2rem 1.2rem 1.5rem;
				min-height: 480px;
				display: flex;
				flex-direction: column;
				justify-content: flex-start;
				align-items: stretch;
			  }
			}

			/* Responsive: auf kleineren Screens stacked alles untereinander */
			@media (max-width: 767px) {
			  .sw-gift-form .col-md-8,
			  .sw-gift-form .col-md-4 {
				background: none !important;
				box-shadow: none !important;
				border-radius: 0 !important;
				min-height: unset !important;
				padding: 0 !important;
				border: none !important;
			  }
			}

			/* Preisbox & Button */
			.gift-summary {
			  border: 2px solid #ffe082;
			  background: #1a2233;
			  border-radius: 12px;
			  padding: 2.2rem 1.3rem 1.5rem 1.3rem;
			  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.13);
			}
			.gift-summary #giftPriceBox {
			  color: #ffe082;
			  font-size: 1.6em;
			  font-weight: 700;
			  margin-bottom: 2.2rem;
			  text-align: right;
			}

			/* Button-Style anpassen (optional, damit auf allen Wall-Seiten konsistent) */
			.gift-summary .btn-warning {
			  font-size: 1.18rem;
			  font-weight: 700;
			  border-radius: 8px;
			  box-shadow: 0 1px 12px 0 rgba(247,147,26,0.16);
			  transition: background 0.18s;
			}
			.gift-summary .btn-warning:hover {
			  background: #ffc857;
			  color: #222;
			}

			/* Extra: Feld-Labels etwas auffälliger */
			.sw-gift-form .form-label.fw-bold {
			  color: #ffe082;
			  font-weight: 700;
			}
		
			@media (min-width: 992px) {
			  .gift-summary {
				position: sticky;
				top: 2rem;
				z-index: 10;
			  }
			}

/* -------------------- Geschenkfelder kaufen --------------------- */


/* ----- SatoshiWall.art Bootstrap Alert Overrides ----- */

.alert {
  position: relative;
  border-radius: 14px;
  border: none;
  padding: 1.2em 1.6em 1.2em 3.6em;
  margin-bottom: 1.3em;
  font-size: 1.08em;
  background: linear-gradient(110deg, #232d3a 85%, #2d313d 100%);
  color: #ffe082;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.13), 0 0px 0px 0 #f7931a33;
  font-family: inherit;
  transition: box-shadow 0.2s;
}

.alert-info::before {
  content: "⚡";
  position: absolute;
  left: 1.2em;
  top: 1.15em;
  font-size: 1.35em;
  font-weight: bold;
  color: #ffb300;
  filter: drop-shadow(0 0 2px #f7931a88);
}

/* Farbvarianten für Bootstrap Alerts */
.alert-success {
  background: linear-gradient(110deg, #253824 85%, #224221 100%);
  color: #c9ffb3;
  border-left: 5px solid #36e39a;
}
.alert-danger, .alert-error {
  background: linear-gradient(110deg, #40221e 85%, #401b19 100%);
  color: #ffd8d8;
  border-left: 5px solid #ff5151;
}
.alert-warning {
  background: linear-gradient(110deg, #3a320a 85%, #494201 100%);
  color: #ffe082;
  border-left: 5px solid #ffd54f;
}
.alert-info {
  background: linear-gradient(110deg, #18334a 85%, #2c4762 100%);
  color: #d4e6ff;
  border-left: 5px solid #4fafff;
}

/* Optional: Link-Stil im Alert */
.alert a {
  color: #ffd54f;
  text-decoration: underline;
  font-weight: 600;
}

/* Responsive für Mobilgeräte */
@media (max-width: 576px) {
  .alert {
    padding: 1em 1em 1em 2.8em;
    font-size: 1em;
  }
  .alert::before {
    left: 0.7em;
    top: 1em;
  }
}

/* -------------------- Ende Alerts ------------------------------- */



.sw-content-bg {
  position: relative;
  z-index: 10;
}



/* ---------------------- Like Button ----------------------------- */

.like-btn {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 3px 8px;
  display: inline-flex;
  align-items: center;
  font-size: 1.1em;
  transition: background 0.2s;
}



.like-btn .fa-heart {
  margin-right: 4px;
  color: #F6C851; /* Gold/gelb für neutral */
  transition: color 0.2s;
}

.like-btn.liked .fa-heart {
  color: #18ce8c; /* Grün für „geliked“ */
}

.like-btn.liked #likeCount {
  color: #18ce8c;
  font-weight: bold;
}

/* ------------------Ende Like Button ----------------------------- */


/* SatoshiWall Primary Button (angepasst) */
.btn-primary,
.btn-primary:focus, 
.btn-primary:active {
  background-color: #ff9900 !important; /* SatoshiWall Orange */
  border-color: #ff9900 !important;
  color: #222 !important;
  font-weight: bold;
  transition: background 0.15s;
}

.btn-primary:hover {
  background-color: #ffc042 !important;  /* leichtes, helleres Orange für Hover */
  border-color: #ffc042 !important;
  color: #222 !important;
}

/* ------------------Fade in ----------------------------- */

.satoshi-fade-in {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0.1, 0.22, 1);
}

.satoshi-fade-in.visible {
  opacity: 1;
}

main {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(.47,1.64,.41,.8);
  will-change: opacity;
}
main.fade-in {
  opacity: 1;
}
main.fade-out {
  opacity: 0 !important;
}


/* ---------------------------------- SW Card ------------------------------ */

.sw-card {
	border:2.5px solid #ffd54f; 
	border-radius:18px; 
	background: linear-gradient(115deg,#1a2231 88%,#232837 100%); 
	min-height:375px;
	display:flex;
	flex-direction:column;
	justify-content:space-between;	
}
