#fw-section-featured-collection-0aa3feb8-8792-4f49-8b5e-e6cddeb2b5e6 {

/* === Коллекция как окно Windows 95 (белый фон) === */
.collection {
  background-color: #ffffff;
  border: 3px solid #fff;
  border-right-color: #404040;
  border-bottom-color: #404040;
  box-shadow: 3px 6px 0 rgba(0, 0, 0, 0.5); /* 🔥 полупрозрачная чёрная тень */
  max-width: 96%;
  width: 800px;
  margin: 20px auto; /* ✅ убрали верх/низ */
  font-family: 'Tahoma','Verdana',sans-serif;
  overflow: hidden;
  position: relative;
}

/* Заголовок окна (синяя полоса, белый текст) */
.collection::before {
  content: "🔥 Fan's Favorite";
  display: block;
  background: linear-gradient(to right, #000080, #1084d0);
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  padding: 4px 8px;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #404040;
  text-align: left;
}

/* Кнопка закрытия (декорация) */
.collection::after {
  content: "✕";
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: 12px;
  font-weight: bold;
  color: #000;
  background: #c0c0c0;
  border: 2px outset #fff;
  padding: 0 4px;
  cursor: default;
  line-height: 1;
}

/* Пояснительный текст под шапкой */
.collection .collection_inner::before,
.collection .collection__inner::before {
  content: "⚠️ Our all time bestsellers! \A Tag @bigfloppa.gosha in your story wearing our merch and we’ll share it on IG!";
  white-space: pre-line;
  display: block;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: normal;
  color: #000;
  background: #c0c0c0;
  margin: 0 0 15px 0; /* 🔥 отступ снизу */
  text-align: left;

  /* ✅ сайтный шрифт Nunito Black */
  font-family: 'Nunito', sans-serif !important;
  font-weight: 900 !important;

  /* рамка в стиле Win95 */
  border: 2px inset #808080;
  box-shadow: inset 1px 1px #fff, inset -1px -1px #404040;
}

/* === Содержимое === */
.collection .product-card {
  background: #ffffff;
  border: 2px solid #808080;
  padding: 10px;
  margin: 10px;
  box-shadow: inset 1px 1px #fff, inset -1px -1px #404040;
  transition: background 0.2s ease-in-out;
}
.collection .product-card:hover {
  background: #e6f0ff;
}

/* Заголовки товаров */
.collection .product-card h3 {
  font-size: 14px;
  margin: 0 0 5px;
  font-weight: bold;
  color: #000;
}

/* Кнопка купить */
.collection .product-card .buy-button {
  background: #c0c0c0;
  border: 2px outset #fff;
  padding: 4px 8px;
  font-size: 12px;
  cursor: pointer;
  box-shadow: inset -1px -1px #404040, inset 1px 1px #fff;
  color: #000;
}
.collection .product-card .buy-button:hover {
  background: #000080;
  color: #fff;
}

}
#fw-section-custom-html-4098ca99-8a81-472c-be29-49581bfbaa9f {

/* === Окно ошибки (Win95 стиль) === */
.gosha-error-window {
  position: absolute;
  top: 25%;
  left: 13%; /* 👈 сдвинули окно левее */
  min-width: 200px;
  background: #ffffff;
  border: 3px solid #fff;
  border-right-color: #404040;
  border-bottom-color: #404040;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.5); /* 🔥 полупрозрачная тень вниз и вправо */
  font-family: 'Nunito', sans-serif; /* ✅ основной шрифт сайта */
  font-weight: 900; /* ✅ жирный Nunito Black */
  z-index: 5; /* 👈 больше не перекрывает все окна */
  display: inline-block;
  white-space: nowrap;
}

