/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[5].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[5].rules[1].use[1]!./src/styles.scss?ngGlobalStyle ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --text: #0f172a; /* slate-900 */
  --muted: #475569; /* slate-600 */
  --primary: #0ea5a5; /* teal-500 */
  --primary-600: #0d9488;
  --ring: rgba(14, 165, 165, 0.25);
  --sale: #ef4444; /* red-500 */
  --success: #16a34a; /* green-600 */
  --radius: 12px;
  --shadow: 0 6px 24px rgba(2, 6, 23, 0.08);
  --green: #0b4c3b; /* основен зелен */
  --green-2: #0d5c47; /* hover зелен */
}

html,
body {
  background: var(--bg);
  color: var(--text);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Бутон – неутрален + модификатори */
.btn {
  display: inline-block;
  border: none;
  border-radius: 10px;
  padding: 0.8rem 1.4rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--text);
  color: #fff;
  transition: 0.2s ease;
}

.btn:hover {
  filter: brightness(0.95);
}

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

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--light {
  background: #fff;
  color: var(--text);
}

/* ✅ Основни reset-и */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: "Inter", sans-serif;
  background-color: #f9f9f9;
  color: #222;
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  font-size: 16px;
}

/* ✅ Универсален container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ✅ Клас за глобален бутон */
.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: #111;
  color: white;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
.btn:hover {
  background-color: #333;
}

/* ✅ Малък бутон */
.btn-small {
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  border-radius: 4px;
}

/* ✅ Заглавия */
h1,
h2,
h3,
h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111;
}

/* ✅ Линкове */
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: underline;
}

/* ✅ Карта за продукти или съдържание */
.card {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* ✅ Scrollbar стил (по избор) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

.d-flex-column {
  display: flex;
  flex-direction: column;
}

.mt-auto {
  margin-top: auto;
}

.h-100 {
  height: 100vh;
}

/* Global responsive visibility (SSR-safe) */
.only-desktop {
  display: block !important;
}

.only-mobile {
  display: none !important;
}

@media (max-width: 768px) {
  .only-desktop {
    display: none !important;
  }
  .only-mobile {
    display: block !important;
  }
}
