/* [project]/src/features/design-system/design-system.css [app-client] (css) */
@layer components {
  :where(html:has([data-page-style="design-system"])):root {
    --color-primary: #0b2238;
    --color-accent: #0077b6;
    --color-accent-hover: #005f92;
    --color-park-green: #1b4332;
    --color-park-green-light: #2d6a4f;
    --color-bg-white: #fff;
    --color-bg-light: #f8fafc;
    --color-bg-sand: #f7f6f1;
    --color-text-main: #1e293b;
    --color-text-title: #0b2238;
    --color-text-muted: #526177;
    --color-border: #e2e8f0;
    --color-success: #059669;
    --color-warning: #d97706;
    --color-danger: #dc2626;
    --font-family: "Onest Local", sans-serif;
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px 0 #0000000d;
    --shadow-md: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
    --shadow-lg: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
  }

  :where(html:has([data-page-style="design-system"])) * {
    box-sizing: border-box;
  }

  :where(html:has([data-page-style="design-system"])) body {
    font-family: var(--font-family);
    background-color: var(--color-bg-light);
    color: var(--color-text-main);
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
  }

  :where(html:has([data-page-style="design-system"])) .ds-container {
    max-width: 1200px;
    padding: var(--space-2xl) var(--space-md);
    margin: 0 auto;
  }

  :where(html:has([data-page-style="design-system"])) .ds-header {
    margin-bottom: var(--space-3xl);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--space-2xl);
  }

  :where(html:has([data-page-style="design-system"])) .ds-logo {
    height: 48px;
    margin-bottom: var(--space-xl);
  }

  :where(html:has([data-page-style="design-system"])) .ds-title {
    color: var(--color-text-title);
    margin: 0 0 var(--space-sm);
    font-size: 32px;
    font-weight: 800;
  }

  @media (min-width: 768px) {
    :where(html:has([data-page-style="design-system"])) .ds-title {
      font-size: 56px;
    }
  }

  :where(html:has([data-page-style="design-system"])) .ds-desc {
    color: var(--color-text-muted);
    font-size: 18px;
  }

  :where(html:has([data-page-style="design-system"])) .ds-section {
    margin-bottom: var(--space-3xl);
  }

  :where(html:has([data-page-style="design-system"])) .ds-section-title {
    color: var(--color-text-title);
    margin: 0 0 var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-primary);
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
  }

  @media (min-width: 768px) {
    :where(html:has([data-page-style="design-system"])) .ds-section-title {
      font-size: 32px;
    }
  }

  :where(html:has([data-page-style="design-system"])) .ds-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
  }

  :where(html:has([data-page-style="design-system"])) .typo-row {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
  }

  :where(html:has([data-page-style="design-system"])) .typo-row:last-child {
    border: none;
    margin: 0;
    padding: 0;
  }

  :where(html:has([data-page-style="design-system"])) .typo-label {
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    font-size: 12px;
    font-weight: 600;
  }

  :where(html:has([data-page-style="design-system"])) h1, :where(html:has([data-page-style="design-system"])) .text-h1 {
    color: var(--color-text-title);
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
  }

  :where(html:has([data-page-style="design-system"])) h2, :where(html:has([data-page-style="design-system"])) .text-h2 {
    color: var(--color-text-title);
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
  }

  :where(html:has([data-page-style="design-system"])) h3, :where(html:has([data-page-style="design-system"])) .text-h3 {
    color: var(--color-text-title);
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
  }

  :where(html:has([data-page-style="design-system"])) .text-body {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
  }

  :where(html:has([data-page-style="design-system"])) .text-small {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
  }

  :where(html:has([data-page-style="design-system"])) .text-eyebrow {
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0;
    font-size: 12px;
    font-weight: 600;
  }

  @media (min-width: 768px) {
    :where(html:has([data-page-style="design-system"])) h1, :where(html:has([data-page-style="design-system"])) .text-h1 {
      font-size: 56px;
      font-weight: 800;
    }

    :where(html:has([data-page-style="design-system"])) h2, :where(html:has([data-page-style="design-system"])) .text-h2 {
      font-size: 36px;
    }

    :where(html:has([data-page-style="design-system"])) h3, :where(html:has([data-page-style="design-system"])) .text-h3 {
      font-size: 24px;
    }
  }

  :where(html:has([data-page-style="design-system"])) .color-grid {
    gap: var(--space-lg);
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    display: grid;
  }

  :where(html:has([data-page-style="design-system"])) .color-swatch {
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
  }

  :where(html:has([data-page-style="design-system"])) .color-box {
    width: 100%;
    height: 100px;
  }

  :where(html:has([data-page-style="design-system"])) .color-info {
    padding: var(--space-sm);
    background: var(--color-bg-white);
  }

  :where(html:has([data-page-style="design-system"])) .color-name {
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 600;
  }

  :where(html:has([data-page-style="design-system"])) .color-hex {
    color: var(--color-text-muted);
    font-family: monospace;
    font-size: 12px;
  }

  :where(html:has([data-page-style="design-system"])) .btn-row {
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    align-items: center;
    display: flex;
  }

  :where(html:has([data-page-style="design-system"])) .btn {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-family);
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 1px solid #0000;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    text-decoration: none;
    transition: all .2s;
    display: inline-flex;
  }

  :where(html:has([data-page-style="design-system"])) .btn:disabled {
    opacity: .6;
    cursor: not-allowed;
  }

  :where(html:has([data-page-style="design-system"])) .btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
  }

  :where(html:has([data-page-style="design-system"])) .btn-primary:hover:not(:disabled) {
    background-color: var(--color-text-main);
  }

  :where(html:has([data-page-style="design-system"])) .btn-secondary {
    background-color: var(--color-bg-white);
    color: var(--color-primary);
    border-color: var(--color-primary);
  }

  :where(html:has([data-page-style="design-system"])) .btn-secondary:hover:not(:disabled) {
    background-color: var(--color-bg-light);
  }

  :where(html:has([data-page-style="design-system"])) .btn-text {
    color: var(--color-accent);
    background-color: #0000;
    padding: 12px 16px;
  }

  :where(html:has([data-page-style="design-system"])) .btn-text:hover:not(:disabled) {
    background-color: #0077b61a;
  }

  :where(html:has([data-page-style="design-system"])) .btn-ticket {
    background-color: var(--color-accent);
    color: var(--color-bg-white);
  }

  :where(html:has([data-page-style="design-system"])) .btn-ticket:hover:not(:disabled) {
    background-color: var(--color-accent-hover);
  }

  :where(html:has([data-page-style="design-system"])) .form-group {
    margin-bottom: var(--space-md);
    max-width: 400px;
  }

  :where(html:has([data-page-style="design-system"])) .form-label {
    color: var(--color-text-title);
    margin-bottom: var(--space-xs);
    font-size: 14px;
    font-weight: 500;
    display: block;
  }

  :where(html:has([data-page-style="design-system"])) .form-control {
    width: 100%;
    font-family: var(--font-family);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background-color: var(--color-bg-white);
    color: var(--color-text-main);
    padding: 12px 16px;
    font-size: 16px;
    transition: border-color .2s;
  }

  :where(html:has([data-page-style="design-system"])) .form-control:focus {
    border-color: var(--color-accent);
    outline: none;
  }

  :where(html:has([data-page-style="design-system"])) .checkbox-wrapper {
    align-items: center;
    gap: var(--space-sm);
    display: flex;
  }

  :where(html:has([data-page-style="design-system"])) .checkbox-input {
    width: 20px;
    height: 20px;
    accent-color: var(--color-accent);
    cursor: pointer;
  }

  :where(html:has([data-page-style="design-system"])) .checkbox-label {
    cursor: pointer;
    font-size: 16px;
  }

  :where(html:has([data-page-style="design-system"])) .search-wrapper {
    max-width: 400px;
    position: relative;
  }

  :where(html:has([data-page-style="design-system"])) .search-input {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    width: 100%;
    font-family: var(--font-family);
    padding: 12px 16px 12px 40px;
    font-size: 16px;
  }

  :where(html:has([data-page-style="design-system"])) .search-icon {
    opacity: .5;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
  }

  :where(html:has([data-page-style="design-system"])) .tags-row {
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    display: flex;
  }

  :where(html:has([data-page-style="design-system"])) .tag {
    border-radius: var(--radius-full);
    align-items: center;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
  }

  :where(html:has([data-page-style="design-system"])) .tag-category {
    background: var(--color-bg-light);
    color: var(--color-primary);
    border: 1px solid var(--color-border);
  }

  :where(html:has([data-page-style="design-system"])) .tag-price {
    background: var(--color-accent);
    color: #fff;
  }

  :where(html:has([data-page-style="design-system"])) .tag-price.free {
    background: var(--color-success);
  }

  :where(html:has([data-page-style="design-system"])) .tag-age {
    background: var(--color-bg-sand);
    color: var(--color-text-title);
    border: 1px solid #e5e4de;
    font-weight: 600;
  }

  :where(html:has([data-page-style="design-system"])) .tag-status {
    background: var(--color-park-green-light);
    color: #fff;
  }

  :where(html:has([data-page-style="design-system"])) .cards-grid {
    gap: var(--space-lg);
    grid-template-columns: 1fr;
    display: grid;
  }

  @media (min-width: 768px) {
    :where(html:has([data-page-style="design-system"])) .cards-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    :where(html:has([data-page-style="design-system"])) .cards-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  :where(html:has([data-page-style="design-system"])) .component-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    flex-direction: column;
    display: flex;
    overflow: hidden;
  }

  :where(html:has([data-page-style="design-system"])) .card-img-wrapper {
    background: var(--color-bg-light);
    height: 200px;
    position: relative;
  }

  :where(html:has([data-page-style="design-system"])) .card-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  :where(html:has([data-page-style="design-system"])) .card-body {
    padding: var(--space-md);
    flex-direction: column;
    flex: 1;
    display: flex;
  }

  :where(html:has([data-page-style="design-system"])) .card-title {
    color: var(--color-text-title);
    margin: 0 0 var(--space-xs);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
  }

  :where(html:has([data-page-style="design-system"])) .card-desc {
    color: var(--color-text-muted);
    margin: 0 0 var(--space-md);
    flex: 1;
    font-size: 14px;
  }

  :where(html:has([data-page-style="design-system"])) .event-meta {
    gap: var(--space-sm);
    color: var(--color-text-main);
    flex-wrap: wrap;
    margin-top: auto;
    font-size: 13px;
    font-weight: 500;
    display: flex;
  }

  :where(html:has([data-page-style="design-system"])) .news-card {
    flex-direction: column;
    display: flex;
  }

  :where(html:has([data-page-style="design-system"])) .news-card .card-img-wrapper {
    height: 200px;
  }

  @media (min-width: 768px) {
    :where(html:has([data-page-style="design-system"])) .news-card {
      flex-direction: row;
      grid-column: 1 / -1;
    }

    :where(html:has([data-page-style="design-system"])) .news-card .card-img-wrapper {
      width: 300px;
      height: auto;
    }
  }

  :where(html:has([data-page-style="design-system"])) .nav-component {
    margin-bottom: var(--space-xl);
  }

  :where(html:has([data-page-style="design-system"])) .breadcrumbs {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    display: flex;
  }

  :where(html:has([data-page-style="design-system"])) .breadcrumbs a {
    color: var(--color-text-muted);
    text-decoration: none;
  }

  :where(html:has([data-page-style="design-system"])) .breadcrumbs a:hover {
    color: var(--color-accent);
  }

  :where(html:has([data-page-style="design-system"])) .breadcrumbs span {
    color: var(--color-text-main);
    font-weight: 500;
  }

  :where(html:has([data-page-style="design-system"])) .breadcrumbs .sep {
    color: var(--color-border);
  }

  :where(html:has([data-page-style="design-system"])) .filter-chips {
    gap: var(--space-sm);
    padding-bottom: var(--space-sm);
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: flex;
    overflow-x: auto;
  }

  :where(html:has([data-page-style="design-system"])) .filter-chips::-webkit-scrollbar {
    display: none;
  }

  :where(html:has([data-page-style="design-system"])) .chip {
    white-space: nowrap;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    cursor: pointer;
    color: var(--color-text-main);
    padding: 8px 16px;
    font-size: 14px;
  }

  :where(html:has([data-page-style="design-system"])) .chip.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
  }

  :where(html:has([data-page-style="design-system"])) .tabs {
    border-bottom: 1px solid var(--color-border);
    gap: var(--space-lg);
    display: flex;
  }

  :where(html:has([data-page-style="design-system"])) .tab {
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 12px 0;
    font-weight: 600;
    position: relative;
  }

  :where(html:has([data-page-style="design-system"])) .tab.active {
    color: var(--color-primary);
  }

  :where(html:has([data-page-style="design-system"])) .tab.active:after {
    content: "";
    background: var(--color-primary);
    height: 2px;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
  }

  :where(html:has([data-page-style="design-system"])) .util-grid {
    gap: var(--space-lg);
    grid-template-columns: 1fr;
    display: grid;
  }

  @media (min-width: 768px) {
    :where(html:has([data-page-style="design-system"])) .util-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  :where(html:has([data-page-style="design-system"])) .info-card {
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-bg-sand);
    border-radius: var(--radius-lg);
    display: flex;
  }

  :where(html:has([data-page-style="design-system"])) .info-icon {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    background: #fff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    display: flex;
  }

  :where(html:has([data-page-style="design-system"])) .info-content .label {
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: 12px;
    font-weight: 600;
  }

  :where(html:has([data-page-style="design-system"])) .info-content .value {
    color: var(--color-text-title);
    font-size: 18px;
    font-weight: 700;
  }

  :where(html:has([data-page-style="design-system"])) .accordion {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
  }

  :where(html:has([data-page-style="design-system"])) .accordion-header {
    padding: var(--space-md);
    background: var(--color-bg-white);
    cursor: pointer;
    border-bottom: 1px solid var(--color-border);
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    display: flex;
  }

  :where(html:has([data-page-style="design-system"])) .accordion-header:last-child {
    border-bottom: none;
  }

  :where(html:has([data-page-style="design-system"])) .accordion-body {
    padding: var(--space-md);
    color: var(--color-text-muted);
    background: #fff;
    font-size: 14px;
  }

  :where(html:has([data-page-style="design-system"])) .empty-state {
    padding: var(--space-2xl) var(--space-md);
    text-align: center;
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-lg);
    background: #fff;
  }

  :where(html:has([data-page-style="design-system"])) .empty-state h4 {
    margin: 0 0 var(--space-sm);
    color: var(--color-text-title);
    font-size: 18px;
  }

  :where(html:has([data-page-style="design-system"])) .empty-state p {
    color: var(--color-text-muted);
    margin: 0;
    font-size: 14px;
  }

  :where(html:has([data-page-style="design-system"])) .callout {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-warning);
    background: #fffbeb;
  }

  :where(html:has([data-page-style="design-system"])) .callout h4 {
    color: #b45309;
    margin: 0 0 4px;
    font-size: 16px;
  }

  :where(html:has([data-page-style="design-system"])) .callout p {
    color: #92400e;
    margin: 0;
    font-size: 14px;
  }

  :where(html:has([data-page-style="design-system"])) .skeleton {
    border-radius: var(--radius-sm);
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%) 0 0 / 200% 100%;
    animation: 1.5s infinite loading;
  }

  :where(html:has([data-page-style="design-system"])) .skel-img {
    width: 100%;
    height: 160px;
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
  }

  :where(html:has([data-page-style="design-system"])) .skel-title {
    width: 70%;
    height: 24px;
    margin-bottom: var(--space-sm);
  }

  :where(html:has([data-page-style="design-system"])) .skel-text {
    width: 100%;
    height: 16px;
    margin-bottom: 8px;
  }

  :where(html:has([data-page-style="design-system"])) .skel-text.short {
    width: 40%;
  }
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/*# sourceMappingURL=src_features_design-system_design-system_17ezqz6.css.map*/