/* === Заголовок окна (Win95 стиль) === */
.error-titlebar {
  background: linear-gradient(to right, #000080, #1084d0);
  color: #fff;
  font-family: 'Tahoma','Verdana',sans-serif; /* ✅ только для шапки */
  font-size: 12px;
  font-weight: bold;
  padding: 3px 8px;
  line-height: 1.2;
  border-bottom: 2px solid #404040;
  text-align: left;
}

/* === Контент === */
.error-body {
  padding: 6px 10px;
  text-align: center;
  background: #fff;
  border-bottom: 2px solid #808080;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* === Нижняя панель === */
.error-footer {
  padding: 4px;
  display: flex;
  justify-content: center;
  background: #c0c0c0;
  border-top: 2px solid #fff;
}

.error-btn {
  background: #e0e0e0;
  border: 2px outset #fff;
  padding: 1px 12px;
  font-size: 11px;
  font-weight: bold;
  cursor: default;
  box-shadow: inset -1px -1px #404040, inset 1px 1px #fff;
}
.error-btn:active {
  border: 2px inset #fff;
  box-shadow: inset 1px 1px #404040, inset -1px -1px #fff;
}

/* === Анимация по буквам === */
.animated-heading span {
  display: inline-block;
  -webkit-text-stroke: 1.5px #0066ff;
  -webkit-text-fill-color: #fff;
  color: #fff;
  paint-order: stroke fill;
  animation: goshaWave 2.5s ease-in-out infinite !important;
}
.animated-heading .space {
  -webkit-text-stroke: 0;
  min-width: 0.3em;
  animation: none !important;
}

/* Задержки */
.animated-heading span:nth-child(1)  { animation-delay: 0s; }
.animated-heading span:nth-child(2)  { animation-delay: .1s; }
.animated-heading span:nth-child(3)  { animation-delay: .2s; }
.animated-heading span:nth-child(4)  { animation-delay: .3s; }
.animated-heading span:nth-child(5)  { animation-delay: .4s; }
.animated-heading span:nth-child(6)  { animation-delay: .5s; }
.animated-heading span:nth-child(7)  { animation-delay: .6s; }
.animated-heading span:nth-child(8)  { animation-delay: .7s; }
.animated-heading span:nth-child(9)  { animation-delay: .8s; }
.animated-heading span:nth-child(10) { animation-delay: .9s; }
.animated-heading span:nth-child(11) { animation-delay: 1.0s; }
.animated-heading span:nth-child(12) { animation-delay: 1.1s; }
.animated-heading span:nth-child(13) { animation-delay: 1.2s; }
.animated-heading span:nth-child(14) { animation-delay: 1.3s; }
.animated-heading span:nth-child(15) { animation-delay: 1.4s; }
.animated-heading span:nth-child(16) { animation-delay: 1.5s; }
.animated-heading span:nth-child(17) { animation-delay: 1.6s; }
.animated-heading span:nth-child(18) { animation-delay: 1.7s; }
.animated-heading span:nth-child(19) { animation-delay: 1.8s; }
.animated-heading span:nth-child(20) { animation-delay: 1.9s; }
.animated-heading span:nth-child(21) { animation-delay: 2.0s; }
.animated-heading span:nth-child(22) { animation-delay: 2.1s; }
.animated-heading span:nth-child(23) { animation-delay: 2.2s; }
.animated-heading span:nth-child(24) { animation-delay: 2.3s; }
.animated-heading span:nth-child(25) { animation-delay: 2.4s; }

/* === Мобильная адаптация === */
@media (max-width: 768px) {
  .gosha-error-window {
    top: 15%;
    left: 2%; /* 👈 для мобил оставляем по центру */
    min-width: 170px;
  }
  .error-body { font-size: 0.85rem; }
}

}
#fw-section-custom-html-21590f8f-dc82-4176-8363-19f91067b6f4 {

.custom-html-empty{
  position:absolute !important;
  inset:0 !important;
  width:0 !important;
  height:0 !important;
  padding:0 !important;
  margin:0 !important;
  border:none !important;
  overflow:hidden !important;
  pointer-events:none !important;
  display:block !important;
  z-index:-1 !important;
}


}
#fw-section-custom-html-66b93137-95e5-43fa-91ec-b7db13338014 {

