/* ============================================
   MOBILE T2 DESIGN SYSTEM
   Clean Dashboard Style - Coral Accent

   All values use CSS variables from design-system.css
   for theme switcher compatibility
   ============================================ */

/* ============================================
   T2 THEME VARIABLES (Extends Design System)
   ============================================ */
:root {
    /* T2 uses Plus Jakarta Sans - falls back to design system font */
    --t2-font: 'Plus Jakarta Sans', var(--font-family-base);

    /* T2 colors - all mapped to theme variables */
    --t2-coral: var(--theme-primary, #E8956D);
    --t2-coral-light: var(--theme-primary-light, #FDF2ED);
    --t2-dark: var(--color-gray-900, #1A1A2E);
    --t2-text-secondary: var(--color-gray-500);
    --t2-text-muted: var(--color-gray-400);
    --t2-border: var(--border-color-default, #E5E7EB);
    --t2-bg: var(--color-white);
    --t2-bg-subtle: var(--color-gray-50);
}

/* Apply T2 font globally when using T2 design */
.t2-page,
.t2-page * {
    font-family: var(--t2-font);
}

/* ============================================
   PAGE CONTAINER
   ============================================ */
.t2-page {
    background: var(--t2-bg);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

/* ============================================
   STATUS BAR
   ============================================ */
.t2-status-bar {
    height: 44px;
    padding: var(--spacing-3) var(--spacing-4) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--t2-bg);
}

.t2-status-bar__time {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--t2-dark);
}

.t2-status-bar__icons {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

.t2-status-bar__icons svg {
    width: 18px;
    height: 18px;
    color: var(--t2-dark);
}

/* ============================================
   HEADER
   ============================================ */
.t2-header {
    padding: var(--spacing-4);
    background: var(--t2-bg);
}

.t2-header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-4);
}

.t2-header__user {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
}

.t2-header__avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 2px solid var(--border-color-avatar, var(--t2-border));
}

.t2-header__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t2-header__greeting {
    display: flex;
    flex-direction: column;
}

.t2-header__welcome {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    color: var(--t2-text-secondary);
}

.t2-header__name {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--t2-dark);
}

.t2-header__actions {
    display: flex;
    gap: var(--spacing-2);
}

.t2-header__btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--t2-border);
    background: var(--t2-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
}

.t2-header__btn:active {
    transform: scale(0.95);
}

.t2-header__btn svg {
    width: 20px;
    height: 20px;
    color: var(--t2-dark);
}

.t2-header__badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: var(--t2-coral);
    border-radius: var(--radius-full);
    border: 2px solid var(--t2-bg);
}

/* Simple header without user info */
.t2-header--simple {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-4);
    background: var(--t2-bg);
}

.t2-header__back {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--t2-border);
    background: var(--t2-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.t2-header__back:active {
    transform: scale(0.95);
}

.t2-header__back svg {
    width: 20px;
    height: 20px;
    color: var(--t2-dark);
}

.t2-header__title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--t2-dark);
}

.t2-header__spacer {
    width: 40px;
}

/* ============================================
   IMPROVED PAGE HEADER (Centered)
   ============================================ */
.t2-page-header {
    display: flex;
    align-items: center;
    padding: var(--spacing-3) var(--spacing-4);
    background: var(--color-white);
    border-bottom: 1px solid var(--t2-border);
}

.t2-page-header__back {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 1px solid var(--t2-border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.t2-page-header__back:hover {
    border-color: var(--t2-coral);
    background: var(--t2-coral-light);
}

.t2-page-header__back:active {
    transform: scale(0.95);
}

.t2-page-header__back svg {
    width: 18px;
    height: 18px;
    color: var(--t2-dark);
}

.t2-page-header__center {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.t2-page-header__title {
    font-family: var(--t2-font);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--t2-dark);
    margin: 0;
    line-height: 1.2;
}

.t2-page-header__subtitle {
    font-family: var(--t2-font);
    font-size: var(--font-size-xs);
    color: var(--t2-text-secondary);
    margin-top: 2px;
}

.t2-page-header__btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--t2-bg-subtle);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.t2-page-header__btn:hover {
    background: var(--t2-coral-light);
}

.t2-page-header__btn:active {
    transform: scale(0.95);
}

.t2-page-header__btn svg {
    width: 20px;
    height: 20px;
    color: var(--t2-text-secondary);
}

.t2-page-header__spacer {
    width: 40px;
    flex-shrink: 0;
}

/* ============================================
   SEARCH BAR
   ============================================ */
.t2-search {
    display: flex;
    align-items: center;
    background: var(--t2-bg-subtle);
    border-radius: var(--radius-lg);
    padding: var(--spacing-3) var(--spacing-4);
    gap: var(--spacing-3);
}

.t2-search__icon {
    width: 20px;
    height: 20px;
    color: var(--t2-text-muted);
    flex-shrink: 0;
}

.t2-search__input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--t2-dark);
    outline: none;
    font-family: var(--t2-font);
}

