/* [project]/Desktop/it-rwo-coding/Reseller Panel/src/app/globals.css [app-client] (css) */
:root {
  --bg-color: #08090a;
  --text-color: #f1f1f1;
  --accent-color: #3e4c59;
  --border-color: #ffffff0d;
  --card-bg: #ffffff05;
  --muted-text: #888;
}

[data-theme="light"] {
  --bg-color: #fff;
  --text-color: #08090a;
  --accent-color: #3e4c59;
  --border-color: #00000014;
  --card-bg: #00000005;
  --muted-text: #666;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  font-family: Plus Jakarta Sans, sans-serif;
  line-height: 1.6;
  transition: background-color .5s cubic-bezier(.4, 0, .2, 1), color .5s cubic-bezier(.4, 0, .2, 1);
}

.cookie-banner {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  z-index: 10000;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  display: flex;
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  box-shadow: 0 10px 40px #0003;
}

.cookie-text {
  color: var(--muted-text);
  max-width: 700px;
  font-size: .85rem;
}

h1, h2, h3 {
  letter-spacing: -.02em;
  font-family: Playfair Display, serif;
  font-weight: 800;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn-boutique {
  border: 1.5px solid var(--text-color);
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: .12em;
  background: none;
  border-radius: 100px;
  padding: .8rem 2.2rem;
  font-size: .8rem;
  font-weight: 700;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

.btn-boutique:hover {
  background: var(--text-color);
  color: var(--bg-color);
  transform: translateY(-2px);
}

.btn-login {
  color: var(--muted-text);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-right: 1.5rem;
  font-size: .8rem;
  font-weight: 700;
  transition: color .3s;
}

.btn-login:hover {
  color: var(--text-color);
}

.card-organic {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3.5rem;
  transition: all .5s;
}

.card-organic:hover {
  border-color: var(--text-color);
  background: var(--card-bg);
}

.signature {
  opacity: .9;
  font-family: Playfair Display, serif;
  font-style: italic;
  font-weight: 700;
}

.btn-color-mode-switch {
  vertical-align: middle;
  margin: 0;
  display: inline-block;
  position: relative;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner {
  cursor: pointer;
  background: #e0e0e0;
  border-radius: 26px;
  width: 140px;
  height: 32px;
  margin: 0;
  transition: all .3s;
  display: block;
  position: relative;
  overflow: hidden;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:before {
  content: attr(data-on);
  color: #424242;
  font-size: 11px;
  font-weight: 600;
  transition: all .3s;
  position: absolute;
  top: 8px;
  right: 18px;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:after {
  content: attr(data-off);
  text-align: center;
  color: #424242;
  background: #fff;
  border-radius: 26px;
  width: 70px;
  height: 28px;
  padding: 5px 0;
  font-size: 11px;
  font-weight: 600;
  transition: all .3s;
  position: absolute;
  top: 2px;
  left: 2px;
  box-shadow: 0 1px 4px #00000026;
}

.btn-color-mode-switch input[type="checkbox"] {
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner {
  background: #151515;
}

.btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:after {
  content: attr(data-on);
  color: #fff;
  background: #2a2a2a;
  left: 68px;
}

.btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:before {
  content: attr(data-off);
  color: #888;
  left: 18px;
  right: auto;
}

.modern-pill-switch {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  gap: 2px;
  padding: 3px;
  display: flex;
}

.modern-pill-btn {
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted-text);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 100px;
  padding: 5px 16px;
  font-size: .7rem;
  font-weight: 800;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.modern-pill-btn.active {
  background: var(--text-color);
  color: var(--bg-color);
  box-shadow: 0 2px 8px #0003;
}

.modern-pill-btn:hover:not(.active) {
  color: var(--text-color);
  background: #ffffff0d;
}

.boutique-footer {
  border-top: 1px solid var(--border-color);
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding: 8rem 0;
  display: grid;
}

.footer-brand-side {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.footer-logo {
  opacity: .9;
  font-family: Playfair Display, serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.footer-desc {
  color: var(--muted-text);
  max-width: 320px;
  font-size: .9rem;
  line-height: 1.8;
}

.footer-nav-label {
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted-text);
  margin-bottom: 2rem;
  font-size: .7rem;
  font-weight: 800;
  display: block;
}

.footer-nav-link {
  color: var(--muted-text);
  width: fit-content;
  margin-bottom: 1rem;
  font-size: .85rem;
  transition: all .3s;
  display: block;
}

.footer-nav-link:hover {
  color: var(--text-color);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  color: var(--muted-text);
  justify-content: space-between;
  align-items: center;
  padding: 4rem 0;
  font-size: .75rem;
  font-weight: 500;
  display: flex;
}

/*# sourceMappingURL=Desktop_it-rwo-coding_Reseller%20Panel_src_app_globals_0bp.731.css.map*/