/* === Баннер как окно Win95 (адаптивное окно) === */
.gosha-banner {
  background-image: url('https://imgproxy.fourthwall.com/IDKkjjCKvZtj5821gvu2SnH4Q0H1YzO0GgbekQK8RA0/w:1920/sm:1/enc/VIrIq3NGvvnQ3lb5/C1Pq1oSgKs8-sHq5/X42Y6eGR2_y7WNj0/6Qp7M5WjDuH49xE7/9hBoFdnJxzXpmBjK/UtglMWsvL3YnZJ3I/zQuGD-_cgLxcPx7Z/iqvEbkxUuX7zldB4/MOkKSP2jKmzlQtph/vECZ3Objo_gBAXHE/zEZx6nC68RBq_WHC/cIrd89Yes3HJSsIL/f4w87CpvYANO_0SW/GbBAx8y28or99T0S/-EyfuQS2OKK_dWmz/M4mRFiPTfANZ61v9');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  aspect-ratio: 5 / 6;

  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;

  background-color: #ffffff;
  border: 3px solid #fff;
  border-right-color: #404040;
  border-bottom-color: #404040;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
  position: relative;

  max-width: 95%;
  margin: 40px auto;

  font-family: 'Nunito', sans-serif;
  font-weight: 900;
}

.gosha-banner::before {
  content: "Hello.exe";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, #000080, #1084d0);
  color: #fff;
  font-family: 'Tahoma','Verdana',sans-serif;
  font-weight: bold;
  font-size: 14px;
  padding: 4px 8px;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #404040;
  text-align: left;
  box-sizing: border-box;
  height: 24px;
  display: flex;
  align-items: center;
}

.gosha-banner::after {
  content: "✕";
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: 12px;
  font-weight: bold;
  color: #000;
  background: #c0c0c0;
  border: 2px outset #fff;
  padding: 0 4px;
  line-height: 1;
  cursor: default;
}

.gosha-top {
  align-self: center;
  width: 100%;
  padding-top: 34px;
}

.gosha-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px; /* 🆙 подняли кнопку */
}

.gosha-subtext {
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  font-weight: bold;
  color: white;
  -webkit-text-stroke: 2px #2196f3;
  -webkit-text-fill-color: white;
  paint-order: stroke fill;
  margin-bottom: 20px;
  max-width: 90%;

  text-shadow: 
    0 0 8px rgba(33, 150, 243, 0.9),
    0 3px 6px rgba(0, 0, 0, 0.7);

  line-height: 1.3;
  text-align: center;
}

.gosha-button {
  background-color: #5dc9ff;
  border: 3px solid #000;
  color: #000;
  padding: 10px 20px;  
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 2px 4px 0 #000;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.gosha-button:hover {
  background-color: #2196f3;
  color: white;
  transform: translateY(-2px);
}

@media (min-width: 769px) {
  .gosha-banner {
    aspect-ratio: 16 / 9;
    max-width: 1300px;
    width: 95%;
    padding: 30px 40px;
  }
  .gosha-subtext { font-size: clamp(1rem, 1.8vw, 1.2rem); }
  .gosha-button  { font-size: clamp(1rem, 1.8vw, 1.2rem); }
}

.gosha-banner {
  /* внешние отступы */
  margin-top: 0 !important;
  margin-bottom: 0 !important;

  /* внутренние отступы */
  padding-top: 0;
  padding-bottom: 0;
}

}







#fw-section-collection-template-collection-default {

/* === Заголовок коллекции в стиле Windows === */
.collection-template__header {
  position: relative;
  border: 3px solid #fff;
  border-right-color: #404040;
  border-bottom-color: #404040;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.5); /* лёгкая полупрозрачная тень */
  background: #ffffff;
  font-family: 'Tahoma', sans-serif;
  margin-bottom: 20px;
  padding: 0;
}