.t2-search__input::placeholder {
    color: var(--t2-text-muted);
}

.t2-search__filter {
    width: 36px;
    height: 36px;
    background: var(--t2-coral);
    border: none;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.t2-search__filter:active {
    transform: scale(0.95);
}

.t2-search__filter svg {
    width: 18px;
    height: 18px;
    color: var(--color-white);
}

/* Search bar as clickable link */
a.t2-search {
    text-decoration: none;
}

.t2-search__placeholder {
    flex: 1;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--t2-text-muted);
    font-family: var(--t2-font);
}

/* ============================================
   SCROLLABLE CONTENT
   ============================================ */
.t2-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 72px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
}

.t2-content::-webkit-scrollbar {
    width: 3px;
}

.t2-content::-webkit-scrollbar-track {
    background: transparent;
}

.t2-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-full);
}

.t2-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}

.t2-content--no-padding {
    padding: 0;
}

/* Content without bottom nav padding */
.t2-content--no-nav {
    padding-bottom: var(--spacing-4);
}

/* ============================================
   CATEGORY PILLS
   ============================================ */
.t2-categories {
    display: flex;
    gap: var(--spacing-2);
    padding: var(--spacing-4);
    overflow-x: auto;
    scrollbar-width: none;
}

.t2-categories::-webkit-scrollbar {
    display: none;
}

.t2-pill {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-2) var(--spacing-4);
    background: var(--t2-bg);
    border: 1px solid var(--t2-border);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-gray-600);
    white-space: nowrap;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: var(--t2-font);
}

.t2-pill:active {
    transform: scale(0.97);
}

.t2-pill--active {
    background: var(--t2-coral);
    border-color: var(--t2-coral);
    color: var(--color-white);
}

.t2-pill__icon {
    width: 16px;
    height: 16px;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.t2-section {
    padding: 0 var(--spacing-4) var(--spacing-5);
}

.t2-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-3);
}

.t2-section__title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--t2-dark);
}

.t2-section__link {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--t2-coral);
    text-decoration: none;
}

.t2-section__link:hover {
    text-decoration: underline;
}

/* ============================================
   FEATURED BANNER
   ============================================ */
.t2-banner {
    margin: 0 var(--spacing-4) var(--spacing-5);
    background: linear-gradient(135deg, var(--t2-coral) 0%, color-mix(in srgb, var(--t2-coral) 80%, #000) 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-5);
    position: relative;
    overflow: hidden;
}

.t2-banner__content {
    position: relative;
    z-index: 1;
}

.t2-banner__tag {
    display: inline-block;
    padding: var(--spacing-1) var(--spacing-3);
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    margin-bottom: var(--spacing-2);
}

.t2-banner__title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-1);
}

.t2-banner__subtitle {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-3);
}

.t2-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-2) var(--spacing-4);
    background: var(--color-white);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--t2-coral);
    text-decoration: none;
    transition: all var(--transition-base);
}

.t2-banner__btn:active {
    transform: scale(0.97);
}

.t2-banner__btn svg {
    width: 16px;
    height: 16px;
}

.t2-banner__decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
}

.t2-banner__decoration--2 {
    top: 50%;
    right: 10%;
    width: 80px;
    height: 80px;
}

/* ============================================
   CAROUSEL WRAPPER
   ============================================ */
.t2-carousel {
    position: relative;
}

.t2-carousel__track {
    display: flex;
    gap: var(--spacing-3);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: var(--spacing-1) 0;
}

.t2-carousel__track::-webkit-scrollbar {
    display: none;
}

.t2-carousel__track > * {
    scroll-snap-align: center;
}

/* Carousel Navigation Arrows */
.t2-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: var(--t2-bg);
    border: 1px solid var(--t2-border);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 10;
    transition: all var(--transition-base);
    opacity: 0.95;
}

.t2-carousel__nav:hover {
    opacity: 1;
    box-shadow: var(--shadow-lg);
    transform: translateY(-50%) scale(1.05);
}

.t2-carousel__nav:active {
    transform: translateY(-50%) scale(0.92);
}

.t2-carousel__nav--prev {
    left: 4px;
}

.t2-carousel__nav--next {
    right: 4px;
}

.t2-carousel__nav svg {
    width: 12px;
    height: 12px;
    color: var(--t2-dark);
    stroke-width: 2.5;
}

/* Carousel Dots */
.t2-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: var(--spacing-3);
}

.t2-carousel__dot {
    width: 5px;
    height: 5px;
    background: var(--color-gray-200);
    border-radius: var(--radius-full);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all var(--transition-base);
}

.t2-carousel__dot--active {
    width: 16px;
    background: var(--t2-coral);
}

