@import url(./root.css);

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

html {
  font-size: 62.5%;
}

html, body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


body {
  background-color: var(--neutral-100);
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
  min-height: 100vh;
  min-width: 990px;
}

a {
  color: var(--orange-500);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.header {
  align-items: center;
  background-color: var(--neutral-00);
  border-bottom: 1px solid var(--border-color-light);
  display: flex;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header__container {
  align-items: center;
  display: flex;
  gap: 2rem;
  height: 100%;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 2.4rem;
  width: 100%;
}

.header__nav {
  align-items: center;
  display: flex;
  gap: 4.8rem;
  height: 100%;
}

.header__logo {
  height: 32px;
}

/* Logo dark mode adjustment */
[data-theme="dark"] .header__logo,
[data-theme="dark"] .login-card__logo,
[data-theme="dark"] .landing__logo {
  filter: invert(1) hue-rotate(180deg);
}

@media (prefers-color-scheme: dark) {
  [data-theme="system"] .header__logo,
  [data-theme="system"] .login-card__logo,
  [data-theme="system"] .landing__logo {
    filter: invert(1) hue-rotate(180deg);
  }
}

.nav {
  height: 100%;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 2rem;
  height: 100%;
}

.nav__link {
  align-items: center;
  color: var(--neutral-400);
  display: flex;
  font-weight: 500;
  gap: 1rem;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.nav__link > svg {
  width: 2rem;
}

.nav__link:hover {
  color: var(--neutral-700);
  text-decoration: none;
}

.nav__link.active {
  color: var(--neutral-1000);
}

.nav__link.active::after {
  background-color: var(--orange-500);
  border-radius: 1rem 1rem 0 0;
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}

.nav__dropdown {
  height: 100%;
  position: relative;
}

.nav__dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: inherit;
  padding: 0;
}

.nav__dropdown-arrow {
  width: 1.4rem !important;
  transition: transform 0.2s ease;
}

.nav__dropdown-menu--open .nav__dropdown-arrow,
.nav__dropdown-btn.active ~ .nav__dropdown-menu .nav__dropdown-arrow {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  background: var(--neutral-00);
  border: 1px solid var(--border-color-light);
  border-radius: 0.8rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: calc(100% + 0.3rem);
  transform: scale(0.95);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 100;
}

.nav__dropdown-menu--open {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.nav__dropdown-list {
  list-style: none;
  padding: 0.4rem;
}

.nav__dropdown-item {
  align-items: center;
  border-radius: 0.4rem;
  color: var(--neutral-800);
  display: flex;
  font-size: 1.4rem;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nav__dropdown-item:hover {
  background: var(--orange-50);
  text-decoration: none;
}

.nav__dropdown-item.active {
  color: var(--neutral-1000);
  font-weight: 600;
}

.nav__dropdown-item--highlight {
  background: var(--orange-50);
  outline: 2px solid var(--orange-500);
  outline-offset: -2px;
}

.nav__dropdown-item > svg {
  color: var(--orange-500);
  width: 1.6rem;
}

.header__actions {
  display: flex;
  gap: 1.6rem;
}

.header__notifications {
  position: relative;
}

.notifications-menu {
  background: var(--neutral-00);
  border: 1px solid var(--border-color-light);
  border-radius: 0.8rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
  min-width: 280px;
  position: absolute;
  right: 0;
  top: calc(100% + 0.8rem);
  z-index: 100;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.notifications-menu--open {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.notifications-menu__header {
  border-bottom: 1px solid var(--border-color-light);
  padding: 1.2rem 1.6rem;
}

.notifications-menu__title {
  color: var(--neutral-900);
  font-size: 1.4rem;
  font-weight: 600;
}

.notifications-menu__empty {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 3rem 2rem;
}

.notifications-menu__empty-icon {
  color: var(--neutral-400);
  width: 3.2rem;
  height: 3.2rem;
}

.notifications-menu__empty-text {
  color: var(--neutral-600);
  font-size: 1.4rem;
}

.header__user-menu {
  position: relative;
}

.user-menu {
  background: var(--neutral-00);
  border: 1px solid var(--border-color-light);
  border-radius: 0.8rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
  min-width: 220px;
  position: absolute;
  right: 0;
  top: calc(100% + 0.8rem);
  z-index: 100;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.user-menu--open {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.user-menu__header {
  border-bottom: 1px solid var(--border-color-light);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.2rem 1.6rem;
}

.user-menu__name {
  color: var(--neutral-900);
  font-size: 1.4rem;
  font-weight: 600;
}

.user-menu__email {
  color: var(--neutral-600);
  font-size: 1.2rem;
}

.user-menu__list {
  list-style: none;
  padding: 0.4rem;
}

.user-menu__item form {
  margin: 0;
}

.user-menu__btn {
  align-items: center;
  background: none;
  border: none;
  border-radius: 0.4rem;
  color: var(--neutral-800);
  cursor: pointer;
  display: flex;
  font-family: var(--font-sans);
  font-size: 1.4rem;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  text-decoration: none;
  transition: background 0.2s ease;
  width: 100%;
}

.user-menu__btn:hover {
  background: var(--orange-50);
  text-decoration: none;
}

.user-menu__icon {
  color: var(--orange-500);
  width: 1.6rem;
}

.user-menu__item--danger {
  border-top: 1px solid var(--border-color-light);
  margin-top: 0.4rem;
  padding-top: 0.4rem;
}

.user-menu__btn--danger {
  color: var(--red-600);
}

.user-menu__btn--danger:hover {
  background: var(--red-50);
}

.user-menu__btn--danger .user-menu__icon {
  color: var(--red-600);
}

.user-menu__item--theme,
.user-menu__item--setting {
  border-top: 1px solid var(--border-color-light);
  margin-top: 0.4rem;
  padding-top: 0.4rem;
}

.toggle {
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.toggle__input {
  height: 0;
  opacity: 0;
  position: absolute;
  width: 0;
}

.toggle__slider {
  background: var(--neutral-300);
  border-radius: 1.2rem;
  display: block;
  height: 2.2rem;
  position: relative;
  transition: background 0.2s ease;
  width: 4rem;
}

.toggle__slider::after {
  background: var(--neutral-00);
  border-radius: 50%;
  box-shadow: 0 1px 3px var(--shadow-color);
  content: '';
  height: 1.8rem;
  left: 0.2rem;
  position: absolute;
  top: 0.2rem;
  transition: transform 0.2s ease;
  width: 1.8rem;
}

.toggle__input:checked + .toggle__slider {
  background: var(--orange-500);
}

.toggle__input:checked + .toggle__slider::after {
  transform: translateX(1.8rem);
}

.user-menu__theme {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
}

.user-menu__theme-label {
  align-items: center;
  color: var(--neutral-800);
  display: flex;
  font-size: 1.4rem;
  gap: 0.8rem;
}

.theme-switcher {
  display: flex;
  background: var(--neutral-100);
  border: 1px solid var(--border-color-light);
  border-radius: 0.4rem;
  padding: 0.2rem;
}

.theme-switcher__btn {
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 0.3rem;
  color: var(--neutral-600);
  cursor: pointer;
  display: flex;
  height: 28px;
  justify-content: center;
  transition: all 0.2s ease;
  width: 28px;
}

.theme-switcher__btn:hover {
  color: var(--neutral-800);
}

.theme-switcher__btn.active {
  background: var(--neutral-00);
  box-shadow: 0 1px 3px var(--shadow-color);
  color: var(--orange-500);
}

.theme-switcher__btn svg {
  width: 1.4rem;
  height: 1.4rem;
}

.main {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 2.4rem;
  gap: 2.4rem;
  width: 100%;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 2.4rem;
}

.section-header__actions {
  align-items: center;
  display: flex;
  gap: 1.2rem;
}

.section-header__title {
  font-size: var(--heading-01);
  font-weight: 600;
  color: var(--neutral-1000);
}

.section-header__subtitle {
  color: var(--neutral-700);
  font-size: var(--body-02);
}

.section-header__search {
  width: 320px;
}

.filters__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-radius: 10px;
}

.filters__group,
.filters__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.filters__btn {
  background: var(--neutral-50);
  border: none;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
}

.filters__btn--highlight {
  background-color: var(--orange-500);
  color: var(--neutral-00);
  font-weight: 500;
}

.filters__search {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color-light);
  border-radius: 6px;
  flex: 1;
  min-width: 250px;
}

.filters__caption {
  color: var(--neutral-700);
  font-size: 1.4rem;
  font-weight: 400;
}

.filters__date-range {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.filters__date-label {
  font-size: 1.3rem;
  color: var(--neutral-700);
  white-space: nowrap;
}

.section__multiple-actions.section__multiple-actions--active {
  display: flex;
}
.filters.filters--hidden {
  display: none;
}

.section__multiple-actions {
  align-items: center;
  display: none;
  gap: 0.8rem;
}

.multiple-actions__buttons {
  display: flex;
  gap: 0.8rem;
}

.section__multiple-actions p {
  font-size: 1.4rem;
  color: var(--neutral-800);
}

.ads__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  list-style: none;
}

.ad-card {
  background: var(--neutral-00);
  border: 1px solid var(--border-color-light);
  border-radius: 0.8rem;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.ad-card:has(input[type="checkbox"]:checked) {
  background: var(--orange-25);
  border-color: var(--orange-500);
}

.ad-card:has(input[type="checkbox"]:checked) .ad-card__infos {
  background: var(--orange-50);
}

.ad-card__infos {
  align-items: center;
  background: var(--neutral-50);
  border-radius: 0.8rem 0.8rem 0 0;
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
}

.ad-card__basic-infos {
  align-items: center;
  display: flex;
  gap: 0.4rem;
}

.ad-card__info-description {
  align-items: center;
  color: var(--neutral-800);
  display: flex;
  font-size: 1.2rem;
  font-weight: 500;
  gap: 0.4rem;
}

.ad-card__info-description svg {
  width: 1.6rem;
  color: var(--orange-500);
}

.ad-card__basic-infos__separator {
  width: 1.6rem;
  color: var(--neutral-600);
}

.ad-card__content {
  align-items: center;
  display: flex;
  gap: 1.2rem;
  padding: 1.6rem;
  width: 100%;
}

.ad-card__checkbox {
  display: flex;
  align-items: center;
}

.ad-card__checkbox input {
  width: 16px;
  height: 16px;
}

.ad-card__thumb img {
  border-radius: 0.4rem;
  background: var(--neutral-50);
  border: 1px solid var(--border-color-light);
  height: 48px;
  object-fit: cover;
  width: 48px;
}

.ad-card__header {
  align-items: flex-start;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.4rem;
}

.ad-card__category {
  font-size: 1.2rem;
  color: var(--neutral-700);
}

.ad-card__title {
  font-size: 1.6rem;
  color: var(--neutral-1000);
  font-weight: 500;
}

.ad-card__seals {
  align-items: center;
  display: flex;
  gap: 0.8rem;
}

.ad-card__details {
  align-items: center;
  border: 1px solid var(--border-color-light);
  border-radius: 0.4rem;
  display: flex;
  gap: 0.8rem;
  height: 40px;
  padding: 0 1.6rem;
}

.ad-card__numbers {
  align-items: center;
  display: flex;
  font-size: 1.6rem;
  font-weight: 400;
  gap: 0.4rem;
}

.ad-card__numbers--caption {
  color: var(--neutral-700);
  font-size: 1.2rem;
}

.ad-card__status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.ad-card__plan {
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.ad-card__plan--classic {
  background-color: var(--blue-50);
  color: var(--blue-500);
}

.ad-card__plan--premium {
  background-color: var(--purple-50);
  color: var(--purple-500);
}

.ad-card__price {
  font-weight: 600;
  color: var(--neutral-1000);
  margin-left: auto;
}

.ad-card__fee {
  background: var(--green-50);
  color: var(--green-500);
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.ad-card__state {
  font-size: 0.85rem;
  font-weight: 500;
}

.ad-card__state--active {
  color: var(--green-600);
}

.ad-card__footer {
  font-size: 0.8rem;
  color: var(--neutral-600);
  display: flex;
  gap: 1rem;
}

.ad-card__actions {
  position: relative;
}

.pagination {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

.pagination__list {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.pagination__link {
  align-items: center;
  border: 1px solid var(--border-color-light);
  border-radius: 4px;
  color: var(--neutral-800);
  display: flex;
  font-size: 1.4rem;
  justify-content: center;
  height: 28px;
  padding: 0 0.8rem;
  text-decoration: none;
}

.pagination__link:hover {
  background-color: var(--orange-25);
  text-decoration: none;
}

.pagination__link.active {
  background-color: var(--orange-500);
  color: var(--neutral-00);
  border-color: var(--orange-500);
}

.pagination__link svg {
  width: 1.4rem;
  height: 1.4rem;
}

.pagination__ellipsis {
  color: var(--neutral-600);
}

.action-menu {
  background: var(--neutral-00);
  border: 1px solid var(--border-color-light);
  border-radius: 0.8rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
  min-width: 160px;
  padding: 0.4rem;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 30;

  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.action-menu--open {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.action-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.action-menu__item {
  width: 100%;
}

.action-menu__btn {
  align-items: center;
  background: none;
  border: none;
  border-radius: 0.4rem;
  color: var(--neutral-1000);
  cursor: pointer;
  display: flex;
  font-size: 1.4rem;
  gap: 0.8rem;
  height: 44px;
  padding: 0 1.2rem;
  transition: background 0.2s ease;
  width: 100%;
}

.action-menu__btn:hover {
  background: var(--orange-50);
}

.action-menu__icon {
  width: 1.6rem;
  color: var(--orange-500);
}

.action-menu__label {
  flex: 1;
}

.action-menu__item--danger .action-menu__btn:hover {
  background: var(--red-50);
}

.action-menu__icon--danger,
.action-menu__label--danger {
  color: var(--red-600);
}

/* CARDS */

.card {
  background: var(--neutral-00);
  border: 1px solid var(--border-color-light);
  border-radius: 0.8rem;
  padding: 2rem;
}

.card__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}

.card__title {
  color: var(--neutral-1000);
  font-size: var(--heading-04);
  font-weight: 600;
}

.card__subtitle {
  color: var(--neutral-600);
  font-size: var(--body-03);
}

/* TABLES */

.table {
  border-collapse: collapse;
  width: 100%;
}

.table th,
.table td {
  border-bottom: 1px solid var(--border-color-light);
  padding: 1.2rem;
  text-align: left;
}

.table th {
  background: var(--neutral-50);
  color: var(--neutral-700);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.table td {
  color: var(--neutral-800);
  font-size: 1.4rem;
}

.table tr:hover td {
  background: var(--neutral-50);
}

/* ALERTS / MESSAGES */

.alert {
  border-radius: 0.8rem;
  display: flex;
  gap: 1.2rem;
  padding: 1.6rem;
}

.alert--success {
  background: var(--green-50);
  border: 1px solid var(--green-200);
  color: var(--green-700);
}

.alert--error {
  background: var(--red-50);
  border: 1px solid var(--red-200);
  color: var(--red-700);
}

.alert--warning {
  background: var(--orange-50);
  border: 1px solid var(--orange-200);
  color: var(--orange-700);
}

.alert--info {
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  color: var(--blue-700);
}

.alert__icon {
  width: 2rem;
  flex-shrink: 0;
}

.alert__content {
  flex: 1;
}

.alert__title {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.alert__message {
  font-size: 1.4rem;
}

/* FORMS */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.form-label {
  color: var(--neutral-800);
  font-size: 1.4rem;
  font-weight: 500;
}

.form-label--required::after {
  color: var(--red-500);
  content: " *";
}

.form-help {
  color: var(--neutral-600);
  font-size: 1.2rem;
}

.form-error {
  color: var(--red-500);
  font-size: 1.2rem;
}

.input--error {
  border-color: var(--red-500);
}

.input--error:focus {
  border-color: var(--red-500);
}

/* GRID LAYOUT */

.grid {
  display: grid;
  gap: 2.4rem;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* STATS */

.stat-card {
  background: var(--neutral-00);
  border: 1px solid var(--border-color-light);
  border-radius: 0.8rem;
  padding: 2rem;
}

.stat-card__icon {
  align-items: center;
  background: var(--orange-50);
  border-radius: 0.8rem;
  color: var(--orange-500);
  display: flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 1.6rem;
  width: 48px;
}

.stat-card__icon svg {
  width: 24px;
  height: 24px;
}

.stat-card__value {
  color: var(--neutral-1000);
  font-size: var(--heading-01);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.stat-card__label {
  color: var(--neutral-600);
  font-size: var(--body-02);
}

/* LOGIN PAGE */

.login-page {
  align-items: center;
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-700) 100%);
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

.login-card {
  background: var(--neutral-00);
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  padding: 4rem;
  width: 100%;
}

.login-card__logo {
  display: block;
  height: 40px;
  margin: 0 auto 3.2rem;
}

.login-card__title {
  color: var(--neutral-1000);
  font-size: var(--heading-02);
  font-weight: 600;
  margin-bottom: 0.8rem;
  text-align: center;
}

.login-card__subtitle {
  color: var(--neutral-600);
  font-size: var(--body-02);
  margin-bottom: 3.2rem;
  text-align: center;
}

.login-card .form-group {
  margin-bottom: 2rem;
}

.login-card .input {
  width: 100%;
}

.login-card .btn {
  width: 100%;
}

/* SIDEBAR (optional) */

.sidebar {
  background: var(--neutral-00);
  border-right: 1px solid var(--border-color-light);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 260px;
}

.sidebar__header {
  align-items: center;
  border-bottom: 1px solid var(--border-color-light);
  display: flex;
  height: 72px;
  padding: 0 2rem;
}

.sidebar__nav {
  flex: 1;
  padding: 1.6rem;
}

.sidebar__link {
  align-items: center;
  border-radius: 0.6rem;
  color: var(--neutral-700);
  display: flex;
  font-size: 1.4rem;
  font-weight: 500;
  gap: 1.2rem;
  padding: 1.2rem 1.6rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sidebar__link:hover {
  background: var(--orange-25);
  color: var(--neutral-900);
  text-decoration: none;
}

.sidebar__link.active {
  background: var(--orange-50);
  color: var(--orange-600);
}

.sidebar__link svg {
  width: 2rem;
}

/* LAYOUT WITH SIDEBAR */

.layout {
  display: flex;
  min-height: 100vh;
}

.layout__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* STORES GRID */

.stores-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* STORE CARD */

.store-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 1.2rem;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.store-card__header {
  align-items: flex-start;
  display: flex;
  gap: 1.2rem;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}

.store-card__info {
  flex: 1;
  min-width: 0;
}

.store-card__title {
  color: var(--text-primary);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-card__id {
  color: var(--text-muted);
  font-size: 1.2rem;
}

.store-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.store-card__stat {
  display: flex;
  font-size: 1.4rem;
  justify-content: space-between;
}

.store-card__stat-label {
  color: var(--text-tertiary);
}

.store-card__stat-value {
  color: var(--text-primary);
  font-weight: 500;
}

.store-card__footer {
  border-top: 1px solid var(--border-color-light);
  display: flex;
  gap: 0.8rem;
  padding-top: 1.6rem;
}

.store-card__footer form {
  display: contents;
}

/* Button danger text modifier */

.btn--danger-text {
  color: var(--red-500);
}

.btn--danger-text:hover {
  background: var(--red-50);
  color: var(--red-600);
}

/* DROPDOWN */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.dropdown__menu {
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 0.8rem;
  box-shadow: 0 4px 12px var(--shadow-color);
  display: none;
  min-width: 200px;
  padding: 0.8rem 0;
  position: absolute;
  right: 0;
  top: calc(100% + 0.4rem);
  z-index: 100;
}

.dropdown:hover .dropdown__menu,
.dropdown:focus-within .dropdown__menu {
  display: block;
}

.dropdown__item {
  color: var(--text-primary);
  display: block;
  font-size: 1.4rem;
  padding: 1rem 1.6rem;
  text-decoration: none;
  transition: background 0.15s ease;
}

.dropdown__item:hover {
  background: var(--bg-secondary);
  text-decoration: none;
}