/* Синяя полоска сверху */
.collection-template__header::before {
  content: "Collection.exe";
  display: block;
  background: linear-gradient(to right, #000080, #1084d0);
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  padding: 4px 8px;
  border-bottom: 2px solid #404040;
  text-align: left;
}

/* Кнопка закрытия справа */
.collection-template__header::after {
  content: "✕";
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: 12px;
  font-weight: bold;
  color: #000;
  background: #c0c0c0;
  border: 2px outset #fff;
  padding: 0 4px;
  cursor: default;
  line-height: 1;
}

/* Сам заголовок */
.collection-template__heading {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin: 12px 10px 4px 10px;
}

/* Пояснение под заголовком */
.collection-template__heading::after {
  content: "⚠️ The cutest merch that Gosha has to offer.";
  display: block;
  font-size: 13px;
  font-weight: normal;
  color: #000;
  background: #c0c0c0;
  padding: 6px 10px;
  margin-top: 6px;
  border: 2px inset #808080;
  box-shadow: inset 1px 1px #fff, inset -1px -1px #404040;
}

}

#fw-section-custom-html-329e5939-17f9-45b6-a442-7dde704eb986 {

/* === Окно героя в стиле Windows 95 === */
.gosha-hero-window {
  position: relative;
  border: 3px solid #fff;
  border-right-color: #404040;
  border-bottom-color: #404040;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
  background: #ffffff;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;

  /* ширина как у баннера */
  width: 95%;
  max-width: 800px;
  margin: 0 auto;

  font-family: 'Nunito', sans-serif;
}

/* === Синяя полоска сверху === */
.gosha-hero-window::before {
  content: "Welcome.exe";
  display: block;
  background: linear-gradient(to right, #000080, #1084d0);
  color: #fff;
  font-family: 'Tahoma', sans-serif;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 8px;
  border-bottom: 2px solid #404040;
  text-align: left;
  white-space: nowrap;
}

/* === Кнопка закрытия справа === */
.gosha-hero-window::after {
  content: "✕";
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: 12px;
  font-weight: bold;
  color: #000;
  background: #c0c0c0;
  border: 2px outset #fff;
  padding: 0 4px;
  cursor: default;
  line-height: 1;
}

/* === Заголовок (всегда одна строка) === */
.gosha-hero-window__heading {
  font-size: 20px; /* базовый */
  font-weight: 900;
  font-family: 'Nunito', sans-serif;
  color: #000;
  margin: 14px 10px 6px 10px;
  text-align: center;

  white-space: nowrap;       /* ❌ всегда в одну строку */
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

/* === Подзаголовок (может переноситься, но всегда влезает) === */
.gosha-hero-window__sub {
  font-size: 13px; /* базовый */
  font-weight: 900;
  font-family: 'Nunito', sans-serif;
  color: #000;
  background: #c0c0c0;
  padding: 6px 10px;
  margin: 6px 10px 12px 10px;
  border: 2px inset #808080;
  box-shadow: inset 1px 1px #fff, inset -1px -1px #404040;
  text-align: center;

  white-space: normal; /* ✅ разрешаем перенос */
  line-height: 1.3;
}

/* === Убираем внешние/внутренние отступы у секции === */
.gosha-hero-window {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* === Следующий блок сразу после окна — без верхнего отступа === */
.gosha-hero-window + * {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* === Адаптивное уменьшение шрифтов === */
@media (max-width: 768px) {
  .gosha-hero-window__heading {
    font-size: 16px;
  }
  .gosha-hero-window__sub {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .gosha-hero-window__heading {
    font-size: 14px;
  }
  .gosha-hero-window__sub {
    font-size: 11px;
  }
}

/* Убираем внешние и внутренние отступы у секции с окном */
.fw-section:has(.gosha-hero-window),
section:has(.gosha-hero-window),
.gosha-hero-window {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* На всякий случай — убираем верх у блока, идущего сразу после окна */
.gosha-hero-window + * {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

}
#fw-section-donations-ceec52f1-0f77-427d-9c7b-8ab51e0c1eb4 {

/* === DONATIONS — окно Windows 95 с белым заголовком и широкой синей обводкой === */
/* Вставить целиком в Custom CSS секции донатов */

.donations {
  background-color: #ffffff;
  border: 3px solid #fff;
  border-right-color: #404040;
  border-bottom-color: #404040;
  box-shadow: 3px 6px 0 rgba(0, 0, 0, 0.5);
  max-width: 95%;
  width: 800px;
  margin: 40px auto;
  font-family: 'Nunito Black', sans-serif;
  font-weight: 900;
  overflow: hidden;
  position: relative;
  padding: 0 !important;
}

/* Синяя полоска (titlebar) */
.donations::before {
  content: "🦐 Donate to Gosha & Yasha";
  display: block;
  background: linear-gradient(to right, #000080, #1084d0);
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  padding: 4px 8px;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #404040;
  text-align: left;
  font-family: 'Tahoma', sans-serif;
}

/* Крестик */
.donations::after {
  content: "✕";
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: 12px;
  font-weight: bold;
  color: #000;
  background: #c0c0c0;
  border: 2px outset #fff;
  padding: 0 4px;
  line-height: 1;
  cursor: default;
}

/* Сброс гаттеров */
.donations .container.wrapper,
.donations .grid,
.donations .grid__column,
.donations .grid_column {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* === Заголовок после полоски: БЕЛЫЙ ТЕКСТ + УТОЛЩЁННАЯ СИНЯЯ ОБВОДКА === */
.donations__header {
  background: transparent;
  text-align: center;
  padding: 6px 12px 8px;
  margin: 0 0 12px 0;
  font-family: 'Nunito Black', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 4.2vw, 36px);
  line-height: 1.05;

  /* шире в 2 раза: stroke увеличен */
  -webkit-text-stroke: 2px #0066ff;
  -webkit-text-fill-color: #fff;
  color: #fff;
  paint-order: stroke fill;

  /* fallback через text-shadow — тоже толще */
  text-shadow:
    2px 0 0 #0066ff, -2px 0 0 #0066ff,
    0 2px 0 #0066ff, 0 -2px 0 #0066ff,
    2px 2px 0 #0066ff, -2px 2px 0 #0066ff,
    2px -2px 0 #0066ff, -2px -2px 0 #0066ff;
}

.donations__header h1,
.donations__header h2,
.donations__header h3,
.donations__header p {
  margin: 0;
}

/* Белая область */
.donations__text,
.donations__form-container {
  background: #ffffff;
  padding: 0 16px 16px;
  font-size: 14px;
  color: #000;
  line-height: 1.45;
  font-weight: normal;
}

/* Поля формы */
.donations__form-container input,
.donations__form-container textarea {
  background: #fff;
  border: 2px inset #808080;
  padding: 6px;
  width: 100%;
  margin-bottom: 12px;
  font-family: 'Nunito Black', sans-serif;
  font-size: 14px;
  box-sizing: border-box;
}

/* Кнопки — теперь с ЧЁРНОЙ обводкой */
.donations__form-container button {
  background: #f9ff57;
  border: 2px solid #000; /* 🔥 чёрная обводка */
  padding: 6px 14px;
  margin: 6px 4px;
  cursor: pointer;
  font-family: 'Nunito Black', sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #000;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.5);
  transition: all 0.15s ease-in-out;
}
.donations__form-container button:hover {
  background: #000080;
  color: #fff;
}
.donations__form-container button:active {
  transform: translateY(1px);
  box-shadow: 1px 1px 0 rgba(0,0,0,0.5);
}

}