/* ============================================
   HORIZONTAL SCROLL CONTAINER
   ============================================ */
.t2-scroll {
    display: flex;
    gap: var(--spacing-3);
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: var(--spacing-1);
}

.t2-scroll::-webkit-scrollbar {
    display: none;
}

/* ============================================
   TOUR CARDS
   ============================================ */
.t2-tour-card {
    flex: 0 0 auto;
    width: 200px;
    background: var(--t2-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    border: 1px solid var(--border-color-card, var(--t2-border));
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.t2-tour-card:active {
    transform: scale(0.98);
}

.t2-tour-card:hover {
    box-shadow: var(--shadow-lg);
}

.t2-tour-card__image {
    position: relative;
    height: 130px;
}

.t2-tour-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t2-tour-card__fav {
    position: absolute;
    top: var(--spacing-2);
    right: var(--spacing-2);
    width: 28px;
    height: 28px;
    background: var(--t2-bg);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.t2-tour-card__fav svg {
    width: 14px;
    height: 14px;
    color: var(--t2-text-muted);
}

.t2-tour-card__fav--active svg {
    color: var(--t2-coral);
    fill: var(--t2-coral);
}

.t2-tour-card__rating {
    position: absolute;
    bottom: var(--spacing-2);
    left: var(--spacing-2);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: var(--t2-bg);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    color: var(--t2-dark);
    box-shadow: var(--shadow-sm);
}

.t2-tour-card__rating svg {
    width: 12px;
    height: 12px;
    color: #FBBF24;
    fill: #FBBF24;
}

.t2-tour-card__body {
    padding: var(--spacing-3);
}

.t2-tour-card__title {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--t2-dark);
    margin-bottom: 4px;
    line-height: var(--line-height-tight);
}

.t2-tour-card__location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--font-size-xs);
    color: var(--t2-text-secondary);
    margin-bottom: var(--spacing-2);
}

.t2-tour-card__location svg {
    width: 12px;
    height: 12px;
}

.t2-tour-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.t2-tour-card__price {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    color: var(--t2-coral);
}

.t2-tour-card__price span {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-normal);
    color: var(--t2-text-secondary);
}

.t2-tour-card__duration {
    font-size: var(--font-size-xs);
    color: var(--t2-text-secondary);
}

/* Full-width tour card variant */
.t2-tour-card--full {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.t2-tour-card--full .t2-tour-card__image {
    width: 120px;
    height: auto;
    flex-shrink: 0;
}

.t2-tour-card--full .t2-tour-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ============================================
   DESTINATION GRID
   ============================================ */
.t2-destinations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-3);
}

.t2-destination {
    position: relative;
    height: 100px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
}

.t2-destination:first-child {
    grid-row: span 2;
    height: auto;
}

.t2-destination img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t2-destination__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.t2-destination__name {
    position: absolute;
    bottom: var(--spacing-3);
    left: var(--spacing-3);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
}

.t2-destination__count {
    position: absolute;
    bottom: var(--spacing-3);
    right: var(--spacing-3);
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
}

/* ============================================
   BOTTOM NAVIGATION
   ============================================ */
.t2-bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--t2-bg);
    border-top: 1px solid var(--border-color-nav, var(--t2-border));
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 var(--spacing-2);
}

.t2-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: var(--spacing-2) var(--spacing-3);
    text-decoration: none;
    transition: all var(--transition-base);
}

.t2-nav-item:active {
    transform: scale(0.95);
}

.t2-nav-item__icon {
    width: 22px;
    height: 22px;
    color: var(--t2-text-muted);
    transition: color var(--transition-base);
}

.t2-nav-item__label {
    font-size: 10px;
    font-weight: var(--font-weight-medium);
    color: var(--t2-text-muted);
    transition: color var(--transition-base);
    font-family: var(--t2-font);
}

.t2-nav-item--active .t2-nav-item__icon {
    color: var(--t2-coral);
}

.t2-nav-item--active .t2-nav-item__label {
    color: var(--t2-coral);
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.t2-input {
    width: 100%;
    padding: var(--spacing-3) var(--spacing-4);
    border: 1px solid var(--t2-border);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    font-family: var(--t2-font);
    color: var(--t2-dark);
    background: var(--t2-bg);
    transition: all var(--transition-base);
}

.t2-input:focus {
    outline: none;
    border-color: var(--t2-coral);
    box-shadow: 0 0 0 3px rgba(232, 149, 109, 0.1);
}

.t2-input::placeholder {
    color: var(--t2-text-muted);
}

.t2-label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--t2-dark);
    margin-bottom: var(--spacing-2);
}

/* ============================================
   BUTTONS
   ============================================ */
.t2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
    padding: var(--spacing-3) var(--spacing-6);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    font-family: var(--t2-font);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    text-decoration: none;
}

