/* src/styles/shop.css */
.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .section-title {
    font-size: 1.1em;
    font-weight: bold;
    margin: 0;
    padding: 0;
  }
  
  .automation-section,
  .games-section {
    margin-top: 4px;
  }
  
  .shop-item {
    margin-bottom: 8px;
    padding: 4px 8px;
    background: #f8f9fa;
    border-radius: 4px;
  }
  
  .automation-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  
  .automation-details > div {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .game-unlock {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .shop-purchase-button {
    padding: 2px 8px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 0.9em;
  }
  
  .shop-purchase-button:hover:not(:disabled) {
    background: #2563eb;
  }
  
  .shop-purchase-button:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
  }
  
  .next-rate {
    font-size: 0.9em;
  }

  .unlock-info {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .unlock-requirement {
    font-size: 0.8em;
    color: #666;
    margin-top: 2px;
  }
  
  .game-unlock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }