/* Compiaz Design - Mobile App-Like Styles */

/* App-like Styles für Mobile */
@media (max-width: 576px) {
  /* Base App Layout */
  html, body {
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
  }
  
  body {
    padding-bottom: 70px; /* Platz für die Bottom-Navigation */
  }
  
  /* App Header */
  .app-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .app-title {
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .app-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
  }
  
  /* Bottom Navigation */
  .mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  }
  
  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.3s ease;
  }
  
  .mobile-nav-icon {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }
  
  .mobile-nav-item.active {
    color: var(--primary-pink);
  }
  
  /* Card Styles */
  .app-card {
    margin: 1rem;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .app-card-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .app-card-content {
    padding: 1rem;
  }
  
  /* List Items */
  .app-list-item {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .app-list-item:last-child {
    border-bottom: none;
  }
  
  .app-list-item-content {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .app-list-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(45deg, var(--primary-gradient-start), var(--primary-gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
  }
  
  /* Swipe Actions */
  .swipe-container {
    position: relative;
    overflow: hidden;
  }
  
  .swipe-actions {
    position: absolute;
    top: 0;
    right: -100px;
    height: 100%;
    display: flex;
    transition: all 0.3s ease;
  }
  
  .swipe-action {
    width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
  }
  
  .swipe-action.delete {
    background: #ff3b30;
  }
  
  .swipe-action.share {
    background: #007aff;
  }
  
  /* Tabs */
  .app-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .app-tabs::-webkit-scrollbar {
    display: none;
  }
  
  .app-tab {
    padding: 1rem 1.5rem;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
  }
  
  .app-tab.active {
    color: var(--primary-pink);
    border-bottom: 2px solid var(--primary-pink);
  }
  
  
  /* Floating Action Button - ENTFERNT */
  .fab {
    display: none !important;
    box-shadow: 0 4px 15px rgba(240, 58, 112, 0.4);
    z-index: 100;
    transition: all 0.3s ease;
  }
  
  .fab:active {
    transform: scale(0.95);
  }
  
  /* Toast Notifications */
  .toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .toast.show {
    opacity: 1;
  }
  
  /* Animations */
  @keyframes slide-in-right {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }
  
  @keyframes slide-in-up {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  .slide-in-right {
    animation: slide-in-right 0.3s forwards;
  }
  
  .slide-in-up {
    animation: slide-in-up 0.3s forwards;
  }
  
  /* Gestures */
  .gesture-area {
    touch-action: pan-y;
    user-select: none;
  }
}