.t2-btn:active {
    transform: scale(0.98);
}

.t2-btn--primary {
    background: var(--t2-coral);
    color: var(--color-white);
}

.t2-btn--primary:hover {
    background: color-mix(in srgb, var(--t2-coral) 90%, #000);
}

.t2-btn--secondary {
    background: var(--t2-bg);
    color: var(--t2-dark);
    border: 1px solid var(--t2-border);
}

.t2-btn--secondary:hover {
    background: var(--t2-bg-subtle);
}

.t2-btn--full {
    width: 100%;
}

.t2-btn--lg {
    padding: var(--spacing-4) var(--spacing-8);
    font-size: var(--font-size-base);
}

/* ============================================
   CARDS (Generic)
   ============================================ */
.t2-card {
    background: var(--t2-bg);
    border: 1px solid var(--t2-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-4);
    box-shadow: var(--shadow-sm);
}

.t2-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-3);
}

.t2-card__title {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--t2-dark);
}

/* ============================================
   LIST ITEMS
   ============================================ */
.t2-list-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: var(--spacing-3) 0;
    border-bottom: 1px solid var(--t2-border);
    text-decoration: none;
}

.t2-list-item:last-child {
    border-bottom: none;
}

.t2-list-item__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--t2-bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.t2-list-item__icon svg {
    width: 20px;
    height: 20px;
    color: var(--t2-coral);
}

.t2-list-item__content {
    flex: 1;
    min-width: 0;
}

.t2-list-item__title {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--t2-dark);
    margin-bottom: 2px;
}

.t2-list-item__subtitle {
    font-size: var(--font-size-xs);
    color: var(--t2-text-secondary);
}

.t2-list-item__arrow {
    width: 20px;
    height: 20px;
    color: var(--t2-text-muted);
}

/* ============================================
   TABS
   ============================================ */
.t2-tabs {
    display: flex;
    border-bottom: 1px solid var(--t2-border);
    padding: 0 var(--spacing-4);
}

.t2-tab {
    flex: 1;
    padding: var(--spacing-3) var(--spacing-2);
    text-align: center;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--t2-text-secondary);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-family: var(--t2-font);
    transition: all var(--transition-base);
}

.t2-tab--active {
    color: var(--t2-coral);
    border-bottom-color: var(--t2-coral);
}

/* ============================================
   BADGES
   ============================================ */
.t2-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--spacing-1) var(--spacing-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
}

.t2-badge--primary {
    background: var(--t2-coral-light);
    color: var(--t2-coral);
}

.t2-badge--success {
    background: #ECFDF5;
    color: var(--color-success, #10B981);
}

.t2-badge--warning {
    background: #FFFBEB;
    color: var(--color-warning, #F59E0B);
}

.t2-badge--error {
    background: #FEF2F2;
    color: var(--color-error, #EF4444);
}

/* ============================================
   EMPTY STATE
   ============================================ */
.t2-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-12) var(--spacing-4);
    text-align: center;
}

.t2-empty__icon {
    width: 64px;
    height: 64px;
    color: var(--t2-text-muted);
    margin-bottom: var(--spacing-4);
}

.t2-empty__title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--t2-dark);
    margin-bottom: var(--spacing-2);
}

.t2-empty__text {
    font-size: var(--font-size-sm);
    color: var(--t2-text-secondary);
    margin-bottom: var(--spacing-4);
}

/* ============================================
   DIVIDER
   ============================================ */
.t2-divider {
    height: 1px;
    background: var(--t2-border);
    margin: var(--spacing-4) 0;
}

.t2-divider--thick {
    height: 8px;
    background: var(--t2-bg-subtle);
}

/* ============================================
   UTILITIES
   ============================================ */
.t2-text-center { text-align: center; }
.t2-text-right { text-align: right; }
.t2-text-muted { color: var(--t2-text-muted); }
.t2-text-secondary { color: var(--t2-text-secondary); }
.t2-text-primary { color: var(--t2-coral); }
.t2-font-bold { font-weight: var(--font-weight-bold); }
.t2-font-semibold { font-weight: var(--font-weight-semibold); }

.t2-mb-0 { margin-bottom: 0; }
.t2-mb-2 { margin-bottom: var(--spacing-2); }
.t2-mb-4 { margin-bottom: var(--spacing-4); }
.t2-mb-6 { margin-bottom: var(--spacing-6); }

.t2-mt-0 { margin-top: 0; }
.t2-mt-2 { margin-top: var(--spacing-2); }
.t2-mt-4 { margin-top: var(--spacing-4); }
.t2-mt-6 { margin-top: var(--spacing-6); }

.t2-px-4 { padding-left: var(--spacing-4); padding-right: var(--spacing-4); }
.t2-py-4 { padding-top: var(--spacing-4); padding-bottom: var(--spacing-4); }
